/* original author: vassilis mastorostergios (https://codepen.io/vmasto_1470672674/pen/KyyMwq) */

body {
  line-height: 1.6;
}

@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.video-wrap, .static-video-wrap {
  text-align: center;
}

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

.video.stuck {
  position: fixed;
  bottom: 10px;
  right: calc( 50% - 200px );
  transform: translateY(100%);
  width: 400px;
  height: 221px;
  -webkit-animation: fade-in-up 0.25s ease forwards;
          animation: fade-in-up 0.25s ease forwards;
}
