.hw_text {
  font-family: "Bebas Neue", sans-serif;
}

/**** Style for Big Banner ****/
.big_banner {
  position: relative;
  margin-top: 25px;
  height: 500px;
  background-color: #000;
}
.big_banner::before {
  content: "";
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7987570028) 80%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.big_banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 1;
  filter: contrast(0.5);
}

@media (max-width: 992px) {
  .big_banner {
    margin-top: 10px;
    height: 375px;
  }
}
@media (max-width: 575px) {
  .big_banner {
    height: 250px;
  }
}
/**** Style for Home 4 Box ****/
.home_box {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  padding-top: 0;
  margin-top: -130px;
}
.home_box .row {
  margin: -10px;
}
.home_box .row .col-6 {
  padding: 10px;
}
.home_box .hb_item {
  position: relative;
  display: block;
  width: 100%;
  height: 300px;
  border-radius: 50px;
  overflow: hidden;
  border: solid 6px rgba(255, 255, 255, 0.8);
  color: #fff;
  transition: all 200ms ease-in-out;
}
.home_box .hb_item .hb_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 200ms ease-in-out;
  display: none;
}
.home_box .hb_item .hb_info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
}
.home_box .hb_item .hb_info span {
  display: block;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 500;
  transition: all 200ms ease-in-out;
  background-color: #ab815a;
  padding: 10px 22px;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 5px;
}
.home_box .hb_item:hover {
  border-color: #ab815a;
}
.home_box .hb_item:hover .hb_img {
  transform: scale(1.05);
  filter: saturate(0.3);
}
.home_box .hb_item:hover .hb_info span {
  margin-bottom: 30px;
}
.home_box .hb_item:hover .hb_info span:hover {
  background-color: #fff;
  color: #000;
}
.home_box .hb_item.icon_item {
  background-color: #ab815a;
  border: solid 2px #ab815a;
  height: auto;
  border-radius: 5px;
  padding: 30px 10px;
  padding-top: 25px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}
.home_box .hb_item.icon_item .hb_info {
  background-color: transparent;
  justify-content: center;
  gap: 30px;
  position: relative;
  top: auto;
  left: auto;
  padding: 0;
}
.home_box .hb_item.icon_item .hb_info .hb_icon {
  width: 125px;
  height: 125px;
  background-color: #fff;
  padding: 30px;
  border-radius: 50%;
  margin: 0;
  transition: all 200ms ease-in-out;
}
.home_box .hb_item.icon_item .hb_info .hb_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.home_box .hb_item.icon_item .hb_info span {
  font-size: 20px;
  background-color: #fff;
  color: #000;
  margin: 0;
}
.home_box .hb_item.icon_item:hover {
  background-color: #333;
}
.home_box .hb_item.icon_item:hover .hb_info span:hover {
  background-color: #ab815a;
  color: #fff;
}

