/* _content/EuphoriaGames/Components/Avatar.razor.rz.scp.css */
.img-fluid[b-2k3e99gky6] {
    max-width: 60px;
    cursor: pointer;
    transition: all ease-in-out 0.5s;
    border: 2px solid transparent; /* Border trasparente di default */
    border-radius: 0; /* Border-radius iniziale */
    transform: scale(1); /* Scala normale */
}


   .img-fluid:hover[b-2k3e99gky6] {
        border: 2px solid var(--primary-color);
        border-radius: 100%;
        transform: scale(1.2); /* Ingrandisce del 10% */
    }

.active[b-2k3e99gky6] {
    border: 2px solid var(--primary-color);
    border-radius: 100%;
    transform: scale(1.2); /* Ingrandisce del 10% */
}


/* _content/EuphoriaGames/Components/BannerItem.razor.rz.scp.css */
.banner-item[b-be5wjopwdj] {
    position: relative;
    border-radius: 4px;
    transition: all .4s ease-in-out;
    opacity: 1;
    aspect-ratio: auto 250 / 375;
}

.banner-item-block[b-be5wjopwdj] {
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}

.banner-item__img[b-be5wjopwdj] {
    max-width: 100%;
    width: 100%;
    height: 100%;
    transition: transform .5s ease;
    object-fit: cover;
}


.banner-item__overlay[b-be5wjopwdj] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 90px;
    overflow: hidden;
    padding: 10px 0 0;
    background-color: var(--card-hover-color);
    opacity: 0;
    transition: all .4s ease-in-out;
}

.banner-item:hover .banner-item__overlay[b-be5wjopwdj] {
    opacity: 1;
}

.banner-item:hover .banner-item__img[b-be5wjopwdj] {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}



.banner-item:hover .banner-item__overlay--shadow[b-be5wjopwdj] {
    box-shadow: 8px 8px 43px 0 rgb(83 97 133 / 95%);
    border-radius: 6px;
}

.name-game-box[b-be5wjopwdj] {
    background-color: transparent;
    padding: 25px 15px;
    height: 90px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.banner-item:hover .name-game-box[b-be5wjopwdj] {
    background-color: var(--background-color);
}

.game-item__actions[b-be5wjopwdj] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name-game[b-be5wjopwdj] {
    color: white;
    font-weight: bold;
   
}

.name-game-box p[b-be5wjopwdj] {
    font-size: clamp(12px, 2vw, 17px);
}

.game-btn[b-be5wjopwdj] {
    padding: 8px 15px;
    height: 36px !important;
    font-size: 12px !important;
    margin-bottom: 10px;
}

.btn-noborder[b-be5wjopwdj] {
    color: white;
    font-size: 16px !important;
}
/* _content/EuphoriaGames/Components/Carousel.razor.rz.scp.css */
.carousel-img[b-3bm94poxpr] {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    background-position: center center;
}

.carousel-item img[b-3bm94poxpr] {
    object-fit: cover;
    height: 400px;
    width: 100%;
    transition: all .4s ease-in-out;
}

#bannerCarousel .carousel-inner .item[b-3bm94poxpr] {
    width: 100%;
    height: 100%;
    transition: all .4s ease-in-out;
}


    #bannerCarousel .carousel-inner .item.active[b-3bm94poxpr] {
        display: block;
    }

.carousel-inner:hover .item img[b-3bm94poxpr] {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.9;
}

.carousel-control[b-3bm94poxpr] {
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 0;
    width: 8%;
    font-size: 10px;
    color: #fff;
    text-align: center;
    opacity: 1;
    background: none;
    border: none;
    z-index: 10;
}

.right[b-3bm94poxpr] {
    right: 0;
    left: auto;
}

.slide[b-3bm94poxpr] {
    width: 100%;
    height: 400px;
}

.carousel-box[b-3bm94poxpr] {
    position: absolute;
    max-width: 540px;
    background: rgba(0,0,0,.7);
    padding: 20px 50px;
    border-radius: 14px;
    text-align: center;
    display: table-cell;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    top: 10%; /* Partenza più in alto */
    left: 6%;
    transition: all 0.6s ease-out;
    transform: translateY(-30px); /* Partenza spostata verso l'alto */
}

/* Animazione per la comparsa */
.carousel-item.active .carousel-box[b-3bm94poxpr] {
    opacity: 1;
    top: 20%;
    transform: translateY(0);
    transition-delay: 0.2s; /* Ritardo per permettere alla slide di apparire prima */
}

/* Animazioni separate per title e text */
.title[b-3bm94poxpr] {
    text-shadow: 0px 3px 1px rgba(0,0,0,0.7);
    font-size: 36px;
    font-weight: bold;
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease-out;
    color: white;
}

.text[b-3bm94poxpr] {
    text-shadow: 0px 1px 1px rgba(0,0,0,1.0);
    color: #ffe400;
    font-size: 36px;
    font-weight: bold;
    width: 100%;
    opacity: 0;
    transform: translateY(-15px);
    transition: all 0.5s ease-out;
}

.carousel-btn[b-3bm94poxpr] {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease-out;
    border: none;
    margin-top: 10px;
}

