/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 30.04.2018, 07:50:13
    Author     : Rump, Schober
*/

/*mittige Überschrift mit dem LBA-Blau*/
.title {
    text-align: center;
    font-weight: bold;
    color: #011576;
    font-size: x-large;
    margin-bottom: 20px;
    margin-top: 30px;
}

/*dadurch sind die checkboxen und Texte nebeneinander*/
.hinweise {
    display: flex;
}

/*wenn die checkbox angehakt ist, was nicht sichtbar wird, wird der Text/Tabelle eingeblendet*/
input[type=checkbox]:checked ~ .hinweis {
    display:block;
}

input[type=checkbox]:checked ~ .hinweis2 {
    display:block;
}

/*Label für die Checkbox*/
.checkboxstyle  {
    display: block;
    height:50px; 
    width: 110px;
    margin-left: 5px;
    margin-bottom: 5px;
    background: #011576;
    padding: 5px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 2px;
    color: white;
    text-align: center;
    font-weight: bold;
}

/*Hinweistext erst nach Anwählen der Checkbox sichtbar*/
.hinweis {
    width: 90%;
    margin-left: 5px;
    margin-bottom: 5px;
    border: 1px solid #011576;
    display:none;
    text-align: center;
}

/*Abkürzungstabelle*/
.hinweis2 {
    width: 90%;
    margin-left: 1%;
    margin-bottom: 15px;
    display:none;
}

/*Eigenschaften der Zellen in der Tabelle*/
.th {
    width: 60px; text-align: left; border-bottom: 1px solid #011576; border-right: 1px solid #011576;
}

.td {
    text-align: left; border-bottom: 1px solid #011576; text-indent: 5px;}

.luecke {
    width: 30px;
}

/*gesamter Filterbereich/Export-Buttons*/
.filter {
    width:620px;
    margin:10px auto;
    margin-bottom: 5px;
}

/*Container für filterBeschreibung & filterSelect*/
.filterZeile {
    width:600px;
    margin-bottom:4px;
    margin-top:4px;
    height:34px;
}

.filterButton {
    width:600px;
    margin-bottom:4px;
    margin-left: 4px;
    margin-top:4px;
    height:34px;
    
}

.filterBeschreibung {
    width:200px;
    font-size: 120%;
    float:left;
}

/*beinhaltet Multiselect- oder Textfeld*/
.filterSelect {
    background-color:blue;
    width:250px;
    height:34px;
    float:left;
}

/*Tabelle für die Einträge*/
.tabelle {
    width: 30%;
    margin-top:10px;
    margin: 20px auto;
}