
#load_gif {
    user-select: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    /*color: darkorange;*/
    z-Index: 12;
}
#infoPanel {
    display: none;
    user-select: none;
    left: 10%;
    top: 10%;
    bottom: 10%;
    right: 10%;
    position: absolute;
    background-color: #fff0f0;
    text-align: center;
    opacity: 0.9;
    color: #745e3d;
    z-index: 10;
}
#topright {
    user-select: none;
    position: absolute;
    /*top: 50px;*/
    right: 10px;
    font-size: 12px;
    z-index: 9;

}
#inset {
    background-color: transparent;
    /* or transparent; will show through only if renderer alpha: true */
    border: none;
    margin: 0px;
    padding: 0px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 1;
}
#ViewArea {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 60;
    /*background-color: transparent;*/
    /*background color: #ffffff;*/
    /*opacity:.5;*/
}
#repr {
    user-select: none;
    position: absolute;
    top: 0px;
    z-index: 0;
    /*background-image: url('./logo_360.png');*/
}
#glFullscreen {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 2;
    background-color: transparent;
}
.hidden {
    display: none !important;
}
.shown {
    display: block !important;
}
table,
th,
td {
    table-layout: fixed;
    border: 1px solid black;
    border-collapse: collapse;
    text-align: center;
    background-color: #000000;
    font-family: Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif;
    font-size: 14px;
}
table.center {
    margin: 0px;
    width: 100%;
    height: 100%;
    position: absolute;

}
th {
    padding: 10px;
}
.icon {
    cursor: pointer;
    width: 30px;
    height: 30px;
}
.closeicon {
    cursor: pointer;
    width: 30px;
    height: 30px;
}
.loader {
    position: absolute;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    top: 40%;
    left: 47.5%;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 25px;
    background: #29B9FF;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #29B9FF;
    cursor: pointer;
}


body {
    margin: 0;
    background-color: #ffffff;
    color: #ffffff;
    font-family: Monospace;
    font-size: 13px;
    line-height: 24px;
}

a {
    color: #ff0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    cursor: pointer;
    text-transform: uppercase;
}

canvas {
    display: block;
}


.dg.ac {
    z-index: 2 !important;
    /* TODO Solve this in HTML */
}

/*
#info {
    position: absolute;
    top: 0px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    z-index: 10;
    /* TODO Solve this in HTML */

}

*/