/* ===============================
   DISABLE ALL TRAVELER SEARCH UI
=============================== */
.st-banner-search-form.style_2 {
  display: none !important;
  margin-top: 0;
}

.banner[class^="st_"],
.banner[class*=" st_"] {
  background-image: none !important;
  background-color: rgb(255, 255, 255) !important;
  height: 0px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.banner::before,
.banner::after {
  display: none !important;
}

.bs-search-root,
.bs-search-root * {
  box-sizing: border-box;
  font-family: Poppins, Inter, system-ui, -apple-system;
}

.bs-search-root {
  display: flex;
  justify-content: center;
  margin: 48px 0 32px;
  position: relative;
  z-index: 50;
}

/* BARRE */
.bs-searchbar {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 0;
  gap: 0;
  box-shadow: 0 10px 35px rgba(0,0,0,.12);
  border: 1px solid #eee;
  max-width: 920px;
  width: 100%;
  height: 80px;
}

/* ZONES */
.bs-zone {
  flex: 1;
  margin: 0;
  height: 100%;
  padding: 14px 22px;
  cursor: pointer;
  border-radius: 999px;
  transition: background .25s ease;
}

.bs-zone:hover {
  background: #f2f2f2;
}

.bs-zone label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #222;
  margin-bottom: 2px;
}