/* Animazione per la comparsa */
.carousel-item.active .carousel-box[b-3bm94poxpr] {
    opacity: 1;
    top: 20%;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Animazioni separate per title e text */
.carousel-item.active .title[b-3bm94poxpr] {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.carousel-item.active .text[b-3bm94poxpr] {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.carousel-item.active .carousel-btn[b-3bm94poxpr] {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.carousel-fade .active.carousel-item-start[b-3bm94poxpr],
.carousel-fade .active.carousel-item-end[b-3bm94poxpr] {
    transition: opacity 0s 2.6s;
}

/* Reset animazioni per slide non attive */
.carousel-item:not(.active) .carousel-box[b-3bm94poxpr],
.carousel-item:not(.active) .title[b-3bm94poxpr],
.carousel-item:not(.active) .text[b-3bm94poxpr],
.carousel-item:not(.active) .carousel-btn[b-3bm94poxpr] {
    opacity: 0;
    transform: translateY(-30px);
}

@media screen and (max-width: 767px) {
    .carousel-box[b-3bm94poxpr] {
        display: none;
    }

    .slide[b-3bm94poxpr] {
        height: 300px;
    }

    .carousel-item img[b-3bm94poxpr] {
        height: 300px;
    }
}
/* _content/EuphoriaGames/Components/FooterItem.razor.rz.scp.css */
.panel_item[b-9w04lh3o60] {
    border-right: 1px solid var(--line-color);
}

.panel_link:active[b-9w04lh3o60] {
    background: var(--primary-color);
}

.active[b-9w04lh3o60] {
    background-color: var(--primary-color);
}

.panel .panel_link[b-9w04lh3o60] {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    height: 56px;
    justify-content: center;
    width: 100%;
    cursor: pointer;
}

.panel_img[b-9w04lh3o60] {
    font-size: 15px;
}

.panel_text[b-9w04lh3o60] {
    display: block;
    line-height: 1;
    margin: 5px 0 0;
    text-align: center;
    font-size: 12px;
}
/* _content/EuphoriaGames/Components/FooterLink.razor.rz.scp.css */
.footer-menu__item[b-6i426kff9x] {
    text-align: center;
    margin: 0 0 20px;
    border-right: 1px solid var(--line-color);
}

    .footer-menu__item:last-child[b-6i426kff9x] {
        border-right: none;
    }

[b-6i426kff9x] .footer-menu__link {
    color: var(--text-color);
    font-weight: bold;
    transition: 0.25s all ease;
    padding: 6px 30px;
    text-decoration: none;
}

    [b-6i426kff9x] .footer-menu__link:hover {
        color: var(--text-color-lighter);
        cursor: pointer;
    }


@media (max-width: 600px) {

    [b-6i426kff9x] .footer-menu__link {
        padding: 6px 8px !important;
        font-size: 14px;
    }
}
/* _content/EuphoriaGames/Components/FormField.razor.rz.scp.css */
.input-area[b-wzz8f9rlmu] {
    width: 100%;
    margin-bottom: 15px;
    height: 40px;
    border-radius: 6px;
    padding: 0 12px;
    color: var(--text-color);
    outline: none;
    border: 1px solid var(--tertiary-border-color);
    font-size: 14px;
    background-color: var(--background-color);
}

    .input-area:focus[b-wzz8f9rlmu] {
        border-color: #fff;
    }

input:disabled[b-wzz8f9rlmu] {
    color: rgb(129, 129, 131);
    -webkit-text-fill-color: rgb(129, 129, 131);
    background-color: rgb(32, 33, 42);
    border: none;
    cursor: not-allowed;
}

@media screen and (max-width: 992px) {
    .input-area[b-wzz8f9rlmu] {
        width: 100%;
    }
}
/* _content/EuphoriaGames/Components/GameBox.razor.rz.scp.css */
/*.game-list-container {
    display:grid;
    grid-gap:10px 10px;
    grid-template-columns: repeat(6,1fr);
}*/

.game-item[b-uzccth6iwg] {
    position: relative;
    border-radius: 4px;
    transition: all .4s ease-in-out;
    padding-top: 45px;
    text-align: center;
    aspect-ratio: auto 300 / 300; /*per immagini responsive*/
    padding-bottom: 5px;
}

.game-item__block[b-uzccth6iwg] {
    position: relative;
    height: 100%;
    max-height: 380px;
    overflow: hidden;
    background-color: var(--card-body-color);
}

.game-item img[b-uzccth6iwg] {
    width: 100%;
    transition: transform .5s ease;
    height: 100%;
}

.game-item__panel[b-uzccth6iwg] {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 80px;
    padding: 0 6px;
    border-radius: 0 0 10px 10px;
    margin: -10% auto;
    margin-top: 0px;
    background-color: var(--card-color);
}

.game-item__panel-provider[b-uzccth6iwg] {
    margin: 0;
    color: var(--card-text-color);
    font-weight: bold;
    font-size: 12px;
}

.game-item__panel-title[b-uzccth6iwg] {
    color: #fff;
    margin: 6px 0 0;
    max-height: 39px;
    overflow: hidden;
    line-height: 1;
    text-align: center;
    font-size: 14px;
}

.game-item__overlay[b-uzccth6iwg] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    bottom: 0px;
    overflow: hidden;
    background-color:var(--card-hover-color);
    opacity: 0;
    transition: all .4s ease-in-out;
    /* max-width: 263px;*/
    margin: 0 auto;
    /*border-radius: 9px;*/
}

.game-item:hover .game-item__overlay[b-uzccth6iwg] {
    opacity: 1;
}


.game-item:hover .game-item__block img[b-uzccth6iwg] {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  
}


.game-item__actions[b-uzccth6iwg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -50px;
}

.game-btn[b-uzccth6iwg] {
    padding: 8px 15px;
    height: 36px !important;
    font-size: 12px !important;
    margin-bottom: 10px;
}

.btn-noborder[b-uzccth6iwg] {
    color: white;
    font-size: 16px !important;
}

@media (min-width: 320px) {
    .game-item__panel-provider[b-uzccth6iwg] {
        font-size: calc(10px + 2 * ((100vw - 320px) / 880));
    }

    .game-item__panel-title[b-uzccth6iwg] {
        font-size: calc(12px + 2 * ((100vw - 320px) / 880));
    }
}
/* _content/EuphoriaGames/Components/LanguageDropdown.razor.rz.scp.css */
/*dropdown*/

.img-flag[b-26k6t6m96t] {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
}

.dropdown-content[b-26k6t6m96t] {
    border-color: #393a43;
    background-color: #272831;
    right: -6px;
    border-radius: 8px;
    top: 50px;
    position: absolute;
    min-width: 75px;
    padding: 4px 0;
    margin: 0;
    z-index: 999;
}

    .dropdown-content[b-26k6t6m96t]:before {
        content: "";
        position: absolute;
        bottom: 100%;
        right: 10px;
        margin: auto;
        border: 8px solid transparent;
        border-bottom-color: #272831;
        width: 0;
        height: 0;
    }

.sub-menu[b-26k6t6m96t] {
    margin-bottom: 1px;
    padding-left: 0;
}

.style-sub-menu[b-26k6t6m96t] {
    margin-left: 5px;
    white-space: nowrap;
    align-items: center;
    transition: 0.25s all ease;
    padding: 6px 10px;
}

.language-item[b-26k6t6m96t] {
    display: block;
    overflow: hidden;
    color: #7a7b91;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.2;
}

    .language-item:hover[b-26k6t6m96t] {
        color: white;
    }


.margin-10[b-26k6t6m96t] {
    margin-left: 10px;
}


@media screen and (max-width: 992px) {
 
    .top-bar[b-26k6t6m96t] {
        padding: 8px 12px;
        position: sticky;
        top: 0;
        z-index: 1001;
        padding: 8px 12px;
        background-color: #20212a;
        height: 42px;
    }

    .button-area-header[b-26k6t6m96t] {
        padding: 0px;
    }
}
/* _content/EuphoriaGames/Components/Loading.razor.rz.scp.css */
iframe[b-skb6th91d6] {
    border: none;
    position: absolute;
    flex: 1;
    width: 100%;
    height: calc(100vh - 100px);
    height: calc(100dvh - 100px);
    margin: auto;
    top: 43px;
    left: 0;
    right: 0;
    background-color: transparent;
}


.loadingArea[b-skb6th91d6] {
    z-index: 9991;
    position: fixed;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    display: block;
}


.loading[b-skb6th91d6] {
    position: absolute;
    background-image: url(../img/loading.gif);
    background-repeat: no-repeat;
    background-size: contain;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    left: 50%;
    top: 50%;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
/* _content/EuphoriaGames/Components/Navigation/NavIcon.razor.rz.scp.css */
.games-menu__item[b-1vipm3mcr8] {
    -ms-flex: 1 0 80px;
    flex: 1 0 80px;
    text-align: center;
    padding: 0 3px;
    cursor: pointer;
    height: 102px;
}

    .games-menu__item .games-menu__link[b-1vipm3mcr8] {
        text-decoration: none;
    }

        .games-menu__item .games-menu__link:hover[b-1vipm3mcr8] {
            color: white;
            border: 1px solid var(--tertiary-border-color);
        }

.games-menu__link[b-1vipm3mcr8] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid transparent;
    transition: 0.25s all ease;
    position: relative;
    overflow: hidden;
}

/**/
    /* Effetto onde fluide */
    .games-menu__link[b-1vipm3mcr8]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 1;
        background: linear-gradient(135deg, var(--wave-bg-start) 0%, var(--wave-bg-middle) 50%, var(--wave-bg-end) 100%);
        border-radius: 10px;
        z-index: 1;
    }

    .games-menu__link .wave-container[b-1vipm3mcr8] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 10px;
        opacity: 1;
        z-index: 2;
    }

    /* Onde sempre visibili e statiche */
    .games-menu__link .wave[b-1vipm3mcr8] {
        position: absolute;
        border-radius: 50%;
    }

    .games-menu__link .wave-1[b-1vipm3mcr8] {
        width: 120%;
        height: 80%;
        background: radial-gradient(ellipse at center, rgba(var(--wave-primary-color), 0.4) 0%, rgba(var(--wave-secondary-color), 0.2) 40%, transparent 70%);
        top: -20%;
        left: -30%;
    }

    .games-menu__link .wave-2[b-1vipm3mcr8] {
        width: 100%;
        height: 60%;
        background: radial-gradient(ellipse at center, rgba(var(--wave-primary-color), 0.3) 0%, rgba(var(--wave-secondary-color), 0.2) 50%, transparent 80%);
        top: 20%;
        right: -40%;
    }

    .games-menu__link .wave-3[b-1vipm3mcr8] {
        width: 110%;
        height: 70%;
        background: radial-gradient(ellipse at center, rgba(var(--wave-primary-color), 0.2) 0%, rgba(var(--wave-tertiary-color), 0.1) 45%, transparent 75%);
        bottom: -30%;
        left: -20%;
    }

/**/
.games-menu-icon[b-1vipm3mcr8] {
    height: 42px;
    display: block;
    position: relative;
    z-index: 10;
}


.games-menu__title[b-1vipm3mcr8] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: 0.25s all ease;
    position: relative;
    z-index: 10;
}


    @media screen and (max-width:1300px) {

        .games-menu__item[b-1vipm3mcr8] {
            min-width: 104px;
        }

    }
