/* ---------------------------------------- *\
    PRODUCT LISTING / GRID STYLES
\* ---------------------------------------- */

.product-items,
#carousel-sellers {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding-left: 0;
}

.product-item {
  display: inline-block;
  height: auto !important;
  margin-bottom: 3rem !important;
  padding-bottom: 15px !important;
  text-align: center;
}

  .product-item-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    margin: 0 auto;
    /* border: 1px solid #ccc; */
    /* dashed border generated here https://kovart.github.io/dashed-border-generator/ */
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%230D21A1' stroke-width='2' stroke-dasharray='10%2c 10' stroke-dashoffset='5' stroke-linecap='square'/%3e%3c/svg%3e");
  }

    .product-item-container::before,
    .product-item-container::after {
      content: " ";
      display: table;
    }

    .product-item-container::after {
      clear: both;
    }

  .product-item .img {
    min-height: 100px;
    position: static;
  }

    .product-item .img a {
      display: block;
    }

    .product-item .img img {
      height: auto !important;
      margin: 2rem auto;
      transition: opacity .4s;
    }


  .product-item .product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .product-item .name {
    height: auto;
    padding-bottom: 5px;
    font-family: 'Karla', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
  }


  .product-item .price {
    height: auto;
    margin: 5px 0;
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    color: #282828;
  }

  .product-item .action {
    margin-top: auto;
  }


  .product-item .status {
    /* font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1; */
    display: none;
  }


  .product-item .reviews {
    display: none;
  }


.productList .product-item {
  width: 100% !important;
}

  .productList .product-item-container {
    display: block;
  }

  .productList .product-item .img {
    float: left;
    width: 33.3333%;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .productList .product-item .product-content {
    float: left;
    width: 65%;
    padding-left: 30px;
  }

   
/* related items (shown on product pages) */

@media screen and (min-width: 768px) {
  .related-item-slides:not(.slick-initialized) {
    display: flex;
    flex-wrap: wrap;
  }
}

.related-item-slides .product-item {
  height: 100% !important;
  margin: 0 10px !important;
  padding: 0 !important;
}

.related-item-slides .product-item:not(.slick-slide) {
  width: calc(100% - 20px);
  height: auto !important;
  margin-bottom: 20px !important;
}
  @media screen and (min-width: 768px) {
    .related-item-slides .product-item:not(.slick-slide) {
      width: calc(50% - 20px);
    }
  }
  @media screen and (min-width: 1024px) {
    .related-item-slides .product-item:not(.slick-slide) {
      width: calc(33.3333% - 20px);
    }
  }
  @media screen and (min-width: 1231px) {
    .related-item-slides .product-item:not(.slick-slide) {
      width: calc(25% - 20px);
    }
  }

.related-item-slides .product-item-container {
  height: 100%;
}


.related-item-slides .product-item .name {
  position: relative;
}

  .related-item-slides .product-item .name a {
    display: block;
    margin-top: 16px;
  }

.related-item-slides .product-item .product-part {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 12px;
}


.related-item-slides .slick-prev,
.related-item-slides .slick-next {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  background: #f4f4f4;
  border: none;
  width: 20px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
  @media screen and (min-width: 768px) {
    .related-item-slides .slick-next,
    .related-item-slides .slick-prev {
      width: 40px;
    }
  }

  .related-item-slides .slick-prev:hover,
  .related-item-slides .slick-next:hover {
    background: #062f87;
  }

  .related-item-slides .slick-prev::before,
  .related-item-slides .slick-next::before {
    position: static;
    font-family: 'Fontello';
    content: '\25b8';
    font-size: 40px;
    line-height: 1;
    color: #000;
  }

  .related-item-slides .slick-prev:hover::before,
  .related-item-slides .slick-next:hover::before {
    color: #fff;
  }

  .related-item-slides .slick-prev {
    left: 0;
    transform: rotate(180deg);
  }

  .related-item-slides .slick-next {
    right: 0;
  }


.relatedBlock .slick-list {
  width: calc(100% - 80px);
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .relatedBlock .slick-track {
    height: 395px;
  }
}


.relatedBlock .slick-dots {
  position: static;
}


/* you may also like (shown on cart page) */

.category-related .flexslider .product-item {
  height: auto !important;
}