
* {
    -webkit-user-select: none;
}

html, body {
    /*  width: 100%;
    height: 100%;*/
}

body {
    background-color: #59575f;
    margin: 0;
}

#divblock {
    width: 100%;
}

#blocker {
}

#instructions {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    box-orient: horizontal;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    color: #101010;
    text-align: center;
    cursor: pointer;
    margin-top: -40px;
    display: inline-block;
    position: absolute;
    z-index: 2;
}



#desmarkermouse {
    width: 180px;
    border: 10px;
    background-color: #808080;
    color: #fff;
    font-family: "iranyekan";
    font-size: 11pt;
    text-align: center;
    padding: 5px;
    right: 0px;
    left: 0px;
    top: calc(50% - 85px);
    margin: auto;
    position: absolute;
    display: none;
    border-radius: 5px;
    z-index: 2;
    font-weight: 100;
    background-color: #2c2c2c;
    border: 1px solid #515151;
}


#markermouse {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0px;
    left: 0px;
    top: calc(50% - 25px);
    margin: auto;
    background-image: url(/textures/marker.png);
    background-size: 100%;
    background-position: center;
    display: none;
    z-index: 2;
}





#preloader {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.7,0,0.3,1);
    -moz-transition: all 0.5s cubic-bezier(0.7,0,0.3,1);
    -ms-transition: all 0.5s cubic-bezier(0.7,0,0.3,1);
    -o-transition: all 0.5s cubic-bezier(0.7,0,0.3,1);
    transition: all 0.5s cubic-bezier(0.7,0,0.3,1);
}

    #preloader.loaded {
        opacity: 0;
        -webkit-transform: scale(1.5,1.5);
        -moz-transform: scale(1.5,1.5);
        -o-transform: scale(1.5,1.5);
        -ms-transform: scale(1.5,1.5);
        transform: scale(1.5,1.5);
    }

    #preloader .to-loader-logo {
        position: absolute;
        display: block;
        bottom: 50%;
        left: 0;
        right: 0;
        max-width: 150px;
        margin: 0 auto 30px auto;
        text-align: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        padding: 22px;
        background-color: #fff;
        width: 140px;
    }

    #preloader .to-loader {
        position: absolute;
        display: block;
        top: 50%;
        left: 0;
        right: 0;
        margin: 30px auto 0 auto;
        text-align: center;
    }



    #preloader .to-loader-logo,
    #preloader .to-loader {
        color: #ffffff;
        -webkit-transition: all 0.2s cubic-bezier(0.7,0,0.3,1);
        -moz-transition: all 0.2s cubic-bezier(0.7,0,0.3,1);
        -ms-transition: all 0.2s cubic-bezier(0.7,0,0.3,1);
        -o-transition: all 0.2s cubic-bezier(0.7,0,0.3,1);
        transition: all 0.2s cubic-bezier(0.7,0,0.3,1);
    }

        #preloader .to-loader svg {
            width: 60px;
            height: 60px;
        }

            #preloader .to-loader svg path {
                -webkit-transition: all 0.2s ease-in-out;
                -moz-transition: all 0.2s ease-in-out;
                -ms-transition: all 0.2s ease-in-out;
                -o-transition: all 0.2s ease-in-out;
                transition: all 0.2s ease-in-out;
            }

.loading-container {
    position: fixed;
    display: none;
    z-index: 10000;
    top: 50%;
    left: 50%;
}

    .ajax-load .loading-container,
    .loading-container.ajax-load {
        display: block;
    }

    .loading-container .loading {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -25px 0 0 -25px;
        height: 50px;
        width: 50px;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%;
        border: 4px;
    }

.csstransforms .loading {
    -webkit-animation: rotate-loading .7s linear 0s infinite normal;
    -moz-animation: rotate-loading .7s linear 0s infinite normal;
    -o-animation: rotate-loading .7s linear 0s infinite normal;
    animation: rotate-loading .7s linear 0s infinite normal;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.loading-container .loading {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@-webkit-keyframes rotate-loading {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate-loading {
    0%, {
        -moz-transform: rotate(0deg);
    }

    50% {
        -moz-transform: rotate(180deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate-loading {
    0% {
        -o-transform: rotate(0deg);
    }

    50% {
        -o-transform: rotate(180deg);
    }

    100% {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.des-go {
    color: #ccc;
}



#keygame {
    position: absolute;
    z-index: 999;
    bottom: 0px;
    width: 100%;
    right: 0px;
    left: 0px;
}


.keytoch {
    cursor: pointer;
}

    .keytoch:hover {
        opacity: 0.7;
    }


#keygame {
    display: none;
}

@media (max-width: 768px) {
    #instructions {
        display: none !important;
    }

    .des-go {
        display: none;
    }

    #keygame {
        display: inline-block;
        z-index: 9;
        margin-bottom: 50px;
    }
}




#canvas {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -4;
    background-color: #2e2e2e;
    display: none;
}

.showstand #canvas {
    z-index: 9999;
    display:inline-block;
}

.showstand #wrapper{
    display:none;
}


.modal-backdrop {
    z-index: 999999;
}

.modal {
    z-index: 9999999;
}