/* _content/EuphoriaGames/Components/Navigation/NavInfo.razor.rz.scp.css */
/*.games-menu__item {
    -ms-flex: 1 0 80px;
    flex: 1 0 80px;
    text-align: center;
    padding: 0 3px;
    cursor: pointer;
    height: 102px;
}

    .games-menu__item a {
        text-decoration: none;
    }

        .games-menu__item a:hover {
            color: white;
            border: 1px solid var(--tertiary-border-color);
        }

.games-menu__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: 0.25s all ease;
    padding: 10px 20px
}

.games-menu__title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: 0.25s all ease;
}

.bigFont {
    font-size: 30px;
}

@media screen and (max-width:1300px) {

    .no-mobile {
        display: none;
    }
}*/
/* _content/EuphoriaGames/Components/Payment_item.razor.rz.scp.css */
.payment_method_item[b-fhimok2058] {
    -webkit-box-align: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    height: 50px;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 4px;
    max-width: 100px;
    opacity: 0.8;
    padding: 3px;
    position: relative;
    transition: opacity 0.3s;
    width: calc(50% - 8px);
    background: rgb(255, 255, 255);
    border: 2px solid transparent;
}


.payment_method_item_area[b-fhimok2058] {
    cursor: pointer;
    height: 100%;
    width: 100%;
    align-self: stretch;
    flex-flow: column;
    line-height: normal;
    max-height: 100%;
    text-align: center;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.payment_method_item:hover[b-fhimok2058]{
    opacity: 1;
}

    .payment_method_item.active[b-fhimok2058]{
        opacity:1;
    }

    .payment_method_icon[b-fhimok2058] {
        margin: 0px auto;
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        object-position: center center;
        overflow: hidden;
    }

.payment_method_text[b-fhimok2058] {
    inset-block-end: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgb(129, 129, 131);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02px;
    line-height: 16px;
    min-height: 16px;
}

/* _content/EuphoriaGames/Components/ProviderItem.razor.rz.scp.css */
.providers__link[b-gc6t134khn] {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    height: 36px;
    line-height: 36px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: 0.6s all ease;
    text-decoration: none;
    background-color: var(--tertiary-color);
}

.providers__name[b-gc6t134khn] {
    display: block;
    color: var(--text-color);
    font-size: 12px;
    text-align: left;
    white-space: nowrap;
    transition: 0.4s all ease;
}


.providers__link:hover[b-gc6t134khn] {
    outline: none;
    border-color: var(--tertiary-border-color);
    cursor: pointer;
}

.providers__item[b-gc6t134khn] {
    display: -ms-flexbox;
    display: flex;
    margin-right: 12px;
    margin-bottom: 10px;
}

.providers__icon[b-gc6t134khn] {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 8px;
}

.providers-icon-img[b-gc6t134khn] {
    max-width: 22px;
    max-height: 22px;
}
/* _content/EuphoriaGames/Components/SearchInput.razor.rz.scp.css */
.search-block__input[b-cl0ia5ul0x] {
    height: 36px;
    width: 100%;
    color: var(--text-color);
    border-radius: 6px;
    outline: none;
    padding: 0 40px 0 30px;
    font-size: 12px;
    border: 1px solid var(--tertiary-border-color);
    transition: 0.3s all ease;
    background-color: var(--background-color);
}

    .search-block__input:focus[b-cl0ia5ul0x] {
        border-color: #fff;
    }

.search-icon[b-cl0ia5ul0x] {
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-position: 10px center!important;
}

.search-block--btn-left .search-block__input[b-cl0ia5ul0x] {
    padding: 0 20px 0 40px;
}

/* _content/EuphoriaGames/Components/Widget/WinnerItem.razor.rz.scp.css */
.light[b-0xe7jnoqt3] {
    background-color: var(--winner-light-color);
}


.info[b-0xe7jnoqt3] {
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    color: #7a7b91;
    width: 60%;
    overflow: hidden;
}

    .info button[b-0xe7jnoqt3] {
        flex: 0 0 auto;
        margin-right: 16px;
        padding: 0;
        transition: 0.25s all ease;
        border: none;
        background-color: transparent;
    }

        .info button:focus[b-0xe7jnoqt3] {
            border: none;
            background-color: transparent;
            box-shadow: transparent !important;
        }

    .info span[b-0xe7jnoqt3] {
        color: white;
        text-decoration: none;
        cursor: pointer;
    }

    .info span[b-0xe7jnoqt3]{
        padding-left:10px;
    }

.last-winners__img[b-0xe7jnoqt3] {
    max-width: 60px;
    border-radius: 6px;
    height: 60px;
}

    .winner-sum[b-0xe7jnoqt3] {
        margin-right: 16px;
    }


li[b-0xe7jnoqt3] {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 6px 12px 12px;
    border-radius: 6px;
}
/* _content/EuphoriaGames/Components/Widget/WinnersBox.razor.rz.scp.css */
.right-screen .title[b-gfacwvcmmg] {
    font-size: 20px;
    margin: 7px 0 15px;
    font-weight: 500;
}

.right-screen ul[b-gfacwvcmmg] {
    padding: 0;
}


@media screen and (max-width: 1400px) {

    .no-mobile-1400[b-gfacwvcmmg] {
        display: none;
    }
}
/* _content/EuphoriaGames/Components/Widget/WinnersWidget.razor.rz.scp.css */
.winners-mob[b-w9ed37zwia] {
    display:none;
}

@media screen and (max-width: 1400px) {

    .winners-mob[b-w9ed37zwia] {
        display: block;
        margin: 35px 0 20px 0;
        overflow: hidden;
        width: 100%;
    }

        .winners-mob .winners__list[b-w9ed37zwia] {
            align-items: center;
            background: #232632;
            border-radius: 14px;
            display: flex;
            justify-content: space-around;
            list-style: none;
            margin: 0;
            min-height: 140px;
            padding: 15px 0;
        }

}
/* _content/EuphoriaGames/Components/Widget/WinnersWidget_Item.razor.rz.scp.css */
.winner-tile-mob[b-o89zqdkiuw] {
    align-items: center;
    color: #fff;
    display: flex;
    flex: 1;
    flex-direction: column;
    line-height: 1.4;
    max-width: 200px;
    min-width: 100px;
    opacity: 1;
    padding: 0 5px;
}

    .winner-tile-mob.entering[b-o89zqdkiuw] {
        animation: slideInLeft-b-o89zqdkiuw 1s ease-in-out forwards;
    }

    .winner-tile-mob.sliding[b-o89zqdkiuw] {
        animation: slide-b-o89zqdkiuw 1s ease-in-out forwards;
    }

    .winner-tile-mob.pre-leaving[b-o89zqdkiuw] {
        animation: slideRight-b-o89zqdkiuw 1s ease-in-out forwards;
    }

    .winner-tile-mob.leaving[b-o89zqdkiuw] {
        animation: slideOutRight-b-o89zqdkiuw 1s ease-in-out forwards;
    }

    .winner-tile-mob.hide[b-o89zqdkiuw] {
        display: none;
    }


    @keyframes slideInLeft-b-o89zqdkiuw {
        from {
            opacity: 0;
            transform: translateX(-100%);
        }

        to {
            opacity: 1;
            transform: translateX(16.6%);
        }
    }

    @keyframes slide-b-o89zqdkiuw {
        from {
            transform: translateX(-83%);
        }

        to {
            transform: translateX(50%);
        }
    }

    @keyframes slideRight-b-o89zqdkiuw {
        from {
            transform: translateX(-50%);
        }

        to {
            transform: translateX(83.6%);
        }
    }

    @keyframes slideOutRight-b-o89zqdkiuw {
        from {
            opacity: 1;
            transform: translateX(-17%);
        }

        to {
            opacity: 0;
            transform: translateX(110%);
        }
    }

        .winner-tile-mob .winner-tile-mob__img[b-o89zqdkiuw] {
            border-radius: 50%;
            height: 60px;
            overflow: hidden;
            width: 60px;
        }

.winner-tile-mob__text[b-o89zqdkiuw] {
    color: #7a7b91;
    font-size: 12px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 80px;
}

    .winner-sum[b-o89zqdkiuw]{
        font-size:16px;
    }
/* _content/EuphoriaGames/Components/Widget/WinnerWidget_Item.razor.rz.scp.css */
.winner-tile-mob[b-iwb1ruf1x4] {
        align-items: center;
        animation: winner-tile-mob-animate .5s linear forwards;
        color: #fff;
        display: flex;
        flex: 1;
        flex-direction: column;
        line-height: 1.4;
        max-width: 200px;
        opacity: 1;
        padding: 0 5px;
    }

        .winner-tile-mob .winner-tile-mob__img[b-iwb1ruf1x4] {
            border-radius: 50%;
            height: auto;
            overflow: hidden;
            width: 60px;
        }

    .winner-tile-mob__text[b-iwb1ruf1x4] {
        color: #7a7b91;
        font-size: 12px;
        margin-top: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* _content/EuphoriaGames/Layout/AreaBanner.razor.rz.scp.css */
.gameContainerTitle[b-sgdd6nwrbs] {
    align-items: center;
    min-height: 36px;
    font-size: 24px;
    color: white;
    margin-top: 25px;
}

.medium-banner-container[b-sgdd6nwrbs] {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    margin-top: 20px;
    margin-bottom: -50px;
}


/*.top-three-games__game-item:nth-child(2) {
    margin: 30% 0 0;
}*/


@media (min-width: 320px) {
    .banner-txt[b-sgdd6nwrbs] {
        font-size: calc(20px + 10 * ((100vw - 320px) / 880));
    }

    .banner-content[b-sgdd6nwrbs] {
        text-align: center;
        width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .no-mobile-767[b-sgdd6nwrbs] {
        display: none;
    }
}

@media (max-width: 992px) {
    .medium-banner-container[b-sgdd6nwrbs] {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 10px;
    }

    /*.top-three-games__game-item:nth-child(2) {
            margin: 0% 0 0;
        }*/
}
/* _content/EuphoriaGames/Layout/FooterArea.razor.rz.scp.css */
.footer[b-pc6mdtusf8] {
    overflow-x: hidden;
    margin-bottom: 56px;
}

.footer-menu[b-pc6mdtusf8] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0 0 0;
    margin: 0;
    list-style: none;
    margin-top: 50px;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
}


.footer__license[b-pc6mdtusf8] {
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
}

.license-block[b-pc6mdtusf8] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
}

.license-block__text[b-pc6mdtusf8] {
    margin: 0 0 0 10px;
    text-align: left;
    font-size: 16px;
}

.license[b-pc6mdtusf8] {
    width: 60px;
    height: 60px;
}

    .license img[b-pc6mdtusf8] {
        width: 60px;
    }


.footer__icons[b-pc6mdtusf8] {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    text-align: right;
    padding-left: 15px;
    justify-content: end;
}

.footer-icon[b-pc6mdtusf8] {
    margin-right: 15px;
    filter: grayscale(1);
    transition: 0.45s all ease;
}

.footer__icon-img--rg[b-pc6mdtusf8] {
    max-height: 34px;
    height: 34px;
    width: 100%;
}

@media (max-width: 768px) {

    .footer-menu[b-pc6mdtusf8] {
        padding: 30px 0 0;
    }

    .footer-menu__item[b-pc6mdtusf8] {
        margin: 0 0 10px;
    }

    .footer-menu__link[b-pc6mdtusf8] {
        padding: 6px 15px;
        font-size: 14px;
    }

    .license-block[b-pc6mdtusf8] {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .footer__license[b-pc6mdtusf8] {
        display: -ms-block;
        display: block;
        padding: 20px 0;
    }

    .license-block__text[b-pc6mdtusf8] {
        text-align: center;
        margin: 0 10px 0 10px;
    }

    .footer-icon[b-pc6mdtusf8] {
        margin: 0 auto;
    }
}



@media (min-width: 320px) {
    .license-block__text[b-pc6mdtusf8] {
        font-size: calc(12px + 4 * ((100vw - 320px) / 880));
    }
}
/* _content/EuphoriaGames/Layout/FooterMobile.razor.rz.scp.css */
.panel[b-fgazfjuiru] {
    background-color: var(--sidenav-color);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1030;
    height:56px;
}

.panel_list[b-fgazfjuiru] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}
/* _content/EuphoriaGames/Layout/GamesArea.razor.rz.scp.css */
.gameContainer[b-kt6a3a3kk4] {
    margin: 50px auto 20px auto !important;
}

.gameContainerTitle[b-kt6a3a3kk4] {
    align-items: center;
    min-height: 36px;
    font-size: 24px;
    color: var(--title-color);
}

@media (max-width: 400px) {
    .gameContainerTitle[b-kt6a3a3kk4] {
        font-size: 18px !important;
    }
}

.center[b-kt6a3a3kk4] {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.btn-all[b-kt6a3a3kk4] {
    background: var(--tertiary-color);
    border: 1px solid var(--tertiary-border-color);
    min-width: 120px;
    max-width: 100%;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 14px;
    border-radius: 10px;
    max-height: 43px;
    transition: all 0.3s ease;
}


    .btn-all:hover[b-kt6a3a3kk4] {
        border-color: #3a3b4a;
        color: #fff;
    }


.banner[b-kt6a3a3kk4] {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 30px;
    background: #333438 url(../img/banner/banner-default.jpg) no-repeat left top/cover;
    height: 290px;
    margin-top: 15px;
}

.banner-box[b-kt6a3a3kk4] {
    flex-direction: row;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 30px;
}

.banner-content[b-kt6a3a3kk4] {
    margin-right: 4%;
    text-align: center;
    width: 100%;
}

.banner-trn__content-wrp[b-kt6a3a3kk4] {
    font-weight: 500;
    line-height: 1.2;
}

.banner-title[b-kt6a3a3kk4] {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.banner-txt[b-kt6a3a3kk4] {
    margin: 20px 0;
    font-size: 30px;
    font-weight: bold;
}

.banner-trn__timer[b-kt6a3a3kk4] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}
/* _content/EuphoriaGames/Layout/Header.razor.rz.scp.css */
.top-bar[b-01tuye5ejy] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px 15px;
    max-width: 1900px;
    margin: auto;
}

.search-block__input[b-01tuye5ejy] {
    height: 36px;
    color: var(--text-color);
    border-radius: 6px;
    outline: none;
    padding: 0 40px 0 20px;
    font-size: 12px;
    border: 1px solid var(--tertiary-border-color);
    transition: 0.3s all ease;
    background-color: var(--background-color);
}

    .search-block__input:focus[b-01tuye5ejy] {
        border-color: #fff;
    }

.search-icon[b-01tuye5ejy] {
    background-image: url(img/search.svg);
    background-repeat: no-repeat;
    background-position: calc(13% - 10px) center !important;
}

.search-block--btn-left .search-block__input[b-01tuye5ejy] {
    padding: 0 20px 0 40px;
}

.top-bar__content[b-01tuye5ejy] {
    display: -ms-contents;
    display: contents;
    -ms-flex-align: center;
    align-items: center;
}

.button-area-header[b-01tuye5ejy] {
    padding: 3px;
}


.margin-10[b-01tuye5ejy] {
    margin-left: 10px;
}

.logo-mobile[b-01tuye5ejy] {
    display: none;
}


@media screen and (max-width: 992px) {
    .logo-mobile[b-01tuye5ejy] {
        height: 20px;
        display: block;
        margin-top: 3px;
    }

    .top-bar[b-01tuye5ejy] {
        padding: 8px 12px;
        position: sticky;
        top: 0;
        z-index: 1001;
        padding: 8px 12px;
        background-color: var(--background-color);
        height: 42px;
    }

    .button-area-header[b-01tuye5ejy] {
        padding: 0px;
    }
}
/* _content/EuphoriaGames/Layout/ProviderPanel.razor.rz.scp.css */
.providers__panel[b-j7r9wi971j] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0 2px;
}

