/* src/tour-price.css */
.tour-price2date {
  border: 1px solid #7a8ca3;
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(19, 54, 86, 0.08);
  padding: 14px 18px 16px;
  color: #28435d;
}
.tour-price2date__controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
label.tour-price2date__field {
  margin: 0;
  width: calc(25% + 50px);
}
label.tour-price2date__field.tour-price2date__field-date {
  width: 140px;
}
.tour-price2date__field select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #9bc0de;
  border-radius: 11px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 10px rgba(52, 110, 159, 0.12);
  color: #5b7790;
  font-size: 14px;
  padding: 0 5px;
}
.tour-price2date__button:disabled {
  opacity: 0.6;
  cursor: default;
}
.tour-price2date__content {
  margin-top: 12px;
}
.tour-price2date__title {
  color: #1b3650;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.tour-price2date__loading,
.tour-price2date__error {
  margin-top: 10px;
  font-size: 14px;
}
.tour-price2date__error {
  color: #c33434;
}
.tour-price2date__inline-link {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0f75c8;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.tour-price2date__bottom {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 5px;
}
.tour-price2date__prices {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.tour-price2date__price-card {
  min-width: 140px;
}
.tour-price2date__old-price {
  color: #ff5438;
  font-size: 18px;
  font-weight: 700;
  text-decoration: line-through;
}
.tour-price2date__current-price {
  color: #0f75c8;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-top: -4px;
}
.tour-price2date__price-label {
  color: #4c6378;
  font-size: 14px;
  line-height: 1.2;
}
.tour-price2date__promo {
  flex: 1;
  min-width: 220px;
  color: #4d6275;
  font-size: 14px;
  margin-bottom: 5px;
}
.tour-price2date__promo-item {
  display: flex;
  gap: 15px;
}
.tour-price2date__promo-name {
  color: #f28a1f;
  font-weight: 700;
}
.tour-price2date__promo-description p {
  margin: 0 0 6px;
}
.tour-price2date_icons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
}
.tour-price2date_icon {
  display: inline;
  margin-right: 5px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.tour-priceSeparator {
  width: 1px;
  height: 70px;
  background: #ccc;
}
@media (max-width: 991px) {
  .tour-price2date__controls {
    flex-wrap: wrap;
  }
  label.tour-price2date__field {
    margin: 0;
    width: calc(50% - 85px);
  }
  .tour-price2date__button {
    flex-basis: 100%;
  }
  .tour-price2date__bottom {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 639px) {
  .tour-price2date__controls {
    flex-flow: column;
  }
  label.tour-price2date__field.tour-price2date__field-date {
    width: 100%;
  }
  label.tour-price2date__field {
    width: 100%;
  }
}
