.d-box {
  position: relative;
  min-width: 180px;
  background: #f5f5f5;
  padding: 5px 10px;
  border-radius: 4px;
}

.lg .d-box {
  margin-right: 60px;
  padding: 5px 15px;x
}

.d-box .label{
  font-size: 12px;
  font-weight: 800;
  font-family: 'Quicksand', sans-serif;
  color: var(--av-theme_heading);
}
.d-box .content{
  font-size: 20px;
  color: #3b3f5c;
}
.d-box .position-absolute {
  top: 1px;
  right: 5px;
}

.d-box .promo-badge {
  display: inline-block;
  background: var(--av-theme_heading);
  color: #fff;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 4px;
  font-family: 'Quicksand',sans-serif;
}
.d-box.box-price {
  display: flex;
  justify-content: space-between;
  padding-right: 0;
  overflow: hidden;
  transition: all ease-in-out 0.15s;
}


@media only screen and (min-width: 768px) {
  .d-box.box-price {
    min-width: 190px;
  }
}

.box-price .d-box-cta {
  width: 20px;
  background: #ddd;
  margin-top: -5px;
  margin-bottom: -5px;
  display: flex;
  align-items: center;
  padding-left: 5px;
  color: #555;
  transition: all ease-in-out 0.15s;
}

.d-box.box-price:hover {
  background: #ddd;
}
.box-price:hover .d-box-cta {
  background: var(--av-theme_heading);
  color: #fff;
}

.flight-box {
  background: #f5f5f5;
  width: 280px;
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 4px;
  font-family: 'Quicksand',sans-serif;
}

.flight-box .flight-time {
  font-size: 28px;
  margin-right: 15px;
  color: #3b3f5c;
  font-weight: 600px;
}

.flight-box .flight-icon {
  color: var(--bs-gray);
}
.price-promo-badge {
  display: inline-block;
  background: var(--av-theme_heading);
  color: #fff;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 4px;
  font-family: 'Quicksand',sans-serif;
  margin-right: 10px;
}

.nprice-ctrl {
  display: flex;
}

.nprice-ctrl::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin: -2px auto 0 10px;
  content: "";
  background-image: url(/assets/img/chevron-down.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}
.nprice-ctrl[aria-expanded=true]::after {
  transform: rotate(-180deg);
}

.price-card {
  background: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  padding: 5px 15px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.price-card div {
  width: 100%;
  font-family: 'Quicksand',sans-serif;
  text-align: center;
}
.price-card .price-heading {
  font-size: 14px;
  font-weight: 600;
}
.price-card .price-heading.text-secondary {
  font-size: 12px;
  margin-top: 2px;
}
.price-card .price-value {
  font-size: 26px;
}

.price-card .price-value .small{
  font-size: 14px;
}

.price-card .price-append {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .d-box {
    min-width: 140px;
  }
  .d-box.box-price {
    min-width: 150px;
  }
  .d-box .content{
    font-size: 16px;
  }
  .flight-box {
    width: 120px;
    flex-wrap: wrap;
    padding: 10px;
    align-content: center;
  }
  .flight-box div {
    width: 100%;
  }
  .flight-box .flight-icon {
    order: -1;
  }

  .price-card {
    padding: 5px;
    height: 110px;
  }
  .price-card .price-value {
    font-size: 18px;
  }
  .price-card .price-value .small{
    font-size: 10px;
    display: block;
    width: 100%;
  }
}
