.product-item > div {
  position: relative;
  transform: scale(1);
  z-index: 0;
  transition: all ease-out 150ms;
}
.product-item > div > div {
  transition: all ease-out 150ms;
  box-shadow: 0px 13px 19px -21px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}
.product-item > div > span {
  top: -33px;
  left: 0px;
  padding: 3px 18px 65px;
  z-index: 0;
}
.product-item .thumb > img {
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-item .icone {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-item:hover > div, .product-item:focus > div {
  transform: scale(1.05);
  z-index: 1;
}
.product-item:hover > div > div, .product-item:focus > div > div {
  box-shadow: 0px 30px 18px -17px rgba(0, 0, 0, 0.2);
}

.form-check {
  cursor: pointer !important;
}
.form-check * {
  cursor: pointer !important;
}