@charset "UTF-8";
.wish_products ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.wish_products {
  position: relative;
  overflow: hidden;
  margin: 30px 0;
}
.wish_products ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wish_products li {
  border: solid #ededed;
  border-width: 0 2px 2px 0;
  position: relative;
}
@media (max-width: 599px) and (min-width: 0) {
  .wish_products li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .wish_products li:nth-child(-n+2) {
    border-top-width: 2px;
  }
  .wish_products li:nth-child(2n+1) {
    border-left-width: 2px;
  }
  .wish_products li:nth-child(n+3):last-child {
    margin-right: auto;
  }
}
@media (max-width: 959px) and (min-width: 600px) {
  .wish_products li {
    flex: 0 0 33.3%;
    max-width: 33.3%;
  }
  .wish_products li:nth-child(-n+3) {
    border-top-width: 2px;
  }
  .wish_products li:nth-child(3n+1) {
    border-left-width: 2px;
  }
  .wish_products li:nth-child(n+4):last-child {
    margin-right: auto;
  }
}
@media (max-width: 1199px) and (min-width: 960px) {
  .wish_products li {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .wish_products li:nth-child(-n+4) {
    border-top-width: 2px;
  }
  .wish_products li:nth-child(4n+1) {
    border-left-width: 2px;
  }
  .wish_products li:nth-child(n+5):last-child {
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .wish_products li {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .wish_products li:nth-child(-n+5) {
    border-top-width: 2px;
  }
  .wish_products li:nth-child(5n+1) {
    border-left-width: 2px;
  }
  .wish_products li:nth-child(n+6):last-child {
    margin-right: auto;
  }
}
.wish_products .product_block {
  align-items: flex-start;
}
.wish_products .product_block .actions_block,
.wish_products .product_block .quick_view,
.wish_products .product_block .brand_name,
.wish_products .product_block .sticker {
  display: none;
}
.wish_products .item_remove {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 160%;
  border: none;
  padding: 0;
  background: transparent;
  z-index: 2;
  color: inherit;
  opacity: 0;
}
.wish_products .item_remove:before {
  position: absolute;
  color: #ffffff;
  top: 0;
  left: 0;
  font-size: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.wish_products .item_remove:after {
  display: block;
  content: "";
}

@media (max-width:359px) {
  .wish_products {
    margin: 0 -15px;
  }
  .wish_products ul {
    margin: 0 -2px;
  }
}
.web .wish_products li:hover .item_remove {
  opacity: 1;
}
.web .wish_products li:hover .item_remove:hover {
  color: #b94a48;
}

.touch .wish_products li .item_remove {
  opacity: 1;
}
.touch .wish_products li .item_remove:active {
  color: #b94a48;
}

.wish_products .item_remove {
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.touch .wish_products li .item_remove {
  -o-transition: color 0.15s;
  -ms-transition: color 0.15s;
  -moz-transition: color 0.15s;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}

/*# sourceMappingURL=wishlist.css.map */
