:root {
    --main-bg-color: #7F2BB0;
    --main-color-highlight: #0eb093;
    --main-bg-color-contrast: #fff;
    --main-color: #5b35ad;
}

html, body{
    margin: 0;
    padding: 0;
    font-size: 14px;
    /*background-color: #7F2BB0;*/
    font-family: "Open Sans", sans-serif;
    background-color: var(--main-bg-color);
}

a{
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

p{
    line-height: 24px;
}

 dl {
    margin: 15px 0
}

 dt {
    font-size: 18px;
    color: #fc0
}

 dd {
    line-height: 25px
}

a,
h1, h2, h3, h4, h5, h6,
.rectangle-mz-category,
.thumb-name,
.rating,
input,
textarea,
button,
footer{
    font-family: "Dosis", sans-serif;
}
.hidden{
    display: block;
    visibility: hidden;
    width: 0;
    height: 0;
}

.container{
    width: 98%;
    margin: 0 auto;
    max-width: 1854px;   
}
.centered-container{
    width: 1170px;
    margin: 0 auto;
    max-width: 100%;
}
.overlay{
    position: fixed;
    background: rgba(0,0,0,.6);
    opacity: 0;
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    z-index: 999;
}

.modal-container{
    position: absolute;
    top: 20%;
    left: 50%;
    margin-left: -300px;
    width: 600px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    padding: 20px;
}

.modal-close{
    color: #ccc;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 2px;
    font-size: 26px;
    font-weight: 600;
}
.modal-close:hover{
    color: #000;
}
.game-feedback p{
    font-size: 18px;
}
.game-feedback-option{
    margin-bottom: 15px;
}

.custom-radio{
    display: block;
    position: relative;
    padding-left: 27px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    line-height: 20px;
}
/* Hide the browser's default radio button */
.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.custom-radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.custom-radio:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.custom-radio input:checked ~ .checkmark {
    background-color: var(--main-bg-color);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.custom-radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

button.btn-main,
button.btn-main[type="submit"]{
    background: var(--main-bg-color);
    color:  var(--main-bg-color-contrast);
}
button.btn-main:hover:enabled{
    opacity: .8;
}

button.btn-main:disabled{
    opacity: .3;
}

.rectangle-mz.logo.grid-w-double a{
    margin-left: 0px;
}

.ad-container{
    position: relative;
    /*background: rgba(0,0,0,.1);*/
    display: inline-block;
    overflow: hidden;
}

.ad-container:after{
    position: absolute;
    display: block;
    content: "advertisment";
    text-transform: uppercase;
    color: #fff;
    opacity: .35;
    letter-spacing: 1px;
    text-align: center;
}

.game-ad-left{
    position: absolute;
    transform:translateX(-100%);
    left: -10px;
    top: 20px;
}
.game-ad-right{
    position: absolute;
    transform:translateX(100%);
    right: -10px;
    top: 20px;
}
.game-ad-bottom{
    text-align: center;
    width: 800px;
}

.ad-horizontal .ad-container:after{
    right: -56px;
    top: 39px;
    font-size: 10px;
    transform: rotate(90deg);
}

.ad-vertical .ad-container div{
    padding-bottom: 18px;
}

.ad-vertical .ad-container:after{
    bottom: 18px;
    left: 0;
    width: 100%;
    font-size: 10px;
}

.rectangle-mz.logo.logo-floating .logo-mz{
    display: block;
    position: fixed;
    z-index: 2;

    /*background: #fff;*/
    /*border-radius: 10px;*/
}

.rectangle-mz.logo img{
    width: 94px;
    height: 94px;
    display: block;
}
.title{
    color: #fff;
}

.rectangle-mz-title .title{
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    height: 94px;
    margin: 0;
    overflow: hidden;
}
.thumb-category{
    background: #fff;
    text-align: center;
    height: 94px;
    line-height: 94px;
}

.thumb-category-image{
    float: left;
    width: 94px;
}

.thumb-category-name{
    width: 93px;
    height: 94px;
    font-size: 14px;
    float: right;
    color: var(--main-color);
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding:0 5px;
}
.thumb-category-name{
    line-height: 18px;
}

.thumb-exclusive .thumb-category-image{
    padding: 5px;
    box-sizing: border-box;
}

.thumb-exclusive .thumb-category-image img{
    width: 90px;
    height: 90px;
}

.rectangle-mz-category:hover{
    text-decoration: none;
}
.grid-title-full-width{
    grid-column: 2 / -1;
}

.grid-title-full-width h1{
    text-align: left !important;
}

.rectangle-box .rectangle-game{
    grid-row: auto / span 6;
    grid-column: 2 / span 10;
}
.game-logo{
    text-align: center;
}

.game-logo a{
    display: inline-block;
    width: 140px;
}

.game-logo a img{
    width: 100%;
}

.game-box-container{
    margin: 0px auto 0;
    background: #fff;
    width: 920px;
    box-shadow: 0 6px 12px 0 rgba(0,0,0,.24);
    padding: 20px 20px 20px 20px;
    border-radius: 20px;
    position: relative;
    grid-row: auto / span 6;
    grid-column: auto / span 9;
    grid-area: 1 / 2 / span 6 / span 9;
}

.game-box-container .first-game-cts{
    width: 100%;
    height: 605px;
    float: left;
    position: relative;
}
.game-box-container .game-iframe-container{
    display: block;
    position: absolute;
    width: 100%;
    height: calc(100% - 65px);
    background: #fff;
}

.game-box-container .game-iframe{
    width: 100%;
    height: 100%;
    position: absolute;
}

.game-unavailable{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #1e1e1e;
}

.game-unavailable-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0.3;
    filter: blur(8px);
}

.game-unavailable .game-unavailable-text{
    position: absolute;
    width: 100%;
    top: 50%;
    margin-top: -20px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    font-family: "Dosis", sans-serif;
}

.game-unavailable .game-thumb-small{
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
    top: -4px;
}

.game-box-container .related-games{
    display: block;
    width: 94px;
    float: right;
}
.game-box-container .related-games .game-logo-related{
    box-shadow: 0 0 5px rgba(0,0,0,.2);
}

.game-box-container .related-games .thumb{
    margin-bottom: 13px;
}

.game-box-container .related-games .thumb:last-child{
    margin-bottom: 0;
}


.game-box-container .game-details{
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #fff;
    height: 45px;
    line-height: 45px;
    padding: 0px 0;
}

.game-box-container .fullscreen .game-details{
    padding: 10px;
    width: calc(100% - 20px);
}
.game-box-container .fullscreen .game-details .rating{
    right: 0;
}
.game-thumb-small{
    height: 45px;
    border-radius: 5px;
}

.game-box-container .game-details .game-thumb-small{
    float: left;
    margin-right: 20px;
}


.game-box-container .game-details h1{
    margin: 0;
    color: var(--main-color);
}

.game-box-container .game-ad-bottom .ad-container:after{
    color: #000;
    opacity: .5;
}

.game-details .rating{
    position: absolute;
    right: -7px;
    top: 17px;
    width: 115px;
    text-align: center;
    line-height: 14px;
    font-size: 10px;
    font-weight: bold;
    color: var(--main-color);
}

.game-details .rating .thumbs-up,
.game-details .rating .thumbs-down{
    display:none;
    color: var(--main-color);
}

.game-details .rating .thumbs-up.selected,
.game-details .rating .thumbs-down.selected{
    display:none;
    color: var(--main-color-highlight);
}

.rating i{
    font-size: 20px;
}

.rating span{
    display: block;
}
.rating .game-fullscreen,
.rating .thumbs-up,
.rating .thumbs-down{
    width: 35px;
    float: right;
    cursor: pointer;
}
.rating .game-fullscreen{

}

.rating .game-fullscreen i{
    font-size: 24px;
}

.game-box-container .text-container{
    box-shadow: none;
    padding: 0;
}

.game-box-container .thumb{
    box-shadow: 0 0 5px rgba(0,0,0,.4);
}

.game-box-container .thumb-category{
    width: 215px;
    float: left;
    margin: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,.1);
}

