/*************************************************
	Global
**************************************************/ 

html {
height: 100%;
} 

body {
margin: 0 auto;
padding: 0;
font-size: 100%;	
box-sizing: border-box;
display: flex;
flex: 1;
flex-direction: column;
min-height: 100%;
/*
background: rgb(238,174,202);
background: radial-gradient(circle, rgba(238,174,202,1) 20%, rgba(46,119,154,1) 85%);
background-attachment: fixed;
*/
counter-reset: step;

background-image: url("bg_02.jpg");
height: 100vh;

background-position: 50% 15%;
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
-webkit-transition: 0.3s;
transition: 0.3s;
}

input {
margin: 0;
}
 
a:link, a:visited {
text-decoration: none;
color: #4f84c4;
-webkit-transition: 0.3s;
transition: 0.3s;
}

a:active {
text-decoration: none;	
}

a:link:hover {
text-decoration: none;
color: #333;
-webkit-transition: 0.3s;
transition: 0.3s;
} 

button {
-webkit-transition: 0.3s;
transition: 0.3s;
}

button:hover {
-webkit-transition: 0.3s;
transition: 0.3s;
} 

ul {
list-style-type: none;	
}	

b {
color: #777;
} 

.content {
margin: 0px auto;
padding: 0;
/*width: 50em;*/
max-width: 50em;

/*border: 4px solid #333;*/

}

 
/*************************************************
	Header
**************************************************/   
 
#header {
/*background-color: #2e779a;*/
color: #ffff66;
padding: 0;
font-weight: bold;
margin: 0;
}

#header .content {


}

h1 {
font: normal 2.0em "Roboto Slab", Georgia, Times, serif;
margin: 1.5em 0 0.5em 0;
text-align: center;
/*border-bottom: 8px solid #ffff66;*/
padding: 0 0 20px 0;
text-shadow: 0px 4px 3px rgba(0,0,0,0.3),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
}
 

/*************************************************
	obere Navigation
**************************************************/  
 
#nav-main {
background-color: #454140;
padding: 12px 0;
color: #fff;
box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
z-index: 10;
}

#nav-main a {
font: normal .9em "Roboto Slab", arial, sans-serif;
color: #fff;
padding-right: 10px;
}	
 
#nav-main a:before {
content: "\0279c";
padding: 0 5px 0 0;
}	

#nav-main a:hover:before {
color: #ffff66;
}	
 

/*************************************************
	Inhaltsbereich
**************************************************/ 
 
#main {
background-color: #9ee0d4;	
font: normal 100%/150% "Roboto Slab", arial, sans-serif;		
color: #333;
margin: 0 0 4em 0;
padding: 3em 2.5em;
border-radius: 12px;
box-shadow: 10px 16px 20px 5px rgba(0, 0, 0, 0.4), 0 16px 20px 0 rgba(0, 0, 0, 0.4);
/*
border-left: 2px solid #eee;
border-right: 1px solid #ddd;
*/
}

#lock-modal {
display: none;
background-color: black;
opacity: 0.5;
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
transition: opacity 2s ease-in-out;
}

/* https://loading.io/css/ */

.loading {
display: none;
position: fixed;
margin: -60px 0px 0px -55px;
left: 50%;
top: 40%;
width: 100%;
height: 100%;
}

.loading div {
position: absolute;
border: 6px solid #dfc;
opacity: 1;
border-radius: 50%;
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loading div:nth-child(2) {
animation-delay: -0.5s;
}

@keyframes lds-ripple {
  0% {
	top: 28px;
    left: 28px;
    width: 50px;
    height: 50px;
    opacity: 1;
  }
  
  100% {
    top: -1px;
    left: -1px;
    width: 108px;
    height: 108px;
    opacity: 0;
  }
}



.symbol-wrapper {
display: flex;
flex-direction: column;
justify-content: center; 
align-items: center;
font-weight: bold;
}

.symbol {
display: flex;
align-self: center;
align-items: center;
justify-content: center;
margin: -1.5em 0 0.5em 0;
font-size: 3.0em;
color: #eee;
border-radius: 50%;
/*border: 3px solid #eee;*/
width: 4rem;
height: 4rem;
padding: 0;
background: #77d4c3;
box-shadow: 0px 0px 8px 8px rgba(0, 0, 0, 0.2);
}

.symbol span {
width: 20px;
height: 35px;
transform: rotate(90deg);
}

h2 {
margin-top: 0;	
padding-top: 0;
font: normal 1.8em "Roboto Slab", Georgia, Times, serif;	
}	

h3 {
font: normal 1.4em "Roboto Slab", Georgia, Times, serif;
margin: 20px 0;
padding: 15px 0 8px 0;
border-bottom: 2px solid #ddd;
}


/*************************************************
	-->	Formular
**************************************************/

label, select {
cursor: pointer;
font-size: 110%;
}

label:before {
counter-increment: step;
content: "" counter(step) "\000a0\000bb";
margin: 0 5px 0 0;
font-weight: bold;
font-size: 1.2em;
}

label.skip:before {
display: none;
}

.loeschen {
display: none;	
margin: 0;
padding: 8px 9px;
cursor: pointer;
color: #666;
border: 1px solid #ddd;
background-color: #f9f9f9;
text-align: left;
}

.loeschen:hover {
background-color: #eee;
color: #f00;
-webkit-transition: 0.3s;
transition: 0.3s;
}

#name, #email {
width: 40%;
}

