<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes fade-in-up {
    0% {
        opacity: 0;
    }

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

.video {
height:500px;
}

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

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

.video.stuck {
    position: fixed;
    bottom: 5px;
    right: 20px;
    width: 580px;
    height: 400px !important;
    transform: translateY(100%);
    animation: fade-in-up 0.75s ease forwards;
    z-index: 1;
}

@media screen and (max-width: 480px){
.video {
height:170px;
}
}

@media screen and (max-width: 767px){
    .video.stuck {
        max-width: 580px;
        width: 80%;
        height: 200px !important;
    }
}

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

.btn_close {
  position: absolute;
  cursor: pointer;
  top: 5px;
  left: 5px;
  z-index: 999999;
}

.closeBtn {
  position: relative;
  cursor: pointer;
  z-index: 999999;
}</pre></body></html>