.game-box-container .thumb-category:nth-of-type(4n){
    margin-right: 0;
}
.game-box-container .thumb-category:nth-of-type(4n+1){
    margin-left: 0;
}

.game-other-thumbs .game-thumb{
    float: left;
    margin: 10px 8px 10px 9px;
}

.game-other-thumbs .game-thumb:first-of-type{
    margin-left: 0;
}
.game-other-thumbs .game-thumb:nth-child(8){
    margin-right: 0;
}
.game-text .game-categories{
    text-align: left;
}
.game-text .game-categories a{
    display: inline-block;
    color: #979797!important;
    border: 1px solid #979797;
    padding: 5px 10px;
    margin-right: 7px;
    border-radius: 15px;

    transition: all .3s;
    font-size: 13px;
    margin-top: 10px;
    font-family: "Dosis", sans-serif;
}

.game-text .game-categories a:hover{
    color: var(--main-color)!important;
    border-color: var(--main-color);
}

.game-text .game-breadcrumbs{
    margin: 14px 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
}
.game-text .game-breadcrumbs li{
    padding-right: 11px;
    display: inline-block;
    list-style: none;
    position: relative;
}

.game-text .game-breadcrumbs li:after{
    content: "\e806";
    display: block;
    position: absolute;
    right: 1px;
    top: 5px;
    color: var(--main-color);
    font-family: "fontype", serif;
    font-size: 12px;
}
.game-text .game-breadcrumbs li:last-child:after{
    display: none;
}

.game-text .game-breadcrumbs a{
    text-transform: uppercase;
    font-size: 11px;
    font-family: "Dosis", sans-serif;
}

.scroll-top{
    display: none;
    position: fixed;
    right: 5%;
    /*margin-left: 500px;*/
    bottom: 12%;
    transition: all .4s;

    box-shadow: 0 0 10px rgba(0,0,0,.3);
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    cursor: pointer;

}
.scroll-top .scroll-top-content{
    transform: rotate(90deg);
}

.scroll-top .icon{
    font-size: 43px;
    position: relative;
    top: -1px;
    color: var(--main-color);
}

.bounce {
    animation-iteration-count: infinite;
    animation-duration: 3s;
    animation-name: bounce;
    animation-timing-function: ease;
}
@keyframes bounce {
    0%   { transform: translateY(0); }
    5%  { transform: translateY(-30px); }
    10%  { transform: translateY(0); }
    100% { transform: translateY(0); }
}

.thumb{
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,.4);
    transition: all .2s;
}
.thumb:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(transparent 25%,rgba(0,0,0,.05));
    opacity: 0;
    transition: opacity .2s;
}
.game-logo-related.thumb:after{
    display: none;
}

.thumb img{
    width: 94px;
    height: 94px;
    display: block;
}

.thumb-name{
    position: absolute;
    width: 100%;
    display: block;
    bottom: -94px;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 2px rgba(0,0,0,.5);
    transition: all .2s;
    padding: 6% 6%;
    box-sizing: border-box;
    font-size: 12px;
    z-index: 3;
}
.thumb:hover{
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(0,0,0,.3);
}
.thumb:hover .thumb-name{
    bottom: 0;
}

