.products-banner {
  width: auto;
  height: 210px;
  position: relative;
  border: 1px solid #1E1E1E;
  padding: 5px;
  z-index: 1;
}

.products-banner .products-title {
  padding: 0 10px;
      position: absolute;
    top: 0;
    left: 0;
    font-size: clamp(24px,2.5vw,32px);
    font-weight: 500;
    color: white;
    right: 0;
    text-align: center;
    margin: auto;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.products-banner:before{
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.products-banner h1 {
z-index: 1;
}
.products-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-mobile-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 16px 0;
  border-bottom: 1px #B4B4B4 solid;
  background-color: white;
  z-index: 100;
}

.product-mobile-menu .mobile-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.product-mobile-menu .mobile-menu-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #1E1E1E;
  text-decoration: none;
}

.product-mobile-menu .mobile-menu-list a img {
  width: 12px;
  margin-left: 5px;
}

.product-list-box {
  margin-top: 100px;
}

@media screen and (max-width: 991px) {
  .product-list-box {
    margin-top: 40px;
  }
}

.product-list-box .products-menu .products-menu-item {
  padding-right: 16px;
  margin-bottom: 40px;
}

.product-list-box .products-menu .products-menu-item a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  color: #333333;
  font-size: 15px;
  text-decoration: none;
}

.product-list-box .products-menu .products-menu-item a.menu-title {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #7C7C7C;
  color: #1E1E1E;
}

.product-list-box .products-menu .products-menu-item ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 18px;
}

.product-list-box .products-menu .products-menu-item ul li.active a {
  font-weight: bold;
}

.product-list-box .products-menu .products-menu-item ul li img {
  margin-right: 16px;
}

.shopping-guide-box {
  margin-bottom: 20px;
}

.shopping-guide-box+.shopping-guide-box {
  margin-top: 20px;
}

.shopping-guide-box .collapse {
  border-bottom: none;
}

.shopping-guide-box button {
  color: #1E1E1E;
  font-size: 16px;
  font-weight: 500;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-decoration: none;
}

.shopping-guide-box button:hover {
  color: #1E1E1E;
}

.shopping-guide-box .card {
  margin-top: 0;
}

.shopping-guide-box .card-header {
  margin-bottom: 0 !important;
}

.shopping-guide-box .btn {
  border: none !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.shopping-guide-box .btn img {
  margin-right: 5px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: .5s;
  transition: .5s;
}

.shopping-guide-box .btn.collapsed {
  border: none !important;
  padding: 0.375rem 0.75rem !important;
}

.shopping-guide-box .btn.collapsed img {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.shopping-guide-box .card-body {
  font-size: 14px;
  font-weight: 400;
  padding: 12px !important;
  padding-left: 22px !important;
}

.shopping-guide-box .card-body ul li+li {
  margin-top: 20px;
}

.shopping-guide-box .card-body ul li p {
  margin-bottom: 0;
  font-size: 14px;
}

.shopping-guide-box .card-body ul li p.sub-title {
  font-weight: 600;
}


.loading-products {
  width: 100%;
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.loading-products .loading-content p {
  color: black;
  font-size: 18px;
}

.loading-products .loading-content .loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loading-products .loading-content .loading div {
  width: 1rem;
  height: 1rem;
  margin: 1rem 0.3rem;
  background: black;
  border-radius: 50%;
  -webkit-animation: 0.9s bounce infinite alternate;
  animation: 0.9s bounce infinite alternate;
}

.loading-products .loading-content .loading div:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading-products .loading-content .loading div:nth-child(3) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes bounce {
  to {
    opacity: 0.3;
    -webkit-transform: translate3d(0, -1rem, 0);
    transform: translate3d(0, -1rem, 0);
  }
}

@keyframes bounce {
  to {
    opacity: 0.3;
    -webkit-transform: translate3d(0, -1rem, 0);
    transform: translate3d(0, -1rem, 0);
  }
}

.price-strike-through {
    text-decoration: line-through;
    color: #8d8989;
}
.price-red {
    color: #ff0000 !important;
}
/*# sourceMappingURL=test.css.map */
