body{
    width:100%;height:100%;overflow: hidden;
    padding:0px;margin:0px;
    background: #000;
    /* background: radial-gradient(circle, rgba(10,10,10,1) 0%, rgba(0,0,0,1) 100%); */
    font-family: Arial, Helvetica, sans-serif;
}
html{
    width:100%;height:100%;overflow: hidden;
}
.rel{
    position: relative;
    width:100%;height:100%;
}
div,input,textarea,canvas,select{
    box-sizing:border-box;
}
#gui{
    position:fixed; 
    top:0px;left:0px;
    width:300px;height:auto;z-index: 999;
    display:none;z-index:-999;left:-999px;
}
#videotextures{ /*hide these*/
    position: absolute;
    z-index:-9999;
    left:-9999px;top:-9999px;
}
#three{
    width:100%;
    height:100%;
    overflow: hidden;
    position: absolute;z-index: 10;
    left:0px;
    top:0px;
    position: relative;
}
    #mycanvas{
        width:100%;height:100%;overflow: hidden;
        position: absolute;z-index: 1;
        /* border:4px solid #fff; */
        cursor: crosshair !important;
    }
    #mycanvas2D{ /*not used*/
        width:100%;height:100%;overflow: hidden;
        position: absolute;z-index: 2;
        display: none;
        /* border:4px solid #fff; */
    }
#playbar{
    width:90%;height:12px;
    background-color:#000;
    position:absolute;z-index:10;
    bottom:10px; /* set by js */
    left:5%; 
    overflow: hidden;
    opacity:0.33;
    cursor:pointer;  
    display:none;
}
#playbar:hover{
    opacity:1;
    cursor:pointer;
}
#playdot{
    width:10px;height:10px;
    background-color:#fff;
    border-radius:50%;
    overflow:hidden;
    position:absolute;
    left:100px;top:1px;
}
#clicktostart{
    position: absolute;z-index: 20;
    width: 300px;height:auto;
    left: calc(50% - 150px);bottom:30px;
    font-weight: 700;color:#fff;
    font-size:14px;text-align: center;font-weight:900;
    display: none;
}
#uihelp{
    position: absolute;z-index: 20;
    width: 300px;height:auto;
    left: calc(50% - 150px);top:30px;
    font-weight: 700;color:#fff;
    font-size:14px;text-align: center;font-weight:900;
    display: none;
}
@keyframes pulse {
    0% { transform: scale(0.85); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.7; }
}
.pulser{
    -webkit-animation: pulse 1.25s infinite; 
    -ms-animation: pulse 1.25s infinite;
    animation: pulse 1.25s infinite; 	
}
#loading{
    width:100%;height:100%;overflow: hidden;
    background: #000;
    position: fixed; z-index: 998;
}
    #loading_gif{
        width:30px;height:30px;
        position: absolute;z-index: 1;
        left: calc(50% - 15px);  
        top: calc(50% - 15px);   
        background-image: url('./assets/gif/loadingA.gif');
        background-size: 30px 30px;
        display: none;
    }
    #loading_bar{
        width:0px; /* set by js */
        height:100%;
        position: absolute;z-index: 2;
        top:0px;left:0px;
        /* transition: width 0.1s; */
        background: #fff;
        background: #cc2812;
    }
#chromefirefox{
    position: absolute;z-index:1000;
    width: 300px;height:auto;
    left: calc(50% - 150px);top:30px;
    font-weight:700;color:#f00;
    font-size:12px;text-align: center;
    display: none;
}
#unmute_reminder_ios{
    font-weight:800;font-size:12px;
    position: absolute;z-index:1000;
    left:15px;top:128px;
    color:#fff;
    display: none;
}
    @keyframes pulse3 {
        0% { transform: scale(1); opacity: 0.16; }
        50% { transform: scale(1); opacity: 0.46; }
        100% { transform: scale(1); opacity: 0.16; }
    }
    .reminderPulse{
        -webkit-animation: pulse3 0.5s infinite; 
        -ms-animation: pulse3 0.5s infinite;
        animation: pulse3 0.5s infinite; 	
    }