.thumb:hover:after{
    opacity: 1;
}

.thumb-video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    background: #000;
    z-index: 2;
}

.thumb-video video{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.thumb:hover .thumb-video{
    display: block;
}

.game-thumb{
    width: 94px;
    height: 94px;
}

.thumb-2x2 img{
    width: 204px;
    height: 204px;
}

.thumb-2x2 .thumb-name{
    font-size: 18px;
}

.thumb-3x3 img{
    width: 314px;
    height: 314px;
}

.thumb-3x3 .thumb-name{
    font-size: 20px;
}

.text-container{
    background: #fff;
    color: #000;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    padding: 1vw;
    border-radius: 20px;
    max-width: 1854px;
    width: 98%;
    margin:0 auto;
}
.text-container a{
    font-family: "Open Sans", sans-serif;
    color: var(--main-color);
}
.text-center{
    text-align: center!important;
}

.text-left{
    text-align: left!important;
}

.text-justify{
    text-align: justify!important;
}

.nowrap{
    white-space: nowrap;
}
.ov-hidden{
    overflow: hidden;
}
.ov-ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.d-block{
    display: block;
}
.d-none{
    display: none;
}
.half{
    width: 50%;
    box-sizing: border-box;
}
.float-left{
    float: left;
}
.float-right{
    float: right;
}

.text-right{
    text-align: right;
}

.game-index-title{
    color: #fff;
    margin-top: 30px;
}

.game-index-title:first-child{
    margin-top: 0;
}

.game-index-game{
    display: inline-block;
    width: 200px;
    margin-right: 17px;
}
.main-game{
    visibility: visible;
    display: block;
    position: relative;
}

.bottom-nav{
    margin-bottom: 100px;
}
/*.play-mobile-game,*/
.mobile-logo,
.mobile-rotate{
    display: none;
}

    .play-pc-game{
        display: block;
        width: 100%;
        height: 100%;
        /*margin: 7px 5px 7px 5px;*/
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }

    .play-pc-game:after{
        position: absolute;
        content:"";
        display: block;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.4);
        z-index: 1;
    }

    .play-pc-game img{
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
        filter: blur(8px);
    }



    .play-pc-game i{
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -25px;
        margin-top: -25px;
        width: 50px;
        height: 50px;
        background: #fff;
        line-height: 50px;
        border-radius: 50px;
        color: var(--main-color);
        text-align: center;
        font-size: 26px;
        box-shadow: 0 2px 15px rgba(111,111,111,.5);
        z-index: 2;
        box-sizing: border-box;
        padding-left: 5px;
        animation: pulse 2s ease 0s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1.0);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1.0);
        }
    }


    .play-pc-game span{
        width: 100%;
        position: absolute;
        top: 50%;
        text-align: center;
        color: #fff;
        padding: 10px 0;
        font-size: 24px;
        margin-top: 20px;
        font-weight: bold;
        z-index: 2;
    }


.contact-content{
    min-height: 80vh;
}
.contact-title{
    padding-top: 150px;
}
.contact-title h1{
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-size: 54px;
    margin-bottom: 10px;
}

.contact-title h1:after{
    content: "";
    position: absolute;
    top: 33px;
    right: 0;
    height: 1px;
    width: 45%;
    background: #ccc;
    display: none;
}

.contact-title h2{
    color: #fff;
}

.contact-form input,
.contact-form textarea,
.contact-form .g-recaptcha,
.contact-form button{
    margin: 12px 0 3px 0;
}

.contact-form button{
    margin-top: 25px;
}

.contact-form-row-error{
    color: #fff
}
.contact-form-msg-success,
.contact-form-msg-error{
    padding: 14px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.contact-form-msg-success{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.contact-form-msg-error{
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

input[type="text"],
input[type="passsword"],
textarea{
    background: #fff;
    box-sizing: border-box;
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 12px 10px 12px 34px;
    font-size: 15px;
    font-weight: bold;
}
textarea{
    height: 200px;
}

input:focus,
textarea:focus{
    outline: none;
}
button{
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 16px;
    padding: 16px 20px;
    transition: all 0.1s ease-in;
    min-width: 142px;
    border: none;
    cursor: pointer;
    outline: none;
}
.contact-form button[type="submit"]{
    background: #fff;
}

.contact-form button[type="submit"]:hover:enabled{
    background-color: #000000;
    color: #fff;
    outline: none;
}
.default-container footer{
    padding: 20px 0;
}

.logo-default-container{
    width: 94px;
    height: 94px;
    margin-right: 30px;
    float: left;
}

.logo-default-container img{
    width: 100%;
}

.title-default-container .title{
    height: 94px;
    line-height: 94px;
    color: #fff;
}

.download-game-item{
    float: left;
    width: 49%;
    color: #fff;
    margin-bottom: 30px;
    display: none;
}
.download-game-item:nth-child(2n+1){
    margin-right: 2%;
}

.download-game-item img{
    float: left;
    width: 94px;
    height: 94px;
    margin-right: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,.4);
}

.download-game-item p{
    margin-top: 5px;
}

.download-game-item:nth-child(-n+10){
    display: block;
}

.logo{
    position: relative;
}

.logo .logo-pic:hover{
    animation: shake 1.5s linear infinite;
}

.logo-mz{
    background: #fff;
    border-radius: 10px;
    width: 94px;
    height: 94px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,.4);
}
/*.logo.thumb:hover{*/
/*    transform: none!important;*/
/*}*/

@keyframes shake {
    0% {
    }
    10% {
        transform: rotate(-1deg)
    }
    20% {
        transform: rotate(1deg)
    }
    30% {
        transform: rotate(0deg)
    }
    40% {
        transform: rotate(1deg)
    }
    50% {
        transform: rotate(-1deg) scale(1.01)
    }
    60% {
        transform: rotate(0deg)
    }
    70% {
        transform: rotate(-1deg) scale(1.015)
    }
    80% {
        transform: rotate(1deg)
    }
    90% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(-1deg) scale(1.02)
    }
}

