/* ================================
   DRIVELUX — Universal Request Form
   Shortcodes: [dl_universal_request_form], [dl_tour_request_form]
   Optimized clean version v1.6.0
   ================================ */

.dl-urf {
  --dl-urf-gold: #c99b62;
  --dl-urf-gold-soft: #efc780;
  --dl-urf-button: #d7a760;
  --dl-urf-button-hover: #efc780;

  --dl-urf-dark: rgba(9, 9, 8, 0.72);
  --dl-urf-dark-focus: rgba(9, 9, 8, 0.88);

  --dl-urf-text: #ffffff;
  --dl-urf-muted: rgba(255, 255, 255, 0.64);
  --dl-urf-line: rgba(255, 255, 255, 0.16);
  --dl-urf-line-focus: rgba(239, 199, 128, 0.78);

  width: min(100%, 520px);
  color: var(--dl-urf-text);
  font-family: inherit;
}

.dl-urf,
.dl-urf * {
  box-sizing: border-box;
}

/* Убираем всё лишнее от старой версии формы */
.dl-urf__card,
.dl-urf__content,
.dl-urf__form {

  box-shadow: none;
}

.dl-urf__kicker,
.dl-urf__title,
.dl-urf__intro,
.dl-urf__call,
.dl-urf__note {
  display: none !important;
}

/* ================================
   Grid
   ================================ */

.dl-urf__grid,
.dl-urf-modal__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dl-urf__field {
  position: relative;
  display: block;
  min-width: 0;
}

.dl-urf__field--wide {
  grid-column: 1 / -1;
}

/* ================================
   Fields
   ================================ */

.dl-urf__field input,
.dl-urf__field select,
.dl-urf__field textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--dl-urf-line);
  border-radius: 14px;
  outline: none;
  background-color: var(--dl-urf-dark);
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none;
  transition:
    border-color .22s ease,
    background-color .22s ease,
    box-shadow .22s ease;
}

.dl-urf__field input,
.dl-urf__field select {
  height: 54px;
  padding: 0 16px;
}

.dl-urf__field textarea {
  min-height: 112px;
  height: auto;
  padding: 15px 16px;
  line-height: 1.45;
  resize: vertical;
}

.dl-urf__field input::placeholder,
.dl-urf__field textarea::placeholder {
  color: var(--dl-urf-muted);
  opacity: 1;
}

.dl-urf__field input:focus,
.dl-urf__field select:focus,
.dl-urf__field textarea:focus {
  border-color: var(--dl-urf-line-focus);
  background-color: var(--dl-urf-dark-focus);
  box-shadow: 0 0 0 4px rgba(201, 155, 98, 0.14);
}

.dl-urf__field.is-error input,
.dl-urf__field.is-error select,
.dl-urf__field.is-error textarea {
  border-color: rgba(255, 116, 100, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 116, 100, 0.13);
}

/* ================================
   Select passengers
   ================================ */

