

.page-load-status {
    color: #fff;
    display: none;
}

.infinite-scroll-request {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: #00000087;
    z-index: 44;
	    backdrop-filter: blur(7px);
}

.infinite-scroll-request img {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.load-more {
    text-align: center;
    margin-top: 13px;
}

#load_more_recommended_games {
    padding: 18px 20% 14px;
    color: #fff;
    border: 1px solid #3e32b8;
    border-bottom: 3px solid #292274;
    background: #09F;
    display: inline-block;
    border-radius: 7px;
    text-decoration: none;
    margin: 12px auto;
}

#goToNewGames {
    display: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

.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);
	    border: 2px dashed #00000052;
    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 {
        padding: 16px;
        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 img {
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: #2ecc71;
    object-fit: cover;
}

.toastt.offline .content .icon {
    background: #ccc;
}

.content .details {
    margin-left: 15px;

}

.details span {
    font-size: 20px;
    font-weight: 500;
    color: #16151b
}

.details p {
    color: #878787;
    margin: 3px 0;
}

.game-control {
    background: #f0f8ec;
    padding: 24px;
    border-radius: 8px;
    color: #888;
}

.more-game {
    margin: 12px auto;
    background: #002258;
    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 span.svg-icon{
    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;
    }
}
.main-svg-sprite {
    display: none
}

.svg-icon {
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 22px;
    fill: currentColor;
    font-size: 0
}

.svg-icon__link {
    vertical-align: top;
    fill: inherit;
    width: inherit;
    height: inherit
}

.show_content {
    position: absolute;
    max-width: 98%;
    width: 100%;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
    z-index: 12;
    background: #fff;
}

.ShowMore_button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border: 0;
    background: 0 0;
    color: #2e2eff;
    font-size: 14px;
    width: fit-content;
    cursor: pointer;
    gap: 8px;
    padding: 6px 12px;
}
.hidden{
    display: none;
}
.main-svg-sprite {
    display: none
}

.svg-icon {
    display: inline-block;
    vertical-align: top;
    width: 22px;
    height: 22px;
    fill: currentColor;
    font-size: 0
}

.svg-icon__link {
    vertical-align: top;
    fill: inherit;
    width: inherit;
    height: inherit
}