﻿.product-template-related {
    width: 100%;
    min-height: 300px;
    float: left;
}

/* ////////////////////////////////////////////////////////////////////////////////////// */
.product-template-related {
    width: 100%;
    padding: 20px 0;
}

    .product-template-related .titr {
        width: 100%;
        padding-top: 50px;
        text-align: center;
    }

    .product-template-related .swiper-slide {
        width: 400px;
        height: 250px;
    }

    .product-template-related .item-product {
        width: 100%;
        height: 100%;
        cursor: pointer;
        border-radius: 20px;
        border: 1px solid #ddd;
        background-color: #FDF7EA;
    }

        .product-template-related .item-product .image-product {
            width: 100%;
            height: 100%;
            background-size: contain;
            background-position: center center;
            background-repeat: no-repeat;
            position: relative;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .product-template-related .item-product .image-product .title {
                width: 50%;
                height: 50px;
                background-color: #DE7A66;
                color: #fff;
                position: absolute;
                bottom: 15px;
                display: none;
                transition: all .5s;
                text-align: center;
                padding-top: 12px;
            }

        .product-template-related .item-product:hover .title {
            display: block
        }
/*////////////////////////////////////////////////*/
@media screen and (max-width: 768px) {
    .product-template-related .item-product .btn-wrapper,
    .product-template-related .item-product .title,
    .product-template-related .item-product .img {
        position: relative;
    }
    .product-template-related .item-product .btn-wrapper {
        display: block;
        bottom: 0;
    }
    .product-template-related .swiper-slide {
        width: 300px;
        height: 250px;
    }
    .product-template-related .item-product {
        width: 300px;
    }
    }