.logo-mz .logo-pic{
    text-align: center;
    display: block;
    width: 100%;
    height: 70px;
}
.logo-mz .logo-pic img{
    width: 90px;
    height: 60px;
    display: inline-block;
    position: relative;
    top: 2px;
}

.logo-mz .logo-ico{
    text-align: center;
    box-sizing: border-box;
}


.logo-mz .logo-ico a:hover{
    background: #efefef;
}

.logo-mz .logo-ico a{
    color: var(--main-color);
}

.logo-mz .logo-home{
    width: 50%;
    height: 30px;
    /*line-height: 30px;*/
    float: left;
    box-sizing: border-box;
}
.logo-mz .logo-home i{
    font-size: 19px;
}

.logo-mz .logo-search{
    height: 30px;
    /*line-height: 30px;*/
    width: 50%;
    float: left;
}
.logo-mz .logo-search i{
    font-size: 19px;
    position: relative;
}

.sidebar-search{
    top: 0;
    left: 0;
    height: 100%;
    width: 835px;
    padding: 40px 75px;
    margin-left: -2000px;
    position: fixed;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    background: var(--main-bg-color);
    z-index: 999;
}

.logo-search-icon{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 10;
    display: none;
    cursor: pointer;
}

.logo-search-icon svg{
    width: 20px;
    height: 20px;
}

.logo-search-icon svg path{
    fill: #626262;
}

.search-close-icon{
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 52px;
    position: absolute;
    top: 40px;
    right: -26px;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    background: #fff;
    font-weight: bold;
    color: #626262;
    text-align: center;
    font-size: 30px;
    cursor: pointer;
}

.search-close-icon i{
    font-size: 30px;
    position: relative;
    left:-2px;
    color: #757575;
}

aside .search-form{
    width: 100%;
    position: relative;
}

aside .search-form input{
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    font-size: 21px;
    height: 52px;
    padding: 11px 20px 13px 50px;
    border-radius: 52px;
}

aside .search-form-icon{
    position: absolute;
    top: 13px;
    left: 10px;
    font-size: 20px;
    color: #757575;
}
aside .search-popular-container,
aside .search-recent-container,
aside .search-results-container{
    width: calc(100% + 40px);
    margin-left: -20px;
}

aside .search-results-container {
    height: calc(100vh - 160px);
}

aside .search-results{
    padding: 0 20px;
}

aside .no-games-container{
    background: #fff;
    margin: 30px 0;
    padding: 0 20px;
    height: 70px;
    line-height: 70px;
    border-radius: 20px;
}

aside .no-games-container h2{
    color: var(--main-color);
}

footer{
    color: #fff;
    font-weight: 600;
    font-size: 12px;
}

footer ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
footer ul li{
    display: inline-block;
}

footer ul li a{
    margin:0 30px 0 9px;
    position: relative;
    color: #fff;
}

footer ul li a:hover{
    color: #fff;
    text-decoration: underline;
}
.copyright:after,
footer ul li a:after{
    content: "";
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background: #fff;
    left: -9px;
    top: 56%;
    margin-top: -2px;
}

.copyright{
    position: relative;
}
footer .language{
    position: relative;
}

footer .language img{
    width: 24px;
    height: 24px;
    cursor: pointer;
}

footer .language:hover .languages{
    display: block;
    opacity: 1;
}

footer .languages{
    display: none;
    opacity: 0;
    position: absolute;
    transition: opacity .4s;
    bottom: 26px;
    right: 0;
    padding-bottom: 20px;
}
footer .languages ul{
    width: 82px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
    position: relative;
}
footer .languages ul:after{
    display: block;
    content: "";
    position: absolute;
    bottom: -14px;
    right: 16px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 2px solid transparent;

    border-top: 14px solid #fff;
}

footer .languages li{
    display: inline-block;
    margin: 5px;
}

footer .languages li img{
    position: relative;
    top: -1px;
    margin-right: 5px;
    vertical-align: middle;
}

footer .languages a{
    display: inline-block;
    margin: 0;
    color: var(--main-color)!important;
}
footer .languages a:after{
    display: none;
}

/*===========================
         GAMES GRID
===========================*/
.m-30{
    margin: 30px;
}
.mt-30{
    margin-top: 30px;
}
.mb-30{
    margin-bottom: 30px;
}

.m-150{
    margin: 150px;
}
.mt-150{
    margin-top: 150px;
}
.mb-150{
    margin-bottom: 150px;
}

.pr-30{
    padding-right: 30px;
}

.pl-30{
    padding-left: 30px;
}

/*===========================
         GAMES GRID
===========================*/
.rectangle-box{
    display: grid;
    grid-template-columns: repeat(auto-fill, 94px);
    grid-auto-flow: row dense;
    justify-content: center;
    grid-gap: 17px;
    margin: 17px 0;
}

.rectangle-mz{
    grid-column: auto / span 1;
    grid-row: auto / span 1;
    min-height: 94px;
}
.grid-full-width{
    grid-column: 1 / -1;
}

