/* 
 * Vars
 */
/* 
 * General
 */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
*:focus {
  outline: 0;
}


/* Reset buttons */
button-infra-1 {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
}

/* Reset lists */
ul {
  padding: 0;
}

h1,
h2 {
  font-weight: 100;
}

/* Reset links hovers */
a:hover {
  text-decoration: none;
}

button-infra-1,
a {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
button-infra-1:after,
a:after {
  content: "";
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-color: #27146d;
  display: block;
  width: 100%;
  height: 200px;
  position: absolute;
  top: -300px;
  left: 0;
  z-index: -1;
}
/*
 * Product card
 */
.products .product {
  list-style: none;
}
.products .product-item {
  background-color: white;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  position: relative;
  margin: 0 0 30px;
}

.products .product-item .cover-link {
  position: relative;
  display: block;
}
.products .product-item .cover-link:before {
  content: "";
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: all .2s ease-out;
  position: absolute;
  top: -200%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
}
.products .product-item .cover-link:hover:before {
  opacity: 1;
  top: 0;
}

.products .product-item .cover-link .see {
  transition: all .2s ease-out;
  border: white 1px solid;
  text-align: center;
  opacity: 0;
  width: 60px;
  height: 64px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 9;
  margin: -32px 0 0 -30px;
  padding: 10px 0 0;
}
.products .product-item .cover-link .see i,
.products .product-item .cover-link .see span {
  color: white;
  text-transform: uppercase;
  display: block;
}
.products .product-item .cover-link .see i {
  margin: 0 0 5px;
}
.products .product-item .cover-link:hover .see {
  top: 50%;
  transition: all .2s ease-out;
  opacity: 1;
}

.products .product-item .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 204px;
}
.products .product-item .image img {
  display: none;
}

.products .product-item .info {
  padding: 15px;
}
.products .product-item .info .text {
  height: auto;
  position: relative;
  overflow: hidden;
  line-height: 1.7;
  font-size: 16px;
  color: #7d8993;
  font-weight:600;
  text-transform: uppercase;
}
.products .product-item .info .text:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 22px;
}
.products .product-item .info .text p {
  color: #7d8993;
}
.products .product-item .info i {
  color: #e46713;
  font-size: 12px;
}
.products .product-item .info i.clear {
  color: #ced7db;
}

.products .product-item .actions {
  background-color: #27146d;
  font-size: 0;
  overflow: hidden;
  padding: 0 0 0 10px;
}
.products .product-item .actions .price {
  display: inline-block;
  vertical-align: top;
  padding: 10px 0 0;
}
.products .product-item .actions .price span {
  color: white;
  font-size: 24px;
  font-weight: 300;
}
.products .product-item .actions .price del {
  color: #e46713;
}
.products .product-item .actions .price del span {
  color: #e46713;
  font-size: 12px;
  margin: 0 10px 0 0;
}
.products .product-item .actions .price ins {
  text-decoration: none;
}
.products .product-item .actions .button-infra-1 {
  background-color: #27146d;
  height: 100%;
  float: right;
}
.products .product-item .actions .button-infra-1 a {
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  padding: 15px 10px;
}
.products .product-item .actions .button-infra-1 a:hover:after {
  background-color: #e46713;
}


@media only screen and (max-width : 767px) {
.products .product-item .info .text {
    margin-top: -55px;
    z-index: 99 !important;
    overflow: hidden;
}

}