body {
    margin: 0;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    color: rgba(80, 30, 30, .5);
    background-color: #000;
    transition: background-color 2s ease;
    /*background: #331834;*/
}

#wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom:0;
    right:0;
    margin: auto;
    /*max-height: 300px;*/
}

.screen-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.fullscreen-overlay
{
    /*position: absolute !important;*/
    top: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;
    pointer-events: none !important;
    width: 100% !important;
    height: 100% !important;
}

#loading-overlay{
    position:absolute;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

#loading-overlay img
{
    max-width: 300px !important;
}

.center-image img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
#onetab-overlay {
    position: absolute;
    z-index: 10000;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background: #000;
    color:#ffffff;
    display: none;
    cursor: pointer;
    user-select: none;
}
#onetab-overlay-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
#onetab-overlay-content {
    width: 70%;
    max-width: 600px;
}
.fadeOut
{
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.fadeIn
{
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s, visibility 0.3s;
}
