﻿body {
    background-image: url(assets/mudassir-ali-NZ0HxSy55hY-unsplash.jpg);
    background-size: cover;
    background-attachment: fixed;
}

h1, h2, h3 {
    text-align: center;
    padding: 10px;
}

h3 {
    color: #024a98;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: Arial;
    border-radius: 0px;
}

.wrapper {
    margin: auto;
    margin-top: 10px;
    border: 0px solid #000;
    width: 70%;
    padding: 2em;
    box-shadow: 0px 0px 0px #000;
    background-color: #ededed;
    border-radius: 0px;
    margin-bottom: 100px;
}

.form {
    margin: auto;
    padding: 10px;
    width: 100%;
    border-left: 0px solid #fff;
}

.inpBox {
    width: 48%;
    margin-bottom: 1em;
    padding: 10px;
    display: inline-block;
}

.inpBoxFull {
    width: 100%;
    margin-bottom: 1em;
    padding: 10px;
    display: inline-block;
}

.infoBox {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}

.msg {
    padding: 10px;
    border-radius: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    left: 0px;
    text-align: center;
    box-shadow: 0px 0px 10px #000;
    z-index: 100;
}
.msg a {
    text-decoration: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    color: #000;
    background-color: #fff;
    display: block;
    margin-top: 20px;
    margin-bottom: 50px;
    width: 100%
}


.Fehler {
    background-color: #cc0000;
    color : #FFF;
}

.Ok {
    background-color: #024a98;
    color: #FFF;
}

 span {
    width: 100%;
    line-height: 1.2em;
    padding: 0.2em;
    display: inline-block;
    margin-bottom: 10px;
}

span.bold {
    font-weight: bold;
}

    .inpBox input {
        width: 100%;
        line-height: 2em;
        padding: 5px;
        padding-left: 1em;
        display: block;
        border: 0px;
        border-radius: 2px;
    }

.blink {
    animation: blinken 1s infinite;
    font-weight: bold;
}

@keyframes blinken {
    from {
        color: #cc0000;
    }
    to {
        color: #808080;
    }
}

select {
        width: 100%;
        padding-left: 1em;
        display: block;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 3em;
        background-color: #fff;
        color: #000;
        border: 0px solid #000;
    }
.contentBox {
    border-radius: 2px;
}

     input[type=checkbox] {
        width: 10%;
        line-height: 1.2em;
        padding: 1em;
        display: inline-block;
    }

    .button {
        border: 0px;
        height: 3em;
        line-height: 3em;
        background-color: #024a98 !important;
        color: #fff;
        font-weight: bold;
    }

    .dataPanel {
        background: #ededed;
        padding: 5px;
        border-radius: 5px;
    }

    .dataPanel span {
        width: 50% !important; 
    }

    .dataBox {
        width: 90%;
        border: 1px solid #000;
    }

    .left_navi {
        width: 20%;
        position: fixed;
        overflow: auto;
        height: 100vh;
        background-color: #fff;
        display: none;
        font-size: 0.8em;
    }
    .right_content {
        position: absolute;
        left: 0px;
        right: 0px;
        height: 100vh;
        display: block;
        margin-top: 50px;
    }


    table {
        width: 98%;
        margin: 10px;
        border-collapse: collapse;
        font-size: 0.7em;
        padding: 3px;
        background-color: #fff;
    }

    table .header {
        background-color: #024a98 !important;
        color: #fff;
    }

    table td {
        border: 0px solid #cc0000;
        padding: 5px;
        vertical-align: top !important;
    }

    .green {
        background-color: #c6ff00 !important;
    }

tr:nth-child(even) {
    background: #ededed;
}

tr:nth-child(odd) {
    background: #FFF;
}

tr:hover {
    background-color: #ffd877;
}

a.btn {
    text-decoration: none;
    border: 0px;
    background-color: #024a98;
    color: #fff;
    box-shadow: 0px 0px 1px #808080;
    border-radius: 2px;
    padding: 2px;
}

@media screen and (max-width: 900px) {
    .wrapper {
        width: 100vw;
        padding: 10px;
    }
}
