﻿html, body {
    /*font-family: "Roboto", "Helvetica Neue", "Arial", sans-serif;*/
    margin: 0;
    padding: 0;

    -webkit-font-smoothing: antialiased;
}

body {
    /* For Cookie script badge absolute pos */
    position: relative;
}

app {
    color: var(--ts-clr-244);
}



.main-container {
    display: flex;
    position: relative;
    min-height: calc(100vh - 48px);
}

.main-sidebar-container {
    position: absolute;
    height: 100%;
    background: var(--ts-clr-24);
    z-index: var(--ts-zindex-lvl5);
}

.main-body {
    /* needed for the absolute dialogs */
    position: relative;
    display: flex;
    flex-direction: column;
    margin-left: 40px;
    width: 100%;
    overflow: hidden;
    background: linear-gradient( 0deg, var(--ts-clr-24) 30%, var(--ts-clr-29) 70%);
}





/*#region Scrollbar*/

/* width */
::-webkit-scrollbar {
    width: 16px;
    background: linear-gradient(0deg, var(--ts-clr-19) 20%, var(--ts-clr-39) 80%);
}

/* Track */
::-webkit-scrollbar-track {
    /*    box-shadow: inset 0 0 4px var(--ts-clr-44);
    border-radius: 5px;*/
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--ts-clr-44);
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--ts-clr-orange-1);
}

/*#endregion*/

/*#region splash*/

.splash-span {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;

    -webkit-animation: splash-animation 0.6s forwards;
    animation: splash-animation 0.6s forwards;
}

@keyframes splash-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*#endregion*/