@font-face {
    font-family: "Lemon Milk";
    src: url("../assets/fonts/LEMONMILK-Regular.otf") format("opentype");
}

@font-face {
    font-family: "BebasNeue";
    src: url("../assets/fonts/BebasNeue-Regular.ttf");
}

@font-face {
    font-family: "Bayon";
    src: url("../assets/fonts/Bayon-Regular.ttf");
}

body {
    background-color: black;
}

.popup-panel {
    position: absolute;

    height: calc(100% - 70px);
    width: 100%;

    left: 0px;
    top: 0px;
}

.main-button {
    position: absolute;
    left: 50%;
    bottom: 0%;

    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);

    padding: 10px 20px 10px 20px;

    font-family: 'Lemon Milk';
    font-size: min(3vw, 14px);
    color: rgb(0, 0, 0);

    background-color: #d9a557;
    border: none;
    border-radius: 10px;

    cursor: pointer;
}

.main-button:hover {
    background-color: #916e3a;
}

.popup-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.arrow-left {
    position: absolute;
    top: 50%;
    left: -10px;

    width: 100px;
    height: 100%;


    transform: translate(-100%, -50%);

    background-image: url("../assets/images/video/arrow-right.png");
    background-position-y: 50%;
    background-position-x: 0%;
    background-repeat: repeat-x;
    background-size: contain;


    mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0), black, black);
    -webkit-mask-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0), black, black);

    animation-name: arrow-left-animation;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.arrow-right {
    position: absolute;
    top: 50%;
    right: -10px;

    width: 100px;
    height: 100%;


    transform: translate(100%, -50%);

    background-image: url("../assets/images/video/arrow-left.png");
    background-position-y: 50%;
    background-position-x: 0%;
    background-repeat: repeat-x;
    background-size: contain;


    mask-image: linear-gradient(0deg, rgb(0, 0, 0), black, rgba(0, 0, 0, 0));
    -webkit-mask-image: -webkit-linear-gradient(0deg, rgb(0, 0, 0), black, rgba(0, 0, 0, 0));

    animation-name: arrow-right-animation;
    animation-timing-function: linear;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes arrow-left-animation {
    0% {
        background-position-x: 10%;
    }

    50% {
        background-position-x: 45%;
    }

    100% {
        background-position-x: 100%;
    }
}

@keyframes arrow-right-animation {
    0% {
        background-position-x: 100%;
    }

    50% {
        background-position-x: 45%;
    }

    100% {
        background-position-x: 10%;
    }
}


.volume-icon {
    position: absolute;
    width: 30px;
    height: 30px;

    right: 40px;
    top: 30px;

    filter: drop-shadow(0px 0px 10px #000);
}

.mute {

    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;

    background-image: url("../assets/images/video/mute.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    pointer-events: none;
}

.unmute {

    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;

    display: none;

    background-image: url("../assets/images/video/volume-up-interface-symbol.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;

    pointer-events: none;
}