/* ALLGEMEINE FORMATE */
body {background-color:#ffffee; max-width:972px; margin:0 auto; padding:32pt; font-family:"Trebuchet MS",sans-serif; font-size:16pt }
h4, h3 {width:90%; background-color:#FFEEEE; }
img {float:right; margin-left:16px; cursor:pointer; } /* cursor:pointer;box-shadow:6px 6px 12px #999999; */
a:link {color:darkblue; text-decoration:none; transition: 0.3s }
a:hover {color:darkred;}
a:focus {text-decoration:none;}
.copy {float: right; width: 30em; background-color:#EEFFEE; text-align: right; font-size:small; }
.merke { margin-left:3em; margin-right:3em; border-left:8px double red; padding:10px; }

table {
    width:100%;
}
table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}
th, td {
    padding: 5px;
    text-align: left;
}
tr:nth-child(even) {
   background-color:#b7d7e8;
}
tr:nth-child(odd) {
   background-color:#cfe0e8;
}
th {
    background-color: #618685;
    color: white;
}
tr:hover {background-color: #f9ccac; cursor:pointer;}

/* FIXED MENU BUTTON */
#menuBtn {
  position: fixed;
  left: 8px;
  top: 0px;
  width: 30px;
  margin-top: 0;
}

/* SIDEBAR NAVIGATION */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.2s;
    padding-top: 60px;
}

.sidenav a {
    padding: 4px 4px 4px 16px;
    text-decoration: none;
    font-size: 16pt;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px !important;
    margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* MODAL BOX */
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 32px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.75); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #98DDDE;
    margin: auto;
    padding: 0;
    border: 4px ridge grey;
    width: 640px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #009B77;
    color: white;
}

.modal-body {font-family: Georgia,serif; padding: 2px 16px;}

.modal-footer {
    padding: 2px 16px;
    background-color: #009B77;
    color: white;
    text-align:right;
}

/* TOOLTIP */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dashed grey;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: #034F84;
    font-size: 12pt;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
    bottom: 225%;
    left: 50%;
    margin-left: -80px;
    opacity: 0;
    transition: opacity 0.2s, bottom 0.4s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #034F84 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    bottom: 125%;
}

/* --- AKKORDION --- */
.accordion {
    background-color: #d5f4e6;
    cursor: help;
    padding: 2px 16px;
    transition: 0.4s;
}

.accordion:hover {
    background-color: #80ced6;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.19);
}

.accordion.active {
    background-color: #80ced6;
}

.accordion::before {
    content: '\025BC';  /* 02795 */
    font-size: 14pt;
    color: #777;
    float: right;
    margin-left: 8px;
}

.accordion.active::before{
    content: '\25B2';  /* 02796 */
}

div.panel {
    padding: 1px 18px;
    background-color: #d5f4e6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-in;
    opacity: 0;
}

div.panel.show {
    opacity: 1;
    max-height: 20em;
    overflow: visible;
}
/* --- AKKORDION ENDE --- */