﻿@charset "UTF-8";

* {
    margin:0;
    padding:0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
/*    font-family: Arial, Helvetica, sans-serif;*/
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

.edgeSpecific{
    /* This allows edge to use single touch gestures as mouse movements.  
       It also disables the weird zoom and swipe left gestures it uses */
    touch-action: none;
}

.noTouchAction{
    touch-action: none;
}

.hideOverflow{
    overflow: hidden;
}

.hidden{
    visibility: hidden;
}

.nodisplay{
    display:none;
}

html { width: 100%; height: 100%; }
 body{
	background-color: #BDD3FB;
    width: 100%;
    height: 100%;
    margin: 0;
    /* touch-action: none;  Added this to fix the ie, firefox, chrome problems, broke android phone*/
}

#center{
    margin: 0px auto 0px auto;    
}

#content{
    overflow: hidden;
}

#center { height:100%; }
#chartContent { height:100%; }

#backgroundCanvas{
    position: absolute;
    top: 0px;
    overflow: hidden;
    z-index: 0;
}

#sigCanvas{
    position: absolute;
    top: 0px;
    overflow: hidden;
    z-index: 2;
}

#iconCanvas{
    position: absolute;
    top: 0px;
    overflow: hidden;
    z-index: 1;
}

#drawCanvas{
    position: absolute;
    top: 0px;
    overflow: hidden;
    z-index: 3;
}


noscript{
    position:fixed;
    top: 50%;
    width: 100%;
    text-align: center;
}

#reconnecting {
    position: absolute;
    top:0px;
    left:0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#reconnecting p{
    position: absolute;
    width: 100%;
    top: 40%;
    text-align: center;
    color: white;
}

#videoContent{
    overflow:hidden;
}

/* CSS for flashlight */
.dragimage { position:fixed; border:0; }
.box { width:100px; height:100px; }
.rectangle { border: 5px none #FF0000; position: absolute; background-color:rgba(255,255,0,.2); }

@media (max-width: 650px) {
    .hideIfNarrow{
        display: none;
        visibility: hidden;
    }
}