﻿.b-cart {
    position:  relative;
 }


.b-cart img {
 -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
   }



.b-cart:hover {
  opacity: 1;
}





.b-items {
  margin: 10px 0 0 0;
  padding: 0;
}
.b-items .b-items__item {
    display: inline-block;
    border: 1px solid #eee;
    width: 31.5%;
    position: relative;
    padding: 10px;
    border-radius: 0px;
    margin: 60px 5px 15px 5px;
}


.b-items .b-items__item .b-items__item__img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.b-items .b-items__item a {
  display: block;
  text-decoration: none;
  text-align: center;
}
.b-items .b-items__item a:hover {
  opacity: 0.8;
}
.b-items .b-items__item__title {
    font-size: 15px;
    margin-top: 0px;
    color: #192144;
    height:150px;
    text-align:center;
    overflow: hidden;
    line-height: 18px;
}
.b-items .b-items__item__titleXXX {
    font-size: 15px;
    margin-top: 9px;
    color: #192144;
    height:100px;
    text-align:center;
    overflow: hidden;
    line-height: 18px;
}

.b-items .b-items__item__add-to-cart {
    display: block;
    background: #192144;
    color: #fff;
    margin-top: 5px;
    padding: 10px 0;
    border-bottom: 2px solid #ec2227;
    font-size: 13px;
    text-transform: capitalize;
    font-weight: 600;
}

.b-flying-img {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 0;
  left: 0;
  z-index: 5;
  animation: fly 0.8s 1;
  -webkit-animation: fly 0.8s 1;
  -webkit-backface-visibility: hidden;
}
@keyframes fly {
  0% {
    -moz-transform: rotate(0deg);
    /* Ãâ€ÃÂ»Ã‘Â Firefox */
    -ms-transform: rotate(0deg);
    /* Ãâ€ÃÂ»Ã‘Â IE */
    -o-transform: rotate(0deg);
    /* Ãâ€ÃÂ»Ã‘Â Opera */
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    /* Ãâ€ÃÂ»Ã‘Â Firefox */
    -ms-transform: rotate(360deg);
    /* Ãâ€ÃÂ»Ã‘Â IE */
    -o-transform: rotate(360deg);
    /* Ãâ€ÃÂ»Ã‘Â Opera */
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fly {
  0% {
    -webkit-transform: rotate(0deg);
    /* Ãâ€ÃÂ»Ã‘Â Safari, Chrome, iOS */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Ãâ€ÃÂ»Ã‘Â Safari, Chrome, iOS */
  }
}