.card-price-detail {
  background: var(--bg-primary-gradien);
}

.card-package {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.25rem;
  border-radius: 1.5rem;
}

.btn.btn-primary.active {
  background: rgba(5, 167, 170, 0.6);
  box-shadow: inset -3px -4px 7px 0 rgba(255, 255, 255, 0.15), inset 4px 11px 15px 0 rgba(21, 21, 21, 0.1);
}

.btn.btn-primary.active .overlay {
  display: none;
}

.btn-promo {
  color: var(--color-primary);
  background: white;
}

input.promo-input {
  color: var(--color-primary-op50);
  font-weight: 600;
}

.text-d-line-through {
  text-decoration: line-through;
  opacity: .75;
}

.price-extra span {
  font-size: .875rem;
}

.price-total>* {
  font-weight: bold;
  font-size: 1rem;
}

.flex-1 {
  flex: 1;
}

.tabs-price {
  list-style: none;
  width: 100%;
  padding: 0;
}

.tabs-price li {
  /* Makes a horizontal row */
  float: left;

  /* So the psueudo elements can be
     abs. positioned inside */
  position: relative;
}

.tabs-price a {
  /* Make them block level
     and only as wide as they need */
  float: left;
  padding: 10px 40px;
  text-decoration: none;

  font-size: 1.25rem;
  font-weight: 600;

  /* Default colors */
  color: white;
  background: var(--color-primary);

  /* Only round the top corners */
  -webkit-border-top-left-radius: 15px;
  -webkit-border-top-right-radius: 15px;
  -moz-border-radius-topleft: 15px;
  -moz-border-radius-topright: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.tabs-price .active {
  /* Highest, active tab is on top */
  z-index: 3;
}

.tabs-price .active a {
  /* Colors when tab is active */
  background: rgba(242, 250, 250, 1);
  color: var(--color-primary);
}

.tabs-price li:before,
.tabs-price li:after,
.tabs-price li a:before,
.tabs-price li a:after {
  /* All pseudo elements are 
     abs. positioned and on bottom */
  position: absolute;
  bottom: 0;
}

/* Only the first, last, and active
   tabs-price need pseudo elements at all */
.tabs-price li:last-child:after,
.tabs-price li:last-child a:after,
.tabs-price .active:after,
.tabs-price .active:before,
.tabs-price .active a:after,
.tabs-price .active a:before {
  content: "";
}

.tabs-price li:last-child.active:before,
.tabs-price .active:after {
  background: rgba(242, 250, 250, 1);

  /* Squares below circles */
  z-index: 1;
}

/* Squares */
.tabs-price li:last-child:before,
.tabs-price li:after {
  background: var(--color-primary);
  width: 10px;
  height: 10px;
}

.tabs-price li:before {
  left: -10px;
}

.tabs-price li:after {
  right: -10px;
}

/* Circles */
.tabs-price li a:after,
.tabs-price li a:before {
  width: 20px;
  height: 20px;
  /* Circles are circular */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: #ffffff;

  /* Circles over squares */
  z-index: 2;
}

.tabs-price .active a:after,
.tabs-price .active a:before {
  background: var(--color-primary);
}

/* First and last tabs-price have different
   outside color needs */
.tabs-price li:first-child.active a:before,
.tabs-price li:last-child.active a:after {
  background: #ffffff;
}

.tabs-price li a:before {
  left: -20px;
}

.tabs-price li a:after {
  right: -20px;
}

.card-feature-detail {
  display: none;
  background: rgba(242, 250, 250, 1);
  overflow-y: scroll;
  border-radius: 0 1.5rem 1.5rem 1.5rem;
}

.card-feature-detail.active {
  display: block;
}

.card-feature-detail .card-body {
  max-height: 450px;
}

.feature-list {
  list-style-type: none;
  padding: 0;
  max-height: 450px;
}

.feature-list li {
  display: flex;
  font-size: .75rem;
}

.feature-list li img {
  width: 20px;
  height: 20px;
}

.add-ons-list {
  max-height: 450px;
}

.add-ons-item {
  background: var(--bg-color);
  padding: 1rem;
  border-radius: 1rem;
}

.add-ons-item.active {
  background: var(--bg-primary-10);
}

.checkbox-add-ons {
  appearance: none;
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  border-width: 4px;
  border-style: solid;
  border-image: var(--bg-primary-gradien) 1;
  border-radius: 1rem;
  cursor: pointer;
  position: relative;
  /* For positioning the pseudo-element */
  z-index: 2;
  /* Ensure the checkbox is above the border */
}

.checkbox-add-ons:checked {
  background: var(--bg-primary-gradien);
}

.checkbox-add-ons:checked::after {
  content: "";
  background: url('../images/home/check_white_icon.svg') center center no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
}

input.user-range {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  width: 100%;
  cursor: pointer;
  outline: none;
  /*  slider progress trick  */
  overflow: hidden;
  border-radius: 16px;
}

/* Special styling for WebKit/Blink */
input.user-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid white;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  background: var(--color-primary);
  cursor: pointer;
}

input.user-range::-moz-range-thumb {
  /* box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
  border: 1px solid white;
  height: 16px;
  width: 16px;
  border-radius: 100%;
  background: var(--color-primary);
  cursor: pointer;
}

/* Track: Mozilla Firefox */
input.user-range::-moz-range-track {
  height: 14px;
  background: #ccc;
  border-radius: 16px;
}

.form-range img {
  height: 24px;
  width: 24px;
}

.custom-tooltip {
  --bs-tooltip-padding-x: 0;
  --bs-tooltip-padding-y: 0;
  --bs-tooltip-bg: #ffffff00;
  --bs-tooltip-max-width: 750px;
}

.info-tooltip {
  background: var(--bg-primary-gradien);
  color: var(--bg-color);
  padding: 1.5rem;
  border-radius: 1rem;
}

.info-tooltip div {
  color: var(--bg-color);
  margin-bottom: 1rem;
}

.info-tooltip ul {}

.info-tooltip ul li::marker {
  color: var(--bg-color);
}

.info-tooltip ul li {
  color: var(--bg-color);
}

@media screen and (max-width: 767px) {
  .tabs-price a {
    padding: 10px 20px;

    font-size: 1rem;
  }
}