:root {

    --c1: #161D25;
    --c1-opaque: rgba(22,29,37,0.8);
    --c2: #ffffff;
    --c3: #818589;
    --content-bg: #F4F6FA;
    --table-header: #F9FAFC;
    --sub-header: #2D343B;
    --sub-header-light: #3A424A;
    --mtf-blue: #3275B8;
    --mtf-blue-elevation1: #0E396E;
    --mtf-blue-inverted: #cd8a47;
    --mtf-green-reduction1: #d3e6a1;  /* hsv: _, 30%, 90% */
    --mtf-green: #9CC038;
    --mtf-green-elevation1: #87A630;
    --mtf-red-reduction1: #e6a4a1;  /* hsv: _, 30%, 90% */
    --mtf-red: #C13D33;
    --mtf-red-elevation1: #AE3127;
    --mtf-yellow: #F8B200;
    --mtf-yellow-elevation1: #db9e00;
    --mtf-orange: #EF8100;
    --mtf-orange-elevation1: #d17100;
    --table-spacer: #ECEFF3;
    --table-spacer-inverted: #13100c;
}

@font-face {
    font-family: 'DINPro';
    src: url("../DINPro-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'DINPro';
    src: url("../DINPro-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal
}

@font-face {
    font-family: 'DINPro';
    src: url("../DIN-Light.woff") format("woff");
    font-weight: 100;
    font-style: normal
}

body, div, td, table, h1, h2, h3,
li, ul, p, a, input, i, span, button, textarea, select {
    text-decoration: none;
}

body, div, td, table, h1, h2, h3, h4, p, a {
    margin: 0;
    padding: 0;
}

ul, li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

img, table, td {
    border: 0;
}

div, section, a, span, button {
    box-sizing: border-box;
}

* {
    color: var(--c1);
    font-family: DINPro;
    font-size: 14px;
    line-height: 140%;
}


body {
    background-color: var(--content-bg);
    min-width: 360px;
}

body > .darkness {
    position: absolute;
    height: 100vh;
    width: 100vw;
    top:60px;
    left:0;
    right:0;
    bottom: 0;
    background: var(--c1);
    opacity: 0.8;
    display: none;
    z-index: 150;
}

#content {
    width: 100%;
    padding: 54px;
    position: relative;
}

#l_layout {
    display: flex;
    flex-direction: row;
    /*min-width: 400px;*/
}

#l_navigation {
    min-width: 320px;
    padding-right: 20px;
    z-index: 200;
}

#loading_animation {
    position: fixed;
    top:0;
    left:0;
    width: 99vw;
    height: 99vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 255;
}

textarea {
    width: 95%;
    border: 1px solid var(--table-spacer);
    border-radius: 4px;
    padding: 12px;
}