/* products */

.category_page_products_container {
  padding-top: 30px;
  background-color: #fff;
}

.category_page_products {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.product_item {
  width: 22.5%;
  margin: 0 0 2% 2%;
  padding: 6px 0px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: none;
  background-color: #FFF;
  border-radius: 10px;
  margin-left: 2% !important;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
}

.product_item:nth-child(4n + 1) {
  margin-left: 0;
}

.product_item a {
  color: #000;
  outline: none;
  text-decoration: none;
  position: relative;
  display: block;
}

.product_item a:hover {
  color: #000;
}

.product_tags {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product_item_percentual {
  background-color: #006ec0;
  color: #fff;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  line-height: 1.1;
}

.product_item_tag {
  margin: 0;
  font-size: 11px;
  display: block;
  padding: 8px 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
}

.product_item_image {
  position: relative;
}

.product_item_image img {
  width: 100%;
  display: block;
  padding: 0;
  border-radius: 10px;
}

.two_images_product img:nth-child(2) {
  display: none;
}

.two_images_product:hover>img:nth-child(1) {
  display: none;
}

.two_images_product:hover>img:nth-child(2) {
  display: block;
}

.product_item_customized_product_content {
  padding: 0px 5px 3px 5px;
}

.product_item_customized_product {
  width: 75%;
  height: 18px;
  margin: auto;
  font-size: 10px;
  box-sizing: border-box;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_item_customized_product i {
  margin-left: 4px;
  color: #fff;
}

.product_item_brand_thumb {
  width: 50px;
  position: absolute;
  bottom: -8px;
  margin: 0;
  right: 0;
}

.product_item_brand_thumb img {
  width: 100%;
  margin: auto;
  display: block;
  border-radius: 50%;
}

.product_item_title {
  display: flex;
  padding: 0px 5px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
  line-height: 1.3;
}

.product_item_title {
  font-size: 14px !important;
}

.product_item_title h3 {
  margin: 0;
  padding: 0;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.3;
  display: -webkit-box;
  text-align: center;
  font-weight: bold;
}

.product_item_title p.brand-name {
  margin: 0;
  padding-top: 1px;
  font-size: 13px;
  color: #000;
}

.product_item_price {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 0 5px 0;
  letter-spacing: -0.2px;
}

.product_item_price del {
  font-size: 13px;
  text-decoration: line-through;
}

.product_item_price ins {
  font-size: 17px;
  font-weight: 600;
  padding-left: 10px;
  text-decoration: none;
}

.product_item_colors_line {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 0 8px 0;
}

.product_item_colors_line_item {
  margin-right: 5px;
  border: 1px transparent solid;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  box-sizing: border-box;
}

.product_item_colors_line_item.selectedColoritem {
  border: 1px #52c1ee solid;
}

.product_item_colors_line_item a {
  border: 1px #ddd solid;
  border-radius: 40px;
  width: 21px;
  height: 21px;
  display: flex;
  flex-direction: row;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
}

.product_item_colors_line_item.selectedColoritem a {
  border: 1px transparent solid;
}

.product_item_colors_line_item a img {
  width: 18px;
  height: 18px;
  border-radius: 40px;
}

.product_item_colors_line_item_p {
  margin: 0;
  padding: 0;
}

.product_item_colors_line_item_p a {
  font-size: 13px;
  color: #DDD;
  text-decoration: underline;
}

.category_see_more_products {
  padding: 10px 15px;
  margin: 16px auto 50px auto;
  text-align: center;
  font-size: 15px;
  border: 1px #000 solid;
  cursor: pointer;
  color: #000;
  border-radius: 3px;
  transition: all 0.1s linear;
  display: block;
  width: 265px;
}

.category_see_more_products:hover {
  color: #fff;
  background-color: #000;
}

@media screen and (max-width: 1200px) {
  .product_item_title h3 {
    font-size: 13px;
  }
}

@media screen and (max-width: 991px) {
  .product_item {
    width: 31%;
  }
  .product_item:nth-child(4n + 1) {
    margin-left: auto;
  }
  .product_item:nth-child(3n + 1) {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .category_page_products {
    padding-top: 30px;
    width: 100%;
    max-width: 100%;
    margin: 0px;
    padding: 0px;
  }
  .product_item {
    width: 47%;
    border-radius: 10px;
    margin-left: 2% !important;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  }
  .product_item:nth-child(2n + 1) {
    margin-left: 0;
  }
  .product_item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .product_item_percentual, .product_item_tag {
    font-size: 11px;
    padding: 4px 7px;
  }
  .product_item_price del {
    font-size: 13px;
  }
  .product_item_price ins {
    font-size: 16px;
    padding-left: 5px;
  }
}