.products-body {
  width: 80%;
  margin: 7rem auto 0;
  font-family: 'Poppins', sans-serif;
}

.products-body .results-header {
  background-color: #D6D6D6;
  padding: 1rem 1.5rem;
}

.products-body .results-header h3, .products-body .results-header p {
  margin: .3rem 0;
}

.products-body .categ-product-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0 0;
}

.products-body .categ-product-div .left-section {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}

.products-body .categ-product-div .left-section .categories {
  color: #474747;
}

.products-body .categ-product-div .left-section .categories li:hover {
  cursor: pointer;
}

.products-body .categ-product-div .left-section .categories hr {
  border-top: 1px solid #EBEBEB;
}

.products-body .categ-product-div .left-section .categories hr.top-hr {
  border-top: 1px solid #B8B8B8;
}

.products-body .categ-product-div .right-section {
  -ms-flex-preferred-size: 78%;
      flex-basis: 78%;
}

.products-body .categ-product-div .right-section .categ-items-header {
  padding: 1rem 2rem;
  background-color: #E0E0E0;
}

.products-body .categ-product-div .right-section .scroll-buttons {
  display: none;
}

.products-body .categ-product-div .right-section .hide {
  display: none;
}

.products-body .categ-product-div .right-section .items .categ-items {
  padding: 1rem 0 1rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card {
  width: 30%;
  -webkit-box-shadow: 0px 1px 9px 1px #888888;
          box-shadow: 0px 1px 9px 1px #888888;
  background-color: #858585;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: .5rem 1.25rem 1rem 0;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-image {
  background-color: #FFF;
  padding-top: 1rem;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-image img {
  width: 96%;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-image .category {
  margin: 0 .6rem .5rem;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-image .category .product-category {
  border: 1px solid #ccc;
  color: #EDFDF1;
  background-color: #579E1A;
  padding: .4rem;
  border-radius: 0 15% 15% 15%;
  font-size: .8rem;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-image .image-div {
  margin: 0 auto;
  width: 80%;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-image .like-sect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 1rem;
  position: relative;
  top: 1.1rem;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-image .like-sect .unliked {
  text-align: center;
  padding: .25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  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;
  background-color: #fdfffd;
  color: #4c4d4a;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-image .like-sect .liked {
  background-color: #FFF;
  font-size: 1.4rem;
  color: #D10000;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info {
  padding: 1rem 1rem;
  line-height: 1.9rem;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info span {
  display: block;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-name {
  font-size: 1.7rem;
  font-weight: bold;
  color: #D6D7EB;
  letter-spacing: 2px;
  margin: 10px 0;
  display: block;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-price {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-description {
  line-height: 1.8rem;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-rating {
  margin: .5rem 0;
  color: #1c1c1c;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-rating .fas.fa-star {
  -webkit-text-stroke: 1px #1C1C1C;
  background: #756300;
  background: linear-gradient(31deg, #756300 22%, #d1b000 51%, #756300 78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-rating .fas.fa-star,
.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-rating .far.fa-star:hover {
  cursor: pointer;
}

.products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .add-to-cart {
  display: inline-block;
  border: 1px solid #ccc;
  margin: 0 0 1rem;
  padding: .3rem .5rem;
  border-radius: 1rem;
  background-color: #579E1A;
  color: #EDFDF1;
}

.products-body .categ-product-div .right-section .items .categ-items.hide {
  display: none;
}

.products-body .categ-product-div .right-section .pagination {
  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;
  color: #474747;
  overflow-x: hidden;
  height: 3.5rem;
}

.products-body .categ-product-div .right-section .pagination button,
.products-body .categ-product-div .right-section .pagination span {
  color: #474747;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  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;
  border: none;
  border-radius: .3rem;
  margin: 0 .3rem;
  -webkit-box-shadow: 0px 0px 4px 0px #888888;
          box-shadow: 0px 0px 4px 0px #888888;
  background-color: #fff;
}

.products-body .categ-product-div .right-section .pagination .page-nums {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: scroll;
  width: 10rem;
  height: 3rem;
  margin: 0 .4rem;
}

.products-body .categ-product-div .right-section .pagination .page-nums .page-num {
  padding: 0px 18px;
  max-width: 0rem;
}

.products-body .categ-product-div .right-section .pagination .page-nums::-webkit-scrollbar {
  display: none;
}

.products-body .categ-product-div .right-section .pagination .active-page {
  background-color: #9FE561;
}

.products-body .categ-product-div .right-section .pagination::-webkit-scrollbar {
  border-radius: 5px;
}

.products-body .categ-product-div .right-section .pagination::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.products-body .categ-product-div .right-section .pagination::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) and (min-width: 320px) {
  .products-body {
    overflow-x: hidden;
    width: 95%;
    margin-top: 5rem;
  }
  .products-body .categ-product-div {
    display: -webkit-box;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-x: hidden;
  }
  .products-body .categ-product-div .left-section {
    margin: 0 auto;
  }
  .products-body .categ-product-div .left-section .categories {
    text-align: center;
  }
  .products-body .categ-product-div .left-section .categories h4 {
    margin: .5rem 0;
    padding: .5rem;
  }
  .products-body .categ-product-div .left-section .categories .show-categs {
    padding: .1rem;
  }
  .products-body .categ-product-div .left-section .categories .categs-list {
    display: none;
  }
  .products-body .categ-product-div .right-section {
    overflow-x: hidden;
    padding: 2rem 0rem;
    width: 96%;
  }
  .products-body .categ-product-div .right-section .scroll-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    top: 350px;
  }
  .products-body .categ-product-div .right-section .scroll-buttons button {
    z-index: 3;
    padding: .55rem;
    border-radius: 50%;
    border: 1px solid #ccc;
    width: 40px;
    text-align: center;
    background-color: #BFEE96;
    color: #5C5C5C;
    font-size: 1rem;
  }
  .products-body .categ-product-div .right-section .items {
    overflow-x: hidden;
  }
  .products-body .categ-product-div .right-section .items .categ-items {
    display: -webkit-box;
    padding: 1rem .5rem 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: scroll;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-card {
    -ms-flex-preferred-size: 16rem;
        flex-basis: 16rem;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-card .product-info {
    line-height: unset;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-name {
    font-size: 1.5rem;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-price {
    font-size: 1.3rem;
    margin: 0;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .prod-description {
    line-height: 1.3rem;
    font-size: .8rem;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-card .product-info .add-to-cart {
    font-size: .9rem;
  }
  .products-body .categ-product-div .right-section .items .active {
    scroll-behavior: smooth;
  }
  .products-body .categ-product-div .right-section .pagination {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 1098px) and (min-width: 769px) {
  .products-body .categ-product-div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
  .products-body .categ-product-div .left-section {
    text-align: center;
  }
  .products-body .categ-product-div .left-section .categories .categs-list {
    display: none;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-card {
    width: 45%;
    max-width: 290px;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-card img {
    max-width: 215px;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-info {
    line-height: unset;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-info .prod-name {
    font-size: 1.5rem;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-info .prod-price {
    font-size: 1.3rem;
    margin: 0;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-info .prod-description {
    line-height: 1.3rem;
    font-size: .8rem;
  }
  .products-body .categ-product-div .right-section .items .categ-items .product-info .add-to-cart {
    font-size: .9rem;
  }
}
/*# sourceMappingURL=products.css.map */