.providers__panel-list[b-j7r9wi971j] {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 5px;
    overflow: hidden;
    border-radius: 6px;
}


.providers__toggler[b-j7r9wi971j] {
    -ms-flex: 0 0 210px;
    flex: 0 0 210px;
    width: 210px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    border-radius: 6px;
    padding: 6px 15px;
    outline: none;
    font-size: 12px;
    height: 36px;
    color: #7a7b91;
    border: 1px solid #222332;
    transition: 0.6s all ease;
    margin-top: -8px;
    margin-right: 10px;
    background-color: var(--tertiary-color);
}

.providers__toggler-text[b-j7r9wi971j] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: var(--text-color);
}

.providers__toggler .rotate[b-j7r9wi971j] {
    display: inline-block;
    color: rgb(157, 157, 157);
    font-size: 12px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    transform-origin: 50% 50%;
    margin: 0px 0px 0px 6px;
    font-variant: normal;
}


.providers__toggler .up[b-j7r9wi971j] {
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    transition: transform 0.3s ease 0s;
}


.providers__toggler .down[b-j7r9wi971j] {
    transform: rotate(-180deg);
    transform-origin: 50% 50%;
    transition: transform 0.3s ease 0s;
}


.providers__dropdown[b-j7r9wi971j] {
    position: absolute;
    top: 90%;
    right: 0;
    z-index: 995;
    margin: 0 -6px;
    padding: 10px;
    list-style: none;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 0 0 6px 6px;
    margin-left: 11px;
    overflow-x: hidden;
    background-color: var(--background-color);
    /*Animazioni con transform */
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    /* transform*/
    .providers__dropdown.show[b-j7r9wi971j] {
        transform: scaleY(1);
        opacity: 1;
    }

    .providers__dropdown.hide[b-j7r9wi971j] {
        transform: scaleY(0);
        opacity: 0;
    }



@media screen and (max-width: 992px) {
    .providers__dropdown[b-j7r9wi971j] {
        margin-left: 0;
    }
}


@media screen and (max-width: 992px) {

    .providers__dropdown[b-j7r9wi971j] {
        margin-left: 0;
    }
}
/* _content/EuphoriaGames/Layout/Sidenav.razor.rz.scp.css */
.sidenav[b-l4uuyt00tm] {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 230px;
    overflow: auto;
    padding: 0 15px;
    z-index: 999;
    background-color: var(--sidenav-color);
}

.sidenav_container[b-l4uuyt00tm] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    padding: 0 0 10px;
}

