
.page_loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 110;
    display: none;
    background-color: rgba(0, 0, 0, .75);
}

.loading_page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}
/* HTML: <div class="loader"></div> */
.loader {
    width: 45px;
    aspect-ratio: 1;
    --c:no-repeat linear-gradient(#fff 0 0);
    background: var(--c), var(--c), var(--c);
    animation:
            l15-1 1s infinite,
            l15-2 1s infinite;
}
@keyframes l15-1 {
    0%,100% {background-size:20% 100%}
    33%,66% {background-size:20% 40%}
}
@keyframes l15-2 {
    0%,33%   {background-position: 0    0,50% 100%,100% 100%}
    66%,100% {background-position: 100% 0,0   100%,50%  100%}
}

.m-h-100 {
    min-height: 100vh;
}

.btn_up {
    background: transparent;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    border-radius: 10px;
    position: fixed;
    right: 15px;
    bottom: 15px;
    transition: transform 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
    transform: translateX(120px);
    z-index: 999
}

.btn_up.show {
    transform: translateX(0);
}

.btn_up i {
    background: #fc0;
    color: #03214e;
    width: 100%;
    position: relative;
    height: 100%;
    border-radius: 10px;
    transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);
    /*box-shadow: inset 0 2px 4px 0 rgb(255 255 255 / 38%), inset 0 -3px 3px 0 rgb(0 0 0 / 20%), 0 8px 15px 0 #44231073, 0 -4px 20px 0 #ffb10061;*/
}

.btn_up.show i {
    animation: gelatine 2.5s infinite;
}

.btn_up.show i:before {
    font-size: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes gelatine {
    from, to {
        transform: scale(1, 1);
    }
    20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: scale(0.9, 1.1);
    }
    40% {
        transform: translateY(-30px);
    }
    50% {
        transform: scale(1.1, 0.9);
    }
    /*75% { transform: scale(0.95, 1.05); }*/
    60% {
        transform: translateY(-15px);
    }
}

.footer_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
}

.footer_container a {
    margin-right: 24px;
}

.topinfo_gioco {
    padding: 12px 0px;
    display: flex;
    flex-flow: row wrap;
    align-items: center
}

.div_gioco {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
}

#game {
    /*background:#fff;*/
}

#game iframe {
}

@media only screen and (max-width: 900px) {
    .topinfo_gioco {
        text-align: center;
        color: #666;
        font-size: 0.8em;
        padding: 12px;
    }

    .topinfo_gioco .tagslabel {
        font-size: 13px;
    }

    .div_gioco {
        width: auto;
        min-width: inherit;
    }

    #game {
        width: 100%;
    }

    #game iframe {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    h3 {
        text-align: center;
    }

    #mobigame {
        position: relative;
        border-radius: 20px;
        height: 100%;
        overflow: hidden;
        width: 100%;
        text-align: center;
    }

    .fullscreen {
        position: fixed;
        display: block;
        width: 100% !important;
        height: 100% !important;
        top: 0;
        left: 0;
        z-index: 99;
        background: #fff;
    }

    #game iframe {
        display: none;
    }

    #game {

    }

    .newtop_front {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .back {
        position: absolute;
        display: none;
        z-index: 999;
        background: #CCC;
        top: 100px;
        left: 0px;
        padding: 4px 12px;
        color: #0099ff;
    }
}

.rating_game {
    display: inline-block;
    vertical-align: middle;
}


.notification-success {

    position: fixed;
    bottom: 12px;
    left: 12px;
    border-radius: 10px;
    box-shadow: 0px -6px 74px 0px rgba(0, 0, 0, 0.15);
    animation: show_toastt 1s ease forwards;
    z-index: 9999;
}

@keyframes show_toastt {
    0% {
        transform: translateX(-100%);
    }
    40% {
        transform: translateX(10%);
    }
    80%, 100% {
        transform: translateX(20px);
    }
}

.notification-success.hide {
    animation: hide_toastt 1s ease forwards;
}

@keyframes hide_toastt {
    0% {
        transform: translateX(20px);
    }
    40% {
        transform: translateX(10%);
    }
    80%, 100% {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
    }
}

