﻿.product-grid {
    font-family: 'Poppins',sans-serif;
    position: relative
}

    .product-grid .product-image {
        overflow: hidden;
        position: relative
    }
    .product-grid .item-list-variations {
        width: 50%;
        padding: 3px;
        background-color: #fff;
        position: absolute;
        z-index: 100;
        min-height: 40px;
        border: solid 1px #ccc;
        box-shadow: 1px 2px 2px #ccc;
    }
    .product-grid .product-image a {
        display: block;
        background-color: #fff;
    }

        .product-grid .product-image img {
            width: 100%;
            height: auto
        }

.product-image .pic-1 {
    opacity: 1;
    backface-visibility: hidden;
    transition: all .5s ease 0s
}

.product-grid:hover .product-image .pic-1 {
    opacity: 0
}

.product-image .pic-2 {
    width: 100%;
    height: 100%;
    opacity: 0;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s ease 0s
}

.product-grid:hover .product-image .pic-2 {
    opacity: 1
}

.product-grid .social {
    padding: 0;
    margin: 35px 0 0 0;
    position: absolute;
    top: 10px;
    right: 10px
}

    .product-grid .social li {
        display: block;
        margin: 0 0 10px;
        transition: all .5s
    }

        .product-grid .social li:nth-child(2) {
            opacity: 0;
            transform: translateY(-50px)
        }

.product-grid:hover .social li:nth-child(2) {
    opacity: 1;
    transform: translateY(0)
}

.product-grid .social li:nth-child(3) {
    opacity: 0;
    transform: translateY(-50px)
}

.product-grid:hover .social li:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .2s
}

.product-grid .social li a {
    color: #888;
    background: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: block;
    border: solid 1px #f4f4f4;
    transition: .5s ease 0s
}

    .product-grid .social li a:hover {
        color: #fff;
        background: #000;
        border: none;
    }

.product-grid .select-options {
    color: #777;
    background-color: #fff;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 5px;
    margin: 0 auto;
    opacity: 0;
    display: block;
    position: absolute;
    width: 92%;
    left: 0;
    bottom: -100px;
    right: 0;
    transition: .5s ease 0s
}

    .product-grid .select-options:hover {
        color: #fff;
        background-color: #000;
        text-decoration: none
    }

.product-grid:hover .select-options {
    opacity: 1;
    bottom: 10px
}

.product-grid .product-content {
    padding: 20px 10px
}

.product-grid .title {
    font-size: 15px !important;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 10px;
    transition: all .3s ease 0s
}

.product-grid .price {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px
}

@media only screen and (max-width:990px) {
    .product-grid {
        margin-bottom: 30px
    }
}
