/* alata-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Alata';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/alata-v9-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html,
body {
    height: 100%;
}

* {
    font-family: Alata;
}

body {
    --color-not-paid: rgb(255 40 40);
    --color-late-notice1: rgb(255 255 0);
    --color-late-notice2: rgb(50 255 0);
    --color-late-notice3: rgb(0 50 255);

    background-image: url(../img/wasser_back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.watermark {
    background-image: url(../img/back.png);
    background-position: 5% bottom;
    background-repeat: no-repeat;
    background-size: 30%;
}

.container-lg.watermark {
    min-height: 90vh;
}

tr.tr-clickable {
    cursor: pointer;
}

.not-paid,
.not-paid td {
    background-color: var(--color-not-paid);
    color: #ffffff;
}

.late-notice1,
.late-notice1 td {
    background-color: var(--color-late-notice1);
}

.late-notice2,
.late-notice2 td {
    background-color: var(--color-late-notice2);
}

.late-notice3,
.late-notice3 td {
    background-color: var(--color-late-notice3);
    color: #ffffff;
}

#overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: -100px;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
}

#errorPopup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10001;
}

thead tr {
    position: sticky;
    top: -1px;
    z-index: 1;
}

.indent-50 {
    display: inline-block;
    height: 15px;
    width: 50px;
}

.btn.btn-higher {
    height: 80px;
}