:root {
  --gruen: rgb(46,204,64);
}

*{
    font-family: Verdana,sans-serif;
    font-size:14px;
    margin:0;
    padding:0;
    text-decoration: none;
    box-sizing: border-box;
    color:#000;
}
a{
    color:inherit;
    font-size:inherit;
}
.button{
    display: inline-block;
    text-align: center;
    color:#fff;
    background-color: var(--gruen);
    width:95%;
    margin:auto;
    padding:8px;
    background-color: var(--gruen);
    border-radius:6px;
    border:1px solid #4E4E4E;
    box-shadow: 4px 4px 7px #4E4E4E;
    font-weight:bold;
    cursor:pointer;
}
ul,ol{
    margin:10px 20px;
}
ul li,ol li{
    margin:5px 0px;
}
ul.char, ul.ausruf{ list-style-type:none;margin-left:30px;}
ul.char li:before { content: "\2713 \0020"; margin-left:-20px;font-size:1.3em;color:var(--gruen);font-weight:bold;}
ul.ausruf li:before { content: "\0021 \0020"; margin-left:-15px;font-size:1.3em;color:var(--gruen);font-weight:bold;}

html,body{
    background-color: rgb(250,250,250);
}
body{
    padding-top:180px;
}
header{
    position: fixed;
    top:0px;
    left:0px;
    width:100vW;
    height:170px;
    background-color: #4E4E4E;
    border-bottom:2px solid var(--gruen);
    z-index:99;
}
header img{
    max-height:80%;
    position: absolute;
    top:10%;
    left:30px;
}
header #burger{
    position:fixed;
    top:40px;
    right:60px;
    display:block;
    z-index:100;
    width:60px;
    cursor:pointer;
}
header #burger *{
    transition: all 0.3s;
}
header #burger span{
    display:block;
    height:12px;
    width:90%;
    border-bottom:6px solid rgb(46,204,64);
    border-radius:6px;
}
header #burger span:first-of-type{
    margin-left:10px;
}
header #burger span:last-of-type{
    margin-left:-10px;
}
header #burger:hover span{
    margin-left:0px;
    border-color:#fff;
}


/* --------------------------------------- [+] MENU --------------------------------------------- */

body > nav li a.icon-circle-with-cross{
    display:inline-block !important;
    float:right;
    font-size:2.9rem !important;
    color:#fff;
    width:auto !important;
    margin-right:80px;
}

body > nav{
    display:block;
    transition:all 0.6s ease-out;
    position:fixed;
    top:0px;
    left:0px;
    height:100vH;
    width:100vW;
    z-index:1500;
    background-color: rgba(0,0,0,0.8);
    margin-left:-100vW;
    color:#fff;
    list-style-type:none;
    padding-top:40px;
}
body > nav.aktiv{
    margin-left:0px;
}
body > nav li{
    line-height:3.6rem;
    font-size:1.8rem;
    text-transform: uppercase;
    color: rgb(208,149,52);
    transition:all 0.5s;
    position:relative;
    color:var(--gruen);
}
body > nav li:hover{
    color:#fff;
}
body > nav li:not(:first-of-type){
    border-bottom:1px solid var(--gruen);
}
body > nav li:first-of-type{
    height:60px;
}

body > nav li:not(:first-of-type):after{
    content:"";
    display:block;
    height:1px;
    background-color: #fff;
    position:absolute;
    left:50%;
    width:0px;
    transition:all 0.6s;
}

body > nav li:hover:not(:first-of-type):after{
    left:0px;
    width:100%;
}
body > nav li:hover:after{
    color:#fff;
}
body > nav li a{
    display:block;
    padding-left: 30px;
    width:100%;
    font-size:inherit;
}
/* --------------------------------------- [-] MENU -------------------------------------------- */
/* --------------------------------------- [+] FORMULARE --------------------------------------- */
form{
    line-height:36px;
    width:90%;
    margin:auto;
}
label{
    width:19%;
    display:inline-block;
    vertical-align: top;
}
form input, form select, form textarea{
    width: 70%;
    padding:5px 10px;
    border:1px solid #BCB4B4;
    border-radius:8px;
}
form textarea{
    resize: none;
    margin-top:0.7em;
}
form input[name=costumerplz],.plz{
    width:90px;
}
form input[name=costumerort],.ort{
    width:calc(70% - 95px);
}
form input[type=radio],form input[type=date],form input[type=checkbox],.autowidth{
    width:auto;
}
form input[type=submit], form input[type=reset]{
    width: 34.5%;
    padding:8px;
    background-color: var(--gruen);
    border-radius:6px;
    border:1px solid #4E4E4E;
    box-shadow: 4px 4px 7px #4E4E4E;
    cursor:pointer;
    color:#fff;
}

