root { 
    display: block;
}

body{
    background-color: transparent;
    background-repeat: repeat-x;
    background-position: top;   
}

*, *:before, *:after {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
     
input, input:before, input:after {
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

::selection { background: transparent;color:inherit; }
::-moz-selection { background: transparent;color:inherit; }

#but-fullscreen {
    margin-top: 0px;
    margin-left: 0px;
    width: 86px;
    height: 86px;
    /* background-image: url("../sprites/but_fullscreen_outer.png"); */
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transform-origin: 0% 0%;
    display: none;
}
canvas{
    -ms-touch-action: none;
}

#canvas{
    pointer-events: none;
    position: fixed;
}

#canvas_3d{
    position: fixed;  
}

.view-element{
    width: 150px;
    height: 144px;
}

.ani_hack{
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    -webkit-tap-highlight-color: transparent; /* mobile webkit */
}

.container {
  position: fixed;
}

.container-css {
  pointer-events: none;
}

img {
  transition: opacity .1s ease;
}

.check-fonts{
                position: fixed;
                opacity:0;
}

.ctl-sphere-map-link-img{
    -webkit-animation: mover 0.5s infinite  alternate;
    animation: mover 0.5s infinite  alternate;
    position: absolute;
}

.ctl-sphere-map-info-point-img{
    -webkit-animation: scaler 0.5s infinite  alternate;
    animation: scaler 0.5s infinite  alternate;
    position: absolute;
}

@-webkit-keyframes mover {
    0% { bottom: 30px; }
    100% { 
        bottom: -30px;
        transform: scale(1.2); 
    }
}
@keyframes mover {
    0% { bottom: 30px; }
    100% { 
        bottom: -30px;
        transform: scale(1.2); 
    }
}

@-webkit-keyframes scaler {
    0% { transform: scale(1) }
    100% {
        transform: scale(1.2); 
    }
}
@keyframes scaler {
    0% { transform: scale(1) }
    100% {
        transform: scale(1.2); 
    }
}