.grid-full-width-1{
    grid-column: 2 / -1;
}

.grid-full-width-2{
    grid-column: 3 / -1;
}

.grid-full-width-3{
    grid-column: 4 / -1;
}

.grid-double{

}

.grid-triple{

}

.grid-w-double{

}

.grid-2x2,
.grid-h-double{
    grid-row: auto / span 2;
}

.grid-2x2,
.grid-w-double{
    grid-column: auto / span 2;
}

.grid-2x2,
.grid-h-double{
    grid-row: auto / span 2;
}

.grid-3x3,
.grid-h-triple{
    grid-row: auto / span 3;
}

.grid-3x3,
.grid-w-triple{
    grid-column: auto / span 3;
}

.grid-8x8,
.grid-h-8triple{
    grid-row: auto / span 6;
}

.grid-8x8,
.grid-w-8triple{
    grid-column: auto / span 9;
}

.grid-footer{

}

/*===========================
         CLEARFIX
===========================*/
.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */



/*===========================
         RESPONSIVE
===========================*/

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 1199px) {
    .container{

    }

    .sidebar-search{
        width: 100%;
        padding: 20px;
    }

    .search-close-icon{
        right: 20px;
        top: 20px;
    }

    aside .search-form{
        width: calc(100% - 70px);
    }

    .sidebar-search .rectangle-box{
        margin: 0;
    }
}
@media screen and (max-width: 1300px),
       screen and (max-width: 1300px ) and (orientation: landscape){

/*}*/

/*@media screen and (max-width: 768px){*/
    html, body{
        font-size: 16px;
    }

    .container{
        margin: 0,auto;
        width: 100%;
        max-width: 1299px;   
    }
    .rectangle-box{
        grid-gap: 14px;
        margin: 0,auto;
    }

    .rectangle-mz.logo.logo-floating .logo-mz{
        position: fixed;
    }

    /* .text-container{
        padding: 20px;
    } */

    aside .search-results-container{
        height: calc(100vh - 160px);
        width: inherit;
        margin: 0;
    }

    aside .search-results{
        margin: 10px 0!important;
        padding: 0 20px 0 0;
    }

    footer ul{
        width: 100%;
        text-align: center;
    }

    footer ul li a{
        margin: 0 10px;
    }

    footer .copyright{
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    footer .language{
        top: -20px;
    }
    .copyright:after{
        display: none;
    }



    .centered-container,
    .game-box-container-mobile{
        width: 342px;
        padding: 0;
        background: none;
        box-shadow: none;
        margin-top: 3px;
        grid-column: auto / span 3;
        grid-row: auto / span 3;
        grid-area: 2 / 1 / span 3 / span 3;
    }

    .game-box-container-mobile .game-iframe{
        display: none;
        position: fixed;
    }

    .game-box-container-mobile .first-game-cts-mobile{
        width: 100%;
        height: 0;
        position: relative;
    }

    .game-ad-left,
    .game-ad-right,
    .game-ad-bottom{
        display: none;
    }

    .main-game{

    }

    .game-iframe{
        position: fixed;
        width: 100%!important;
        height: 100%!important;
        top: 0!important;
        left: 0!important;
        display: none;
        z-index: 100;
    }

    .scroll-top{
        display: none;
    }

    .mobile-logo{
        display: none;
        width: 60px;
        height: 45px;
        position: fixed;
        top: 10%;
        left: 0;
        z-index: 1000;
        background: #fff;
        border-radius: 0 45px 45px 0;
        padding-left: 7px;
        box-sizing: border-box;
        box-shadow: 0 0 15px rgba(111,111,111,.5);
    }

    .mobile-logo img{
        width: 41px;
        height: 41px;
        margin: 2px;
    }

    .mobile-rotate{
        display: none;
        background: #000;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
    }

    .mobile-rotate i{
        font-size: 60px;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -41px;
        margin-top: -41px;
    }

    .game-box-container-mobile .related-games{
        width: 109px;
        height: 111px;
        overflow: hidden;
        float: none;
    }

    .game-box-container-mobile .related-games .thumb{
        float: left;
    }
    .game-box-container-mobile .related-games .game-thumb{
        display: none;
    }
    .game-box-container-mobile .related-games .game-logo-related{
        box-shadow: 0 0 5px rgba(0,0,0,.4);
        margin: 5px;
    }
    .game-box-container-mobile .related-games .thumb,
    .game-box-container-mobile .thumb,
    .game-box-container-mobile .thumb-category{
        margin: 7px!important;
        width: 94px;
        height: 94px;
    }

    .game-box-container-mobile .related-games .thumb img,
    .game-box-container-mobile .thumb-category img{
        width: 94px;
        height: 94px;
    }

    .game-box-container-mobile .logo-mz{
        /*width: 212px;*/
        grid-column: auto / span 2;
    }
    .game-box-container-mobile .logo-mz .logo-pic img{
        width: 90px;
        height: 60px;
    }


    .play-mobile-game{
        display: block;
        width: 307px;
        height: 307px;
        margin: 7px 5px 7px 5px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }

    .play-mobile-game:after{
        position: absolute;
        content:"";
        display: block;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.4);
        z-index: 1;
    }

    .play-mobile-game img{
        position: absolute;
        width: 100%;
        height: 100%;
    }



    .play-mobile-game i{
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -25px;
        margin-top: -25px;
        width: 50px;
        height: 50px;
        background: #fff;
        line-height: 50px;
        border-radius: 50px;
        color: var(--main-color);
        text-align: center;
        font-size: 26px;
        box-shadow: 0 2px 15px rgba(111,111,111,.5);
        z-index: 2;
        box-sizing: border-box;
        padding-left: 5px;
        animation: pulse 2s ease 0s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1.0);
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1.0);
        }
    }


    .play-mobile-game span{
        width: 100%;
        position: absolute;
        top: 50%;
        text-align: center;
        color: #fff;
        padding: 10px 0;
        font-size: 24px;
        margin-top: 20px;
        font-weight: bold;
        z-index: 2;
    }

    .game-other-thumbs{
        max-height: 564px;
        overflow: hidden;
    }

    .game-box-container-mobile .game-iframe-container-mobile{
        height: calc(100%);
    }

    .game-box-container-mobile .game-details{
        position: absolute;
        /*top: 0;*/
        right: 0;
        height: 94px;
        padding: 2px 0 0 0;
        background: none;

        width: 200px;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .game-box-container-mobile .game-details img{
        display: none;
    }
    .container .game-box-container-mobile .game-details h1 {
        line-height: 30px;
        color: #fff!important;
        margin: 0;
        padding: 0;
    }

    .game-box-container-mobile .game-details .rating{
        display: none;
    }

    .game-text{
        padding: 10px 20px!important;
        margin: 10px 5px;
    }

    .game-text .game-categories{
        margin-bottom: 10px;
    }

    .game-text .game-breadcrumbs li:after{
        top: 7px;
    }


    .half{
        width: 100% !important;
    }

    .contact-content{
        padding-bottom: 30px;
    }

    .contact-title{
        padding: 0!important;
    }
    .contact-title h1:after{
        display: none;
    }

    .contact-form{
        padding: 0!important;
    }


    .download-game-item{
        width: 100%;
        float: none;
        margin: 20px 0;
        overflow: hidden;
    }

    .download-game-item img{
        margin-bottom: 10px;
    }
    .download-game-item .links{
        clear:both;
        margin: 10px 0;
        word-break: break-all;
    }
    .download-game-item .links div{
        margin: 5px 0;
    }

    .game-index-game{
        width: 100%;
        margin: 5px 0;
    }

    button[type="submit"]:hover,
    button[type="submit"]:focus{
        background-color: #fff;
        color: inherit;
        outline: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px ){
    .centered-container{
        /*width: 630px;*/
    }
    .centered-container,
    .game-box-container{
        width: 530px;
        grid-column: auto / span 4;
        grid-row: auto / span 4;
        grid-area: 2 / 1 / span 4 / span 4;
    }

    .play-mobile-game{
        width: 418px;
        height: 418px;
    }

    .game-box-container .game-details{
        width: 385px;
        justify-content: left;
    }

    .game-other-thumbs{
        max-height: 318px;
    }
}




img.lazy{
    opacity: 0;
}
img.lazy.loaded{
    opacity: 1;
}

.fn-left,.fn-right {
    display: inline
}

.fn-left {
    float: left
}

.fn-right {
    float: right
}

.link-b2 {
    width: 210px;
    margin: 0 auto
}
.adthumb {
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 13%);
    transition: all .2s;
}
.ad_game_left{
    display: none;
}
.ad_game_right{
    display: none;
} 
.ad_game_right1{
    display: none;
}
.ad_category_right{
    width: 300px!important;
    height: 320px!important;
    display: block;
    position: relative;
    grid-area: 1 / -4 / span 3 / span 3;
}
@media screen and (min-width: 1864px) {
    .container{
        width: 98%;
        margin:0 auto;
        max-width: 1854px;   
    }
    .game-box-container{
        grid-row: auto / span 6;
        grid-column: auto / span 9;
        grid-area: 1 / 3 / span 6 / span 9;
    }
    .ad_game_left{
        width: 160px!important;
        height: 620px!important;
        display: block;
        position: relative;
        grid-area: 2 / 1 / span 6 / span 2;
    }
    .ad_game_2{
        width: 728px!important;
        height: 90px!important;
        display: block;
        position: relative;
        grid-area: 7 / 4 / span 1 / span 7;
    }
    .logo-mz,.logo{
        grid-column: auto / span 2;
        width: 205px;
    }
    .rectangle-mz-title .title{
        display: flex;
        align-items: center;
        color: #fff;
        text-align: center;
        height: 94px;
        margin: 0;
        overflow: hidden;
    }
    .ad_game_right{
        width: 300px!important;
        height: 620px!important;
        display: block;
        position: relative;
        grid-area: 4 / -4 / span 6 / span 3;
        transform: translateY(-50px);
    }
    .ad_game_right1{
        width: 300px!important;
        height: 270px!important;
        display: block;
        position: relative;
        grid-area: 1 / -4 / span 3 / span 3;
    }  

}

