.product-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.user-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(5, 1fr);
}

@media only screen and (min-width: 780px) and (max-width: 990px) {
  .user-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 550px) and (max-width: 780px) {
  .user-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 550px) {
  .user-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 700px) {
  .product-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.card-product {
  display: flex;
  flex-direction: column;
  font-size: smaller;
  color: #2b2430;
  gap: 0.1rem;
  margin-inline: 0.5rem;
}
.card-product p {
  margin: 0 !important;
  padding: 0 !important;
}

.card-product-img {
  max-height: 190px;
  position: relative;
}
.card-product-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2/1.12;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.card-product-img .overlayImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 99%;
  background-color: rgba(104, 104, 104, 0.0509803922);
  border-radius: 10px;
}

.card-product-title {
  color: black;
  font-weight: bold;
  font-size: large;
}

.price-later {
  font-size: large;
  font-weight: 400;
  text-decoration: line-through;
}

.price-two {
  font-size: large;
  font-weight: 400;
}

.price-now {
  font-size: large;
  font-weight: 800;
  color: #3bb77e !important;
}

.discount-bdg {
  background-color: #8fd1b3;
  color: #195a3c;
  padding: 0.3em;
  border-radius: 5px;
  font-size: smaller;
}

.description {
  font-size: small;
}

.user_ms,
.card-user {
  height: 100%;
}

.card-user .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-user .card-text {
  height: 60px;
}
.card-user .card-text .custom_img_ms p {
  font-size: smaller;
  color: #b7b7b7;
}
.card-user .cart-link {
  text-align: center;
  margin-bottom: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 25%;
}
.card-user .cart-link a {
  border-radius: 20px !important;
  padding: 0.17rem 0.38rem !important;
}

.flex-price {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .sidebar-widget {
    display: none;
  }
  .filleter-side {
    position: fixed !important;
    background: white;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 10000;
    width: 100%;
    transition: all 0.7s ease;
    overflow-y: scroll !important;
  }
  .filleter-side .sidebar-widget {
    display: block;
  }
  .filleter-side .filleter-btn {
    position: relative;
  }
  .filleter-btn {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50px);
    background: #3bb77e;
    border: 1px solid #d3c8c8;
    width: 70px;
    border-radius: 20px;
    box-shadow: 1px -2px 7px 0px #ebe3e3;
    padding: 0.2rem 0.1rem;
    font-size: smaller;
    display: block;
    z-index: 1000;
  }
}
@media screen and (min-width: 1200px) {
  .filleter-btn {
    display: none;
  }
  .filleter-side {
    display: block;
  }
}
.primary-sidebar .sidebar-widget {
  padding: 1em 0.2em;
  border: none;
  box-shadow: unset;
}

.resetBtn {
  background-color: #ffffff;
  color: black;
}

.resetBtn:hover {
  background-color: #c8c8c8;
  color: black;
}

.priceLabel {
  color: #212529;
}

.chProduct {
  font-size: large;
  margin-bottom: 1em;
  color: #3bb77e;
}

.min-text-show span {
  font-size: medium;
  color: rgba(0, 0, 0, 0.5294117647) !important;
}
.min-text-show small {
  font-size: small !important;
}

.cart-item {
  display: flex;
  flex-direction: row;
  gap: 1.2em;
  flex-wrap: wrap;
}

.container-item-page {
  display: flex;
  justify-content: center;
}

.cart-item-center {
  box-shadow: 0px 1px 13px 1px gainsboro;
  margin-top: 11px;
  padding: 1.2rem;
  width: 100%;
}

@media screen and (min-width: 1100px) {
  .cart-item-center {
    width: 60%;
  }
}
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-item-remove {
  border: none;
  font-size: large;
  border-radius: 5px;
  color: red;
  background: transparent;
}

.btn-item-check {
  border: none;
  background: transparent;
  color: #3bb77e;
  font-size: large;
}

.cart-item-discount {
  margin-block: 1rem;
  background: transparent;
  display: flex;
  padding: 0 1rem;
  border-radius: 10px;
  box-shadow: -1px 3px 8px 2px rgba(59, 183, 125, 0.1490196078);
  color: #a39f9f !important;
}

.text-discount, .text-discount:focus {
  border: none;
}

.cart-item-btn-confirm {
  font-size: x-large;
  border-radius: 20px;
  margin-block: 1rem;
}

.cart-item-select {
  padding: 1rem !important;
  height: auto !important;
  border-radius: 20px !important;
  color: #a39f9f !important;
}/*# sourceMappingURL=List.css.map */