.comparison-container {
  display: flex;
  flex-direction: column;
}

.comparison-row {
  display: flex;
  min-height: 50px;
  position: relative;
}

.comparison-cell {
  flex: 1;
  border: 1px solid #ccc;
  text-align: center;
  max-width: 65px;
}
.comparison-cell:nth-child(1) {
  flex: 2;
  text-align: left;
  max-width: 100%;
}
.comparison-cell.span4-5 {
  flex: 8 24px;                    /*  col 4,5 flex-grow/border/padding  */
}
.comparison-cell.span3-4 {
  flex: 8 24px;                    /*  col 3,4 flex-grow/border/padding  */
}
.comparison-cell.span3-5 {
  flex: 12 36px;                   /*  col 3,4,5 flex-grow/border/padding  */
}
.comparison-row:first-child .comparison-cell {
  display: flex;
  justify-content: center;         /*  center horiz. */
  align-items: center;             /*  center vert. */
}
.comparison-row .comparison-cell {
  padding: 5px;
  box-sizing: border-box;
}
.comparison-centered {
  display: flex;
  justify-content: center;
  align-items: center;
}
.green-check {
  color: #449544;
  font-size: 25px;
}

/* toggle */

.toggle-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.toggle-pills {
  background-color: #fff;
  border: solid 1px #e0e0e0;
  border-radius: 100px;
  display: flex;
  height: 40px;
  margin: 40px auto;
  overflow: hidden;
  width: 226px;
}

.save-yearly {
  visibility: hidden;
}

.toggle-option-yearly, .toggle-option-monthly {
  cursor: pointer;
  padding-top: 8px;
  text-align: center;
  transition: all .2s;
  user-select: none;
  width: 50%;
  -webkit-tap-highlight-color: transparent;
}

.toggle-option-yearly.selected {
  background-color: #b3dfbb;
  opacity: 1;
  visibility:visible;
  transition: opacity 0.3s ease-in-out;
}

.toggle-option-monthly.selected {
  background-color: #fbd6c2;
}

.comparison-Yearly, .comparison-Monthly {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  max-height: 0;
}

.comparison-Yearly.display, .comparison-Monthly.display {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
  max-height: 9999px;
}

@media screen and (min-width: 360px) {
  .comparison-cell {
    max-width: 80px;
  }
}

@media screen and (min-width: 990px) {
  .comparison-cell {
    max-width: 100%;
  }

  .toggle-container {
    width: 445px;
    top: 6px;
  }

  .save-yearly {
    left: 0;
    position: absolute;
    top: 4px;
    visibility: visible;
  }
}

@media screen and (max-width: 990px) {
  .pt-enroll-btn {
    padding: 5px 8px !important;
    font-size: 16px !important;
  }
}

@media screen and (max-width: 575px) {
  .comparison-cell strong {
    font-size: 12px;
  }
}