@media (max-width: 575px) {
  .home_box {
    padding: 50px 0;
    margin-top: -165px;
  }
}
@media (max-width: 575px) {
  .home_box .row {
    margin: -7px;
  }
  .home_box .row .col-6 {
    padding: 7px;
  }
  .home_box .hb_item {
    height: 300px;
  }
  .home_box .hb_item:hover {
    border-color: #ab815a;
  }
  .home_box .hb_item:hover .hb_img {
    transform: scale(1.05);
    filter: saturate(0.3);
  }
  .home_box .hb_item.icon_item {
    padding: 20px 8px;
    padding-top: 18px;
  }
  .home_box .hb_item.icon_item .hb_info {
    gap: 20px;
  }
  .home_box .hb_item.icon_item .hb_info .hb_icon {
    width: 95px;
    height: 95px;
    padding: 23px;
  }
  .home_box .hb_item.icon_item .hb_info span {
    font-size: 16px;
    padding: 6px 18px;
    padding-top: 8px;
  }
}
.sec_title {
  font-size: 36px;
  line-height: 40px;
  font-weight: normal;
  color: #333;
  text-align: center;
  margin: 0;
  margin-bottom: 25px;
}
.sec_title span {
  color: #ab815a;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .sec_title {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 15px;
  }
}
/**** Style for Home Other Product ****/
.op_wrap {
  background-color: #fff8f2;
  padding: 80px 0;
  padding-top: 70px;
  position: relative;
}
.op_wrap .row {
  margin: -10px;
  justify-content: center;
}
.op_wrap .row .col-12 {
  padding: 10px;
}
.op_wrap .op_item {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 3px;
}
.op_wrap .op_item::after {
  content: "";
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 15%, rgba(0, 0, 0, 0.8015581232) 80%);
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 300ms ease-in-out;
}
.op_wrap .op_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 300ms ease-in-out;
}
.op_wrap .op_item .op_info {
  position: absolute;
  bottom: -52px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 15px 8px;
  transition: all 300ms ease-in-out;
}
.op_wrap .op_item .op_info h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}
.op_wrap .op_item .op_info a {
  display: inline-block;
  background-color: #ab815a;
  border: solid 1px #ab815a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  padding-bottom: 8px;
  border-radius: 0;
  margin-top: 15px;
  text-transform: uppercase;
  transition: all 200ms ease-in-out;
}
.op_wrap .op_item .op_info a:hover {
  background-color: #333;
  color: #fff;
}
.op_wrap .op_item:hover::after {
  height: 100%;
}
.op_wrap .op_item:hover img {
  transform: scale(1.05);
}
.op_wrap .op_item:hover .op_info {
  bottom: 10px;
}

@media (max-width: 992px) {
  .op_wrap {
    padding: 50px 0;
  }
}
/**** Style for Theme Modal ****/
.theme_modal .modal-dialog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 95%;
  height: 100%;
}
.theme_modal .modal-dialog .modal-content {
  position: relative;
  border: none;
  border-radius: 0px;
}
.theme_modal .modal-dialog .modal-content .cls_modal {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ab815a;
  color: #fff;
  font-size: 22px;
  padding: 0;
  border: none;
  width: 35px;
  height: 35px;
  line-height: 34px;
  border-radius: 0 0 0 15px;
  padding-left: 3px;
  padding-bottom: 3px;
}
.theme_modal .modal-dialog .modal-content .modal_title {
  text-align: center;
  font-size: 26px;
  font-weight: normal;
  color: #ab815a;
  letter-spacing: 1px;
  padding: 0 15px;
  margin: 0;
  margin-top: 35px;
}

/**** Style for Other Product Information ****/
.information_modal .modal-dialog {
  max-width: 550px;
}
.information_modal .modal-dialog .modal-content .modal_body {
  padding: 30px 15px;
}
.information_modal .modal-dialog .modal-content .modal_body h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}
.information_modal .modal-dialog .modal-content .modal_body img {
  width: 50%;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 10px 0;
}
.information_modal .modal-dialog .modal-content .modal_body p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  margin: 0;
}

