/*video grid classes & config*/
.video-sec {
    display: flex;
    height: 100%;
}

.video-grid {
    padding-right: 5px !important;
    padding-left: 5px !important;
}

.video-grid iframe {
    width: 100% !important;
    height: 200px;
    grid-template-columns: auto auto;
    grid-gap: 0;
    background-color: #fff;
    padding: 0;
}

/*END video grid classes & config*/

/* Slider */
ul.video-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0px;
}

li.video {
    flex-grow: 1;
    position: relative;
    ooverflow: hidden;
    width: 100%;
    width: -webkit-calc(100% / 1);
    width: calc(100% / 1);
    border: solid 0.2em transparent;

    & a {
        outline: none;
    }

    &:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        transition: background-color .15s;
    }

    & figure {
        display: block;
        position: relative;
        overflow: hidden;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;

        & img {
            display: block;
            max-width: 100%;
            height: auto;
            opacity: 1;
            transform: scale(1);
            transition: all .20s;
        }
    }

    &:hover {
        & figure {
            & img {
                opacity: 1;
                transform: scale(1.5);
            }
        }
    }
}

@media screen and (max-width: 800px) {
    li.video {
        width: 100%%;
        width: -webkit-calc(100% / 2);
        width: calc(100% / 1);
    }
}

@media screen and (max-width: 640px) {
    li.video {
        width: 100%;
    }
}

.empty-space-new{
    margin-top: 10px;
}

.single-product__batons {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.single-product__batons .btn {
    padding: 12px !important;
    margin: 2px;
}