@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&family=Merriweather:ital,wght@0,900;1,900&family=Open+Sans:ital@0;1&display=swap');

/* CSS Document */
body {
    font-family: Open Sans, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 1.15rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* VIDEO */
.play-button-icon {
    transition: all 0.5s ease-out;
}

.play-button-icon:hover {
    transform: scale(1.05);
}

.video-side,
.play-button-text,
#video-container {
    transition: all 0.5s ease-out;
}

.videoWrapper {
    position: relative;
    padding-top: 25px;
    height: 0;
    background: #131313;
}

.videoWrapper {
    padding-bottom: 52.9%;
}

@media (max-width:600px) {
    .videoWrapper {
        padding-bottom: 49.5%;
    }
}

.coverTap {
    background-size: cover;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1 !important;
}

/* click to play text */
.play-button-text-wrapper {
    height: 100%;
}

.play-button-text {
    font-style: italic;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    transition: all .2s ease-out;
    cursor: pointer;
    position: relative;
    top: -5%;
}

@media (max-width:600px) {
    .play-button-text {
        top: -10%;
    }
}

/* volume button */
@keyframes VOLUME_SMALL_WAVE_FLASH {
    0% {
        opacity: 0;
    }

    33% {
        opacity: 1;
    }

    66% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes VOLUME_LARGE_WAVE_FLASH {
    0% {
        opacity: 0;
    }

    33% {
        opacity: 1;
    }

    66% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.volume__small-wave {
    animation: VOLUME_SMALL_WAVE_FLASH 2s infinite;
    opacity: 0;
}

.volume__large-wave {
    animation: VOLUME_LARGE_WAVE_FLASH 2s infinite .3s;
    opacity: 0;
}

.volume_button {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    height: 60px;
    width: 60px;
    line-height: 60px;
    outline: none;
    padding-right: 0px;
    pointer-events: auto;
    position: absolute;
    right: 15px;
    text-align: left;
    top: 15px;
}

/* pause notifier */
.pause-notifier {
    pointer-events: none;
    opacity: 1;
    transform: scale(1.1);
    width: 60px;
    transition: opacity 0.8s ease 0s, transform 0.8s ease 0s;
}

.pause-notifier svg {
    overflow: visible;
}

.play-icon-arrow {
    top: 54px;
    left: -100px;
    max-width: 76px;
}

@media(max-width:767px) {
    .pause-notifier {
        width: 40px;
    }

    .play-icon-arrow {
        top: 40px;
        left: -70px;
        max-width: 46px;
    }
}

.video-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: radial-gradient(circle, rgba(0, 0, 0, .7), rgba(0, 0, 0, .6));
    background: -webkit-radial-gradient(circle, rgba(0, 0, 0, .7), rgba(0, 0, 0, .6));
    z-index: 2 !important;
    top: 0;
    left: 0;
}


vturb-smartplayer {
    position: relative;
    display: block;
    max-height: 100vh;
    /* Lock height to viewport height */
    width: auto;
    /* Scale width proportionally */
    margin: 0 auto;
    background-color: #000;
    /* Add side padding for ultrawide screens */
    object-fit: contain;
    /* Prevents cropping while maintaining aspect ratio */
}