.logo[b-l4uuyt00tm] {
    padding: 25px 0;
    text-align: center;
}

.sidenav_logo[b-l4uuyt00tm] {
    display: inline-block;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 150px;
    text-align: center;
    transition: 0.2s all ease;
}

    .sidenav_logo img[b-l4uuyt00tm] {
        max-width: 150px;
    }

.sidenav-container-bg[b-l4uuyt00tm] {
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-radius: 10px;
    padding: 0 0 10px;
    /*background-color: var(--sidenav-body-color);*/
}

.user-area[b-l4uuyt00tm] {
    padding: 20px 0;
    margin: 0;
    background-color: var(--sidenav-color);
}

.btn-area[b-l4uuyt00tm] {
    text-align: center;
}

.horizontal-menu[b-l4uuyt00tm] {
    font-size: 14px;
    width: 100%;
    display: flex;
}

.sidenav-menu-button[b-l4uuyt00tm] {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: center;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
    padding: 20px 5px;
    transition: 0.35s all ease;
    width: 98px;
}

    /* .sidenav-menu-button:first-child {
        border-right: 1px solid var(--line-color);
    }*/

    .sidenav-menu-button img[b-l4uuyt00tm] {
        width: 30px;
        height: 30px;
        margin: auto;
        margin-bottom: 12px;
    }