@media screen and (min-width: 1682px) and (max-width: 1863px) {
    .game-box-container{
        grid-row: auto / span 6;
        grid-column: auto / span 9;
        grid-area: 1 / 3 / span 6 / span 9;
    }
    .logo-mz,.logo{
        grid-column: auto / span 2;
        width: 205px;
    }
    .rectangle-mz-title .title{
        display: flex;
        align-items: center;
        color: #fff;
        text-align: center;
        height: 94px;
        margin: 0;
        overflow: hidden;
    }
    .ad_game_left{
        width: 160px!important;
        height: 620px!important;
        display: block;
        position: relative;
        grid-area: 2 / 1 / span 6 / span 2;
    }
    .ad_game_2{
        width: 728px!important;
        height: 90px!important;
        display: block;
        position: relative;
        grid-area: 7 / 4 / span 1 / span 7;
    }
    .ad_game_right{
        width: 300px!important;
        height: 620px!important;
        display: block;
        position: relative;
        grid-area: 4 / -4 / span 6 / span 3;
        transform: translateY(-50px);
    }
    .ad_game_right1{
        width: 300px!important;
        height: 270px!important;
        display: block;
        position: relative;
        grid-area: 1 / -4 / span 3 / span 3;
    }   
}

@media screen and (min-width: 1301px) and (max-width: 1681px) {
    .game-box-container{
        margin: 0px auto 0;
        background: #fff;
        width: 715px;
        box-shadow: 0 6px 12px 0 rgba(0,0,0,.24);
        padding: 20px 20px 20px 20px;
        border-radius: 20px;
        position: relative;
        grid-row: auto / span 5;
        grid-column: auto / span 7;
        grid-area: 1 / 3 / span 5 / span 7;
    }

    .game-box-container .first-game-cts{
        width: 100%;
        height: 505px;
        float: left;
        position: relative;
    }
    .game-box-container-mobile{
        width: 342px;
        padding: 0;
        background: none;
        box-shadow: none;
        margin-top: 3px;
        grid-area: 2 / 1 / span 4 / span 4;
    }
    .game-box-container-mobile .first-game-cts-mobile{
        /* width: 100%; */
        height: 410px;
        float: left;
        position: relative;
    }
    .play-mobile-game{
        display: block;
        width: 418px;
        height: 418px;
        margin: 7px 5px 7px 5px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .play-mobile-game:after{
        position: absolute;
        content:"";
        display: block;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.4);
        z-index: 1;
    }

    .play-mobile-game img{
        position: absolute;
        width: 100%;
        height: 100%;
    }



    .play-mobile-game i{
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -25px;
        margin-top: -25px;
        width: 50px;
        height: 50px;
        background: #fff;
        line-height: 50px;
        border-radius: 50px;
        color: var(--main-color);
        text-align: center;
        font-size: 26px;
        box-shadow: 0 2px 15px rgba(111,111,111,.5);
        z-index: 2;
        box-sizing: border-box;
        padding-left: 5px;
        animation: pulse 2s ease 0s infinite;
    }

    .play-mobile-game span{
        width: 100%;
        position: absolute;
        top: 50%;
        text-align: center;
        color: #fff;
        padding: 10px 0;
        font-size: 24px;
        margin-top: 20px;
        font-weight: bold;
        z-index: 2;
    }
    .logo-mz,.logo{
        grid-column: auto / span 2;
        width: 205px;
    }
    .rectangle-mz-title .title{
        display: flex;
        align-items: center;
        color: #fff;
        text-align: center;
        height: 94px;
        margin: 0;
        overflow: hidden;
    }
    .ad_game_left{
        width: 160px!important;
        height: 620px!important;
        display: block;
        position: relative;
        grid-area: 2 / 1 / span 6 / span 2;
    }
    .ad_game_right{
        width: 160px!important;
        height: 620px!important;
        display: block;
        position: relative;
        grid-area: 1 / -3 / span 6 / span 2;
    }   
    .ad_game_2{
        width: 728px!important;
        height: 90px!important;
        display: block;
        position: relative;
        grid-area: 6 / 3 / span 1 / span 7;
    }
}