.bs-zone span {
  font-size: 14px;
  color: #717171;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* SÉPARATEUR */
.bs-divider {
  width: 1px;
  height: 28px;
  background: #f1f1f1;
}

/* BOUTON SEARCH */
.bs-search-btn {
  position: absolute;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #133ea9;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.bs-search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(56, 146, 255, 0.4);
}

.bs-search-icon {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bs-search-overlay {
  position: absolute;
  top: 90px;
  left: 0;
  transform: translateY(10px);
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: calc(100vh - 140px);
  overflow: visible;
  width: auto;
  max-width: 920px;

  background: #fff;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,.18);

  opacity: 0;
  pointer-events: none;

  transition:
    opacity .25s ease,
    transform .25s ease,
    left .45s cubic-bezier(.22,1,.36,1),
    max-width .45s cubic-bezier(.22,1,.36,1);
}

.bs-search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bs-panels-container {
  position: relative;
  min-height: 120px;
  margin: 0 auto;
  padding: 28px;
  overflow-y: auto; /* ✅ scroll interne */
  -webkit-overflow-scrolling: touch;

  max-width: 600px; /* fallback */
  transition:
    height .35s cubic-bezier(.22,1,.36,1),
    max-width .55s cubic-bezier(.16,1,.3,1);
}

.bs-panels-viewport {
  position: relative;
  overflow: hidden;
}

/* PANNEAUX */
.bs-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  transform: translateX(40px);
  pointer-events: none;
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    opacity .35s ease;
}

.bs-panel.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.bs-panel:not(.is-active) {
  position: absolute;
}

.bs-panel.is-leaving-left {
  transform: translateX(-40px);
  opacity: 0;
}

.bs-panel.is-leaving-right {
  transform: translateX(40px);
  opacity: 0;
}

.bs-panel h3 {
  font-size: 14px;
  font-weight: 500;
}

/* SUGGESTIONS */
.bs-suggestion {
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
}

.bs-suggestion:hover {
  background: #f7f7f7;
}

.bs-panel input[type="date"],
.bs-panel input[type="number"] {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

.bs-zone.is-active {
  background: #f0f0f0;
  box-shadow: inset 0 0 0 1px #ddd;
}

.bs-panel[data-panel="who"] input {
  margin-bottom: 16px;
}

/* ===============================
   FLATPICKR AIRBNB FIX
=============================== */

.bs-panel[data-panel="when"] .flatpickr-calendar {
  width: 100% !important;
  box-shadow: none;
  justify-content: center;
  align-items: center;
}

.bs-panel[data-panel="when"] .flatpickr-innerContainer {
  justify-content: center;
}

.bs-panel[data-panel="when"] .flatpickr-days {
  gap: 32px;
}

.bs-panel[data-panel="when"] .dayContainer {
  flex: 1;
}

.bs-panel[data-panel="when"] .flatpickr-months {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.bs-panel[data-panel="when"] .flatpickr-month {
  margin: 0 80px;
  text-align: center;
  min-width: 200px;
}

/* force position flèches */
.bs-panel[data-panel="when"] .flatpickr-prev-month {
  grid-column: 1;
  justify-self: start;
}

.bs-panel[data-panel="when"] .flatpickr-next-month {
  grid-column: 3;
  justify-self: end;
}

.bs-panel[data-panel="when"] .flatpickr-current-month {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
}

/* wrapper année = inline */
.bs-panel[data-panel="when"] .flatpickr-current-month .numInputWrapper {
  display: inline-flex !important;
  align-items: center;
}

/* input année */
.bs-panel[data-panel="when"] .flatpickr-current-month input.cur-year {
  width: auto !important;
  padding: 0;
  margin: 0;
  font-weight: 600;
  background: transparent;
  border: none;
  pointer-events: none; /* look premium, non éditable */
}

/* mois */
.bs-panel[data-panel="when"] .flatpickr-current-month .cur-month {
  font-weight: 600;
}

/* kill arrows */
.bs-panel[data-panel="when"] .numInputWrapper span {
  display: none !important;
}

/* Flèches sorties du flux */
.bs-panel[data-panel="when"] .flatpickr-prev-month,
.bs-panel[data-panel="when"] .flatpickr-next-month {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* Flèche gauche */
.bs-panel[data-panel="when"] .flatpickr-prev-month {
  left: 0;
}

/* Flèche droite */
.bs-panel[data-panel="when"] .flatpickr-next-month {
  right: 0;
}

/* ==================================================
   FLATPICKR – HARD RESET (ELEMENTOR / TRAVELER FIX)
================================================== */

.flatpickr-day {
  aspect-ratio: 1 / 1;
  max-width: 40px;
  margin: auto;
  transition: background .2s ease, color .2s ease;
}

/* WEEKDAYS — Airbnb spacing */

.flatpickr-weekdays {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.flatpickr-weekdaycontainer {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
}

.flatpickr-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #777;
}

.flatpickr-day.disabled {
  opacity: .25;
  cursor: not-allowed;
}

/* Airbnb-style range */

.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #000;
  color: #fff;
  border-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.flatpickr-day.inRange {
  background: #f1f1f1;
  color: #000;
  border-radius: 0;
}

.flatpickr-day:hover {
  background: #eee;
  border-radius: 50%;
}

.bs-datepicker {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* ===============================
   GUESTS ROW
=============================== */

.bs-guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.bs-guest-row:last-child {
  border-bottom: none;
}

.bs-guest-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

.bs-guest-meta span {
  font-size: 13px;
  color: #717171;
}

.bs-guest-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bs-guest-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.bs-guest-btn:hover {
  background: #f7f7f7;
}

.bs-guest-controls span {
  min-width: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* ===============================
   WHERE PANEL (DESTINATIONS)
=============================== */

.bs-where-panel {
  padding: 0;
  border-radius: 28px;
}

.bs-where-layout {
  display: flex;
  width: 100%;
  min-height: 360px;
  padding: 0;
  margin: 0;
  border-radius: 28px;
}

.bs-panels-container:has(.bs-panel[data-panel="where"].is-active) {
  padding: 0;
}

.bs-col-countries {
  flex: 0 0 25%;
  padding: 8px;
  background: #fafafa;
  border-right: 1px solid #eee;
}

.bs-col-cities {
  flex: 1;
  padding: 10px;
  overflow: hidden;
}

.bs-preview-panel {
  flex: 0 0 0;
  position: relative;
  opacity: 0;
  order: 1;
  pointer-events: none;
  transition: flex-basis .45s cubic-bezier(.22,.61,.36,1), opacity .3s ease;
  overflow: hidden;
  color: #fff;
  border-radius: 12px;
}

.bs-where-panel.has-preview .bs-preview-panel {
  flex-basis: 42%;
  opacity: 1;
  pointer-events: auto;
}

.bs-country-item,
.bs-city-item {
  padding: 14px 18px;
  border-radius: 14px;
  cursor: pointer;
  transition: .25s ease;
}

.bs-country-item:hover {
  background: #e8f0ff;
  color: #1e5eff;
}

.bs-city-item:hover {
  background: #e8f0ff;
  color: #1e5eff;
}

/* ===============================
   PREVIEW – SKELETON
=============================== */

.bs-preview-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    #e9edf3 25%,
    #f5f7fa 37%,
    #e9edf3 63%
  );
  background-size: 400% 100%;
  animation: skeleton-loading 1.2s ease-in-out infinite;
  z-index: 1;
}

@keyframes skeleton-loading {
  to {
    background-position: -400% 0;
  }
}

/* ===============================
   PREVIEW – IMAGES
=============================== */

.bs-preview-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 3;
}

.bs-preview-panel.is-loaded .bs-preview-skeleton {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease;
}

/* active image */
.bs-preview-image.is-active {
  opacity: 1;
}

/* gradient overlay */
.bs-preview-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(73,112,170,.85),
    rgba(73,112,170,.25)
  );
  z-index: 3;
}

/* content above all */
.bs-preview-content {
  position: relative;
  z-index: 99 !important;
  padding: 32px;
}

@media (min-width: 769px) {
  .bs-mobile-header {
    display: none;
  }

  .bs-mobile-summary {
    display: none;
  }

  .bs-mobile-footer {
    display: none;
  }
}

@media (max-width: 768px) {
  .banner[class^="st_"],
  .banner[class*=" st_"] {
    min-height: 0 !important;
    height: 10px !important;
  }

  .bs-search-root {
    margin-top: 30px;
    gap: 0;
    padding: 0;
  }

  .bs-searchbar {
    height: 60px;
    cursor: pointer;
  }

  .bs-zone {
    gap: 0;
  }

  .bs-zone label {
    margin-bottom: -5px;
  }

  .bs-zone span {
    font-size: 11px;
    margin-top: -5px;
  }

  .bs-search-btn {
    width: 38px;
    height: 38px;
    right: 12px;
  }

  .bs-panel {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: none;

    padding: 8px;
    margin: 16px;
    width: auto;
    
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
  }

  .bs-panel.is-active {
    display: block;
  }

  /* full screen content spacing */
  .bs-panel[data-panel="where"],
  .bs-panel[data-panel="when"],
  .bs-panel[data-panel="who"] {
    padding-top: 8px;
  }

  /* titles like Airbnb */
  .bs-panel h3 {
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0 0;
    margin-top: 0;
  }
  
  /* remove preview in mobile */
  .bs-preview-panel {
    display: none !important;
  }

  .bs-zone,
  .bs-divider,
  .bs-search-btn {
    pointer-events: none;
  }

  .bs-zone label {
    font-size: 11px;
  }

  .bs-search-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow: none;
    background: #f7f7f7;
    border-radius: 0;
    z-index: 9999;
    opacity: 0;
    height: 100dvh;
    max-height: 100dvh;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(4px) saturate(10%);
    -webkit-backdrop-filter: blur(4px) saturate(10%);
    margin: 0;
    padding: 0;
    box-shadow:
      0 30px 80px rgba(0,0,0,.22),
      inset 0 1px 0 rgba(255,255,255,.45);
    pointer-events: none;
    will-change: transform;
    transform: translateY(100px);
    transition:
      opacity .25s ease,
      transform .25s ease,
      left .45s cubic-bezier(.22,1,.36,1),
      max-width .45s cubic-bezier(.22,1,.36,1);
  }

  .bs-search-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
  }

  .bs-search-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .bs-mobile-header {
    position: sticky;
    top: 0;
    height: 75px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 10001;
    background: transparent;
    justify-content: space-between;
  }

  .bs-mobile-header button {
    background: rgb(255, 255, 255);
    border-radius: 36px;
    padding: 5px;
    width: 40px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 10002;
    margin-left: auto;
    box-shadow: 0 6px 6px rgba(0,0,0,.08);
  }

  .bs-preview-panel {
    display: none;
  }

  .bs-panels-container {
    position: relative;
    flex: 1;
    width: 100%;
    height: auto;
    max-height: auto;
    max-width: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 1;
  }

  .bs-datepicker {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
  }

  .bs-panel[data-panel="when"] .flatpickr-calendar {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .bs-panel[data-panel="when"] .flatpickr-months {
    display: flex !important;
    justify-content: space-between;
    align-items: stretch;
    min-height: 44px;
    padding: 0 48px;
    box-sizing: border-box;
  }

  .bs-panel[data-panel="when"] .flatpickr-month {
    margin: 0;
    min-width: auto;
    flex: 1;
    text-align: center;
  }

  .bs-panel[data-panel="when"] .flatpickr-current-month {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 44px;
    line-height: 1;
  }

  .bs-panel[data-panel="when"] .flatpickr-prev-month,
  .bs-panel[data-panel="when"] .flatpickr-next-month {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 44px;
    display: flex;
    align-items: center;
  }

  .bs-panel[data-panel="when"] {
    padding: 12px 20px;
  }

  .bs-panel[data-panel="who"] {
    padding: 12px 22px;
  }

  .bs-where-layout {
    flex-direction: column;
    min-height: auto;
    gap: 10px;
  }

  /* ======== MOBILE VIEW ======== */

  .bs-mobile-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 5px;
    margin-bottom: 23px;
    width: auto;
  }

  .bs-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 16px;
    border-radius: 16px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
  }

  .bs-summary-item + .bs-summary-item {
    border-top: 1px solid #eee;
  }

  .bs-summary-item .label {
    font-size: 13px;
    font-weight: 600;
    color: #222;
  }

  .bs-summary-item .value {
    font-size: 15px;
    font-weight: 500;
    color: #717171;
  }

  .bs-summary-item.is-active {
    background: #fff;
    box-shadow: inset 0 0 0 2px #000;
  }

  .bs-mobile-summary button {
    border: none;
  }

  .bs-panels-viewport {
    display: block;
    overflow: visible;
    margin: 0;
    padding: 0;
    height: calc(100dvh - 400px);
  }

  body.admin-bar .bs-search-overlay {
    top: 46px;
    height: calc(100dvh - 46px);
  }

  /* ========== WHERE SEARCH ============= */
  .bs-where-panel {
    height: 90%;
  }

  .bs-where-results {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    overflow: visible !important;
    max-height: none !important;
  }

  .bs-where-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 4px; /* UP LEFT */
    border-radius: 4px;
    background: transparent;
  }

  .bs-where-search::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23717171' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.65' y1='16.65' x2='21' y2='21'/%3E%3C/svg%3E");
  }

  .bs-where-search svg {
    width: 18px;
    height: 18px;
    stroke: #434343;
  }

  .bs-where-search span {
    font-size: 15px;
    color: #717171;
  }

  .bs-where-search input {
    width: 100%;
    height: 52px;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 500;
    outline: none;
  }

  .bs-where-search input#bsWhereSearchInput {
    padding-left: 42px;
  }

  .bs-where-search:has(input:focus)::before {
    opacity: 1;
  }

  .bs-where-search input:focus {
    border-color: #000;
  }

  .bs-where-scroll-wrapper {
    display: flex;
    flex-direction: column;
    max-height: calc(100dvh - 550px);
    overflow: hidden;
  }

  .bs-where-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 12px;
  }

  /* ========== WHERE ============= */
  .bs-country-item {
    display: flex;
    padding: 16px;
    margin: 6px 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    background: #f9f9f9;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: background .15s ease, transform .05s ease, box-shadow .15s ease;
  }

  .bs-country-item:active {
    opacity: .6;
  }

  .bs-country-item:hover {
    background: transparent;
  }

  .bs-country-item.is-clickable {
    cursor: pointer;
  }

  .bs-country-item.is-clickable:hover {
    color: #000;
  }

  .bs-city-item {
    display: flex;
    gap: 0;
    padding: 12px 16px;
    margin: 6px 8px;
    border-radius: 16px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: background .15s ease, transform .05s ease, box-shadow .15s ease;
  }

  .bs-city-item:hover {
    background: #f7f7f7;
  }

  .bs-city-item:active {
    background: #ececec;
    transform: scale(.97);
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
  }

  .bs-item-title {
    font-size: 13px;
    font-weight: 500;
    color: #222;
    margin: 0;
    padding: 0;
  }

  .bs-item-subtitle {
    font-size: 10px;
    color: #9a9a9a;
    margin: 0;
    padding: 0;
  }

  /* Countries = plus gros */
  .bs-country-item .bs-item-title {
    font-size: 14px;
  }

  /* Cities = plus discret */
  .bs-city-item .bs-item-title {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.95;
  }

  .bs-expand-btn {
    display: none !important;
  }

  .bs-mobile-footer {
    padding: 16px 22px;
    position: sticky;
    bottom: 0;
    margin: 0;
    margin-top: -5px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .bs-clear-all {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    margin-right: auto;
    pointer-events: auto;
    z-index: 10002;
    text-decoration: underline;
    opacity: 0.85;
    transition: opacity .2s ease;
  }

  .bs-clear-all:hover {
    opacity: 1;
  }

  .bs-mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 8px 24px;
    border-radius: 8px;
    border: none;
    background: #0d397b;
    color: #fff;
    margin-left: auto;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition:
      transform .15s ease,
      box-shadow .15s ease,
      opacity .15s ease;
  }

  .bs-mobile-search-btn::before {
    content: "";
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.65' y1='16.65' x2='21' y2='21'/%3E%3C/svg%3E");
  }

  .bs-mobile-search-btn:active::before {
    transform: scale(0.9);
  }

  .bs-mobile-search-btn:hover {
    box-shadow: 0 8px 24px rgba(19,62,169,.35);
  }

  .bs-mobile-search-btn:active {
    transform: scale(.98);
    opacity: .9;
  }
}