.icon[b-l4uuyt00tm] {
    display: block;
    margin: 0 0 12px;
}

.balance-info[b-l4uuyt00tm] {
    color: #ffbb39;
    text-shadow: 3px 1px 0 #130e27;
    line-height: 1;
    font-weight: bold;
    font-size: 26px;
}

    .balance-info i[b-l4uuyt00tm] {
        font-size: 20px;
        color: white;
        cursor: pointer;
    }

.rotate[b-l4uuyt00tm] {
    -webkit-animation: spin 2s linear infinite;
    animation: spin-b-l4uuyt00tm 2s linear infinite;
}

.sidenav-menu-button:hover .text[b-l4uuyt00tm] {
    color: var(--text-color-lighter);
}

@keyframes spin-b-l4uuyt00tm {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sidenav-list-item select[b-l4uuyt00tm] {
    background-color: transparent;
    border: none;
    color: var(--text-color-lighter);
    outline: none;
}

/*sidenav dropdown*/

.dropdown-content-sidenav[b-l4uuyt00tm] {
    padding-top: 10px;
}

.sub-menu-sidenav[b-l4uuyt00tm] {
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
    transition: 0.6s all ease;
    padding-left: 0;
}

    .sub-menu-sidenav:last-child[b-l4uuyt00tm] {
        border-bottom: none;
    }

.sub-menu-list[b-l4uuyt00tm] {
    padding: 10px 3px 10px 0px;
    font-size: 12px;
}

    .sub-menu-list:last-child[b-l4uuyt00tm] {
        padding-bottom: 0;
    }

    .sub-menu-list:hover span[b-l4uuyt00tm] {
        color: #ffbb39;
    }

.header-menu__category-btn[b-l4uuyt00tm] {
    display: inline;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: none;
    padding-top: 10px;
}

.dropdown-toggle[b-l4uuyt00tm]:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-bottom: 0;
    border-right: 0.3em solid transparent;
    border-top: 0.3em solid;
    border-left: 0.3em solid transparent;
    cursor: pointer !important;
}

.dropdown-toggle .rotate[b-l4uuyt00tm] {
    transform: rotate(180deg);
}


@media screen and (max-width: 992px) {
    .sidenav[b-l4uuyt00tm] {
        display: none;
    }
}
/* _content/EuphoriaGames/Layout/SidenavMobile.razor.rz.scp.css */
.sidenav-list-item[b-5hvbfh9fh0] {
    border-bottom: none !important;
}

.sidenav-list[b-5hvbfh9fh0] {
    border-top: none !important;
}

.header-menu__category-btn[b-5hvbfh9fh0] {
    justify-content: end !important;
}

/*off canvas*/
.offcanvas[b-5hvbfh9fh0] {
    transition: transform 0.5s ease-in-out;
    background-color: var(--background-color);
}

.offcanvas-start[b-5hvbfh9fh0] {
    top: 42px;
    width: 440px;
}

.offcanvas-backdrop[b-5hvbfh9fh0] {
    top: 42px;
}