#name, #email, #art, #spiel, #art, #text, #bemerkungen {
color: #333;
padding: 10px;
margin: 4px 0 0 0;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: none;
border-radius: 4px;
/*box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.2);*/
}

#spiel {
width: 50%;
margin-bottom: 15px;
}

input, textarea, select {
font: normal 1.0em/150% "Roboto Slab", arial, sans-serif;		
}

#text, #bemerkungen {
margin-bottom: 15px;
padding: 15px;
width: 95%;
line-height: 140%;
resize: vertical;
}

#text {
height: 400px;
}

#bemerkungen {
height: 40px;
}	

input[type="text"], input[type="email"], input[type="checkbox"], select, textarea {
background-color: #fff;
border: 2px solid #9ee0d4;
}

input[type="text"]:hover, input[type="email"]:hover, input[type="checkbox"]:hover, select:hover, textarea:hover {
background-color: #f2f2f2;
border: 2px solid #454140;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="checkbox"]:focus, select:focus, textarea:focus {
background-color: #f2f2f2;
border: 2px solid #454140;
}

button, input[type="button"], input[type="submit"], input[type="reset"]  {
background-color: #f5f5f5;
padding: 11px;
cursor: pointer;
border: 1px solid #d8d8d8;
border-radius: 4px;
-webkit-transition: 0.3s;
transition: 0.3s;
}

button:hover, input[type="button"]:hover, input[type="submit"]:hover {
background-color: #2e779a;
color: #fff;
border: 1px solid #b4b4b4;
-webkit-transition: 0.3s;
transition: 0.3s;
}

input[type="reset"]:hover {
background-color: #f00;
color: #fff;
border: 1px solid #b4b4b4;	
-webkit-transition: 0.3s;
transition: 0.3s;
}


button:active, input[type="button"]:active, input[type="submit"]:active {
background-color: #2e779a;
border: 1px solid #b4b4b4;
}

input[type="reset"]:active {
background-color: #f00;	
}

input#anhang {
padding: 20px 0;
}

#preview {
background: #f00 url("../../img/no_screen.png") no-repeat left top;
font-weight: bold;
color: #f00;
text-align: left;
margin: 0;
padding: 0;
width: 267px;
height: 150px;
border: 1px solid #c8c8c8;
}
 
#kb { 
margin: 5px 0;
height: 30px;
} 

.username_dateiname, .art_dateiname {
text-transform: lowercase;
}

/*************************************************
	Formular --> Bestätigungsseite
**************************************************/

.fehler {
margin: 0 auto;
width: 70%;
color: #333;
font-size: 1.5em;
line-height: 1.2em;
text-align: center;
}

.einsendung,
.einsendung_auswahl {
font-family: "Roboto Slab", arial, sans-serif;
line-height: 170%;
background-color: #f9f9f9;	
border: 1px solid #d4d4d4;
padding: 10px 15px 10px 20px;
color: #777;
}

.einsendung_auswahl {
display: -webkit-flex;
display: flex;
justify-content: space-between;
padding: 0 0 0 20px;
align-items: center;
}

.einsendung_info {
background-color: #e9e9e9;
flex: 0 0 auto;	
padding: 12px;
text-align: right;
border-left: 1px solid #d4d4d4;
}

.einsendung:hover {
cursor: copy;	
background-color: #f2f2f2;
border: 1px solid #454140;
}

.einsendung_auswahl:hover {
background-color: #f2f2f2;
border: 1px solid #454140;
}


/*************************************************
	Footer
**************************************************/

/*
https://mychcode.com/css/display-footer-always-bottom-page-css-solution/
*/

#footer {
font: normal .9em/150% "Roboto Slab", arial, sans-serif;		
background-color: #2e779a;
color: #fff;
padding: 12px 0;
border-top: 3px solid #454140;
flex: 0 0 100%;
margin: 30px 0 0 0;
  
/*
position: relative;
bottom: 0;
width: 100%;
*/
}

#footer a {
color: #ff0;
}

#footer .content {
display: flex;	
justify-content: space-between;
}	

 
/*************************************************
	Media Queries
**************************************************/ 
 
/* Bildschirme mit maximal x Breite */
@media screen and (max-width: 768px) {

.content {
padding: 0 1em;
}

#main {
padding: 1em 1.5em;
border: 0;
-webkit-flex: 1 100%;
flex: 1 100%;	
-webkit-order: 2;
order: 2;
}

h1 {
font-size: 1.4em;
} 


#footer {
-webkit-order: 3;
order: 3;
}	
 
	
}


/* Bildschirme mit min x Breite */
@media screen and (min-width: 1250px) {

.content {
/*font-size: 1.1em;*/
}



}





