/*
Plans & Benefits
*/

.plan-pricing-link {
  text-align: center;
  font-size: 15px;
}

.plans-parent-cont {
  margin-top: -30px;
  margin-bottom: -30px;
}

.benefit-icon {
  font-size: 14px !important;
  vertical-align: middle;
}

.benefit-success-icon {
  color: green;
}

.benefit-error-icon {
  color: indianred;
}

.plans-cont {
  display: flex;
  margin-bottom: 15px;
  overflow-x: hidden;
  border-radius: 4px;
  box-shadow: 0px 0px 0px 1px rgb(224 224 224);
}

.plan-col {
  flex: 1;
}

.plan-content {
  box-shadow: 0px 0px 0px 1px rgb(224 224 224);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-title {
  padding: 15px;
  text-align: center;
  color: #fff;
  background-color: #2f80ac;
  font-size: 20px;
}

.benefit-cont {
  padding: 15px;
  background-color: rgb(245, 245, 245);
  color: rgba(0, 0, 0, 0.54);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-price-cont {
  text-align: center;
  padding-bottom: 12px;
  flex: 1;
}

.plan-price-cont.plan-price-custom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-highlight {
  color: #2f80ac;
  font-weight: bold;
  text-decoration: underline;
}

.plan-yearly-price {
  font-size: 18px;
  padding-bottom: 3px;
}

.plan-monthly-price,
.plan-price-yearly-billing {
  font-size: 13px;
  height: auto;
  line-height: 16px;
  padding-bottom: 0;
}

.plan-main-benefits {
  padding-top: 5px;
  font-size: 14px;
  line-height: 20px;
}

.plan-star-benefit {
  font-family: Poppins-Light;
}

.plan-star-benefit:before {
  content: "\e033";
  font-family: "ETmodules";
  padding-right: 3px;
}

.benefit-success:before {
  content: "\4e";
  font-family: "ETmodules";
  padding-right: 3px;
  color: #0c71c3;
  vertical-align: middle;
}

.benefit-error:before {
  content: "\4d";
  font-family: "ETmodules";
  padding-right: 3px;
  color: indianred;
}

.has-tooltip {
  position: relative;
}

.has-tooltip:after {
  content: "\72";
  font-family: "ETmodules";
  padding-left: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plan-check-benefit,
.plan-support-benefit {
  font-family: Poppins-Light;
  font-size: 14px;
  line-height: 1.5;
}

.plan-benefits-sep {
  background: rgba(0, 0, 0, 0.14);
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1px;
  text-align: center;
}

.plan-benefits-sep span {
  background: rgb(245, 245, 245);
  font-size: 15px;
  padding: 1px 5px;
}

.plan-price-primary {
  color: #2f80ac;
}

.plan-price-secondary {
  color: rgb(239, 108, 0);
}

.plan-action-cont {
  text-align: center;
  background: #f59c40;
  color: #fff;
}

.plan-action-cont.plan-custom {
  background: #2f80ac;
}

.plan-action-btn {
  color: #fff;
  font-family: "Poppins-Medium";
  padding: 5px 0px;
}

.plan-navigation {
  display: none; /* Since we only have 3 plans now, no need to navigate between pages */
  position: absolute;
  border-radius: 50%;
  top: 50%;
  cursor: pointer;
}

.plan-navigation-next {
  right: -80px;
}

.plan-navigation-prev {
  left: -80px;
  display: none;
}

.plan-navigation span {
  font-size: 80px;
}

.info-icon {
  padding-left: 3px;
  color: #2f80ac;
  font-size: 12px !important;
}

.plan-value-highlight {
  color: #2f80ac;
  font-weight: bold;
}

.next-btn:before {
  content: "\35";
  font-family: "ETmodules";
  font-size: 40px;
}

.prev-btn:before {
  content: "\34";
  font-family: "ETmodules";
  font-size: 40px;
}

.plan-pricing-anchor {
  font-size: 14px;
  font-weight: bold;
}

.plans-features-container {
  display: flex;
  flex-direction: column;
  margin-top: 42px;
}

.plans-features-title-container {
  flex: 1;
}

.plans-features-title {
  font-size: 40px;
  text-align: center;
}

.plans-features {
  flex: 1;
  padding: 16px 0;
}

.plan-feature-row {
  display: flex;
  gap: 32px;
  margin-bottom: 8px;
}

.plan-feature-col {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 16px;
}

.plan-feature-title {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
}

.plan-feature-subtitle {
  font-size: 16px;
}

.plan-feature-desc {
  font-size: 14px;
  line-height: 1.5;
  padding-bottom: 0;
}

.contact-support-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.contact-support-btn {
  border-radius: 55px;
  color: #0c71c3 !important;
  cursor: pointer;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 981px) {
  .plans-cont {
    display: block;
    box-shadow: none;
  }

  .plan-col {
    min-width: 100%;
    margin-bottom: 30px;
  }

  .plan-navigation {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .plans-features-title {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .plan-feature-row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
  }

  .plan-feature-title {
    text-align: left;
  }

  .plans-features {
    padding: 0;
  }

  .plan-feature-col {
    padding: 0;
  }
}
