#game_play_button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 190px;
    height: 60px;
    border-radius: 8px;
    cursor: pointer;
    background: #2171CE;
    border: 2px solid #0F4585;
    box-sizing: border-box;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-indent: 35px;
    z-index: 999;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    font-kerning: none;

}

#game_play_button:before {
    content: '';
    border: 5px solid transparent;
    border-left: 6px solid #F8F8F8;
    position: relative;
    left: 22px;
}

#game_play_button:after {
    content: '';
    border: 2px solid #F8F8F8;
    position: relative;
    width: 20px;
    left: -130px;
    height: 20px;
    border-radius: 50%;
}

@media screen and (max-width: 690px) {
    #game_play_button {
        width: 150px;
        height: 46px;
        font-size: 13px;
        text-indent: 30px;
    }

    #game_play_button:after {
        left: -104px;
        width: 16px;
        height: 16px;
    }
}

#overlay {
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background-color:#000;
    opacity: 0.6;
    filter: alpha(opacity=50);
}

.inner_iframe {
    border:none;
    overflow:hidden;
}

#screenshot {
    width:100%;
}

iframe {
    width: 1px;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    left:0;
    top:0;
    border: 0;
}

body {
    margin: 10px;
    padding: 0;
    background: black;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


#replay, #close {
    width:18px;
    height:18px;
    background-color:#E8EAF3;
    padding:14px;
    border-radius: 50%;
    display: none;
}

@media screen and (orientation:portrait) {
    #replay {
        position: absolute;
        top: 4%;
        left: 6.25%
    }

    #close {
        position: absolute;
        top: 4%;
        right: 6.25%;
    }
}

@media screen and (orientation:landscape) {
    #replay {
        position:absolute;
        top:4%;
        left:2%;
    }

    #close {
        position:absolute;
        bottom:4%;
        left:2%;
    }

}

@media screen and (max-width: 850px) {
    #replay, #close {
        display:block;
    }
}

/*loader*/
.loader{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 101;
}
@keyframes lds-spin {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes lds-spin {
    0% {
        opacity: 1;
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.lds-spin {
    position: relative;
}

.lds-spin div > div {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2171ce;
    -webkit-animation: lds-spin 1s linear infinite;
    animation: lds-spin 1s linear infinite;
}

.lds-spin div:nth-child(1) > div {
    left: 154px;
    top: 84px;
    -webkit-animation-delay: -0.875s;
    animation-delay: -0.875s;
}

.lds-spin > div:nth-child(1) {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: 170px 100px;
    transform-origin: 170px 100px;
}

.lds-spin div:nth-child(2) > div {
    left: 133.49747467px;
    top: 133.49747467px;
    -webkit-animation-delay: -0.75s;
    animation-delay: -0.75s;
}

.lds-spin > div:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 149.49747467px 149.49747467px;
    transform-origin: 149.49747467px 149.49747467px;
}

.lds-spin div:nth-child(3) > div {
    left: 84px;
    top: 154px;
    -webkit-animation-delay: -0.625s;
    animation-delay: -0.625s;
}

.lds-spin > div:nth-child(3) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 100px 170px;
    transform-origin: 100px 170px;
}

.lds-spin div:nth-child(4) > div {
    left: 34.50252533px;
    top: 133.49747467px;
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.lds-spin > div:nth-child(4) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transform-origin: 50.50252533px 149.49747467px;
    transform-origin: 50.50252533px 149.49747467px;
}

.lds-spin div:nth-child(5) > div {
    left: 14px;
    top: 84px;
    -webkit-animation-delay: -0.375s;
    animation-delay: -0.375s;
}

.lds-spin > div:nth-child(5) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 30px 100px;
    transform-origin: 30px 100px;
}

.lds-spin div:nth-child(6) > div {
    left: 34.50252533px;
    top: 34.50252533px;
    -webkit-animation-delay: -0.25s;
    animation-delay: -0.25s;
}

.lds-spin > div:nth-child(6) {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    -webkit-transform-origin: 50.50252533px 50.50252533px;
    transform-origin: 50.50252533px 50.50252533px;
}

.lds-spin div:nth-child(7) > div {
    left: 84px;
    top: 14px;
    -webkit-animation-delay: -0.125s;
    animation-delay: -0.125s;
}

.lds-spin > div:nth-child(7) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transform-origin: 100px 30px;
    transform-origin: 100px 30px;
}

.lds-spin div:nth-child(8) > div {
    left: 133.49747467px;
    top: 34.50252533px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.lds-spin > div:nth-child(8) {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    -webkit-transform-origin: 149.49747467px 50.50252533px;
    transform-origin: 149.49747467px 50.50252533px;
}

.lds-spin div:nth-child(9) > div {
    left: 154px;
    top: 84px;
    -webkit-animation-delay: 0.125s;
    animation-delay: 0.125s;
}

.lds-spin > div:nth-child(9) {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transform-origin: 170px 100px;
    transform-origin: 170px 100px;
}

.lds-spin {
    width: 50px !important;
    height: 50px !important;
    -webkit-transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
    transform: translate(-25px, -25px) scale(0.25) translate(25px, 25px);
}
#age_restriction_wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
}

#age_restriction {
    color:white;
    margin: auto;
    width: 72%;
    height: 100%;
    display:none;
}

#age_restriction > div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

#age_restriction > div > .title {
    font-size: 28px;
    font-family: Arial;
    font-weight: bold;
}

#age_restriction > div > .description {
    padding: 20px 0px 20px 0px;
    line-height:25px;
    font-family: Arial;
    font-size: 24px;
}

#age_restriction > div > .button {
    width:150px;
    height:40px;
    line-height:40px;
    font-family: Arial;
    font-size: 16px;
    border: 0px;
    color: white;
    border-radius: 5px;
    cursor:pointer;
    display:inline-block;
    text-align:center;
    position: inherit;
    z-index: 10000;
}

@media screen and (max-width: 690px) {
   #age_restriction > div > .title {
       font-size:16px;
       line-height: 24px;
   }

   #age_restriction > div > .description {
       font-size:14px;
       line-height:20px;
   }

   #age_restriction > div > .button {
       font-size:12px;
       width:100px;
       height:24px;
       line-height:24px;
   }
}

@media screen and (max-width: 350px) {

     #age_restriction > div > .description {
          padding: 3px 0px 2px 0px;
          line-height: 17px;
    }

}

@media screen and (max-width: 450px) {

    #age_restriction {
        width: 90%;
    }

    #age_restriction .title {

        margin-top: 12px;
        margin-bottom: 18px;
    }

    #age_restriction select {
        width: 100%;
    }

    #age_restriction .age_picker .select {
        width: 30%;
    }

    .age_picker .select:after {
        margin-left: 71px;
        margin-top: -33px;
    }
}
