.smart-search-results {
  position: relative;
  flex-wrap: wrap;
  padding: 0 var(--padfw);
  padding-top: 35px !important;
  display: none;
  transition: all 0.3s;
  box-shadow: 0 4px 5px -3px #434343;
}

.search-bar-container {
  display: flex;
}

div#site-search {
  width: 100%;
}

#smart-search-input {
  _border: solid 1px rgb(213 216 232 / 60%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  width: 90%;
}

#smart-search-category {
  border: solid 1px rgb(213 216 232 / 60%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  width: 10%;
  padding-left: 15px;
  margin-right: -1px;
}


.smart-search-inner {
  flex-wrap: wrap;
  max-width: 1200px !important;
  overflow: hidden;
  padding-top: 28px;
  display: flex;
  margin: auto;
  margin-top: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
  padding-top: 69px;
  width: 100%;
}

.banner img {
  Width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

.all-banner-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
  gap: 5%;
  align-items: end;
}

.search-banner {
  background-color: #f8f9fa;
  /* Adjust as needed */
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
  /* Adjust as needed */
  box-shadow: 0 4px 5px -3px rgba(0, 0, 0, 0.1);
  position: absolute;
  /* Ensure absolute positioning */
  z-index: 9999;
  width: auto;
  /* Width is dynamically set in JS */
  transition: all 0.3s ease;
  /* Smooth transition for showing/hiding */
  top: 70px !important;
  border-radius: 5px;
  display: none;
}




#speech-to-text-button {
  background: url('../assets/img/mic.svg') no-repeat center;
  background-size: contain;
  width: 20px;
  height: 30px;
  border: none;
  cursor: pointer;
  right: inherit;
}



.smart-search-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.smart-search-results {
  position: fixed;
  _top: var(--header);
  top: 0;
  z-index: 99;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 240px);
  overflow: auto;
}

.sticky_header #smart-search-results {
  _top: var(--headerFixed) !important;
}

.smart-search-results .products ul li {
  /* border-bottom: 1px solid #D9D9D9; */
}

.smart-search-results ul li:first-child {
  padding-top: 0;
}

.smart-search-results ul li {
  padding: 0;
}

.smart-search-results .products ul li:last-child {
  border: none;
}

.smart-search-results a {
  text-decoration: none;
  color: #fff;
  display: block;
  transition: all 0.2s;
}

.smart-search-results ul li a:hover .smp-title {
  color: var(--smart-secondary-color) !important;
}

.smart-search-results img {
  width: 115px;
  height: 139px;
  margin-right: 10px;
  object-fit: contain;
}

.smart-search-results .column ul {
  height: 100%;
  padding-right: 5px;
  padding-left: 5px;

}

.smart-search-results .column {
  height: 100%;
}

.highlighted {
  color: var(--smart-secondary-color);
  font-weight: bold;
}

