#glFullscreen {
    width: 100%;
    height: 100vh;

    position: relative;
    overflow: hidden;
    z-index: 0;
}

body {
    background-color: #ffffff;
    /*Updated */
}

#example {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    /*Updated */
}

#feedback {
    color: darkorange;
}

#dat {
    user-select: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    color: darkorange;
    z-Index: 200;
    /* background-image: url('treffer_viewer/company_logo/preloader-logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100px 75px; */
}

.hidden {
    display: none !important;
}

.shown {
    display: block !important;
}

.topright {
    user-select: none;
    position: absolute;
    top: 60px;
    right: 10px;
    font-size: 16px;
}

.bottomleft {
    user-select: none;
    position: absolute;
    bottom: .1px;
    left: 4px;
    font-size: 16px;
}

/* 
.middle {
    user-select: none;
    position: relative;
    width: 100px;
    height: 100px;
    top: 47%;
    left: 47%;
} */

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: 20px;
}

table.center {
    margin: 0px;
    width: 100%;
    height: 100%;
    position: absolute;

}

th {
    padding: 10px;
}

#infoPanel {
    display: none;
    user-select: none;
    left: 5%;
    top: 5%;
    bottom: 5%;
    right: 5%;
    position: absolute;
    z-index: 9;
    background-color: #ffffff;
    text-align: center;
    border: 1px solid #ffffff;
    opacity: 0.8;
    color: #29B9FF;
}

/* .loader {
    position: absolute;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    top: 42%;
    left: 46%;
    -webkit-animation: spin 2s linear infinite;
    
    animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.topleft {
    user-select: none;
    position: absolute;
    margin: 10px;
    width: 80;
    height: 70;
    top: 39%;
    left: 45%;
} */

/* my style */
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: transparent;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: sans-serif;
    font-size: 20px;
    color: #0055A5;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #0055A5;
    box-shadow: 0 0 20px rgba(0, 85, 165, .5);
}

.ring:before {
    content: '';
    position: absolute;
    top: -13px;
    left: -13px;
    width: 100%;
    height: 100%;
    border: 13px solid transparent;
    border-top: 13px solid #3498db;
    border-right: 13px solid #3498db;
    border-radius: 50%;
    animation: animateCircle 2s linear infinite;
}

#dat > div > span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
}

/*span:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #3498db;
    top: -5px;
    right: -14px;
    box-shadow: 0 0 20px #3498db;
}*/

.ring img {
    width: 113px;
    height: 78px;
    position: relative;
    top: 19%;
}

@keyframes animateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}

/* end my style */