body .products {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .products .center {
  width: 100%;
  max-width: 1200px;
  font-style: normal;
  line-height: normal;
}
body .products .center .history {
  color: #949494;
  font-size: 16px;
  font-weight: 400;
}
body .products .center .category-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 133.799%;
}
body .products .center .content {
  display: flex;
}
body .products .center .content .content-left {
  position: sticky;
  top: 30px;
  height: 80vh;
  overflow-y: scroll;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  max-width: 180px;
  margin-right: 30px;
  margin-top: 20px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
body .products .center .content .content-left::-webkit-scrollbar {
  width: 5px;
}
body .products .center .content .content-left::-webkit-scrollbar-track {
  background: white;
}
body .products .center .content .content-left::-webkit-scrollbar-thumb {
  background: #888;
}
body .products .center .content .content-left::-webkit-scrollbar-thumb:hover {
  background: #555;
}
body .products .center .content .content-left .nav-list {
  width: 100%;
}
body .products .center .content .content-left .nav-list .container-fluid .navbar-toggler {
  padding: 0;
  font-size: 14px;
  cursor: pointer;
}
body .products .center .content .content-left .nav-list .container-fluid a {
  padding-left: 10px;
  color: black;
  font-weight: 400;
}
body .products .center .content .content-right .filters {
  margin-top: 30px;
}
body .products .center .content .content-right .filters #filterForm {
  width: 100%;
  display: flex;
}
body .products .center .content .content-right .filters #filterForm .price-range {
  width: 30%;
}
body .products .center .content .content-right .filters #filterForm .price-range .noUi-connect {
  background: #009bdb;
}
body .products .center .content .content-right .filters #filterForm .price-range .noUi-handle {
  border-radius: 8px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.411);
  width: 30px;
}
body .products .center .content .content-right .filters #filterForm .price-range .price-inputs {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
body .products .center .content .content-right .filters #filterForm .price-range .price-inputs input {
  width: 40%;
  border: 1px solid #c7c7c7;
  border-radius: 5px;
}
body .products .center .content .content-right .filters #filterForm .price-range .price-inputs input:focus-visible {
  border: 1px solid #5e5e5e;
  outline: none;
}
body .products .center .content .content-right .filters #filterForm .price-order {
  display: flex;
  margin-left: 30px;
  align-items: center;
}
body .products .center .content .content-right .filters #filterForm .price-order label {
  background-color: #009bdb;
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  body .products .center .content .content-right .filters #filterForm {
    font-size: 14px;
    justify-content: center;
  }
  body .products .center .content .content-right .filters #filterForm .price-range {
    width: 50%;
  }
  body .products .center .content .content-right .filters #filterForm .price-order {
    flex-direction: column;
  }
  body .products .center .content .content-right .filters #filterForm .price-order label {
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }
}
body .products .center .content .content-right .product-list {
  margin-top: 20px;
}
body .products .center .content .content-right .product-list .row {
  width: 100%;
  margin: 0;
}
body .products .center .content .content-right .product-list .row .product {
  min-width: 180px;
  padding: 15px;
  border: 1px solid var(--Light-gray, #c9c9c9);
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .products .center .content .content-right .product-list .row .product .full-width {
  width: 100%;
}
body .products .center .content .content-right .product-list .row .product .img-block {
  height: 170px;
}
body .products .center .content .content-right .product-list .row .product .img-block .product-img {
  height: 100%;
  max-height: 170px;
  max-width: 100%;
  border-radius: 5px;
  object-fit: contain;
}
body .products .center .content .content-right .product-list .row .product .product-name {
  overflow: hidden;
  color: #1F1F1F;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: auto;
  line-height: 1.5em;
  /* Set the line height */
  height: 3em;
}
body .products .center .content .content-right .product-list .row .product .product-description {
  overflow: hidden;
  color: #424242;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 400;
  height: 20px;
}
body .products .center .content .content-right .product-list .row .product:hover {
  color: black;
}
body .products .center .content .content-right .pages {
  margin-top: 20px;
}
body .products .center .content .content-right .pages a {
  margin-right: 5px;
}
body .products .center .content .content-right .pages a button {
  margin-top: 5px;
  color: black;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  border: 1px solid  #C9C9C9;
  background: #FFF;
}
body .products .center .content .content-right .pages a .active {
  color: white;
  background: #009BDB;
}
@media screen and (max-width: 769px) {
  body .products .center {
    padding: 10px;
  }
  body .products .center .category-title {
    font-size: 20px;
  }
  body .products .center .content .content-left {
    display: none;
  }
  body .products .center .content .content-right {
    width: 100%;
  }
  body .products .center .content .content-right .product-list .row .product {
    min-width: auto;
    padding: 5px;
  }
  body .products .center .content .content-right .product-list .row .product .product-name {
    overflow: hidden;
    color: #1F1F1F;
    font-size: 13px;
    font-weight: 600;
  }
  body .products .center .content .content-right .product-list .row .product .product-description {
    overflow: hidden;
    color: #424242;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 350;
  }
  body .products .center .content .content-right .product-list .row .product .product-price {
    color: #1F1F1F;
    font-size: 16px;
    font-weight: 700;
  }
}