@media screen and (min-width: 1342px) and (max-width: 1681px) {
    .ad_game_right{
        width: 300px!important;
        height: 620px!important;
        display: block;
        position: relative;
        grid-area: 4 / -4 / span 6 / span 3;
    }
    .ad_game_right1{
        width: 300px!important;
        height: 270px!important;
        display: block;
        position: relative;
        grid-area: 1 / -4 / span 3 / span 3;
    }
}

@media screen and (min-width: 1456px) and (max-width: 1681px) {
    .ad_game_right{
        transform: translateY(-50px);
    }
}

@media screen and (min-width: 958px) and (max-width: 1300px) {
    .game-box-container .related-games {
        display: none;
    }
    .game-box-container{
        margin: 0px auto 0;
        background: #fff;
        width: 592px;
        box-shadow: 0 6px 12px 0 rgba(0,0,0,.24);
        padding: 20px 20px 20px 20px;
        border-radius: 20px;
        position: relative;
        grid-area: 1 / 2 / span 5 / span 6;
    }
    .game-box-container .first-game-cts{
        width: 100%;
        height: 493px;
        float: left;
        position: relative;
    }
    .game-box-container-mobile{
        width: 342px;
        padding: 0;
        background: none;
        box-shadow: none;
        margin-top: 3px;
        grid-column: auto / span 4;
        grid-row: auto / span 4;
        grid-area: 2 / 1 / span 4 / span 4;
    }
    .game-box-container-mobile .first-game-cts-mobile{
        width: 100%;
        /* height: 505px; */
        float: left;
        position: relative;
    }

    .game-box-container .game-details{
        width: 596px;
        justify-content: left;
    }
    
    .play-mobile-game{
        width: 418px;
        height: 418px;
    }
    .ad_game_right{
        width: 160px!important;
        height: 600px!important;
        display: block;
        position: relative;
        grid-area: 1 / -3 / span 6 / span 2;
    } 
    .ad_game_2{
        width: 728px!important;
        height: 90px!important;
        display: block;
        position: relative;
        grid-area: 6 / 1 / span 1 / span 7;
    }
}