/**** Style for Get Quote 2 Modal ****/
.get_quote .modal-dialog {
  max-width: 500px;
}
.get_quote .modal-dialog .modal-content .modal_body {
  padding: 20px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.get_quote .modal-dialog .modal-content .modal_body .pax_item p {
  display: inline-block;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 5px;
  color: #676767;
}
.get_quote .modal-dialog .modal-content .modal_body .pax_item .pax_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.get_quote .modal-dialog .modal-content .modal_body .pax_item .pax_inner .form_label {
  font-size: 14px;
}

.fieldrow {
  position: relative;
}
.fieldrow .form_label {
  display: inline-block;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 5px;
  color: #676767;
}
.fieldrow .form_input {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 12px;
  font-weight: 600;
  color: #000;
  background-color: rgba(220, 226, 228, 0.9);
  border-color: #dbdbdb;
  transition: all 200ms ease-in-out;
}
.fieldrow .form_input:focus {
  border-color: #1688b1;
}
.fieldrow textarea {
  resize: none;
}
.fieldrow.theme_select .bootstrap-select > .dropdown-toggle.bs-placeholder,
.fieldrow.theme_select .bootstrap-select > .dropdown-toggle {
  border: solid 1px #dbdbdb;
  background-color: rgba(220, 226, 228, 0.9) !important;
  padding: 10px 12px;
  color: #000;
  font-weight: 600;
}
.fieldrow.theme_select .bootstrap-select > .dropdown-toggle.bs-placeholder:hover, .fieldrow.theme_select .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.fieldrow.theme_select .bootstrap-select > .dropdown-toggle:hover,
.fieldrow.theme_select .bootstrap-select > .dropdown-toggle:focus {
  border-color: #1688b1;
}
.fieldrow.theme_select .bootstrap-select > .dropdown-toggle.bs-placeholder {
  color: #767676;
}
.fieldrow.theme_select .bootstrap-select div.dropdown-menu.show {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  left: 0 !important;
  top: 5px !important;
}
.fieldrow.theme_select .bootstrap-select .dropdown-menu li.selected a.dropdown-item,
.fieldrow.theme_select .bootstrap-select .dropdown-menu li a.dropdown-item:hover,
.fieldrow.theme_select .bootstrap-select .dropdown-menu li a.dropdown-item:focus {
  background-color: #ab815a;
}
.fieldrow .with_verify {
  position: relative;
  margin-top: 6px;
}
.fieldrow .with_verify .verify_btn {
  display: inline-block;
  vertical-align: middle;
  border: none;
  font-size: 12px;
  font-weight: 600;
  background-color: #ab815a;
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
}
.fieldrow .with_verify .form_check {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}
.fieldrow .with_verify .form_check label {
  margin: 0;
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: #676767;
  margin-left: 5px;
}

@media (max-width: 575px) {
  .fieldrow .form_label {
    font-size: 14px;
    line-height: 16px;
  }
  .fieldrow .form_input {
    font-size: 15px;
    padding: 8px 12px;
  }
  .fieldrow.theme_select .bootstrap-select > .dropdown-toggle.bs-placeholder,
  .fieldrow.theme_select .bootstrap-select > .dropdown-toggle {
    font-size: 15px;
    padding: 8px 12px;
  }
  .fieldrow.theme_select .bootstrap-select > .dropdown-toggle.bs-placeholder {
    color: #767676;
  }
  .fieldrow.theme_select .bootstrap-select div.dropdown-menu.show {
    padding: 0;
  }
  .fieldrow.theme_select .bootstrap-select .dropdown-menu li.selected a.dropdown-item,
  .fieldrow.theme_select .bootstrap-select .dropdown-menu li a.dropdown-item:hover,
  .fieldrow.theme_select .bootstrap-select .dropdown-menu li a.dropdown-item:focus {
    background-color: #ab815a;
  }
}
.otp_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.otp_box .form_input {
  text-align: center;
}

/**** Style for Quote View Page ****/
.bq_wrap {
  position: relative;
  background-color: #fff;
  padding: 60px 0;
  margin-top: 25px;
  min-height: calc(100vh - 138px);
}
.bq_wrap .table-striped thead tr th {
  background-color: #ab815a;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 1px;
  padding: 8px 12px;
}
.bq_wrap .table-striped tbody tr td {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 10px 12px;
}
.bq_wrap .button_group {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 992px) {
  .bq_wrap {
    min-height: calc(100vh - 117px);
    margin-top: 10px;
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .bq_wrap .table-striped thead tr th {
    font-size: 16px;
    padding-bottom: 6px;
  }
  .bq_wrap .table-striped tbody tr td {
    font-size: 14px;
  }
  .bq_wrap .button_group {
    margin-top: 25px;
    gap: 5px;
  }
}
/**** Style for Login Travel Agent Modal ****/
.login_agent .modal-dialog .modal-content .subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #767676;
  margin: 0;
  text-align: center;
}
.login_agent .modal-dialog .modal-content .modal_body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.login_agent .modal-dialog .modal-content .modal_body .get_otp {
  border: none;
  font-size: 12px;
  font-weight: 600;
  background-color: #ab815a;
  color: #fff;
  display: block;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 50px;
}
.login_agent .modal-dialog .modal-content .modal_body .big_btn {
  display: block;
  background-color: #1687b0;
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: normal;
  border: none;
  padding: 12px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
}
.login_agent .modal-dialog .modal-content .modal_body .big_btn span {
  position: relative;
  z-index: 1;
}
.login_agent .modal-dialog .modal-content .modal_body .big_btn::after {
  content: "";
  width: 100%;
  height: 0px;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 300ms ease-in-out;
}
.login_agent .modal-dialog .modal-content .modal_body .big_btn:hover::after {
  height: 100%;
}
.login_agent .modal-dialog .modal-content .havnt_acc {
  font-size: 15px;
  font-weight: 600;
  color: #767676;
  margin: 0;
  text-align: center;
  padding: 25px 15px;
  padding-top: 10px;
}
.login_agent .modal-dialog .modal-content .havnt_acc span {
  display: block;
}
.login_agent .modal-dialog .modal-content .havnt_acc a {
  display: inline-block;
  color: #ab815a;
  font-weight: 700;
  text-decoration: underline;
}
.login_agent .modal-dialog .modal-content .havnt_acc a:hover {
  color: #1688b1;
}

/**** Style for Register Travel Agent Modal ****/
.register_agent .modal-dialog {
  max-width: 700px;
}
.register_agent .modal-dialog .modal-content .subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #767676;
  margin: 0;
  text-align: center;
}
.register_agent .modal-dialog .modal-content .modal_body {
  padding: 30px 20px;
}
.register_agent .modal-dialog .modal-content .modal_body .row {
  margin: -7px;
}
.register_agent .modal-dialog .modal-content .modal_body .row .col-12 {
  padding: 7px;
}