/* --------------------------------------- [-] FORMULARE --------------------------------------- */

footer{
    position: fixed;
    bottom:0px;
    left:0px;
    width:100vW;
    height:30px;
    line-height:30px;
    background-color: #4E4E4E;
    border-top:2px solid var(--gruen);
    color:#fff;
    text-align: right;
    padding:0px 30px;
    font-size:0.8rem;
    z-index:99;
}
main{
    margin:auto;
    max-width:95vW;
    padding-bottom:50px;
}

.icon-chevron-down,.icon-chevron-up{
    float: right;
}
#uebersicht table{
    border-spacing: 0;
    width:95%;
    margin: auto;
    line-height:2em;
}
#uebersicht table tr:nth-of-type(even){
    background-color: rgba(0,0,0,0.2);
}
#uebersicht table tfoot tr:last-of-type{
    background-color: transparent !important;
}
#uebersicht table th{
    text-align: left;
    padding:2px 7px;
    background-color:#fff !important;
}
#uebersicht table td{
    padding:2px 7px;
    color:inherit;
}
#uebersicht table td a{
    color:inherit;
}
#uebersicht table tr:hover{
    background-color: rgba(0,0,0,0.8);
    color:#fff;
}
fieldset{
    padding:15px;
    border-radius:10px;
}
fieldset legend{
    padding:0px 8px;
}
/* --------------------------------------- [+] GRID ------------------------------------------ */

[class^="gr"] > *, [class*=" gr"] > *,h1{
    padding:20px;
    min-height:50px;
    border-radius:8px;
    border-top-left-radius:0px;
    box-shadow:4px 4px 7px #C9C9C9;
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
    border-bottom:1px solid var(--gruen);
    border-right:1px solid var(--gruen);
}
main > section{
    width:90%;
    margin:15px auto;
}
main p, main h4{
    max-width:93vW;
    text-align: justify;
    margin:15px auto;
}
h4{
    margin:10px 0px;
}
.gr1_3{
    display:grid;
    grid-template-columns:repeat(3,1fr) ;
    grid-template-rows:50px 1fr ;
    grid-gap:20px;
    grid-template-areas:"titel titel titel" "l m r";
}
.gr1_1{
    display:grid;
    grid-template-rows:65px 1fr ;
    grid-gap:20px;
}
.gr1_1 > *:first-child{
    position:relative;
    z-index:98;
}
.gr1_3 > *:first-child{
    grid-area: titel;
}
/* --------------------------------------- [-] GRID ------------------------------------------ */
/* --------------------------------------- [+] KLASSEN --------------------------------------- */
.fehler{
    color:#CA3C3C;
}
.erfolg{
    color:var(--gruen);
}
.lined{
    color:#646363;
    position: relative;
}
.lined:before{
    content: "";
    position: absolute;
    top:7px;
    left:-5px;
    display:inline-block;
    width:120%;
    height:2px;
    transform: rotate(-5deg);
    background-color: #D12F2F;
}
.lined:after{
    content:"0,00 \20AC";
    position: absolute;
    top:-6px;
    left:120%;
    width:120px;
    display:inline-block;
    transform: rotate(-5deg);
    color:#000;
}
.toggleButton {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 22px;
  border: 1px solid #555555;
  border-radius: 9999px;
  background-color: #A7A2A2;
  cursor: pointer;
  vertical-align: middle;
  margin-right:30px;
}

.toggleButton:has(:focus-visible) {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
}

.toggleButton:has(:checked) {
  background-color: rgb(46,204,64);
}

.toggleButton__checkbox {
  appearance: none;
  position: absolute;
  top: 50%;
  left: 1px;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  border-radius: 9999px;
  transform: translateY(-50%);
  outline: none;
  background-color: #A7A2A2;
  transition: all 0.5s;
  cursor: pointer;
}

.toggleButton__checkbox:checked {
  left: calc(100% - 23px);
  background-color: #2DA61A;
}

.autowidth{
    width:auto;
}
.hide{
    display:none;
}
.close{
    display:block;
    background-color:#DC2F2F;
    color:#fff;
    width:30px;
    height:30px;
    border-radius:50%;
    line-height: 30px;
    text-align: center;
    font-size:15px;
    font-weight:bold;
    position:absolute;
    right:-10px;
    top:-10px;
    cursor: pointer;
}
/* --------------------------------------- [+] KLASSEN --------------------------------------- */