@keyframes fade-in-up {
    0% {
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.video {
    height: 300px;
}

.video-wrap {
    max-width: 600px;
    width: 100%;
    margin: 0 auto 20px;
}

.video iframe {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    width: 100%;
}

.video.stuck {
    position: fixed;
    bottom: 5px;
    right: 20px;
    width: 450px;
    height: 250px !important;
    transform: translateY(100%);
    animation: fade-in-up 0.75s ease forwards;
    z-index: 1;
}
@media screen and (max-width: 767px){
    .video.stuck {
        max-width: 450px;
        width: 60%;
        height: 150px !important;
    }
}

.video.no-stuck {
    position: unset !important;
}

.btn_close {
    width: 25px;
    display: none;
    cursor: pointer;
}