@media (max-width: 768px) {
  .register_agent .modal-dialog {
    display: block;
    padding: 15px 0;
    overflow: auto;
  }
}

/* Override the global check-mark box (style.css:13232) so it only renders for
 * multi-select dropdowns. Single-selects (Vessel, Sailing Date, Package, etc.)
 * shouldn't show empty checkbox squares against every option. */
.bootstrap-select:has(select:not([multiple])) .dropdown-menu li a span.check-mark {
  display: none !important;
}

/* Loading indicator next to dropdowns. Shown via .is-loading class on the field wrapper. */
.field-loader {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #1f6feb;
  margin-top: 4px;
}
.is-loading > .field-loader { display: inline-flex; }
.field-loader::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 2px solid #cbd5e1;
  border-top-color: #1f6feb;
  border-radius: 50%;
  animation: dpro-spin 0.8s linear infinite;
}
@keyframes dpro-spin {
  to { transform: rotate(360deg); }
}

/* Compact age input row */
.age-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 13px;
}
.age-row label { margin: 0; }
.age-row input { width: 80px; }

/* Tiny age-range hint shown next to Adult / Child / Infant labels */
.pax-age-hint {
  color: #888;
  font-weight: 400;
  font-size: 11px;
  margin-left: 2px;
}

/* Single-line age-rules note shown under the PAX selectors */
.pax-rules {
  background: #fff8ec;
  border-left: 3px solid #c8a36a;
  padding: 6px 10px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #5a4a2c;
  line-height: 1.45;
  border-radius: 0 4px 4px 0;
}
.pax-rules strong {
  color: #3b2f15;
}

/* Each cabin block in the modal — visible card grouping */
.cabin-pax-block {
  border: 1px solid #e5e0d6;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: #fff;
}

/* Standalone Get Quote page (get-quote.html) */
.get-quote-page {
  /* Push content below the fixed-top navbar (~80px). */
  padding-top: 90px;
  background: #f7f4ee;
  min-height: calc(100vh - 60px);
}
.get-quote-page .quote-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 24px 24px 16px;
}
.get-quote-page .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px 0 0;
  border-top: 1px solid #eee;
  margin-top: 16px;
}

