@keyframes fade-in-up {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.video-wrap {
  text-align: center;
}

.video iframe {
  max-width: 100%;
  max-height: 100%;
}

.video.stuck {
	position: fixed;
	bottom: 20px;
	right: 20px;
	transform: translateY(100%);
	width: 320px;
	height: 180px;
	animation: fade-in-up 0.25s ease forwards;
	margin-right: 0;
	margin-top: auto;
	z-index: 10;
}
