#products, #recently-viewed-products-section {
  display: flex;
  flex-wrap: wrap;
}
#products > .product, #recently-viewed-products-section > .product {
  padding: 1rem 0.5rem;
  align-self: end;
}
#products .product .product-tag, #recently-viewed-products-section .product .product-tag {
  z-index: 1;
  color: #FFFFFF;
  padding: 0.5rem;
  position: absolute;
}
#products .product .info, #recently-viewed-products-section .product .info {
  min-height: 9rem;
  max-height: 9rem;
  text-align: center;
  text-transform: uppercase;
}
#products .product .info > div, #recently-viewed-products-section .product .info > div {
  display: block;
}
#products .product .info .brand-name, #recently-viewed-products-section .product .info .brand-name {
  font-size: 1.6rem;
  margin: auto;
}
#products .product .info .product-price, #recently-viewed-products-section .product .info .product-price {
  font-size: 1.6rem;
  margin: auto;
}
#products .product .quick-view-button-container, #recently-viewed-products-section .product .quick-view-button-container {
  height: 4.5rem;
}
#products .product .product-name-container .product-name, #recently-viewed-products-section .product .product-name-container .product-name {
  margin: auto;
  font-size: 1.4rem;
  max-height: 4.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}
#products .product .img-hover, #recently-viewed-products-section .product .img-hover {
  display: none;
}
#products .product .img-normal, #recently-viewed-products-section .product .img-normal {
  display: block;
}
#products .product:hover .img-hover, #recently-viewed-products-section .product:hover .img-hover {
  display: block;
}
#products .product:hover .img-normal, #recently-viewed-products-section .product:hover .img-normal {
  display: none;
}
#products .product .quick-view-button-container button, #recently-viewed-products-section .product .quick-view-button-container button {
  padding: 0 4rem;
}
#products .img-box > img, #products .img-box1 > img, #recently-viewed-products-section .img-box > img, #recently-viewed-products-section .img-box1 > img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}
#products .img-switch, #recently-viewed-products-section .img-switch {
  height: 0;
  position: relative;
  background-color: transparent;
  overflow: hidden;
}
#products .img-switch.img-box, #recently-viewed-products-section .img-switch.img-box {
  padding-bottom: 100%;
}
#products .img-switch.img-box1, #recently-viewed-products-section .img-switch.img-box1 {
  padding-bottom: 117%;
}
#products .img-switch.like-products-img-box, #recently-viewed-products-section .img-switch.like-products-img-box {
  padding-bottom: 133%;
}

.desktop-filter-container {
  display: flex;
  height: 3.1rem;
}
.desktop-filter-container .desktop-filter-positioned {
  position: fixed;
  z-index: 1;
  background: white;
  left: 0;
  right: 0;
  padding-left: 10rem;
  padding-right: 10rem;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.product-breadcrumb-bar {
  position: relative;
  top: -18px;
  left: -19px;
}

.desktop-filter {
  position: sticky;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  top: 10rem;
  height: 85vh;
}

.desktop-filter::-webkit-scrollbar {
  display: none;
}

.products-with-slider-container {
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.products-with-slider-container::-webkit-scrollbar {
  display: none;
}

.meta-content .ico {
  margin-top: -0.6rem;
}

.meta-content-container {
  line-height: 1.3;
}
.meta-content-container p {
  margin-bottom: 1.5rem;
  width: 100%;
}
.meta-content-container p strong {
  font-family: "Roboto,bold";
}
.meta-content-container ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.filter .ico-down-arrow {
  transform: rotate(180deg);
}

.btn-overlay {
  color: #B2B2B2 !important;
  font-family: "Roboto,regular" !important;
  font-weight: bold !important;
}

.suggested-products-heading {
  font-size: 3rem;
  font-family: Action\,bold;
}

@media screen and (max-width: 48em) {
  .suggested-products-heading {
    font-size: 2rem;
  }
  .desktop-filter-container {
    display: none;
  }
  #products > .product, .recently-viewed-products > .product {
    padding: 10px 10px 25px 10px;
    align-self: unset;
  }
  #products > .product .product-name-container .product-name, .recently-viewed-products > .product .product-name-container .product-name {
    font-size: 1.2rem !important;
    height: 3rem !important;
    line-height: 1.2 !important;
  }
  .brand-name {
    font-size: 1.6rem;
  }
  .product-price {
    font-size: 1.6rem;
  }
}
/* The container must be positioned relative: */
.price-filter-container {
  width: 18rem;
  position: relative;
  border-bottom: 1px solid grey;
  font-family: "Roboto,Regular";
}
.price-filter-container select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: white;
  width: 100% !important;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 1.4rem;
  right: 1rem;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: grey transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: #827e7e transparent transparent transparent;
  top: 1.4rem;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
  font-size: 1.4rem;
  color: #000000;
  padding: 0.8rem 1rem;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: inset 0 -3em 3em rgba(255, 255, 255, 0.3), 0 0 0 2px white, 0.3em 0.3em 1em rgb(190, 181, 181);
  border-top: 1px solid grey;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 48em) {
  .listing-banners picture img {
    height: 17.34rem !important;
  }
}
