@charset "utf-8";



body {
    margin: 0px;
    padding: 0px;
    font-family: sans-serif;
}



nav {
    background-color: var(--firmenfarbe);
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 64px;
    overflow: hidden;
}



nav .nav_button {
    cursor: pointer;
    background-color: var(--firmenfarbe);
    border-radius: 8px;
    padding: 8px;
    transition: all 0.2s;
}



nav .nav_button:hover {
    filter: brightness(1.1);
}



nav .nav_button img {
    width: 48px;
}



main {
    background-color: #ebebeb;
    position: absolute;
    top: 0px;
    left: 64px;
    right: 0px;
    bottom: 0px;
    padding: 8px;
    overflow-x: hidden;
    overflow-y: scroll;
}



.kasten {
    background-color: #d8d8d8;
    border-radius: 8px;
    padding: 16px;
    margin: 32px;
    text-align: left;
    width: 250px;
    display: inline-block;
}



.spalte {
    display: inline-block;
    padding: 16px;
    margin: 16px;
    vertical-align: top;
}



h1 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 32px;
    margin-top: 0px;
    color: var(--firmenfarbe);
}



h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 16px;
    margin-top: 0px;
    color: #488925;
}



h3 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 8px;
    margin-top: 0px;
    color: #626262;
}



input {
    width: 100%;
    padding: 6px;
    margin-bottom: 4px;
    background-color: #ffffff;
    border: 1px solid #c9c9c9;
    border-radius: 6px;
}



input:disabled {
    background-color: #f4f4f4;
    background-image: url('../img/schloss.png');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: right center;
}



textarea {
    width: 100%;
    margin-bottom: 4px;
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    border-radius: 6px;
    padding: 6px;
    border: 1px solid #c9c9c9;
}



select {
    width: 100%;
    margin-bottom: 4px;
    padding: 5px 8px 5px 8px;
    background-color: #ffffff;
    border: 1px solid #c9c9c9;
    border-radius: 6px;
}



.saving {
    background-image: url('../img/ladeanimation.gif');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    font-weight: bold;
}



.input_fehler {
    color: #8e0000;
    background-image: url('../img/fehler.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}



div.checkbox {
    margin-bottom: 8px;
    text-align: left;
}

div.checkbox input {
    width: 25px;
    height: 15px;
    margin-bottom: 0px;
    vertical-align: middle;
}

div.checkbox label {
    vertical-align: middle;
}



.ladeanimation {
    display: block;
    text-align: center;
}

.ladeanimation img {
    width: 32px;
    padding: 8px;
}



.knopf {
    background-color: var(--firmenfarbe);
    color: #fff;
    font-weight: bold;
    margin: 2px;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.knopf:hover {
    filter: brightness(1.1);
}



hr {
    margin: 16px;
    border: none;
    border-top: 1px solid #c5c5c5;
}



.overlay_container {
    background-color: #ffffff55;
    backdrop-filter: blur(8px);
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}



.overlay_container .overlay {
    background-color: #ffffff;
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 15%;
    right: 15%;
    border-radius: 32px;
    box-shadow: 0px 0px 16px 8px #00000044;
}



.overlay_container .overlay .titel {
    background-color: var(--firmenfarbe);
    padding: 16px;
    border-radius: 16px 16px 0px 0px;
    font-weight: bold;
    color: #fff;
}



.overlay_container .overlay .inhalt {
    padding: 16px;
    height: calc(100% - 136px);
}



.overlay_container .overlay .toolbar {
    background-color: #a1a1a1;
    padding: 8px;
    border-radius: 0px 0px 16px 16px;
}



.overlay_container .overlay .toolbar .knopf {
    display: inline-block;
    margin-left: 8px;
    margin-right: 8px;
}



::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #ebebeb;
}

::-webkit-scrollbar-thumb {
    background: #b9b9b9;
}

::-webkit-scrollbar-thumb:hover {
    background: #868686;
}