* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}




/* BASIC -----------------------------------------*/

body {
    font-family: 'Open Sans', sans-serif;
    color: #040000;
    font-size: 100%;
    padding: 4em 1.5em 1em 1.5em;
}

p {
    text-align: justify;
    line-height: 1.5em;
    hyphens: auto;
    color: #040000;
    padding: 1em 0em;
    margin-left: auto; 
    margin-right: auto;
    hyphens: auto;
    
}

nav {
    z-index: 9;
    position: fixed;
    color: white;
    font-size: 1em;
    /*font-weight: 550;*/
    letter-spacing: 0.05em;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 1.5em 0 1.5em;
    text-align: center;
    background-color: #05445c;
    padding-top: 1em;
}

.bg-color {
    background-color: #05445c;
    transition-duration: .5s;
}



h1 {
    width: 100%;
    text-align: center;
    padding-bottom: 0.5em;
    font-weight: bold;
    color: #05445c;
    font-size: 1.7em;
    }


h2 {
    width: 100%;
    text-align: center;
    padding-bottom: 0em;
    font-weight: bold;
    color: #05445c;
}

h3 {
    width: 100%;
    
    padding: 1em 0em;
    font-weight: 500;
    color: #05445c;
    font-size: 1.5em;
    
    
}

.significant {
    background-color: #fd5f00;
    margin: 2em 0em;
    padding: 1em;
}

.significant p {
    text-align: center;
    color: white;
    font-size: 1.1em;
}

.video{
    text-align: center;
}

.warn {
    
    color: black;
    width: 100%;
    font-size: 100%;
    font-weight: 550;
    padding: 10px 10px 10px 10px;
    margin-left: auto; 
    margin-right: auto;
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
    border: 1px solid;
    border-left: 0;
    border-right: 0;
}

.rules {
    background-color: #548235;
    margin: 2em 0em;
    padding: 1em;

}

.rules p {
    text-align: center;
    color: white;
    font-size: 1.1em;
}

.rules h2 {
    color: white;
    
}

.rules h3 {
    color: white;
    
}

.tiny {
    font-size: 85%;
}


.versuchsschrift{
    font-weight: 400;   
}




/* TABELLE -----------------------------------------*/





table {
   /* width: 115%;*/
    border-style: hidden;
    padding: 1em 0em;
    margin-left: auto; 
    margin-right: auto;
    
}

.half {}

.half tr td{
    padding: 1em;
}

.half tr th {
    padding: 0;
}


.tabcontent {
	padding: 10px;	
	border: 1px solid #ccc;
    border-radius: 5px;
	width: 40%;
    float: left;
} 

.tabcontent h2 {
	text-align: center;
    color: #D64A4B;
    height: 2em;
}

.tabcontent table {
	 width: 100%;
     table-layout: fixed;
	 font-size: 16px;
}

.tabcontent tr {
    text-align: center;
}

.tabcontent td { 
    height: 3em;
    padding-bottom: 0.5em;
}

.tabcontent p {
	font-size: 14px;
} 



.follow {
    padding: 0;
    
}



.overview {
    text-align: center; 
    margin-left: auto; 
    margin-right: auto; 
    padding: 1em;
    
}


td {
    padding: 0 0px;
}


/*.uebersicht {
    border-collapse: collapse;
}

.uebersicht td {
    border: 1px solid red; 
    padding: 0.7em;
}

.spalte1 {
    background: grey;
}

*/


/* figure -----------------------------------------*/
figure {
    margin-bottom: 1em;
}

figcaption {
    font-size: 80%;
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 0.5em;
}


img {
    display: block;
    margin: auto;
    max-width: 70%;
    height: auto;
    border-radius: 5px;
}

img.big {
    max-width: 100%;
}

/* cite -----------------------------------------*/
.cit {
    font-style: italic;
    font-size: 100%;
    color: #05445c;
    width: 80%;
    text-align: center;
    margin: auto;
    margin-bottom: 0.4em;
    /* Abstand nach Zitat */
}

.autor {
    width: 100%;
    font-weight: 600;
    font-size: 70%;
    margin: auto;
    margin-bottom: 1em;
    text-align: right;
}

/* list -----------------------------------------*/

.enumeration {
    margin: 1.5em;
}

.enumeration li { 
    margin: 0.5em;
    list-style-type: none;
}


.number {
    margin: 1.5em;
}

.number li { 
    margin: 0.5em;
    padding-left: 0.5em
}


/* Footer -----------------------------------------*/

footer {
    padding: 10px 0;
    width: 50%;
    margin: auto;
    text-align: center;
    font-size: 80%;
    opacity: .6;
    color: white;
}

/* Seitenabstand außen -----------------------------------------*/

/*.container, .wrapper {
    width: 95%;
    margin: 0 auto;
}*/


/* tabs umschalten -----------------------------------------*/

.tabs {
    
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(2.5px);
    transform: translateY(2.5px);
}

.tabs > li {
    transition-duration: .5s;    
    display: table-cell;
    list-style: none;
    text-align: center;
    vertical-align: middle;
    padding: 10px 20px 15px 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: white;
}

.tabs > li:before {
    z-index: -1;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 5px 5px 0 0;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition-duration: .5s;
    border-radius: 5px 5px 0 0;
}

.tabs > li:hover:before {    
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.tabs > li.active:before {
    background-color: white;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition-duration: .5s;
}

/* Layout Inhalte Tab active ----------------------------------------------*/

.tabs > li.active {
    color: #040000;
}

.tab__content {    
    background-color: white;
    position: relative;
    width: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.tab__content > li {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    list-style: none;
}


.tab__content > li .content__box {
    border-radius: 5px;
    width: 100%;
    padding: 35px 40px 30px 40px;
    background-color: none;
}



/* MOUSE_OVER: TOOL-TIP ----------------------------------------------*/

.tool {
    cursor: help;
    position: relative;
    color: #1f640a;
}

.tool::before,
.tool::after {
    left: 0%;
    opacity: 0;
    position: absolute;
}

.tool:hover::before,
.tool:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.tool::after {
    background: #50555a;
    border-radius: .25em;
    top: 100%;
    color: white;
    line-height: 1.5em;
    text-align: justify;
    content: attr(data-tip);
    font-size: 90%;
    padding: 0.5em 1em;
    transition: all .65s;
    transform: translateY(-10%);
    width: 17.5em;
    hyphens: auto;
}

.tool:hover::after {
    transition: all .65s;
}

@media (max-width: 760px) {
    .tool::after {
        font-size: .75em;
        margin-left: -5em;
        width: 10em;
    }
}

a {
    color: #05445c;
    text-decoration: none;
    font-weight: bold;
}

a.weiter {
    font-size: 1.5em;
    text-align: center;
    padding: 2px 10px;
    border-radius: 5px;    
    color: white;
    background-color: #05445c;
    font-weight: 100;
    float: right;
    margin: 0 2em 0.5em 0;
    border: 2px solid #05445c;
}

a.weiter:hover {
    color: #05445c;
    background-color: white;    
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition-duration: .3s;
    border: 2px solid #05445c;
}