/* Disclaimer notice on the quote-view page (legal safeguard, informational). */
.quote-disclaimer {
  margin: 12px 0 18px;
  padding: 14px 16px;
  background: #fff8ec;
  border: 1px solid #f0d9a8;
  border-left: 4px solid #b08a55;
  border-radius: 6px;
  font-size: 14px;
  color: #4a3a1f;
}
.quote-disclaimer-title {
  margin: 0 0 8px;
  font-weight: bold;
  color: #5e4621;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quote-disclaimer ul {
  margin: 0;
  padding-left: 22px;
}
.quote-disclaimer li { margin-bottom: 4px; line-height: 1.5; }
.quote-disclaimer li:last-child { margin-bottom: 0; }
.quote-disclaimer strong { color: #2d2d2d; }

/* ARK Deal badge — calls out cabins where the client earns negotiated commission. */
.ark-badge {
  background: linear-gradient(135deg, #b08a55, #8b6a3d);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: bold;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

/* Quote-view heading row: cabin info on the left, Edit Quote link on the right. */
.quote-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.quote-heading-info { flex: 1 1 auto; min-width: 0; }
.quote-heading-edit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fff8ec;
  border: 1px solid #f0d9a8;
  border-radius: 4px;
  color: #5e4621;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
}
.quote-heading-edit:hover,
.quote-heading-edit:focus {
  background: #f7e9c8;
  color: #2d2d2d;
  text-decoration: none;
}
.quote-heading-edit i { font-size: 12px; }

/* Datepicker — sailing days popped, everything else greyed.
 * Body-scoped + high specificity + !important so we beat any vendor rule. */
body .datepicker table tr td.sailing-day,
body .datepicker.dropdown-menu table tr td.sailing-day {
  background-color: #fff8ec !important;
  background-image: none !important;
  color: #5e4621 !important;
  font-weight: bold !important;
  border: 1px solid #f0d9a8 !important;
  border-radius: 4px !important;
}
body .datepicker table tr td.sailing-day:hover {
  background-color: #b08a55 !important;
  color: #fff !important;
  cursor: pointer !important;
}
body .datepicker table tr td.sailing-day.active,
body .datepicker table tr td.sailing-day.active:hover,
body .datepicker table tr td.sailing-day.focused {
  background-color: #1f6feb !important;
  background-image: none !important;
  color: #fff !important;
  border-color: #1f6feb !important;
}
body .datepicker table tr td.day.disabled,
body .datepicker table tr td.day.disabled:hover,
body .datepicker.dropdown-menu table tr td.disabled {
  color: #ccc !important;
  background-color: #fafafa !important;
  background-image: none !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
  text-decoration-color: #e0e0e0 !important;
  border: 1px solid transparent !important;
}

/* Close (×) button injected into the datepicker dropdown.
 * Positioned OUTSIDE the picker's top-right corner so it never overlaps
 * the » next-month arrow in the calendar header. The negative offsets put
 * it floating above the picker's edge with a circular badge background. */
.dp-close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 22px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.dp-close-btn:hover,
.dp-close-btn:focus {
  color: #c0392b;
  border-color: #c0392b;
  outline: none;
}

/* Back button in the quote-view header navbar */
.header-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  margin-left: 16px;
  border: 1px solid #c8a36a;
  border-radius: 6px;
  background: #fff;
  color: #8a6a35;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.header-back-btn:hover,
.header-back-btn:focus {
  background: #c8a36a;
  color: #fff;
  text-decoration: none;
}
.header-back-btn i {
  font-size: 13px;
}

/* Back button placed in line with the "Available Quotes" title.
 * Flex row: back button on left, title centered, equal-width spacer on right
 * so the centered title remains visually centered on the page. */
.quote-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.quote-title-row .sec_title {
  flex: 1 1 auto;
  margin-bottom: 0;
  text-align: center;
}
.quote-title-row .quote-title-spacer,
.quote-title-row .quote-back-btn {
  flex: 0 0 auto;
  width: 96px;
}
.quote-back-btn {
  margin-left: 0;
}

/* Emailed-to pill placed above the "Available Quotes" title — centered */
#quote-emailed-banner:not(:empty) {
  margin-bottom: 12px;
  text-align: center;
}
#quote-emailed-banner .quote-emailed {
  display: inline-block;
}

