.container-video {
    padding: 0;
    border-radius: 22px;
    overflow: hidden;
}

section.section-modal-videos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

section.section-modal-videos .overlay-video {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 50, 50, 0.9);
    z-index: 999600;
    display: flex;
    align-items: center;
    padding: 6.25% 15.2%;
}

section.section-modal-videos .overlay-video .content-youtube {
    position: relative;
    z-index: 600;
    width: 100%;
    height: 100%;
}

section.section-modal-videos .overlay-video .content-youtube .btn-close {
    position: absolute;
    background: #128a3f;
    width: 30px;
    top: -35px;
    right: -35px;
    z-index: 9999999;
    opacity: 0;
    cursor: pointer;
    padding: 8px;
    display: block;
    transition: 0.2s all;
}

section.section-modal-videos .overlay-video .content-youtube .btn-close.act {
    opacity: 1;
}

section.section-modal-videos .overlay-video .content-youtube .btn-close img {
    width: 100%;
    display: block;
    transition: 0.2s all;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

section.section-modal-videos .overlay-video .content-youtube .btn-close:hover img {
    transform: rotate(-90deg);
}

section.section-modal-videos .overlay-video .content-youtube .yt {
    background: rgb(0, 0, 0) url(../images/ajax-loader.svg) no-repeat center center;
    border-radius: 22px;
    background-size: 50px;
    position: relative;
    width: 100%;
    height: 100%;
}

section.section-modal-videos .overlay-video .content-youtube .yt iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media only screen and (max-width: 770px) {
    section.section-modal-videos .overlay-video {
        padding: 0;
    }

    section.section-modal-videos .overlay-video .content-youtube {
        position: relative;
        width: 100%;
        height: 100%;
    }

    section.section-modal-videos .overlay-video .content-youtube .btn-close {
        width: 34px;
        padding: 8px;
        display: block;
        opacity: 1;
    }

    section.section-modal-videos .overlay-video .content-youtube .btn-close img {
        width: 100%;
        height: auto;
        display: block;
    }

    section.section-modal-videos .overlay-video .content-youtube .yt {
        position: relative;
    }

    section.section-modal-videos .overlay-video .content-youtube .yt iframe {
        width: 100%;
        height: 100%;
        display: block;
    }
}