<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

#video {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 999px) {
    #video {
        flex-wrap: wrap;
    }
}
#video .video_player {
    position: relative;
    height: 100vh;
    width: 65%;
}
@media screen and (max-width: 999px) {
    #video .video_player {
        position: relative;
        height: 60vh;
        width: 100%;
    }
}
#video .video_player .slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#video .toolbar {
    position: relative;
    width: 32%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
@media screen and (max-width: 999px) {
    #video .toolbar {
        width: 100%;
        margin-top: 30px;
    }
}
#video .toolbar .slides {
    position: relative;
    width: 100%;
    height: 65vh;
    margin-bottom: 50px;
    overflow: hidden;
}
@media screen and (max-width: 999px) {
    #video .toolbar .slides {
        order: 2;
        width: 65%;
        height: 22vh;
        margin-bottom: 0px;
        margin-top: 50px;
        margin-left: auto;
    }
}
#video .toolbar .actual {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    color: #000000;
}
@media screen and (max-width: 999px) {
    #video .toolbar .actual {
        order: 1;
        margin: 0 auto;
        width: 90%;
    }
}
#video .toolbar .actual .number {
    flex: 0 0 80px;
    font-size: 36px;
    padding-top: 14px;
}
#video .toolbar .actual .number span.totals {
    font-size: 16px;
    opacity: .3;
}
#video .toolbar .actual .title {
    font-size: 52px;
}
@media screen and (max-width: 999px) {
    #video .toolbar .actual .number {
        flex: 0 0 50px;
        font-size: 18px;
        padding-top: 4px;
    }
    #video .toolbar .actual .number span.totals {
        font-size: 11px;
    }
    #video .toolbar .actual .title {
        font-size: 28px;
    }
}

.slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: none;
}
.slides .slide.active {
	z-index: 12;
    display: block;
}
.slides .slide.previous {
	z-index: 11;
    display: block;
}
.slides .slide.moveNext {
	animation-name: animationNextSlide;
	animation-duration: 1s;
	animation-fill-mode: both;
}
.slides .slide.moveNext img {
	animation-name: animationNextSlideImage;
	animation-duration: 1s;
	animation-fill-mode: both;
}
.slides .slide.moveNextUnder {
	animation-name: animationNextUnderSlide;
	animation-duration: 1s;
	animation-fill-mode: both;
}
.slides .slide.movePrevious {
	animation-name: animationPreviousSlide;
	animation-duration: 1s;
	animation-fill-mode: both;
}
.slides .slide.movePrevious img {
	animation-name: animationPreviousSlideImage;
	animation-duration: 1s;
	animation-fill-mode: both;
}
.slides .slide.movePreviousUnder {
	animation-name: animationPreviousUnderSlide;
	animation-duration: 1s;
	animation-fill-mode: both;
}
.slides .slide .video {
	position: relative;
	width: 100%;
    height: 100%;
    overflow: hidden;
}
.slides .slide .video video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 999px) {
    .slides .slide .video video {
        max-height: 100%;
    }
}

@keyframes animationNextSlide {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(0%);
	}
}
@keyframes animationNextUnderSlide {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-30%);
	}
}
@keyframes animationNextSlideImage {
	0% {
		transform: scale(2);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes animationPreviousSlide {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0%);
	}
}
@keyframes animationPreviousUnderSlide {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(30%);
	}
}
@keyframes animationPreviousSlideImage {
	0% {
		transform: scale(2);
	}
	100% {
		transform: scale(1);
	}
}</pre></body></html>