/* Auto-email confirmation pill, shown on the quote heading */
.quote-emailed {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  background: #e6f4ea;
  color: #1f6f3d;
  border: 1px solid #b6dec5;
  border-radius: 4px;
  font-size: 13px;
}
.quote-emailed strong { color: #133d22; }

/* Edit-mode banner shown when ?edit=<id> is present. */
.edit-banner {
  background: #e8f3fb;
  border: 1px solid #b6d8ee;
  border-left: 4px solid #1f6feb;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #1f3a5f;
}
.edit-banner a { color: #1f6feb; font-size: 13px; }
.edit-banner strong { color: #133260; }

/* Confirmation diff — old vs new side by side. */
#confirmEditDiff .diff-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
#confirmEditDiff .diff-row:last-child { border-bottom: none; }
#confirmEditDiff .diff-label { color: #555; font-weight: bold; }
#confirmEditDiff .diff-old { color: #999; text-decoration: line-through; }
#confirmEditDiff .diff-new { color: #133260; font-weight: bold; }
#confirmEditDiff .diff-row.unchanged .diff-new { color: #555; font-weight: normal; }
#confirmEditDiff .diff-row.unchanged .diff-old { display: none; }
#confirmEditDiff .diff-section-head {
  background: #f3ede2;
  padding: 6px 8px;
  margin-top: 12px;
  font-weight: bold;
  border-radius: 4px;
}
@media (max-width: 575px) {
  #confirmEditDiff .diff-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  #confirmEditDiff .diff-old::before { content: 'Was: '; }
  #confirmEditDiff .diff-new::before { content: 'Now: '; }
}

/* Pre-submit disclaimers — all three must be checked to enable Get Quote. */
.disclaimers {
  margin-top: 18px;
  padding: 14px 14px 8px;
  background: #fff8ec;
  border: 1px solid #f0d9a8;
  border-left: 4px solid #b08a55;
  border-radius: 6px;
}
.disclaimers .disclaimer-title {
  margin: 0 0 8px;
  font-weight: bold;
  color: #5e4621;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.disclaimer-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}
.disclaimer-row input[type="checkbox"] {
  margin-top: 3px;
  flex: 0 0 auto;
  cursor: pointer;
}
.disclaimer-row span { flex: 1; }
.disclaimer-row strong { color: #2d2d2d; }
.btn[data-action="get-quote"][disabled] { opacity: 0.55; cursor: not-allowed; }
@media (max-width: 575px) {
  .get-quote-page { padding-top: 70px; }
  .get-quote-page .quote-card { padding: 16px 14px; border-radius: 6px; }
  .get-quote-page .form-actions { flex-direction: column; }
  .get-quote-page .form-actions .btn { width: 100%; }
  /* PAX dropdowns wrap nicely on small screens */
  .cabin-pax-row > select { flex: 0 0 64px; }
  .cabin-pax-row > label { flex: 0 0 auto; }
}
/* The bootstrap-select wrapper should fill the available width on this page. */
.get-quote-page .bootstrap-select { width: 100% !important; }

/* Cabin Category: clear border around the bootstrap-select wrapper */
.cabin-cat-field .bootstrap-select > .dropdown-toggle.btn,
.cabin-cat-field .bootstrap-select > .dropdown-toggle.btn:focus,
.cabin-cat-field .bootstrap-select > .dropdown-toggle.btn:hover {
  border: 1px solid #ced4da !important;
  background-color: #fff !important;
  color: #495057;
  box-shadow: none;
}
.cabin-cat-field .bootstrap-select.disabled > .dropdown-toggle.btn,
.cabin-cat-field .bootstrap-select > select[disabled] ~ .dropdown-toggle.btn {
  background-color: #e9ecef !important;
  color: #6c757d;
}
/*# sourceMappingURL=custom.css.map */