*
{
  box-sizing: border-box;
  font-family: 'Open Sans', 'Arial', sans-serif;
}

.titulo {
  font-style: normal;
  color: #5bc5db;
  font-size: 16pt;
  font-weight: bolder;
  margin-left: 930px;
  margin-top: -70px;
}



.listing
{
  padding: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    /*just for pen positioning*/
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
}

.product
{
  width: 20%;
  position: relative;
  background: #52763e;
}

.product a
{
  text-decoration: none;
}

.img-wrapper
{
  display: block;
  width: 100%;
  height: 90;
  border: 1px solid #afafaf;
  border-bottom: 0;
  overflow: hidden;
  text-align: center;
}


.info
{
  width: 100%;
  background: #000;
  color: #fff;
  position: relative;
  padding: 40px 10px 20px 10px;
  text-align: center;
  
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0,0,0,0);
  backface-visibility: hidden;
  transition-property: color,height;
  transition-duration: 0.3s,0.4s;
  transition-timing-function: ease-out;
  height: 83px;
}

.info:before
{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  transform: scaleY(0);
  transform-origin: 50%;
  transition: transform 0.3s ease-out;
}

.info:after
{
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  left: calc(50% - 11px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: black transparent transparent transparent;
}

.product:hover .info
{
  height: 40px;
}

.product:hover .info:before
{
  transform: scaleY(0.7);
}

.product:hover .info:after
{
  visibility: visible;
  transform: translateY(10px);
}

.title
{
  transition: transform 0.3s ease-out;
}
.title a
{
  color: inherit;
}
.product:hover .title
{
  transform: translateY(-18px);
  font-weight: bold;
  color: #000;
}

.price
{
  background: #e32d2c;
  position: absolute;
  font-size: 1.3em;
  padding: 4px 13px;
  top: -15px;
  right: 10px;
}

.price.sale
{
  background: #00ba2f;
  font-size: 0.95em;
}

.price.old
{
  font-size: 0.95em;
  padding: 4px 6px;
  text-decoration: line-through;
  top: -43px;
}

.actions-wrapper
{
  margin-top: 14px;
  display: flex;
  justify-content: space-around;
  visibility: hidden;
}

.actions-wrapper *
{
  width: 50%;
  padding: 2px 0;
  text-align: center;
  color: #191919;
  font-size: 0.75rem;
  font-weight: bolder;
}

.actions-wrapper *:before
{
  font-family: "FontAwesome";
  margin-right: 8px;
}
.wishlist
{
  border-right: 1px solid #afafaf;
}
.wishlist:hover
{
  color: #32ff40;
}
.wishlist:before
{
  content: "\f08a";
}

.cart:hover
{
  color: #04fde8;
}
.cart:before
{
  content: "\f07a";
}

.product:hover .actions-wrapper *
{
  visibility: visible;
}

.note
{
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 8px;
  font-size: 0.9em;
}

.note.on-sale
{
  background: #00ba2f;
  color: red;
  font-weight: bold;
}

.note.no-stock
{
  background: #191919;
  color: #fff;
}


.listing2
{
  list-style: none;
  margin: 0%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
  /*just for pen positioning*/
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
}

.product2
{
  width: 20%;
  position: relative;
  background: #52763e;
}

.product2 a
{
  text-decoration: none;
}

.img-wrapper
{
  display: block;
  width: 100%;
  height: 70;
  border: 1px solid #afafaf;
  border-bottom: 0;
  overflow: hidden;
  text-align: center;
}


.info2
{
  width: 100%;
  background: #000;
  color: #fff;
  position: relative;
  padding: 40px 10px 20px 10px;
  text-align: center;
  
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0,0,0,0);
  backface-visibility: hidden;
  transition-property: color,height;
  transition-duration: 0.3s,0.4s;
  transition-timing-function: ease-out;
  height: 83px;
}

.info2:before
{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  transform: scaleY(0);
  transform-origin: 50%;
  transition: transform 0.3s ease-out;
}

.info2:after
{
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  transition-duration: 0.3s;
  transition-property: transform;
  left: calc(50% - 11px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: black transparent transparent transparent;
}

.product2:hover .info
{
  height: 40px;
}

.product2:hover .info:before
{
  transform: scaleY(0.7);
}

.product2:hover .info:after
{
  visibility: visible;
  transform: translateY(10px);
}

.title2
{
  transition: transform 0.3s ease-out;
}
.title2 a
{
  color: inherit;
}
.product2:hover .title
{
  transform: translateY(-18px);
  font-weight: bold;
  color: #000;
}

.price2
{
  background: #e32d2c;
  position: absolute;
  font-size: 1.3em;
  padding: 4px 13px;
  top: -15px;
  right: 10px;
}

.price2.sale
{
  background: #00ba2f;
  font-size: 0.95em;
}

.price2.old
{
  font-size: 0.95em;
  padding: 4px 6px;
  text-decoration: line-through;
  top: -43px;
}

.actions-wrapper2
{
  margin-top: 14px;
  display: flex;
  justify-content: space-around;
  visibility: hidden;
}

.actions-wrapper2 *
{
  width: 50%;
  padding: 2px 0;
  text-align: center;
  color: #191919;
  font-size: 0.75rem;
  font-weight: bolder;
}

.actions-wrapper2 *:before
{
  font-family: "FontAwesome";
  margin-right: 8px;
}
.wishlist2
{
  border-right: 1px solid #afafaf;
}
.wishlist2:hover
{
  color: #32ff40;
}
.wishlist2:before
{
  content: "\f08a";
}

.cart2:hover
{
  color: #04fde8;
}
.cart2:before
{
  content: "\f07a";
}

.product2:hover .actions-wrapper *
{
  visibility: visible;
}

.note2
{
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px 8px;
  font-size: 0.9em;
}

.note.on-sale2
{
  background: #00ba2f;
  color: red;
  font-weight: bold;
}

.note.no-stock
{
  background: #191919;
  color: #fff;
}