.offcanvas-header[b-5hvbfh9fh0] {
    padding: 1.3rem 1rem;
    padding-bottom: 3px;
}

.offcanvas-body[b-5hvbfh9fh0] {
    padding: 0rem 0rem;
    margin-top: -15px;
}

.hamburgherButton[b-5hvbfh9fh0] {
    position: relative;
    width: 26px;
    height: 26px;
    background-color: var(--hamburgher-color);
    border-radius: 6px;
}

    .hamburgherButton:hover[b-5hvbfh9fh0], .hamburgherButton:focus[b-5hvbfh9fh0] {
        background-color: var(--hamburgher-hover-color);
        outline: none;
    }

.header__mobile-menu-icon[b-5hvbfh9fh0] {
    position: absolute;
    background-color: #1f202d;
    border-radius: 2px;
    transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
    width: 14px;
    height: 2px;
    right: 0;
    left: 0;
    margin: auto;
}

    .header__mobile-menu-icon:nth-child(1)[b-5hvbfh9fh0] {
        top: 8px;
    }

    .header__mobile-menu-icon:nth-child(2)[b-5hvbfh9fh0] {
        top: 12px;
    }

    .header__mobile-menu-icon:nth-child(3)[b-5hvbfh9fh0] {
        top: 16px;
    }

.mobile-menu-open .header__mobile-menu-icon:nth-child(1)[b-5hvbfh9fh0] {
    -ms-transform: rotate(-40deg) scaleX(0.7);
    transform: rotate(-40deg) scaleX(0.7);
    top: 10px;
}

.mobile-menu-open .header__mobile-menu-icon:nth-child(2)[b-5hvbfh9fh0] {
    -ms-transform: scale(0);
    transform: scale(0);
    transition-duration: 50ms;
}

.mobile-menu-open .header__mobile-menu-icon:nth-child(3)[b-5hvbfh9fh0] {
    -ms-transform: rotate(40deg) scaleX(0.7);
    transform: rotate(40deg) scaleX(0.7);
    bottom: 10px;
}

.only-mobile[b-5hvbfh9fh0] {
    display: none;
}

@media screen and (max-width: 992px) {
    .only-mobile[b-5hvbfh9fh0] {
        display: block;
    }
}

.logged-area[b-5hvbfh9fh0] {
    grid-column-gap: 10px;
    align-items: center;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
    width: 100%;
}


.balance-info[b-5hvbfh9fh0] {
    color: #ffbb39;
    text-shadow: 3px 1px 0 #130e27;
    line-height: 1;
    font-weight: bold;
    font-size: 28px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .balance-info i[b-5hvbfh9fh0] {
        font-size: 20px;
        color: white;
        cursor: pointer;
    }

.rotate[b-5hvbfh9fh0] {
    -webkit-animation: spin 2s linear infinite;
    animation: spin-b-5hvbfh9fh0 2s linear infinite;
}

@keyframes spin-b-5hvbfh9fh0 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* _content/EuphoriaGames/Layout/Tournament.razor.rz.scp.css */
.gameContainerTitle[b-fv3oprv6ri] {
    align-items: center;
    min-height: 36px;
    font-size: 24px;
    color: white;
    margin-top: 25px;
}

.banner[b-fv3oprv6ri]{
    background-image:url(../img/banner/banner-default.jpg);
    background-size:cover;
    background-repeat:no-repeat;
    height:280px;
}

@media (min-width: 320px) {
    .banner-txt[b-fv3oprv6ri] {
        font-size: calc(20px + 10 * ((100vw - 320px) / 880));
    }

    .banner-content[b-fv3oprv6ri] {
        text-align: center;
        width: 100%;
        margin-top: 38px;
    }
}
/* _content/EuphoriaGames/Pages/GamePlayer.razor.rz.scp.css */
.game-modal__background[b-n9vk56dkqn] {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 86px;
    z-index: 0;
    opacity: 1;
    border-radius: 14px;
    overflow: hidden;
    transition: opacity 1s ease-in;
    background-size: cover;
    margin:0 auto;
    max-width:1900px;
    margin-bottom:20px;
    margin-top:10px;
}


.game-modal__background-img[b-n9vk56dkqn] {
    display: block;
    opacity: 1;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: opacity 1s ease-in;
}

.game-modal-container[b-n9vk56dkqn] {
    position: absolute;
    bottom: 67px;
    left: 0;
    right: 0;
    top: 50px;
    padding: 0 0 0 170px;
    font-size: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.game-box[b-n9vk56dkqn] {
    position: relative;
    border: solid 4px #262626;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
    width: 110vh;
    max-width: 1300px;
}

.game__wrapper[b-n9vk56dkqn] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    height: 100%;
    max-height: 743px;
    width: 100%;
    max-width: 1300px;
}

.iframe[b-n9vk56dkqn] {
    padding: 56.25% 0 0;
    position: relative;
    background-image: url(img/preloader.gif); /*diverso*/
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 450px;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #000;
}

.game-box a[b-n9vk56dkqn]{
    color:transparent;
}

.game-icon[b-n9vk56dkqn] {
    position: absolute;
    right: -45px;
    top: -15px;
    display:inline-grid;
}

    .game-icon i[b-n9vk56dkqn] {
        cursor: pointer;
        color: white;
        font-size: 25px;
    }

        .game-icon i:last-child[b-n9vk56dkqn] {
            margin-top: 10px;
            font-size: 28px;
        }

.game-title-area[b-n9vk56dkqn] {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 20px;
    
}

@media (min-width: 992px) {

    .game-modal__background[b-n9vk56dkqn] {
        left: 250px;
        top: 76px;
        bottom: 0;
        right: 20px;
    }

    .game-modal-container[b-n9vk56dkqn] {
        left: 150px;
        top: 100px;
        bottom: 50px;
        right: 60px;
    }
}

@media (max-width: 991px) {
    .game-modal-container[b-n9vk56dkqn] {
        padding: 110px 90px 90px 90px;
    }

    .game-modal__background[b-n9vk56dkqn] {
        top: 42px;
    }
}
/* _content/EuphoriaGames/Pages/LobbyPlayer.razor.rz.scp.css */
.game-modal__background[b-66mczjq813] {
    position: fixed;
    z-index: 0;
    opacity: 1;
    /*border-radius: 14px;*/
    overflow: hidden;
}

.game-modal-container[b-66mczjq813] {
    position: relative;
    left: 0;
    right: 0;
    font-size: 0;
}

.game-box[b-66mczjq813] {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    /* max-width: 1300px;*/
}

.game__wrapper[b-66mczjq813] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
   /* height: 100%;
    max-height: 743px;
    */
   width: 100%;
    /*max-width: 1300px;*/
}