.dl-urf__field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--dl-urf-gold-soft) 50%),
    linear-gradient(135deg, var(--dl-urf-gold-soft) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.dl-urf__field select option {
  background: #11100e;
  color: #ffffff;
}

/* ================================
   Date icon
   ================================ */

.dl-urf__field--date::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 17px;
  height: 17px;
  pointer-events: none;
  transform: translateY(-50%);
  opacity: .86;
  background: currentColor;
  color: var(--dl-urf-gold-soft);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3v3M17 3v3M4.5 9.2h15M6.5 5h11A2.5 2.5 0 0 1 20 7.5v10A2.5 2.5 0 0 1 17.5 20h-11A2.5 2.5 0 0 1 4 17.5v-10A2.5 2.5 0 0 1 6.5 5Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3v3M17 3v3M4.5 9.2h15M6.5 5h11A2.5 2.5 0 0 1 20 7.5v10A2.5 2.5 0 0 1 17.5 20h-11A2.5 2.5 0 0 1 4 17.5v-10A2.5 2.5 0 0 1 6.5 5Z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.dl-urf__field--date input {
  padding-right: 42px;
  cursor: pointer;
}

/* ================================
   Buttons — main form and popup
   ================================ */

.dl-urf button,
.dl-urf-modal button {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

.dl-urf__primary,
.dl-urf__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  border-radius: 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .22s ease,
    border-color .22s ease,
    background-color .22s ease,
    color .22s ease,
    box-shadow .22s ease;
}

.dl-urf__primary {
  min-height: 60px;
  margin-top: 22px;
  padding: 0 22px;
  border: 1px solid rgba(239, 199, 128, 0.92);
  background: var(--dl-urf-button);
  color: #090806;
  box-shadow: 0 18px 34px rgba(201, 155, 98, 0.22);
}

.dl-urf__primary:hover {
  transform: translateY(-2px);
  background: var(--dl-urf-button-hover);
  color: #090806;
  border-color: var(--dl-urf-button-hover);
  box-shadow: 0 24px 42px rgba(201, 155, 98, 0.28);
}

.dl-urf__primary:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.dl-urf__primary--compact {
  min-height: 58px;
  margin-top: 0;
}

.dl-urf__secondary {
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(239, 199, 128, 0.86);
  background: var(--dl-urf-button);
  color: #090806;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.dl-urf__secondary:hover {
  background: var(--dl-urf-button-hover);
  border-color: var(--dl-urf-button-hover);
  color: #090806;
  transform: translateY(-1px);
}

/* ================================
   Modal
   ================================ */

.dl-urf-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.dl-urf-modal.is-open {
  display: flex;
}

.dl-urf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.dl-urf-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  max-height: calc(100vh - 44px);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dl-urf-modal__content {
  width: 100%;
}

.dl-urf-modal__x {
  position: absolute;
  top: -52px;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;

  border: 1px solid rgba(239, 199, 128, 0.95);
  border-radius: 999px;

  background: var(--dl-urf-button);
  color: #ffffff;

  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  text-align: center;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 1;
  transition:
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease;
}

.dl-urf-modal__x:hover {
  background: var(--dl-urf-button-hover);
  color: #090806;
  border-color: var(--dl-urf-button-hover);
}

.dl-urf-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 56px;
}

.dl-urf-message {
  min-height: 20px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.45;
}

.dl-urf-message.is-error {
  color: #ffb2a8;
}

.dl-urf-message.is-success {
  color: var(--dl-urf-gold-soft);
}

/* ================================
   Success
   ================================ */

.dl-urf-success {
  width: 100%;
  text-align: center;
  padding: 10px 0 0;
}

.dl-urf-success__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 66px;
  height: 66px;
  margin-bottom: 20px;

  border-radius: 999px;
  border: 1px solid rgba(239, 199, 128, .78);

  background: rgba(201, 155, 98, .14);
  color: var(--dl-urf-gold-soft);

  font-size: 34px;
}

.dl-urf-success h3 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.25;
}

body.dl-urf-modal-open {
  overflow: hidden;
}

/* ================================
   Screen reader
   ================================ */

.dl-urf .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================
   Air Datepicker
   ================================ */

