.sng-main img {
    visibility: visible !important;
}
.fs-popup {
    position: fixed;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.show-popup.fs-popup {
    z-index: 200;
    opacity: 1;
    visibility: visible;
}

#fs-boxclose,
.fs-popup .fs-wrapper-popup:after {
    content: "";
    display: inline-block;
    cursor: pointer;
    position: absolute;
    right: 2vw;
    top: -26px;
    z-index: 1002;
    /* background: url(https://www.efa-s4.btob.devsite.es/assets/ng/global/efas4/assets/img/btn-close.svg); */
    background-size: cover;
    width: 20px;
    height: 20px;
}

.fs-popup .fs-wrapper-popup {
    position: relative;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: calc(100vw * 0.5625);
    transform: translate(-50%, -50%);
}

.fs-popup .fs-wrapper-popup iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 991px) {
    .fs-popup {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .fs-popup .fs-wrapper-popup {
        width: 60vw;
        height: calc(60vw * 0.5625);
        transform: translate(0, 0);
        left: 0;
        top: 0;
        padding-top: 0;
    }
}

@media only screen and (max-width: 1023px) and (orientation: landscape) {
    .alert-rotate.phone {
        display: block;
    }

    .show-popup.fs-popup {
        background: black;
    }

    .show-popup.fs-popup .fs-wrapper-popup {
        width: 86vw;
        height: calc(86vw * 0.5625);
        padding: 0;
        margin: 0;
    }

    .show-popup.fs-popup .fs-wrapper-popup:after {
        top: 2vw;
        right: -2vw;
    }
}

@media only screen and (max-width: 1023px) and (orientation: landscape) {
    .alert-rotate.phone {
        display: block;
    }

    .show-popup.fs-popup {
        background: black;
    }

    .show-popup.fs-popup .fs-wrapper-popup {
        width: 86vw;
        height: calc(86vw * 0.5625);
        padding: 0;
        margin: 0;
    }

    .show-popup.fs-popup .fs-wrapper-popup:after {
        top: 2vw;
        right: -2vw;
    }
}

.sng-loader {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.sng-loader::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #FFCE00;
    border-radius: 50%;
    -webkit-animation: loader-06 1s ease-out infinite;
    animation: loader-06 0.8s ease-out infinite;
    width: 70px;
    height: 70px;
} 

@keyframes loader-06 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.tpPlayerView{max-height:90vh;}