
body {
    background-color: #000;
    color: #fff;
    font-family: sans-serif;
    font-size: 10pt;
    margin: 0px;
    overflow: hidden;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    user-select: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}
::-webkit-scrollbar-corner{
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0);
}

::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

/** Setting these properties will disable webkit-scrollbar selectors which are more flexible */
*{
    /*scrollbar-width: thin;*/
    /*scrollbar-color: #999 rgba(0,0,0,0);*/
}



*:focus{
    outline: none;
}

select{
    scrollbar-width: auto;
}

.xgInput {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.xgInput.focusLost > *{
    opacity: 1.0;
}

.xgCanvas {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    box-sizing: content-box !important;
    object-position: 50% 50%;
    object-fit: scale-down;
}

.xgCanvas.contain{
    object-fit: contain;
}

.xgCanvas.fill{
    object-fit: fill;
}