﻿.Hotseller {
  display: flex;
  flex-wrap: wrap;
}

.Hotseller-body {
  position: relative;
  overflow: hidden;
}

h4.Product-title {
  position: absolute;
  width: 100%;
  text-align: center;
}

.Hotseller-body a {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
}

.Hotseller-body:hover img {
  transform: scale(1.1);
  transition: all .3s;
  filter: contrast(20%);
}

a.linktoview img {
  transition: all .3s;
  
}

.Hotseller-body:hover h4.Product-title {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d( 0px, 80%, 0px );
  -moz-transform: translate3d( 0px, 80%, 0px );
  -ms-transform: translate3d( 0px, 80%, 0px );
  -o-transform: translate3d( 0px, 80%, 0px );
  transform: translate3d( 0px, 80%, 0px );
}

h4.Product-title {
  font-size: 15px;
  right: 0;
  display: inline-block;
  position: absolute;
  top: 15px;
  background: rgba(195, 34, 40, 0.57);
  width: 100%;
  text-align: center;
  padding: 10px;
  z-index: 1111;
  color: #fff;
  text-shadow: 1px 1px #000;
  font-weight: bold;
  border-right: 5px solid #000;
  border-left: 5px solid #000;
  -webkit-transform: translate3d( 0px, 0px, 0px );
  -moz-transform: translate3d( 0px, 0px, 0px );
  -ms-transform: translate3d( 0px, 0px, 0px );
  -o-transform: translate3d( 0px, 0px, 0px );
  transform: translate3d( 0px, 0px, 0px );
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  opacity: 0;
  visibility: hidden;
}