/* products carousel */

.products-carousel .container{
    position: relative;
}

.products-carousel #products-block{
    width: 100%;
    height: 760px;
    margin: 0 auto;
}

.products-carousel .products-item{
    text-align: center;
    width: 360px;
    opacity: 0.8;
}

.products-carousel .products-item.selected{
    opacity: 1;
}

.products-carousel .products-item.selected .products-item-spec{
    color: #00791e;
    font-weight: bolder;
}

.products-carousel .products-item.selected:hover .products-item-spec .info{
    background: url(../images/img_products-item-icon1.png) right no-repeat;
    background-size: auto 100%;
}

.products-carousel .products-item.selected .inner-block img{
    width: 90%;
}

.products-carousel .products-item.selected:hover .inner-block img{
    -webkit-filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.5));
}

.products-carousel .inner-block{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    height: 360px;
    background: url(../images/img_products_round_bg.png)center top no-repeat;
    background-size: cover;
    /* overflow: hidden; */
    border-radius: 360px;
    box-shadow: 0 0 50px #FFF;
}

.products-carousel .inner-block img{
    transition: all .5s;
    /* transition: width 0.5s; */
    width: 70%;
}

.products-carousel .carousel-options {
    text-align: center;
    position: relative;
    display: none;
}

/* .products-carousel .dot-block{
    position: relative;
    text-align: center;
    margin: 30px auto;
    display: block;
}

.products-carousel .dot{
    display: inline-block;
    cursor: pointer;
    font-weight: bolder;
    font-size: 16px;
    width: 36px;
    height: 36px;
    padding: 6px 0;
    border-radius: 20px;
    margin: 0 10px;
    border: rgb(37, 80, 51) 1px solid;
    background-color: #FFF;
    color: rgb(37, 80, 51);

    transition: background-color 0.25s, color 0.25s;
} */

/* .products-carousel .dot:hover, 
.products-carousel .dot.active{
    background-color: rgb(37, 80, 51);
    color: #FFF;
} */

@media (max-width: 768px) {
    .products-carousel #products-block{
        position: absolute;
        height: 620px;
        top: -100px;
    }

    .products-carousel .products-item{
        width: 300px;
        opacity: 0;
    }

    .products-carousel .inner-block,
    .products-carousel .inner-block img{
        width: 100%;
        height: 300px;
    }

    .products-carousel .carousel-options{
        display: block;
    }

    .dot-block{
        display: none;
    }
}