.owl-item {
  flex: 1;
  width: 20vw;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-item .product-thumb {
  border: solid 1px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 10px;
  margin: 0 10px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: start;
}

.owl-item .product-thumb .wishlist,
.owl-item .product-thumb .compare {
  transform: scale(0);
}

.owl-item .product-thumb .wishlist,
.owl-item .product-thumb .compare {
  transition: all ease-in-out 0.3s;
}

.owl-item .product-thumb .wishlist:hover,
.owl-item .product-thumb .compare:hover {
  color: #339acc !important;
  background: #e5e5e5 !important;
}

.owl-item .product-thumb:hover {
  border: solid 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 10px -8px rgba(0, 0, 0, 0.15);
}

.owl-item .product-thumb:hover .wishlist,
.owl-item .product-thumb:hover .compare {
  transform: scale(1);
}

.owl-item .product-thumb .image {
  position: relative;
  text-align: center;
  margin: 10px;
  overflow: hidden;
}

.owl-item .product-thumb .image a {
  display: block;
  position: relative;
}

.owl-item .product-thumb .image img {
  width: 100%;
}

.owl-item .product-thumb .image .block--btns {
  display: flex;
  justify-content: space-around;
  width: auto;
  color: inherit !important;
}

.owl-item .product-thumb .cart {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.owl-item .product-thumb .cart * {
  color: inherit;
}

.owl-item .product-thumb .cart button {
  flex: 1;
}

.owl-item .product-thumb .price {
  color: #555 !important;
  font-size: 1.35em;
  font-weight: bolder;
}

.owl-item .product-thumb .price .price-old {
  color: #999 !important;
  text-decoration: line-through;
}

.owl-item .product-thumb .price .price-new {
  font-weight: 700;
  white-space: nowrap;
}

.owl-item .product-thumb .caption {
  line-height: 1.3em;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.owl-item .product-thumb .caption > a {
  color: #339acc !important;
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
  font-weight: bolder;
  flex: 1;
}

.owl-item .product-thumb .caption > a:hover {
  color: #339acc !important;
}

.owl-item .product-thumb .add_to_cart {
  color: #ffffff !important;
  background: #339acc !important;
}

.owl-item .product-thumb .quick_order {
  transition: all ease-in-out 0.2s;
}

.owl-item .product-thumb button + button {
  margin: 0 0 0 6px;
}

@media screen and (max-width: 960px) {
  .owl-item {
    min-width: 33vw;
  }
}

@media screen and (max-width: 480px) {
  .owl-item {
    width: 100%;
    min-width: 320px;
  }
}