.notification-success .toastt {
    border-radius: 10px;
    border-left: 5px solid #2ecc71;
    background: #fff;
    padding: 8px 12px;
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-success .toastt.offline {
    border-color: #ccc;
}

.toastt .contentt {
    display: flex;
    align-items: center;
}

.toastt.offline .content .icon {
    background: #ccc;
}

.content .details {
    margin-left: 15px;
}

.details span {
    font-size: 20px;
    font-weight: 500;
}

.details p {
    color: #878787;
    margin: 3px 0;
}

.game-control {
    background: #f0f8ec;
    padding: 24px;
    border-radius: 8px;
    color: #888;
}

.more-game {
    margin: 12px auto;
    background: #09F;
    padding: 8px 16px;
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    display: block;
    transition-duration: .3s;
    color: #fff !important;
    text-decoration: none !important;
}

.more-game:hover {
    transform: scale(1.1);
}

#mainpage h1 {
    margin: 0px;
    border-bottom: 1px solid #c6c6c6;
    padding-bottom: 6px
}

.sidebar-game-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12px;
}

.sidebar-game {
    background: #09F;
    border-radius: 5px;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sidebar-game img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    background-color: #09F;
}

.sidebar-game a {
    padding-right: 10px;
    color: #fff;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
}

.cat-game:before, .tag-game:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
}

.latest_box .tag-game {
    background: #09F;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    padding: 3px 12px;
    text-decoration: none;
    position: relative;
}
.latest_box .tag-game:hover{
    background: #ffa500;
}
.game_area_top, .game_area_second {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: row wrap;
    margin: 12px auto;
}

.game_area_second {
    gap: 12px;
}

.game_area_top #game {
    margin-right: 12px;
    display: flex;
    flex: 1;
    flex-direction: column;

}

.flex-right {
    display: inline-block;
    width: 300px;
}

.ads300x600 {
    width: 300px;
    height: 600px;
}

.game_content {
    width: 100%;
    flex: 0 0 70%;
    max-width: 70%;
    margin: 0;
    box-sizing: border-box;
}

.game_content h2 {
    font-size: 16px;
    margin-left: 0;
    margin-bottom: 10px;
    margin-top: 0px;
}

.game_content img.istruzioni_img {
    float: left;
}

.comment-area {
    flex: 0 0 calc(100% - 70% - 12px);
    max-width: calc(100% - 70% - 12px);
    width: 100%;
}

@media (max-width: 1324px) {
    .game_area_top #game {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
        order: 1;
    }

    .flex-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 12px;
        order: 0;
    }

    .ads300x600 {
        max-width: 1200px;
        width: 100%;
        min-height: 90px;
        height: unset;
    }

}

.searchbox {
    position: relative;
    margin-right: 18px
}

.searchbox input {
    background: #f1f1f1;
    border: 0;
    color: #888;
    width: 215px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 35px 10px 15px;
    transition: .2s;
}
.searchbox input:focus{
    border: 0;
    outline: 0;
}
.searchbox button {
    background: 0 0;
    border: 0;
    color: #9b96cd;
    position: absolute;
    right: 5px;
    transform: translateY(-50%);
    font-size: 20px;
    z-index: 9;
    top: 50%;
}

.btn-button {
    background: #09F;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    color: #fff;
    border-radius: 20px;
    border: 0;
    margin-left: 8px;
    margin-bottom: 8px;
}

.more_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -8px;
}

.share {
    margin-left: auto;
}