.loader {
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--smart-secondary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.6s linear infinite;
  font-size: 0;
  margin: auto;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.no-results {
  margin: auto;
  margin-bottom: 20px;
  color: #fff;
  font-size: var(--font-size-h8);
  padding-top: 35px;
  padding-bottom: 25px;
}

.smart-search-inner.has-no-results .column.template1.products {
  display: none;
}

.close-in-wrapper {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13' fill='none'%3E%3Cpath d='M0.708 12.616L0 11.908L5.6 6.308L0 0.708L0.708 0L6.308 5.6L11.908 0L12.616 0.708L7.016 6.308L12.616 11.908L11.908 12.616L6.308 7.016L0.708 12.616Z' fill='white'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
  width: 13px;
  height: 13px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: static;
  cursor: pointer;
  background-color: var(--smart-title-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.close-in-wrapper::before {
  transform: rotate(45deg);
}



/* Apply styles to the entire scrollbar */
.smart-search-results .column ul::-webkit-scrollbar {
  width: 5px;
  /* Set the width of the scrollbar */
  height: 36px;
}

/* Apply style to the track (the area behind the thumb) */
.smart-search-results .column ul::-webkit-scrollbar-track {
  background: #ffffff00;
  /* Change the track color */
}

/* Apply style to the scrollbar thumb (the draggable handle) */
.smart-search-results .column ul::-webkit-scrollbar-thumb {
  background: var(--smart-title-color);
  /* Change the color of the thumb */
  border-radius: 6px 0 0 6px;

}

/* Apply style to the scrollbar thumb when hovering over it */
.smart-search-results .column ul::-webkit-scrollbar-thumb:hover {
  background: var(--smart-title-color);
  /* Change the color of the thumb on hover */
}




.topMenuNavbar.fixed .header_search_cont {
  display: none;
}

.cd-dropdown-wrapper-search {
  display: flex;
}

.topMenuNavbar.fixed .cd-dropdown-wrapper-search .header_search {
  display: block;
}

.cd-dropdown-wrapper-search .header_search {
  margin-left: 20px;
  _min-width: 225px;
  font-size: 13px;
  display: none;
}

.header_search_fixed_cont {

  min-width: 238px;
}

.header_search_cont {
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  z-index: 99;
}

.header_search {
  position: relative;
  max-width: 550px;
  margin: auto;
}

.header_search input {
  border: none;
  border-bottom: 1px solid #F47B3B;
  width: 100%;
  padding-left: 10px;
  background-image: url(../img/search.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 99% center;
  min-height: 40px;
  transition: all 500ms;
}

.header_search.active-search input,
.header_search_fixed_cont.active-search input {
  border-bottom: solid 4px #F47B3B;
  background-image: url(../img/search_active.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 0% center;
  padding-left: 30px;
  transition: all 500ms;
}


.smart-search-results .column.template1 {
  _width: calc(33.33% - 20px);
  margin: 0;
  width: 33.33%;
  padding-left: 0;
  padding-right: 35px;
  margin-left: 0;
  margin-right: 0;
  width: 62%;
  padding-top: 25px;
  position: relative;
  padding-bottom: 54px;
  padding-bottom: 0;
}

.template1 h3 {
  font-size: var(--font-size-h9);
  padding-bottom: 12px;
  margin-bottom: 12px;
  color: var(--color-grey-2);
  font-weight: 700;
}

.template1 h3 strong.searched-for-text {
  color: #fff;
}

.template1.categories ul li {
  font-size: 16px;
  margin-bottom: 9px;
  padding: 0;
}

.template1 ul li a {}

.template1.products ul li {
  background-color: transparent;

}

.template1.products ul li a {
  height: 100%;
}

.template1.popular-products ul li {
  font-size: 16px;
  margin-bottom: 10px;
  padding: 0;
  font-weight: 500;
}



.template1-close-results {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.template1-active .smart-search-results {
  margin-top: 10px;
  max-height: calc(100vh - 240px);
  overflow: auto;
}

.template1-active .smart-search-results img {
  width: 100%;
  max-width: 100%;
  height: 160px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 24px;
  height: 17.6vh;
}

.column.template1.categories img {
  height: 210px;
  height: 22.3vh;
}

.template1-active .smart-search-results ul {
  max-height: 55vh !important;
}

.see-all-results-container {
  text-align: center;

  width: 100%;
  display: block;
  margin-bottom: 50px;
  margin-top: 50px;
}


/* Apply styles to the entire scrollbar */
.template1-active .smart-search-results::-webkit-scrollbar {
  width: 5px;
  /* Set the width of the scrollbar */
}

/* Apply style to the track (the area behind the thumb) */
.template1-active .smart-search-results::-webkit-scrollbar-track {
  background: #E0E0E0;
  /* Change the track color */
}

/* Apply style to the scrollbar thumb (the draggable handle) */
.template1-active .smart-search-results::-webkit-scrollbar-thumb {
  background: var(--smart-title-color);
  /* Change the color of the thumb */
  border-radius: 5px;
  /* Round the corners of the thumb */
}

/* Apply style to the scrollbar thumb when hovering over it */
.template2-active .smart-search-results::-webkit-scrollbar-thumb:hover {
  background: var(--smart-title-color);
  /* Change the color of the thumb on hover */
}


.template2-active .smart-search-results::-webkit-scrollbar {
  width: 5px;
  /* Set the width of the scrollbar */
}

/* Apply style to the track (the area behind the thumb) */
.template2-active .smart-search-results::-webkit-scrollbar-track {
  background: #E0E0E0;
  /* Change the track color */
}

/* Apply style to the scrollbar thumb (the draggable handle) */
.template2-active .smart-search-results::-webkit-scrollbar-thumb {
  background: var(--smart-title-color);
  /* Change the color of the thumb */
  border-radius: 5px;
  /* Round the corners of the thumb */
}

/* Apply style to the scrollbar thumb when hovering over it */
.template2-active .smart-search-results::-webkit-scrollbar-thumb:hover {
  background: var(--smart-title-color);
  /* Change the color of the thumb on hover */
}

.product-price {
  text-align: left;
  margin-top: 10px;
}

.category-result-title {
  margin-top: 12px;
}

.product-price .woocommerce-Price-amount bdi {
  font-size: 14px;
  color: #fff;
}

.product-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100% margin-top: 10px;
}

.column.template1.categories {
  width: 38%;
  padding-left: 40px;
  border-right: solid 1px var(--color-dark-grey-1);
  padding-right: 0;
  padding-bottom: 20px;
  padding-left: 2vw;
}

.sm-price {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

span.sm-regular-price {
  font-size: var(--font-size-h10);
  font-style: normal;
  font-weight: 500;
  color: var(--color-grey-3);
}

.sm-sale-price,
p.sm-price {
  font-size: var(--font-size-h10);
  font-style: normal;
  font-weight: 700;
}

.column.template1.products ul {
  display: grid;
  gap: 28px 12px;
  overflow-x: auto;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  padding-left: 0;
  padding-right: 61px;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  padding-bottom: 80px;
  height: 100%;
  padding-right: 3vw;
}

p.product-short-description {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.smart-search-header strong.searched-for-text {
  text-transform: uppercase;
  margin-left: 8px;
  font-size: var(--font-size-h11);
  font-weight: 700;
}

.column.template1.products {
  border-right: solid 1px var(--color-dark-grey-1);
  Linear Gradient;
  padding-right: 0;
}

.column.template1.products p.product-sku {
  display: none;
}

.smp-title {
  font-size: var(--font-size-h12);
  font-weight: 400;
  line-height: 1.2;
}

.column.template1.products:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  bottom: 0;
  z-index: 999;
  background-size: cover;
  background: linear-gradient(0deg, #2B2B2B 6.42%, rgba(43, 43, 43, 0.00) 100%);
}

.search-cat-info .searched-for-text {
  font-weight: 400;
}

/* Hero Search Content */
.hero-search-wrapper {
  position: fixed;
  bottom: 32px;
  bottom: 3.2vh;
  left: 50%;
  z-index: 9999999;
  transform: translateX(-50%);
  width: calc(57.82% + 104px);
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
  _min-width: 1100px;
  transition: all 300ms;
}

.hero-search-wrapper.home-page-search.sticky-search-wrap {
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}

.hero-search-wrapper.rest-pages-search.is-scroll-hidden:not(.active-results) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-search-wrapper.rest-pages-search.active-results,
.hero-search-wrapper.rest-pages-search.sticky-bottom-search {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.active-results-fixed {
  overflow: hidden;
}



.hero-search-wrapper.active-results .hero-search-bar.search-bar-wrap {
  background-color: transparent;
  border: 0;
  border: solid 1px #fff;
}


.hero-search-bar.search-bar-wrap.bg-search {
  background-color: var(--color-dark-grey-3);
}

.hero-search-wrapper.sticky-search-wrap .search-info {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  display: none;
}

.hero-tabs {
  display: flex;
  gap: 56px;
  align-items: center;
}

.hero-tab {
  background: none;
  border: none;
  font-family: 'Ubuntu', sans-serif;
  font-size: var(--font-size-h6);
  cursor: pointer;
  padding: 0;
}

.hero-tab.active {
  font-weight: 700;
  color: var(--color-white-1);
  letter-spacing: -1.2px;
}

.hero-tab:not(.active) {
  font-weight: 500;
  color: var(--color-grey-1);
  letter-spacing: -0.48px;
}

.hero-search-bar {
  background-color: rgba(0, 0, 0, 0.56);
  border-radius: 32px;
  height: 54px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 8px 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 999;
}

.hero-search-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 32px;
  gap: 3.3vh;
  /* position: relative; */
  /* width: 91%; */
  margin: 0 auto;
}

.hero-search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.hero-search-input-wrapper img {
  width: 14px;
  height: 14px;
}

.hero-search-wrapper.active-results .inner-result-container {
  padding: 0 4.5%;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.hero-search-wrapper.sticky-search-wrap .inner-result-container {
  width: 100%;
}

.hero-search-input {
  background: transparent;
  border: none;
  color: var(--color-white-1);
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-size: var(--font-size-h10);
  width: 100%;
  outline: none;
}

.hero-search-input::placeholder {
  color: var(--color-white-1);
}

.inner-result-container {
  width: 100%;

}

.smart-search-results {
  position: static;
  padding: 0 !IMPORTANT;
  margin: 0 !IMPORTANT;

  max-height: 100% !important;
}

.search-results-append {
  position: static;
  bottom: -31px;
  left: 0;
  right: 0;
}

.btn-search {
  height: 33px;
  padding: 0 32px;
  border-radius: 45px;
  font-size: var(--font-size-h9);
  letter-spacing: -0.36px;
}

.search-info {
  position: absolute;
  right: 17px;
  right: calc((4.5% - 22px) / 2);
  bottom: 14.5px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.search-info svg {
  display: block;
}

.hero-search-wrapper.active-results .inner-result-container:after {
  content: none;
}

.hero-search-wrapper.active-results.has-search-results .inner-result-container:after {
  content: '';
  position: absolute;
  width: 100%;
  height: calc(3.3vh + 100%);
  background-color: var(--color-dark-grey-3);
  bottom: -3.3vh;
  z-index: -1;
  left: 0;
  right: 0;
  border-radius: 32px;
}

.smart-search-header {
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px var(--color-dark-grey-1);
  padding-bottom: 13px;
  position: relative;
  position: absolute;
  top: 16px;
  left: 0;
  padding-left: 4.5%;
  padding-right: 4.5%;
  padding-top: 14px;
}

.hero-search-wrapper.rest-pages-search {
  top: calc(var(--fheader) + 24px);
  max-width: 631px;
  min-width: auto;
  bottom: unset;
}

.sticky-bottom-search .hero-tabs {
  padding-left: 4.5%;
}

.hero-search-wrapper.rest-pages-search .hero-tabs {
  display: none;
}

.hero-search-wrapper.rest-pages-search .inner-result-container {
  flex-direction: column-reverse;
  display: flex;
}

.hero-search-wrapper.rest-pages-search.active-results {
  max-width: 100%;
}

.hero-search-wrapper.rest-pages-search.sticky-search-wrap {
  max-width: 100%;
}

.sticky-header .hero-search-wrapper.rest-pages-search.sticky-search-wrap {
  top: unset;
}

.hero-search-wrapper.rest-pages-search.sticky-bottom-search {
  top: unset;
}

.hero-search-wrapper.rest-pages-search.sticky-bottom-search .inner-result-container {
  display: block;
}

.rest-pages-search.active-results .search-info {
  top: 38.5px;
  bottom: unset;
}

.hero-search-wrapper.rest-pages-search.active-results .inner-result-container {
  padding-top: 24px;
}

.hero-search-wrapper.rest-pages-search.sticky-bottom-search .inner-result-container {
  padding-top: 0;
}

.hero-search-wrapper.rest-pages-search.sticky-bottom-search .search-info {
  bottom: 14.5px;
  top: unset;
}

.search_bg_glass {
  /* From https: //css.glass */
  background: rgb(0 0 0 / 60%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.2px);
  -webkit-backdrop-filter: blur(10.2px);
  opacity: 0;
  transition: all 300ms;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.search_bg_glass.active-search-bg {
  z-index: 9999;
  opacity: 1 !important;
}

.mega-menu-body .hero-search-wrapper {
  z-index: -1;
  display: none;
}

.news-swiper .swiper-slide.is-hidden .news-copy {
  opacity: 0;
}

.column.template1.categories li {
  width: calc(50% - 8px);
}

.column.template1.categories ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 57px;
  padding-right: 2.7vw;
}

.search-cat-info {
  color: #fff;
  line-height: 1.4;
  font-size: var(--font-size-h11);
  font-weight: 400;
}

.searched-for span {
  color: var(--color-grey-3);
  font-size: var(--font-size-h11);
  font-weight: 700;
  line-height: 1;
}

.hero-search-wrapper.rest-pages-search.active-results .smart-search-header {
  top: 95px;
}

.hero-search-wrapper.rest-pages-search.sticky-bottom-search.active-results .smart-search-header {
  top: 14px;
}

.hero-search-wrapper.rest-pages-search.active-results {
  top: 25px;
}

.hero-search-wrapper.rest-pages-search.sticky-bottom-search.active-results {
  top: unset;
  bottom: 3.2vh;
}

.search-toggle {
  position: fixed;
  right: 4%;
  bottom: 1%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms;
}

.search-toggle.active {
  opacity: 1;
  z-index: 999;
  visibility: visible;
}

/*
 * Smart Search state fixes
 * Load this file AFTER the existing smart-search.css.
 * It keeps the current design and fixes only the overlay/results state.
 */

body.active-results-fixed {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

/* Keep the glass overlay stable without using z-index:-1. */
.search_bg_glass {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms, visibility 300ms;
}

.search_bg_glass.active-search-bg {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
}

/* The search wrapper must stay above the glass overlay. */
.hero-search-wrapper {
  z-index: 9999999;
}

/*
 * IMPORTANT:
 * active-results means "the search UI is open".
 * has-search-results means "the AJAX/results panel is visible".
 * So the big dark background must NOT appear just because the search opens.
 */
.hero-search-wrapper.active-results .inner-result-container:after {
  content: none !important;
}

.hero-search-wrapper.active-results.has-search-results .inner-result-container:after {
  content: '' !important;
  position: absolute;
  width: 100%;
  height: calc(3.3vh + 100%);
  background-color: var(--color-dark-grey-3);
  bottom: -3.3vh;
  z-index: -1;
  left: 0;
  right: 0;
  border-radius: 32px;
}

/* Hide the results holder when the UI is open but there are no results yet. */
.hero-search-wrapper.active-results:not(.has-search-results) .search-results-append {
  display: none;
}

.hero-search-wrapper.active-results.has-search-results .search-results-append {
  display: block;
}

/* Prevent the sticky/collapsed background from staying when the overlay is open. */
.hero-search-wrapper.active-results .search-bar-wrap {
  background-color: transparent;
}

.hero-search-wrapper.active-results .search-bar-wrap.bg-search {
  background-color: transparent;
}

/* Keep the current fixed/static layout from the existing CSS, only normalize display. */
.search-results-append {
  width: 100%;
}

.smart-search-results {
  display: none;
}

.hero-search-wrapper.has-search-results .smart-search-results {
  display: flex;
}

/* Product bottom fade should not block clicks or prices. */
.column.template1.products:after {
  pointer-events: none;
}

.column.template1.products.is-at-bottom:after {
  opacity: 0;
}

.column.template1.products ul {
  padding-bottom: 120px;
}


/* ================================
   FINAL Smart Search state override
   Keep this block at the very end.
================================ */
.hero-search-wrapper.rest-pages-search.is-scroll-hidden:not(.active-results),
.hero-search-wrapper.home-page-search.sticky-search-wrap:not(.active-results) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-search-wrapper.active-results,
.hero-search-wrapper.sticky-bottom-search {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-search-wrapper.active-results .inner-result-container:after {
  content: none !important;
}

.hero-search-wrapper.active-results.has-search-results .inner-result-container:after {
  content: '' !important;
  position: absolute;
  width: 100%;
  height: calc(3.3vh + 100%);
  background-color: var(--color-dark-grey-3);
  bottom: -3.3vh;
  z-index: -1;
  left: 0;
  right: 0;
  border-radius: 32px;
}

.hero-search-wrapper.active-results:not(.has-search-results) .search-results-append {
  display: none;
}

.hero-search-wrapper.active-results.has-search-results .search-results-append {
  display: block;
}

.search_bg_glass {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.search_bg_glass.active-search-bg {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
}

.hero-search-wrapper {
  z-index: 9999999;
}




div#wpadminbar {
    _display: none !important;
}
html {
    _overflow-X: hidden;
}
 
@media (max-width: 2020px) {
 
}
@media screen and (max-width: 1680px) and (min-width:991px) {

}
@media screen and (max-width: 1680px)  {

}
/*END OF 1680*/
@media (max-width: 1560px) {

}
/*END OF 1560*/
@media screen and (max-width: 1440px) {
	.hero-search-wrapper.home-page-search.active-results.has-search-results {
	    width: calc(69.82% + 104px);
	}
	
}
/*END OF 1440*/
@media screen and (max-width: 1366px) {

}
/*END OF 1366*/
@media (max-width: 1280px) {


}
/*END OF 1280*/
@media (max-width: 1250px) {
  
}
/*END OF 1250*/
@media (max-width: 1230px) {
	.hero-search-wrapper.home-page-search.sticky-bottom-search.active-results {
	    width: 93%;
	}
}
/*END OF 1230*/
@media (max-width: 1200px) {
	
}
/*END OF 1200*/
@media (max-width: 1140px) {
	.hero-search-wrapper.home-page-search.active-results.has-search-results {
	    width: 100%;
	}
	
	.hero-tabs {
	    display: none;
	}


}
/*END OF 1140*/
@media (max-width: 1199px) {

}
/*END OF 1199*/
@media (max-width: 991px) {
    
}
/*END OF 991*/
@media (max-width: 900px) {
    
}
/*END OF 900*/
@media (max-width: 768px) {
	
}
/*END OF 768*/
@media (max-width: 767px) {
    
}
/*END OF 767*/
@media (max-width: 760px) {
	
}
/*END OF 760*/
@media (max-width: 720px) {
	
}
/*END OF 720*/
@media (max-width: 640px) {
	
}
/*END OF 640*/
@media (max-width: 575px) {
    
}
/*END OF 575*/
@media (max-width: 480px) {
	
}
/*END OF 480*/
@media (max-width: 390px) {
	
}
/*END OF 390*/
@media (max-width: 360px) {
	
}
/*END OF 360*/