.search-container {
  width: 1032px;
  max-width: 100%;
  position: relative;
  margin: 3rem auto;
  font-size: 16px;
  font-family: "Prompt", sans-serif;
  color: #444;
}

.search-wrapper-mobile {
  position: relative;
}

.search-wrapper-mobile img {
  background-color: var(--ui-color-light);
  position: absolute;
  top: 15px;
  right: 10px;
  height: 16.32px;
  width: 16.32px;
}

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

.search-wrapper input {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid var(--ui-color-mid-light);
  border-radius: 4px;
}

.search-wrapper img {
  background-color: var(--ui-color-light);
  position: absolute;
  top: 15px;
  right: 10px;
  height: 16.32px;
  width: 16.32px;
}

.search-bar-wrapper {
  display: flex;
}
.search-bar-wrapper > button {
  border: 1px solid #256ca8;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: #256ca8;
  color: var(--ui-color-light);
  padding: 8px 15px;
}

.search-input-wrapper {
  position: relative;
  margin: 0 40px;
}

.search-input-wrapper input {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid var(--ui-color-mid-light);
  border-radius: 4px;
}

.input-group-btn {
  position: relative;
}

.input-group-btn button {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 99999999;
}

#search-input {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #333;
  background-color: var(--ui-color-light);
  border: 1px solid #256ca8;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#search-input:focus {
  border: 2px solid #256ca8;
  border-right: none;
}

.search-input-wrapper input:focus {
  outline-offset: 0px !important;
  outline: none !important;
}

#search-dropdown {
  position: absolute;
  width: 100%;
  z-index: 20;
  overflow: hidden;
  background-color: white;
}
#search-dropdown.hide {
  display: none;
}

.search-dropdown-wrapper {
  display: flex;
  height: 100%;
  color: var(--brand-color-dark);
}

#top-searches-title,
.right-title {
  font-size: 16px;
  font-weight: bold;
}

.left-top-searches-container {
  padding: 1rem 1.5rem;
  background: var(--ui-color-light);
}
.left-top-searches-container > ul {
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  color: var(--brand-color-dark);
}
.left-top-searches-container > ul > li {
  list-style: none;
  margin: 1rem 0;
  font-size: 14px;
}
.left-top-searches-container > ul > li:first-of-type {
  margin-top: 0;
}
.left-top-searches-container > ul > li > a {
  color: var(--brand-color-dark);
  text-decoration: none;
  margin: 0;
}
.right-related-products-container {
  padding: 30px 20px;
  height: 100%;
}
.right-related-products-container .right-title {
  display: none;
}
.left-top-searches {
  flex: 0 0 60%;
  max-width: 60%;
}
.right-related-products {
  flex: 0 0 40%;
  max-width: 40%;
}
.right-related-products .right-related-products-container {
  background: var(--ui-color-light);
}
.related-products-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.related-products-wrapper .product {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  align-items: center;
  padding: 34px 15px 24px;
  border: 1px solid rgba(18, 50, 87, 0.2);
  border-radius: 6px;
  margin-right: 10px;
}
.related-products-wrapper .product:hover {
  border: 1px solid rgba(18, 50, 87, 1);
}
.related-products-wrapper .product a img {
  border-radius: 6px;
}
.related-products-wrapper .product:nth-child(3),
.related-products-wrapper .product:nth-child(4) {
  display: none;
}
.related-products-wrapper .product .product-info {
  text-align: center;
  font-size: 14px;
}
.related-products-wrapper .product .product-info .product-title {
  margin-top: 10px;
  margin-bottom: 10px;
}
.related-products-wrapper .product .product-info .product-title a {
  margin: 0;
}
.related-products-wrapper .product .product-info .product-price span {
  text-decoration: line-through;
}
.related-products-wrapper .product img {
  max-width: 100%;
}
.related-products-wrapper .product a {
  color: var(--brand-color-dark);
  text-decoration: none;
}

#searchbar-header > .container.p-y-2 {
  padding: 3em 0 !important;
}
#searchbar-header > .container.p-y-2::after {
  display: none;
}

#searchbar-header {
  background-color: var(--ui-color-light);
}

#searchbar-header > .container.p-y-2.zeroPadding {
  padding-bottom: 0 !important;
}

.head-search-expanded {
  margin-top: 8px;
}

@media (min-width: 768px) {
  .left-top-searches-container {
    padding: 2rem 2.5rem;
  }
  .right-related-products-container {
    padding: 2rem 2.5rem;
  }
  .right-related-products-container .right-title {
    display: block;
  }
  .left-top-searches {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .right-related-products {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .related-products-wrapper {
    flex-direction: row;
  }
  .related-products-wrapper .product {
    flex: 0 0 30%;
    max-width: 30%;
    align-items: flex-start;
  }
  .related-products-wrapper .product:nth-child(3),
  .related-products-wrapper .product:nth-child(4) {
    display: flex;
  }
  .related-products-wrapper .product .product-info {
    text-align: left;
    font-size: 14px;
  }
  .related-products-wrapper .product .product-info .product-title {
    margin-top: 0;
  }
  .related-products-wrapper .product img {
    max-width: 90px;
  }
  #searchbar-header > .container.p-y-2 {
    padding: 2em 0 !important;
  }
  .head-search-expanded {
    margin-top: 16px;
  }
}

@media (min-width: 992px) {
  #searchbar-header > .container.p-y-2 {
    padding: 1em 0 !important;
  }
  .head-search-expanded {
    margin-top: 92px;
  }
}

@media (min-width: 1024px) {
  .related-products-wrapper .product img {
    max-width: 145px;
  }
  .related-products-wrapper .product {
    flex: 0 0 48%;
    max-width: 48%;
    flex-direction: row;
    align-items: flex-start;
  }
  .related-products-wrapper .product .product-info {
    padding-left: 16px;
  }
}

@media (min-width: 1200px) {
  .head-search-expanded {
    margin-top: 87px;
  }
}

/*# sourceMappingURL=styles.css.map */
@media (min-width: 1440px) {
  .related-products-wrapper .product {
    flex-direction: row;
  }
}
