@import url('https://fonts.googleapis.com/css?family=Raleway:400,100');
.product-grid{
    font-family: "Raleway", serif;
    text-align: center;
    border-radius: 10px 10px;
    padding: 10px 10px;
    border:1px solid #F0F0F0;
    overflow: hidden;
    margin: 0 auto;
	margin-bottom:20px;
}
.product-grid .product-image{
    border-radius: 10px 10px;
    overflow: hidden;
    position: relative;
    border:1px solid #F0F0F0;
}
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image img{
    width: 100%;
    height: auto;
}
.product-image .pic-1{
    opacity: 1;
    backface-visibility: hidden;
    transition: all 0.4s ease-out 0s;
}
.product-grid:hover .product-image .pic-1{ opacity: 0; }
.product-image .pic-2{
    width: 100%;
    height: 100%;
    opacity: 0;
    backface-visibility: hidden;
    transform: scale(3);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease-out 0s;
}
.product-grid:hover .product-image .pic-2 {
    opacity: 1;
    transform: scale(1);
}
.product-grid .product-new-label,
.product-grid .product-sale-label{
    color: #fff;
    background: #1ABC9C;
    font-size: 13px;
    font-weight: 400;
    padding: 3px 9px;
    text-transform: uppercase;
    border-radius: 5px 5px;
    opacity: 1;
    position: absolute;
    top: 12px;
    right: 12px;
    transition: all 0.3s ease-in-out;
}
.product-grid:hover .product-new-label,
.product-grid:hover .product-sale-label{
    opacity: 0;
}
.product-grid .product-links{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all .3s ease 0.3s;
}
.product-grid:hover .product-links{ opacity: 1; }
.product-grid .product-links li{
    margin: 0 0 5px;
    display: block;
}
.product-grid .product-links li:last-child{ margin: 0; }
.product-grid .product-links li a{
    color: #aaa;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin: 0;
    display: block;
    position: relative;
    transition: all 0.3s ease 0.1s;
}
.product-grid .product-links li a:hover{
    color: #fff;
    background-color: #1ABC9C;
    border-color: #1ABC9C;
}
.product-grid .product-links li a i{ line-height:inherit; }
.product-grid .product-links li a:before,
.product-grid .product-links li a:after{
    content: attr(data-tip);
    color: #fff;
    background: #1ABC9C;
    font-size: 12px;
    line-height: 20px;
    padding: 5px 10px;
    white-space: nowrap;
    display: none;
    border-radius: 5px 5px;
    transform: translateY(-50%);
    position: absolute;
    right: 53px;
    top: 50%;
    z-index: 1;
}
.product-grid .product-links li a:after{
    content: "";
    height: 15px;
    width: 15px;
    padding: 0;
    border-radius: 0;
    transform: translateY(-50%) rotate(45deg);
    right: 50px;
    z-index: 0;
}
.product-grid .product-links li a:hover:before,
.product-grid .product-links li a:hover:after{
    display: block;
}
.product-grid .add-cart{
    color: #fff;
    background: #1ABC9C;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0;
    text-transform: uppercase;
    padding: 11px 12px 10px;
    display: block;
    transition: all .3s ease;
}
.product-grid .add-cart i{ margin: 0 5px 0 0; }
.product-grid:hover .add-cart{ opacity: 1; }
.product-grid .product-content{ padding: 10px 0 0; }
.product-grid .product-category{
    font-size: 14px;
    text-transform:uppercase;
    margin-bottom: 5px;
    display: block;
}
.product-grid .product-category a{
    color: #1ABC9C;
    transition: all .4s ease 0s;
}
.product-grid .title{
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.product-grid .title a{
    color: #000;
    transition: all 0.3s ease 0s;
}
.product-grid .title a:hover{ color: #1ABC9C; }
.product-grid .price{
    color: #1ABC9C;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 5px;
}
@media screen and (max-width: 990px){
    .product-grid{ margin-bottom: 30px; }
}




/////////////////
.pagination-outer{ text-align: center; }
.pagination{
    font-family: 'Raleway', sans-serif;
    padding: 7px;
    display: inline-flex;
	
    position: relative;
    border: 1px solid #ccc;
    box-shadow: 0 0 5px rgba(0,0,0,0.2) inset;
}
.pagination li a.page-link{
    color: #999;
    background: linear-gradient(#fff,#eee);
    font-size: 12px;
    font-weight: 400;
    line-height: 35px;
    height: 36px;
    width: 36px;
    padding: 0;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
    transition: all 0.3s ease 0s;
	text-align:center;
}
.pagination li a.page-link:hover,
.pagination li a.page-link:focus,
.pagination li.active a.page-link:hover,
.pagination li.active a.page-link{
  height: 36px;
    width: 36px;
    color: #fff;
    background: #1ABC9C;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
	text-align:center;
}
.pagination li:first-child a.page-link,
.pagination li:last-child a.page-link{
    font-size: 12px;
    width: auto;
    padding: 0 10px;
	text-align:center;
}
@media only screen and (max-width: 480px){
    .pagination{
        font-size: 0;
        display: inline-block;
    }
    .pagination li{
        display: inline-block;
        vertical-align: top;
        margin: 5px 0;
    }
}