/*ROOT CSS*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --c0: #f2f2f2;
    --c1: #e6e6e6;
    --c2: #d9d9d9;
    --c3: #cccccc;
    --c4: #bfbfbf;
    --c5: #b3b3b3;
    --c6: #a6a6a6;
    --c7: #999999;
    --c8: #8c8c8c;
    --c9: #808080;
    --c10: #737373;
    --c11: #666666;
    --c12: #595959;
    --c13: #4d4d4d;
    --c14: #404040;
    --c15: #333333;
    --c16: #262626;
    --c17: #1a1a1a;
    --c18: #0d0d0d;
}

/*Default CSS*/

html, body {
    margin: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--c14);
    color: black;
    overflow: hidden;
}
* {
    box-sizing: border-box;
    font-family: "Lato", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 10pt;
    background-color: transparent;
    color: #000000;
}

table {
    border: none;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}
table tr td { padding: 5px; }

::-webkit-scrollbar {
    width: 3px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--c3);
    height: 20px;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

.view-hidden {
    visibility: hidden;
    opacity: 0;
}

.main {
    position: fixed;
    top: 0; left: 0;
    display: block;
    width: 100%; height: 100%;
    overflow: hidden;
    transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 0;
}