.iframe[b-66mczjq813] {
    padding: 53.25% 0 0;
    position: relative;
    background-image: url(../img/logo_full.webp);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 430px;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #000;
}


@media (min-width: 992px) {

    .game-modal__background[b-66mczjq813] {
        left: 250px;
        top: 76px;
        bottom: 0;
        right: 20px;
    }
}

@media (max-width: 991px) {
    .game-modal-container[b-66mczjq813] {
        /*padding: 110px 90px 90px 90px;*/
    }

    .game-modal__background[b-66mczjq813] {
        top: 42px;
        position:initial;
    }
}
/* _content/EuphoriaGames/Pages/SportPlayer.razor.rz.scp.css */
.game-modal__background[b-nwk2kuqv9w] {
    position: fixed;
    z-index: 0;
    opacity: 1;
    /*border-radius: 14px;*/
    overflow: hidden;
}

.game-modal-container[b-nwk2kuqv9w] {
    position: relative;
    left: 0;
    right: 0;
    font-size: 0;
}

.game-box[b-nwk2kuqv9w] {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    /* max-width: 1300px;*/
}

.game__wrapper[b-nwk2kuqv9w] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
   /* height: 100%;
    max-height: 743px;
    */
   width: 100%;
    /*max-width: 1300px;*/
}

.iframe[b-nwk2kuqv9w] {
    padding: 53.25% 0 0;
    position: relative;
    background-image: url(../img/logo_full.webp);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 430px;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #000;
}


@media (min-width: 992px) {

    .game-modal__background[b-nwk2kuqv9w] {
        left: 250px;
        top: 76px;
        bottom: 0;
        right: 20px;
    }
}

@media (max-width: 991px) {
    .game-modal-container[b-nwk2kuqv9w] {
        /*padding: 110px 90px 90px 90px;*/
    }

    .game-modal__background[b-nwk2kuqv9w] {
        top: 42px;
        position:initial;
    }
}
/* _content/EuphoriaGames/Pages/UserArea.razor.rz.scp.css */
.nav-container[b-4dujf9lsrr] {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .nav-container[b-4dujf9lsrr]::-webkit-scrollbar {
        display: none;
    }


    .nav-container .nav.nav-tabs[b-4dujf9lsrr] {
        display: flex !important;
        justify-content: flex-start !important;
        gap: 15px;
        border-bottom: 1px solid var(--line-color) !important;
        padding-bottom: 20px;
        flex-wrap: nowrap !important;
        min-width: max-content;
    }

.nav[b-4dujf9lsrr]::-webkit-scrollbar {
    display: none;
}

.nav[b-4dujf9lsrr] {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 20px;
}

    .nav.nav-tabs li[b-4dujf9lsrr] {
        flex-shrink: 0 !important; /* Impedisce ai tab di rimpicciolirsi */
        min-width: max-content; /* Garantisce che il contenuto non venga tagliato */
        list-style: none;
    }


    .nav li span[b-4dujf9lsrr] {
        color: var(--text-color);
        cursor: pointer;
        font-weight: bold;
        text-transform: uppercase;
        padding: 0 5px;
    }


    .nav span:hover[b-4dujf9lsrr] {
        color: white;
    }

    .nav span.active[b-4dujf9lsrr] {
        color: white;
        border-bottom: 1px solid var(--primary-color);
        padding-bottom: 23px;
    }

    .nav:focus[b-4dujf9lsrr], .nav:hover[b-4dujf9lsrr] {
        color: white;
    }


@media (max-width: 768px) {
    .nav[b-4dujf9lsrr] {
        padding-right: 10px;
    }

        .nav li span[b-4dujf9lsrr] {
            font-size: 15px;
        }
}


.tab-content[b-4dujf9lsrr] {
    transition: opacity .15s linear !important;
}

    .tab-content > .tab-pane[b-4dujf9lsrr] {
        opacity: 0;
        display: none;
    }

    .tab-content > .active[b-4dujf9lsrr] {
        display: block;
        opacity: 1;
    }


.container_user[b-4dujf9lsrr] {
    display: flex;
}

.avatar[b-4dujf9lsrr] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 768px) {
    .avatar[b-4dujf9lsrr] {
        gap: 25px;
        justify-content: space-evenly; /*Distribuisce uniformemente i 3 avatar per riga*/
    }
}


.input-area[b-4dujf9lsrr] {
    width: 100%;
    margin-bottom: 15px;
    height: 40px;
    border-radius: 6px;
    padding: 0 12px;
    color: var(--text-color);
    outline: none;
    border: 1px solid var(--tertiary-border-color);
    font-size: 14px;
    background-color: var(--background-color);
}

    .input-area:focus[b-4dujf9lsrr] {
        border-color: #fff;
    }

input:disabled[b-4dujf9lsrr] {
    color: rgb(129, 129, 131);
    -webkit-text-fill-color: rgb(129, 129, 131);
    background-color: rgb(32, 33, 42);
    border: none;
    cursor: not-allowed;
}

select.input-area[b-4dujf9lsrr] {
    appearance: none; /* Rimuove lo stile default del browser */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23999" d="M6 9L1.5 4.5h9z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    cursor: pointer;
}

    /* Opzioni del dropdown */
    select.input-area option[b-4dujf9lsrr] {
        background-color: var(--background-color);
        color: var(--text-color);
    }

@media screen and (max-width: 992px) {

    .input-area[b-4dujf9lsrr] {
        width: 100%;
    }

    .avatar_area[b-4dujf9lsrr] {
        margin-top: 4rem;
    }
}

.left_box[b-4dujf9lsrr] {
    width: 50%;
}


/*Deposit*/

.container_payment[b-4dujf9lsrr] {
    display: flex;
    flex-direction: row;
    min-height: 200px;
    overflow: initial;
    width: 100%;
    gap:20px;
}


.deposit_area[b-4dujf9lsrr] {
    display:flex;
    flex-direction: column;
    width: 100%;
    border-radius: 4px;
    overflow: initial;
    min-height: 200px;
}
.payment_method[b-4dujf9lsrr]{
    max-width:315px;
}

.payment_method_bar[b-4dujf9lsrr] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.payment_method_area[b-4dujf9lsrr] {
    display: flex;
    flex-wrap: wrap;
    margin: -5px -5px 5px;
}

.payment_form[b-4dujf9lsrr] {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--sidenav-color);
    padding: 12px;
    max-width: 700px;
}

@media (max-width: 768px) {
    .container_payment[b-4dujf9lsrr] {
        flex-direction: column;
    }
}