.hot_game_item {
    display: inline-block;
    flex: 0 1 auto;
    line-height: 0;
    margin: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.hot_game_item:before {
    padding-top: 75%;
    content: "";
    display: block;
}

.hot_game_item > a {
    border-radius: 7px;
    display: block;
    line-height: normal;
    position: absolute;
    text-decoration: none;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    color: #000;
    font-weight: 700;
}

.hot_game_item > a img {
    border-radius: 7px;
    transition: transform 800ms;
    width: 100%;
    background: #322992;
    min-height: 74.67px;
}

.hot_game_item:hover img {
    transform: rotateY(-180deg) rotateX(360deg) scale(0.9);
}

.hot_game_item > a p {
    margin: 0;
    padding: 4px;
    font-size: 12px;
    font-weight: 700;
    transition: .2s;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hot_game_item:hover p {
    color: #36d798;
}


#results {
    z-index: 1005;
    display: none;
    position: absolute;
    width: 270px;
    top: 44px;
    right: -5px;
    background: #fff;
}

.result {
    background: #fff;
}

.result a {
    font-size: 11px;
    display: block;
    padding: 4px;
    line-height: 16px;
    color: #002b50;
    overflow: hidden;
    text-decoration:none;
    box-shadow: rgb(9 30 66 / 7%) 0 4px 8px, rgb(9 30 66 / 7%) 0 0 2px;
}

.result a:hover {
    background: #009cff;
    color: #fff;
    text-decoration: none;
}

.result img {
    float: left;
    width: 60px;
    height: 40px;

    margin: 0 5px 0 1px;
    object-fit: cover;
}

.hot_icon{
    color: orange;
    position: absolute;
    right: 10px;
    top: 10px;

}
.heartbeat{
    animation-name: heartbeat;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    10% {
        -webkit-transform: scale(.91);
        transform: scale(.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    17% {
        -webkit-transform: scale(.98);
        transform: scale(.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    33% {
        -webkit-transform: scale(.87);
        transform: scale(.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}
.content_page {
    margin-top: 24px;
    margin-bottom: 24px;
    color: #000;
    padding: 12px 24px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: rgb(0 0 0 / 24%) 0 6px 12px 0;
}

@media screen and (max-width: 1370px) {
    #giochi_random {
        grid-template-columns: repeat(4, 1fr);
    }

    .latest_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1200px) {
    .game_content, .comment-area {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .latest_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #giochi_random {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    #giochi_random {
        grid-template-columns: repeat(2, 1fr);
    }

    .latest_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    #giochi_random {
        grid-template-columns: repeat(2, 1fr);
    }

    .latest_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topinfo_gioco {
        flex-direction: column;
    }

    .share {
        margin-left: unset;
    }

}

@media screen and (max-width: 700px) {

    .nodesktop {
        display: block
    }
}

@media screen and (max-width: 500px) {
    #giochi_random {
        grid-template-columns: repeat(1, 1fr);
    }

    .latest_grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*header*/
/* .container { margin:0px; padding:0px; width:auto; float:left; width:270px; margin-left:62px; display:inline; margin-top: -22px;  } */


/* blocco dei risultati della ricerca */


div.header-container p {
    margin: 0px;
}

/* title dei gruppi */
div.header-container {
    background-color: #46bcfe;
    color: #fff;
    text-transform: uppercase;
    height: 20px;
    line-height: 20px;
    clear: both;
    overflow: hidden;
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: -8px;
}

div.header-container p.left-align {
    float: left;
    font-weight: bold;
}

#no-results {
    padding: 3px 10px;
    font-style: italic;
    box-shadow: 0px 3px 15px #888888;
    z-index: 9999999;
    background-color: #fff;
}

/*header*/

.pulsantiera {
    flex-direction: row;
    flex-wrap: wrap;
    width: -webkit-fill-available;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preferiti {
    background: #09F;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 8px 0px;
    color: #fff;
}

.favorited i{
    color: #f00;
}


.istruzioni {
    padding: 12px;
    text-align: left;
}

.istruzioni_img {
    float: left;
    margin-right: 20px;
    border-radius: 12px;
}

@media only screen and (max-width: 900px) {
    .istruzioni {
        padding: 10px;
        margin: 2px;
    }

    .istruzioni_img {
        float: none;
    }

    .istruzioni p {
        font-size: 16px;
        color: #666;
    }
}
.show_content {
    position: absolute;
    max-width: 98%;
    width: 100%;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
    z-index: 12;
    background: #2E2F4D;
}

.ShowMore_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 2px solid #fff;
    background: 0 0;
    color: #fff;
    font-size: 14px;
    width: fit-content;
    cursor: pointer;
    gap: 12px;
    padding: 6px 12px;
}
.hidden{
    display: none;
}

/*===============================*/
select.classic {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%239bbcd1' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 5px;
    background-color: #27274a;
    color: #9bbcd1;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 1.4em 0.5em 1em;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 14px;
    border: 1px solid #415969;
    outline: 0;
    height: fit-content;
    margin-left: auto;
}

select.classic:focus {
    background-image: url("data:image/svg+xml;utf8,<svg fill='%239bbcd1' transform='rotate(180)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-color: #27274a;
    color: #9bbcd1;
    outline: 0;
}

/* select filter cat*/
/*player button control*/
.player-footer, .blur_dialog, .contact-popup {
    --shadow-2: 0px 6px 30px rgba(0, 0, 0, .05);
    --box-bg-color: #2e2f4d;
    --btn-control: #27274a;
    --btn-control-hover: #27a4fb;
    --color-primary: #fff;
    --btn-text-extent: #030712;
    --text-btn-control: #0a0a1a;
    --text-btn-control-hover: #fff;
    --border-btn: #ffffff3d;
    --color-content-popup: #9bbcd1;
    --color-heading-popup: #27a4fb;
}

.player-footer {
    border-radius: 8px;
    position: relative;
   /* margin: 12px 0 0;*/
    box-shadow: var(--shadow-2);
    width: 100%;
    /*background-color: var(--box-bg-color);*/
}

.player-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    /*padding: 10px;*/
    z-index: 0;
}

.player-footer__item {
    padding: 0 10px;
}

.player-footer__left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-footer__left img {
    border-radius: 4px;
    max-width: 40px;
    object-fit: cover;
}

.player-footer__left h1 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-heading);
    color: var(--color-primary);
    padding: 0;
}

.player-footer__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.g-footer__button {
    background: var(--btn-control) !important;
    color: var(--color-primary);
    border: 0;
    width: 40px;
    height: 40px;
    transition: all 0.3s;
    border-radius: 50%;
    box-shadow: var(--shadow-2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.g-footer__button .svg-icon {
    width: 18px;
    height: 18px;
    transition: transform .2s cubic-bezier(.32, 1.2, .54, 1.17);
}

.g-footer__button-title {
    font-size: 10px;
    bottom: 4px;
    left: 50%;
    position: absolute;
}

.g-footer__button-title_last {
    opacity: 0;
}

.g-footer__button-title_first {
    background-color: transparent;
    color: #fff;
    opacity: 1;
}

.g-footer__button-title_text {
    border-radius: 16px;
    left: 0;
    padding: 0 4px;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    transition: opacity .35s cubic-bezier(.32, 1.2, .54, 1.17);
    white-space: nowrap;
    background: var(--box-bg-color);
    font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
    .g-footer__button:hover .g-footer__button-title_last {
        background-color: var(--btn-text-extent);
        color: #fff;
        opacity: 1;
    }

    .g-footer__button:hover .g-footer__button-title_first {
        opacity: 0;
    }

    .g-footer__button:hover {
        transform: translateY(-3px);
        background: var(--btn-control-hover) !important;
        color: var(--text-btn-control-hover);
    }
}

.g-footer__button:hover .svg-icon {
    transform: rotate(-5deg);
}

.g-footer__button.voted, .g-footer__button.active {
    transform: translateY(-3px);
    background: var(--btn-control-hover) !important;
    color: var(--text-btn-control-hover);
}

/* =======popup========== */
.blur_dialog, .contact-popup {
    position: fixed;
    bottom: 0;
    top: 0;
    right: -330px;
    width: 330px;
    background-color: var(--box-bg-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px 0 0;
    border: 1px solid var(--border-card);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
}

.blur_dialog.active, .contact-popup.show {
    right: 0px;
}

label.label-contact-select {
    position: relative;
    display: inline-block;
    margin: 0 0 10px;
}

label.label-contact-select:before {
    content: "";
    height: 31px;
    position: absolute;
    right: 7px;
    top: 3px;
    width: 22px;
    background: transparent;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    pointer-events: none;
    display: block;
}

label.label-contact-select:after {
    content: " ";
    position: absolute;
    right: 15px;
    top: 46%;
    margin-top: -3px;
    z-index: 2;
    pointer-events: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6.9px 4px 0 4px;
    border-color: #fff transparent transparent transparent;
    pointer-events: none;
}

/* Popup container */
.contact-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 30px 0 10px;
    border: 1px solid var(--border-btn);
    border-radius: 4px;
    line-height: 36px;
    background: var(--box-bg-color);
    height: 36px;
    color: var(--color-primary);
    margin: 0 0px 5px 0;
    width: 100%;
}

.contact-select:focus-visible {
    outline: 0;
}

select.contact-select::-ms-expand {
    display: none;
}

.error_form_contact, .error-message-email {
    font-size: 0.9em;
    color: var(--high-light);
    margin: 0 0 8px;
    display: none;
}

label.label-contact-select {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
}

.popup-heading {
    display: flex;
    align-items: center;
    flex-flow: nowrap;
    padding: 0 40px 0 16px;
    line-height: 1.5;
}

.popup-content {
    border-top: 1px solid var(--border-btn);
    font-size: 14px;
    color: var(--color-content-popup);
    padding: 8px 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-y: scroll;
    height: 100%;
}

.content_inner_popup {
    padding-bottom: 100px;
}

.content_inner_popup h2:not([class]), .content_inner_popup h3:not([class]), .content_inner_popup h4:not([class]) {
    margin: 0 0 10px;
    color: var(--color-heading-popup);
}

.content_inner_popup h2:not([class]) {
    font-size: 24px;
    font-weight: bold;
}

.content_inner_popup h3:not([class]), .content_inner_popup h4:not([class]) {
    font-size: 20px;
    font-weight: bold;
}

.content_inner_popup ol:not([class]), .content_inner_popup ul:not([class]) {
    margin: 0 0 10px;
    padding-left: 24px;
}

.content_inner_popup ol:not([class]) li, .content_inner_popup ul:not([class]) li {
    list-style: disc;
    margin: 0 0 6px;
}

.content_inner_popup a:not([class]) {
    color: var(--color-heading-popup);
}

.content_inner_popup p:not([class]) {
    margin-bottom: 10px;
}

.check_box_contact {
    background-color: #fff;
    border: 3px solid var(--border-btn);
    border-radius: 4px;
    cursor: pointer;
    display: block;
    height: 16px;
    margin: 0;
    width: 16px;
}

.form_contact {
    background: transparent;
    border: 1px solid var(--border-btn);
    color: var(--color-primary);
    max-width: 308px;
    resize: none;
    border-radius: 4px;
    transition: background-color .2s ease-in-out;
    width: 100%;
}

.contact_input {
    margin: 0 0 10px;
    padding: 8px 12px;
}

.contact_textarea {
    margin: 0 0 10px;
    padding: 8px 12px;
    height: 86px;
}

.icon_contact {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-right: 10px;
}

.title_contact {
    font-size: 12px;
    color: var(--color-primary);
    flex: 1;
    padding: 14px 0;
}

.title_contact strong {
    font-size: 14px;
}

.close_contact {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.close_contact .svg-icon {
    width: 14px;
    height: 14px;
}

.feedback_image_checkbox {
    margin: 7px 0 0 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-form button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.form_bottom {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 4px 16px;
}

.popup-link_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 12px;
    border: 1px solid var(--border-btn);
    border-radius: 4px;
    margin-top: 12px;
    position: relative;
    height: 40px;
    margin-bottom: 20px;
}

.popup-link-share--url {
    width: 100%;
    background: 0;
    border: 0;
    height: auto;
    color: var(--color-primary);
    flex: 1;
    padding-right: 12px;
}

.popup-link-share--copy {
    color: #8166ff;
    font-weight: 600;
}

.popup-link-share--copy:hover {
    cursor: pointer;
}

.title_change_log {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: normal;
    letter-spacing: 1.1px;
}

.change_log_item {
    padding: 8px;
    border-radius: 8px;
    background: var(--btn-control);
    margin: 0 0 8px;
}

.content_change_log {
    margin-bottom: 6px;
    color: var(--color-content-popup);
    font-size: 14px;
    padding-left: 15px;
}

.content_change_log ul {
    padding-left: 16px;
    margin: 0;
}

.notify-toast {
    background: #4CAF50; /* Green background */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toast-content {
    font-size: 16px;
    font-weight: 600;
}

.notification-success {
    position: sticky;
    bottom: 12px;
    left: 12px;
    width: fit-content;
    border-radius: 10px;
    box-shadow: 0 -6px 74px 0 rgb(0 0 0 / 0.15);
    animation: show_toastt 1s ease forwards;
    z-index: 9999;
}

@keyframes show_toastt {
    0% {
        transform: translateX(-100%);
    }
    40% {
        transform: translateX(10%);
    }
    80%, 100% {
        transform: translateX(20px);
    }
}

.notification-success.hide {
    animation: hide_toastt 1s ease forwards;
}

@keyframes hide_toastt {
    0% {
        transform: translateX(20px);
    }
    40% {
        transform: translateX(10%);
    }
    80%, 100% {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
    }
}

.notification-success .toastt {
    border-radius: 10px;
    border-left: 5px solid #2ecc71;
    background: #fff;
    padding: 8px 12px;
    box-shadow: 1px 7px 14px -5px rgb(0 0 0 / 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-success .toastt .content {
    display: flex;
    gap: 12px;
    align-items: center;
}

.notification-success .toastt.offline {
    border-color: #ccc;
}

.content_notification .details {
    margin-left: 15px;
}

.details span {
    font-size: 20px;
    font-weight: 500;
    color: #878787;
}

.details p {
    color: #878787;
}

.toastt .content_notification {
    display: flex;
    align-items: center;
}

.toastt .content_notification .icon {
    background: #ccc;
}

.toastt .content_notification .icon img {
    max-width: 50px;
    object-fit: cover;
}

.favorited {
    color: red;
}

/* ======================================== */

.frame-box-game {
    min-height: 520px;
    position: relative;
}


.frame-box-game iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
}

@media (max-width: 991px) {
    .player-footer__inner {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
}

.sort_container {
    margin-left: auto;
}

.s-title-control {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.s-title-control h1 {
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .s-title-control {
        flex-direction: column;
        gap: 0;
    }
}
.svg-icon {
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 24px;
    fill: currentColor;
    font-size: 0
}

.svg-icon__link {
    vertical-align: top;
    fill: inherit;
    width: inherit;
    height: inherit
}

.sidebar__close.svg-icon {
    width: 40px;
    height: 40px;
}

.details .add {
    color: #28a745;
}

.details .remove {
    color: #dc3545;
}

.mt-12 {
    margin-top: 48px;
}

.catalog-pagination {
    margin-top: 24px;
    margin-bottom: 24px;
}

.catalog-pagination ul.paging {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 20px;
    padding-inline-start: 0px;
}

.catalog-pagination ul.paging li {
    background-color: #162526;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.catalog-pagination ul.paging li a {
    text-decoration: none;
    padding: 15px;
    margin: -15px;
    font-size: 18px;
    color: #7996a9;
}

.catalog-pagination ul.paging li a:hover {
    color: #09f;
}

.catalog-pagination ul.paging li.active {
    background: #09f;
    color: #000 !important;
    border: none;
}

.heading {
    display: flex;
    align-items: center;
}

.p-0 {
    padding: 0 !important;
}

.p-3 {
    padding: 12px !important;
}

.m-0 {
    margin: 0 !important;
}

.s-title-control__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.s-title-control__left .tags > a {
    font-size: 16px;
}

.mw-full {
    max-width: 100% !important;
}

.flex-none {
    flex: none !important;
}

.mb-4 {
    margin-bottom: 16px !important;
}


.game-slider {
    width: 100%;
    margin: auto;
}

.game-slider-heading {
    display: flex
;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.action-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
}

.action-button button {
    outline: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    color: #fff;
    transition: background .2s ease;
    border: 1px solid #ffffff3d;
    background: transparent;
}

.action-button button:first-child {
    border-radius: 6px 0 0 6px;
    border-right: 0;
}

.action-button button:last-child {
    border-radius: 0 6px 6px 0;
}

.action-button button.swiper-button-disabled {
    opacity: .4;
    color: #545454;
}

button {
    cursor: pointer;
}

.action-button button:hover {
    background: #09f;
}

.px-6 {
    padding-left: 24px;
    padding-right: 24px;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.swiper-slide .games__img picture::before {
    left: -85%;
}

.swiper-slide .col-190 .games__img {
    max-height: 134px;
}

.grid_2x2 {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.single-game a {
    display: block;
    height: 100%;
}

.games__item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.games__info {
    margin-top: auto;
}

.badge {
    position: absolute;
    z-index: 10;
    top: -6px;
    left: -6px;
    display: inline-block;
    padding: 0 8px 0;
    border-radius: 6px 6px 6px 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: -.11px;
    color: #fff;
    background-color: #eb3175;
}

.badge:before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 6px;
    height: 4px;
    pointer-events: none;
    border-radius: 0 0 0 100%;
    background-color: #fff;
}

.badge--new {
    background: #3eb752;
}

.badge--hot {
    background: #ab1c2c;
}

.badge--trending {
    background: #0b82e8;
}


.games {
    padding: 8px 0;
}

.swiper-wrapper {
    padding: 8px;
}

.games__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.games__img picture {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.games__img picture img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.games.row {
    padding-left: 10px;
}

.pr-3 {
    padding-right: 10px;
}

.px-3 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}