.playerselection-ads-container {
    color: white;
    padding: calc(2.5rem + 4vh) calc(1.5rem + 3vmax) calc(1.5rem + 2vmax) calc(1.5rem + 3vmax);
    flex-direction: column;
    gap: 1em;
    border-radius: 3em;
    height: 100%;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    margin: 0 auto;
    display: flex;
}

.playerselection-ads-top-img {
    height: 10vh;
    max-height: 80px;
    width: 100%;
}


.playerselection-ads-top-logo {
    cursor: pointer;
    max-height: 100px;
    height: 13vh;
    z-index: 99;
    transform: translateY(-55%);
}

.qrcode-ticket-status {
    font-size: 48px;
    font-weight: 700;
}

.qrcode-ticket-status-won {
    color: rgb(116, 191, 89);
}

.qrcode-ticket-status-lost {
    color: #dd4642;
}

.qrcode-ticket-status-paid {
    color: #eebf53;
}

.qrcode-ticket-status-rewarded {
    color: #eebf53;
}

.qrcode-ticket-status-cancelled {
    color: #eebf53;
}

.qrcode-ticket-status-pending {
    color: #eebf53;
}


.header-container {
    color: hsla(0, 0%, 100%, .75);
    display: flex;
    flex-direction: column;
    font-size: 2.5vmin;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.header-container>div:nth-child(1) {
    transform: translateY(-4.25em)
}

.container-popup {
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.75);
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
}


.custom-popup>div {
    pointer-events: auto;
    text-align: start;
    border-radius: 1em;
    background: #233044;
    overflow: hidden;
}

.custom-popup {
    transition: ease 0.5s;
    animation-name: custom-popup-animation;
    animation-duration: 0.5s;
    position: relative;
    max-width: 75%;
    margin: 3em auto;
    display: flex;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -ms-flexbox;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
    margin: 1.75rem auto;
    justify-content: center;
    pointer-events: none;
    flex: inherit !important;
}

.value-item-container {
    display: flex;
    gap: 0.5em;
    font-weight: 600;
}

@keyframes custom-popup-animation {
    0% {
        opacity: 0;
        transform: translateY(10em);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.background-close {
    z-index: -1;
    min-height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.playerselection-ads-header {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 3em;
    left: 0;
    width: 100%;
    transform: translateY(-1vw)
}

.custum-popup-header-container {
    background: rgba(255, 255, 255, 0.15);
    padding: 1em 5em 1em 1em;
}

.ads-back-button-container {
    position: absolute;
    left: 0.75em;
    width: 4.75vmin;
    object-fit: contain;
    z-index: 9999;
    cursor: pointer;
    top: 0.75em;
}

.ads-back-button-container>img {
    width: 100%;
}





@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
}

@keyframes animationSpin {
    0% {
        --rotate: 0deg;
    }

    100% {
        --rotate: 360deg;
    }
}

.adsvertisement-player-containter {
    flex: 1;
    position: relative;

    &:before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: min(1.5vmin, 1vmax);
        background-image: linear-gradient(var(--rotate), #0a6823, #014aee, 43%, #d10362);
        animation: animationSpin 2.5s linear infinite;
    }

    &:after {
        content: "";
        position: absolute;
        top: 3rem;
        left: 0;
        right: 0;
        z-index: -1;
        height: 100%;
        width: 100%;
        margin: 0 auto;
        opacity: 1;
        transition: opacity .5s;
        background-image: linear-gradient(var(--rotate), #0a6823, #014aee, 43%, #d10362);
        animation: animationSpin 2.5s linear infinite;
        filter: blur(22px);
    }

    @media (orientation=portrait) {}
}