body .air-datepicker.dl-urf-datepicker {
  z-index: 100000 !important;

  border: 1px solid rgba(201, 155, 98, .70) !important;
  border-radius: 18px !important;

  background: rgba(18, 17, 15, .98) !important;
  color: #ffffff !important;

  box-shadow: 0 24px 70px rgba(0, 0, 0, .58) !important;
  font-family: inherit !important;

  overflow: hidden !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-nav {
  min-height: 54px !important;
  padding: 12px 14px 9px !important;
  border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
  background: transparent !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-nav--title,
body .air-datepicker.dl-urf-datepicker .air-datepicker-nav--action {
  color: #ffffff !important;
  border-radius: 12px !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-nav--title:hover,
body .air-datepicker.dl-urf-datepicker .air-datepicker-nav--action:hover {
  background: rgba(201, 155, 98, .16) !important;
}

body .air-datepicker.dl-urf-datepicker .dl-urf-adp-title {
  margin-right: 6px !important;
  color: #ffffff !important;
  font-weight: 720 !important;
}

body .air-datepicker.dl-urf-datepicker .dl-urf-adp-year,
body .air-datepicker.dl-urf-datepicker .air-datepicker-nav--title i {
  color: var(--dl-urf-gold-soft) !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker--content {
  padding: 12px 14px 8px !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-body--day-names {
  margin: 0 0 8px !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-body--day-name {
  color: rgba(239, 199, 128, .86) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-cell {
  height: 32px !important;
  border-radius: 10px !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .88) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-cell:hover {
  background: rgba(201, 155, 98, .18) !important;
  color: #ffffff !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-cell.-current- {
  border: 1px solid rgba(239, 199, 128, .65) !important;
  color: #ffffff !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-cell.-selected-,
body .air-datepicker.dl-urf-datepicker .air-datepicker-cell.-selected-.-current- {
  background: var(--dl-urf-button) !important;
  color: #090806 !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker-cell.-other-month-,
body .air-datepicker.dl-urf-datepicker .air-datepicker-cell.-disabled- {
  color: rgba(255, 255, 255, .28) !important;
}

/* ================================
   Air Datepicker — bottom buttons
   Oggi / Cancella
   ================================ */

body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons {
  position: relative !important;
  display: block !important;

  width: 100% !important;
  height: 72px !important;

  padding: 14px !important;
  margin: 0 !important;

  border-top: 1px solid rgba(201, 155, 98, 0.38) !important;
  background: rgba(18, 17, 15, 0.98) !important;

  box-sizing: border-box !important;
}

/* Calendar buttons */
body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button {
  position: absolute !important;
  top: 14px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 44px !important;
  min-height: 44px !important;

  margin: 0 !important;
  padding: 0 16px !important;

  border: 1px solid rgba(239, 199, 128, 0.92) !important;
  border-radius: 12px !important;

  background: linear-gradient(135deg, #efc780, #d9aa64) !important;
  color: #090806 !important;

  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;

  box-shadow: 0 8px 18px rgba(201, 155, 98, 0.16) !important;
  opacity: 1 !important;
  cursor: pointer !important;

  appearance: none !important;
  -webkit-appearance: none !important;

  box-sizing: border-box !important;
  transition:
    background .22s ease,
    border-color .22s ease,
    transform .22s ease,
    box-shadow .22s ease !important;
}

/* Left button */
body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button:nth-child(1) {
  left: 14px !important;
  right: calc(50% + 5px) !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

/* Right button */
body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button:nth-child(2) {
  left: calc(50% + 5px) !important;
  right: 14px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 100% !important;
  height: 44px !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #090806 !important;
  font: inherit !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-align: center !important;

  position: static !important;
  top: auto !important;
  transform: none !important;

  opacity: 1 !important;
  white-space: nowrap !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button:hover {
  background: linear-gradient(135deg, #f5d294, #e2b76f) !important;
  border-color: #f5d294 !important;
  color: #090806 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 24px rgba(201, 155, 98, 0.22) !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button:hover span {
  color: #090806 !important;
}

body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 5px 12px rgba(201, 155, 98, 0.14) !important;
}

/* ================================
   Mobile
   ================================ */

@media (max-width: 640px) {
  .dl-urf {
    width: 100%;
  }

  .dl-urf__grid,
  .dl-urf-modal__fields {
    grid-template-columns: 1fr;
  }

  .dl-urf-modal {
    align-items: flex-start;
    padding: 88px 18px 22px;
  }

  .dl-urf-modal__actions {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .dl-urf-modal__x {
    top: -54px;
    right: 0;
  }

  body .air-datepicker.dl-urf-datepicker {
    max-width: calc(100vw - 24px) !important;
  }

  body .air-datepicker.dl-urf-datepicker .air-datepicker-cell {
    height: 34px !important;
  }

  body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons {
    height: 68px !important;
    padding: 12px !important;
  }

  body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button {
    top: 12px !important;
    height: 42px !important;
    min-height: 42px !important;
    font-size: 13px !important;
  }

  body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button:nth-child(1) {
    left: 12px !important;
    right: calc(50% + 4px) !important;
  }

  body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button:nth-child(2) {
    left: calc(50% + 4px) !important;
    right: 12px !important;
  }

  body .air-datepicker.dl-urf-datepicker .air-datepicker--buttons .air-datepicker-button span {
    height: 42px !important;
    font-size: 13px !important;
  }
}

/* ================================
   Two-step tour flow
   ================================ */

.dl-urf__steps {
  width: 100%;
}

.dl-urf__step[hidden] {
  display: none !important;
}

.dl-urf__step {
  animation: dlUrfStepFade .24s ease both;
}

@keyframes dlUrfStepFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dl-urf__step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 14px;
}

.dl-urf__step-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(201, 155, 98, .36);
  border-radius: 999px;
  background: rgba(201, 155, 98, .08);
  color: rgba(239, 199, 128, .92);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dl-urf__actions {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: 20px;
}

.dl-urf__actions--split {
  grid-template-columns: .82fr 1.18fr;
}

.dl-urf__actions .dl-urf__primary,
.dl-urf__actions .dl-urf__secondary {
  margin-top: 0;
}

/* ================================
   Tour request form variant
   Shortcode: [dl_tour_request_form]
   ================================ */

.dl-urf--tour {
  width: min(100%, 620px);
}

.dl-urf--tour .dl-urf__grid {
  gap: 14px;
}

.dl-urf--tour .dl-urf__field textarea {
  min-height: 118px;
}

.dl-urf--tour .dl-urf__primary {
  margin-top: 20px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dl-urf__main[hidden],
.dl-urf-success[hidden] {
  display: none !important;
}

.dl-urf__note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.45;
}

.dl-urf--tour .dl-urf-success {
  padding: 34px 0 10px;
}

.dl-urf--tour .dl-urf-success h3 {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .dl-urf--tour {
    width: 100%;
  }

  .dl-urf--tour .dl-urf__primary {
    letter-spacing: .08em;
  }

  .dl-urf__actions--split {
    grid-template-columns: 1fr;
  }

  .dl-urf__step-count {
    width: 100%;
    justify-content: center;
    letter-spacing: .1em;
  }
}
/* ================================
   DRIVELUX — Tour form step 2 / success fixes
   ================================ */

/* Step 2 buttons: equal width */
.dl-urf--tour .dl-urf__actions--split {
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  align-items: stretch;
}

/* Make both buttons visually identical */
.dl-urf--tour .dl-urf__actions--split .dl-urf__primary,
.dl-urf--tour .dl-urf__actions--split .dl-urf__secondary {
  width: 100%;
  min-height: 58px;
  margin-top: 0 !important;
  padding: 0 18px;
  white-space: normal;
  text-align: center;
}

/* Submit button should not explode because of long text */
.dl-urf--tour .js-dl-urf-submit {
  font-size: 13px;
  letter-spacing: .12em;
  line-height: 1.18;
  text-transform: uppercase;
}

/* Message should not reserve too much space */
.dl-urf--tour .dl-urf-message {
  min-height: 0;
  margin-top: 14px;
}

/* When success is visible — hide the form content even if JS did not hide it */
.dl-urf--tour:has(.dl-urf-success:not([hidden])) .dl-urf__main {
  display: none !important;
}

/* Center success inside the form area */
.dl-urf--tour .dl-urf-success:not([hidden]) {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 330px;
  width: 100%;
  padding: 20px 0 !important;
  text-align: center;
}

.dl-urf--tour .dl-urf-success__mark {
  margin-bottom: 18px;
}

.dl-urf--tour .dl-urf-success h3 {
  max-width: 560px;
  margin: 0 auto !important;
  font-size: 22px;
  line-height: 1.3;
}

/* Mobile */
@media (max-width: 640px) {
  .dl-urf--tour .dl-urf__actions--split {
    grid-template-columns: 1fr !important;
  }

  .dl-urf--tour .dl-urf-success:not([hidden]) {
    min-height: 280px;
    padding: 10px 0 !important;
  }

  .dl-urf--tour .dl-urf-success h3 {
    font-size: 20px;
  }
}
/* ================================
   Selected itinerary integration
   [dl_tour_program] -> [dl_tour_request_form]
   ================================ */

#tour-request-form {
  scroll-margin-top: 110px;
}

.dl-urf-itinerary[hidden],
.dl-urf-itinerary__details[hidden],
.dl-urf-itinerary__payload[hidden] {
  display: none !important;
}

.dl-urf-itinerary {
  position: relative;
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid rgba(201, 155, 98, .48);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(201, 155, 98, .12), rgba(201, 155, 98, .025) 45%),
    rgba(10, 9, 8, .88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

.dl-urf-itinerary__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 12px;
}

.dl-urf-itinerary__summary {
  min-width: 0;
}

.dl-urf-itinerary__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: rgba(239, 199, 128, .96);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dl-urf-itinerary__count {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.25;
}

.dl-urf-itinerary__count strong {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.dl-urf .dl-urf-itinerary__toggle,
.elementor .dl-urf .dl-urf-itinerary__toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 0 0 auto;
  min-height: 36px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 1px solid rgba(239, 199, 128, .34) !important;
  border-radius: 999px !important;
  background: rgba(201, 155, 98, .08) !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, .82) !important;
  font: inherit !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  cursor: pointer;
  transition:
    border-color .2s ease,
    background-color .2s ease,
    color .2s ease;
}

.dl-urf .dl-urf-itinerary__toggle:hover,
.dl-urf .dl-urf-itinerary__toggle:focus-visible,
.elementor .dl-urf .dl-urf-itinerary__toggle:hover {
  border-color: rgba(239, 199, 128, .72) !important;
  background: rgba(201, 155, 98, .15) !important;
  color: #ffffff !important;
}

.dl-urf-itinerary__toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.dl-urf-itinerary__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.dl-urf-itinerary__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 16px 13px;
}

.dl-urf-itinerary__location {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
}

.dl-urf-itinerary__details {
  max-height: 230px;
  overflow-y: auto;
  padding: 14px 16px 15px;
  border-top: 1px solid rgba(201, 155, 98, .22);
  border-bottom: 1px solid rgba(201, 155, 98, .18);
  background: rgba(0, 0, 0, .16);
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 199, 128, .55) rgba(255, 255, 255, .04);
}

.dl-urf-itinerary__details::-webkit-scrollbar {
  width: 7px;
}

.dl-urf-itinerary__details::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .04);
}

.dl-urf-itinerary__details::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(239, 199, 128, .55);
  background-clip: padding-box;
}

.dl-urf-itinerary__groups {
  display: grid;
  gap: 15px;
}

.dl-urf-itinerary__group {
  min-width: 0;
}

.dl-urf-itinerary__group h4 {
  margin: 0 0 7px;
  color: rgba(239, 199, 128, .94);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .02em;
}

.dl-urf-itinerary__group ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dl-urf-itinerary__group li {
  position: relative;
  margin: 0;
  padding-left: 13px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.dl-urf-itinerary__group li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dl-urf-gold-soft);
}

.dl-urf-itinerary__footer {
  display: flex;
  justify-content: flex-end;
  padding: 10px 14px;
}

.dl-urf .dl-urf-itinerary__modify,
.elementor .dl-urf .dl-urf-itinerary__modify {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(239, 199, 128, .92) !important;
  font: inherit !important;
  font-size: 10px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  letter-spacing: .03em !important;
  text-transform: uppercase !important;
  cursor: pointer;
}

.dl-urf .dl-urf-itinerary__modify:hover,
.dl-urf .dl-urf-itinerary__modify:focus-visible,
.elementor .dl-urf .dl-urf-itinerary__modify:hover {
  color: #ffffff !important;
  background: rgba(201, 155, 98, .08) !important;
}

@media (max-width: 640px) {
  #tour-request-form {
    scroll-margin-top: 82px;
  }

  .dl-urf-itinerary__head {
    align-items: flex-start;
    gap: 12px;
    padding: 13px 13px 11px;
  }

  .dl-urf-itinerary__toggle {
    min-height: 34px !important;
    padding-inline: 10px !important;
  }

  .dl-urf-itinerary__locations {
    padding: 0 13px 12px;
  }

  .dl-urf-itinerary__details {
    max-height: 210px;
    padding: 13px;
  }

  .dl-urf-itinerary__footer {
    padding: 9px 11px;
  }
}
