/* custom helpers & properties */

.price-card-v {
  filter: drop-shadow(0px 1px 7px rgba(0, 0, 0, 0.15));
  max-width: 445px;
}

.price-card-v.col-lg-4 {
  max-width: 350px;
}

.price-card-v .icon-container {
  background-color: var(--primary-light);
  height: 60px;
  min-width: 60px;
  width: 60px;
}

.icon-container img {
  height: 32px;
}

.price-card-v .content-box {
  border-radius: 8px;
}

.price-card-v .price-box {
  background-color: #f7f9fa;
  border-radius: 0px 8px 8px 0px;
  max-width: 364px;
}

.content-box.popular {
  border: 1px solid var(--primary);
}

.content-box .price-feature:before {
  width: 18px;
  height: 18px;
  background-size: cover;
  background-image: url(https://cdn2.hubspot.net/hubfs/442271/Doctor_Zone/Assets/PL/pricing/check.svg);
  position: absolute;
  left: -30px;
  top: 2px;
}

.content-box .vertical-features {
  list-style: none;
  transition: max-height 0.25s ease-in-out 0s;
}

.all-vertical-features:after {
  background-image: url(https://cdn2.hubspot.net/hubfs/442271/New%20Pricing%20LP%202020/collapse-caret-blue.svg);
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  height: 16px;
  margin-left: 6px;
  position: relative;
  top: 2px;
  transition: all 0.3s ease-out;
  width: 16px;
}

.all-vertical-features.active:after {
  transform: rotate(180deg) !important;
}

.price-feature-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out 0s;
}

.price-feature-details.visible {
  margin-bottom: 8px;
}

.price-more-features {
  height: 0;
  opacity: 0;
  overflow: visible;
  transition: height 0ms 400ms, opacity 400ms 0ms;
}

.price-more-features.visible {
  height: auto;
  opacity: 1;
  transition: height 0ms 0ms, opacity 600ms 0ms;
}

.price-card-v .hidden {
  display: none !important;
}

.button-container a.cta_button {
  box-sizing: border-box !important;
  width: 100% !important;
}

.price-card-v.dark-mode .dark-label{
    background-color: #121F42 !important;
}

.price-card-v.dark-mode .content-box{
  border: 1px solid #121F42;
}

.price-card-v.dark-mode .button-container .btn-primary{
  background-color: #121F42 !important;
  border-color: #121F42 !important;
}

.price-card-v.dark-mode .btn-primary-bordered{
  border-color: #121F42 !important;
  color: #121F42 !important;
}

@media (max-width: 1200px) {
  .price-card-v.col-lg-4 {
    min-width: 575px;
  }
  .price-card-v.col-lg-4.first-card {
    order: -1;
  }
}

@media (max-width: 991px) {
  .first-card {
    order: -1;
  }
  .price-card-v.col-lg-4 {
    min-width: unset;
    max-width: 100%;
  }

  .content-box .price-feature:after {
    background-image: url(https://f.hubspotusercontent20.net/hubfs/442271/New%20Pricing%20LP%202020/collapse-caret.svg);
    background-repeat: no-repeat;
    content: '';
    display: inline-block;
    height: 16px;
    margin-left: 10px !important;
    right: -2px;
    position: absolute;
    top: 4px;
    transition: all 0.3s ease-out;
    width: 16px;
  }

  .content-box .price-feature.active:after {
    transform: rotate(180deg);
  }

  .price-more-features {
    overflow: hidden;
  }
}

/* switches styles */
.switch-container::before {
  background-image: none !important;
  background-size: cover !important;
  content: '' !important;
}

.switch {
  height: 22px;
  width: 40px;
}

.switch input {
  height: 0;
  opacity: 0;
  width: 0;
}

.slider {
  background-color: var(--gray-500);
  bottom: 0;
  cursor: pointer;
  left: 0;
  min-width: 40px;
  right: 0;
  top: 0;
  transition: 0.4s;
}

.slider:before {
  background-color: #fff;
  bottom: 2px;
  content: '';
  height: 18px;
  left: 2px;
  position: absolute;
  transition: 0.4s;
  width: 18px;
}

.slider.round:before {
  border-radius: 50%;
}

.slider.round {
  border-radius: 34px;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

.checked  .slider {
  background-color: var(--primary);
}

.checked .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

.switch-container.enabled {
  color: var(--midnight-blue) !important;
}

/* tooltip styles */

.price-feature .tooltip.rounded {
  background: var(--gray-900);
  bottom: 130%;
  display: none;
  font-size: 14px;
  line-height: 20px;
  margin-left: -100px;
  width: 200px;
  left: 50%;
  z-index: 10;
}

.price-feature .tooltip:after {
  border-width: 5px;
  border-style: solid;
  border-color: var(--gray-900) transparent transparent transparent;
  content: ' ';
  left: 50%;
  margin-left: -5px;
  position: absolute;
  top: 100%;
}

.expand-title-h{
  min-height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expand-description-h{
  min-height: 50px;
}

@media (min-width: 992px) {
  .price-feature:hover .tooltip {
    display: block;
  }
}