@media screen and (min-width: 765px) and (max-width: 959px) {
    .game-box-container .related-games {
        display: none;
    }
    .game-box-container{
        margin: 0px auto 0;
        background: #fff;
        width: 376px;
        box-shadow: 0 6px 12px 0 rgba(0,0,0,.24);
        padding: 20px 20px 20px 20px;
        border-radius: 20px;
        position: relative;
        grid-row: auto / span 4;
        grid-column: auto / span 4;
        grid-area: 1 / 2 / span 4 / span 4;
    }
    .game-box-container .first-game-cts{
        width: 100%;
        height: 370px;
        float: left;
        position: relative;
    }
    .game-box-container-mobile{
        width: 342px;
        padding: 0;
        background: none;
        box-shadow: none;
        margin-top: 3px;
        grid-column: auto / span 4;
        grid-row: auto / span 4;
        grid-area: 2 / 1 / span 4 / span 4;
    }
    .game-box-container-mobile .first-game-cts-mobile{
        width: 100%;
        /* height: 505px; */
        float: left;
        position: relative;
    }

    .play-mobile-game{
        width: 418px;
        height: 418px;
    }
    .ad_game_right{
        width: 160px!important;
        height: 600px!important;
        display: block;
        position: relative;
        grid-area: 1 / -3 / span 6 / span 2;
    }   
    .ad_game_2{
        width: 728px!important;
        height: 90px!important;
        display: block;
        position: relative;
        grid-area: 7 / 1 / span 1 / span 7;
    }
}

@media screen and (min-width: 530px) and (max-width: 764px) {
    .game-box-container{
        margin: 0px auto 0;
        background: #fff;
        width: 376px;
        box-shadow: 0 6px 12px 0 rgba(0,0,0,.24);
        padding: 20px 20px 20px 20px;
        border-radius: 20px;
        position: relative;
        grid-row: auto / span 4;
        grid-column: auto / span 4;
        grid-area: 1 / 2 / span 4 / span 4;
    }
    .game-box-container .first-game-cts{
        width: 100%;
        height: 370px;
        float: left;
        position: relative;
    } 
    .ad_game_2{
        width: 300px!important;
        height: 300px!important;
        display: block;
        position: relative;
        grid-area: 5 / 1 / span 3 / span 3;
    }
}

@media screen and (min-width: 440px) and (max-width: 530px) {
    .game-box-container{
        margin: 0px auto 0;
        background: #fff;
        width: 376px;
        box-shadow: 0 6px 12px 0 rgba(0,0,0,.24);
        padding: 20px 20px 20px 20px;
        border-radius: 20px;
        position: relative;
        grid-row: auto / span 4;
        grid-column: auto / span 4;
        grid-area: 2 / 1 / span 4 / span 4;
    }
    .game-box-container .first-game-cts{
        width: 100%;
        height: 370px;
        float: left;
        position: relative;
    } 
    .ad_game_2{
        width: 300px!important;
        height: 300px!important;
        display: block;
        position: relative;
        grid-area: 6 / 1 / span 3 / span 3;
    }
}

@media screen and (min-width: 280px) and (max-width: 440px) {
    .game-box-container{
        margin: 0px auto 0;
        background: #fff;
        width: 376px;
        box-shadow: 0 6px 12px 0 rgba(0,0,0,.24);
        padding: 20px 20px 20px 20px;
        border-radius: 20px;
        position: relative;
        grid-row: auto / span 4;
        grid-column: auto / span 4;
        grid-area: 2 / 1 / span 4 / span 4;
    }
    .game-box-container .first-game-cts{
        width: 100%;
        height: 370px;
        float: left;
        position: relative;
    } 
    .ad_game_2{
        width: 300px!important;
        height: 300px!important;
        display: block;
        position: relative;
        grid-area: 5 / 1 / span 3 / span 3;
    }
}



.ad_game_right img{
    width: 100%;
    height: calc(100% - 20px);
    margin:0 auto;
    overflow: hidden;
}.ad_game_left img{
    width: 100%;
    height: calc(100% - 20px);
    margin:0 auto;
    overflow: hidden;
}.ad_game_2 img{
    width: calc(100% - 20px);
    height: 100%;
    margin:0 auto;
    overflow: hidden;
}

.adfont { 
    font-size: 12px!important;
    font: 400 9px / 2 Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.7;
    height: 20px;
    letter-spacing: 1px;
    color: #ffffff61;
    margin: -0.4em -1em 0px 0px;
}

.adfont2{   
    font-size: 8px!important;
    font: 400 8px / 1 Arial, sans-serif;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.7;
    height: 20px;
    letter-spacing: 1px;
    color: #ffffff61;
    transform: rotate3d(0, 0, 1, 90deg);
    position: absolute;
    right: 0px;
    top: 50%;
    margin: 0em -5.5em 0px 0px;
    overflow: overlay;
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@media screen and (min-width:2150px) and (max-width:2450px) {
    .ad_play_left {
        display: block;
        position: fixed;
        left: calc(50% - 1070px);
        margin: 5% auto 0;
        width: 160px;
        height: 600px;
        background: #ffff;
    }

    .ad_play_right {
        display: block;
        position: fixed;
        right: calc(50% - 1050px);
        margin: 5% auto 0;
        width: 160px;
        height: 600px;
        background: #ffff;
    }
}


@media screen and (min-width:2450px) {
    .ad_play_left {
        display: block;
        position: fixed;
        left: 0px;
        margin: auto ;
        width: calc(50% - 966px);
        height: 100%;
        background: #ffff;
    }

    .ad_play_right {
        display: block;
        position: fixed;
        right: 0px;
        margin: auto;
        width: calc(50% - 966px);
        height: 100%;
        background: #ffff;
    }
}