:root {
  --main: #3fdba4;
  --maindark: #31b385;
  --grey: #dedede;
  --darkgrey: #dedede;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;700;900&display=swap');
html, body{
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	/*overflow-y: auto;*/
}

.erklaerung {
    background: #3fdba4;
    padding: 10px;
    color: white;
    text-align: left;
    height: 1em;
    position: relative;
    overflow: hidden;
	transition: all .3s;
	margin-top: 30px;
}

.erklaerung.open{
	height: 100%;
}

.erklaerung .toggler {
    position: absolute;
    right: 15px;
	transition: all .3s;
}

.erklaerung.open .toggler{
	transform: rotate(180deg);
}
.erklaerung h5 { margin-top: 0; }
.erklaerung p { margin-bottom: 0; }
#sportlerSelect .ergs{
    width: 100%;
    text-align: left;
    background: #ffffffba;
    max-height: 300px;
    margin: 10px 0;
    overflow-y: auto;
    border-radius: 4px;
}

#sportlerSelect .ergs .sportler{
	    padding: 14px;
    display: block;
    cursor: pointer;
	border-bottom: 1px solid #dedede;
}



#sportlerSelect .ergs .sportler:hover{
    background: var(--main);
}

#sportlerSelect .ergs .sportler.noresult:hover{
	background: transparent;
	cursor: default;
	
}
#sportlerSelect .ergs .sportler.noresult.heading{
    padding: 3px 6px;
    font-weight: 500;
    color: #606060;
    background: #ececec;
	    position: sticky;
    top: 0;
}

.btnholderwrap{
	display: inline-block;
    position: relative;
}

.btnholderwrap .fortschritt{
	position: absolute;
    height: 3px;
    width: 100%;
    background: #e2e2e2;
    bottom: 0;
    left: 50%;
	overflow: hidden;
    transform: translateX(-50%);
}

.btnholderwrap .fortschritt .bar{
    background: var(--main);
    height: 100%;
    width: 0%;
    position: absolute;
    left: 0;
    transition: width 2s;
}
.btnholder{
	    display: inline-block;
    background: var(--main);
    
    border-radius: 3px;
    color: white;
    margin: 20px 0;

transition: all .3s;
    box-shadow: 2px 2px 10px #00000030;
}
.btnholder.disabled{

    background: var(--grey);

    color: #9f9f9f;

    cursor: not-allowed;
}

.btnholder.disabled a{
	color: #9f9f9f;
}

.btnholder a{
	color: white;
	text-decoration: none;
}

.btnholder .dlbtn{
	padding: 20px 30px;
	cursor: pointer;
}

.btnholder.disabled .dlbtn{
	cursor: not-allowed;
}

.searchwrap {
	width: 100%;
	position: relative;
}

.searchwrap i{
	    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
	display: none;
}

.searchwrap i#resetbtn{
	cursor: pointer;
	color: red;
}

.searchwrap i#loader {
	animation: spin 1s infinite;
	    color: #4d4d4d;
}

.iconwrp i#loader{
	animation: spinner 1s infinite;
}
.iconwrp{
	display: inline;
    margin-right: 15px;
}

@keyframes spin{
	from{transform: translateY(-50%) rotate(0deg);}
	to{transform: translateY(-50%) rotate(360deg);}
}

@keyframes spinner{
	from{transform: rotate(0deg);}
	to{transform: rotate(360deg);}
}
.wrapper{
	background: url(https://wintersport-tambach.de/wp-content/uploads/2020/01/foggy-1081934_1920.jpg);
    min-height: 100vh;
    width: 100vw;
    margin: 0 !important;
    display: flex;
	background-attachment: fiexed;
    align-items: center;
    background-size: cover;
}

.container{
	max-width: 80vw;
	position: relative;
    width: 1000px;
    margin: 50px auto;
	background: #ffffffd9;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 10px 2px 124px -32px #00000087;
	justify-content: space-around;
	align-items: center;
    display: flex;
	
}
.content{
	    width: 80%;
    text-align: center;

    max-height: 90%;
    padding-bottom: 40px;
}
.button{
	padding: 10px 20px;
    background: var(--main);
    border-radius: 7px;
    display: inline-block;
    margin: 10px ;
    color: white;
    font-size: 1.3em;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
	transition: all .3s;
}

.button:hover{
	background: var(--maindark);
	transform: scale(1.05);
	letter-spacing: 2px;
}

.button.disabled{
	background: var(--grey);
	    cursor: not-allowed;
}
.button.disabled:hover{
	transform: scale(1);
	letter-spacing: 1px;
}

.buttonwrap{
	text-align: center;
}

img.logo{
	display: block;
	margin: auto;
}

/* FORM */

form{
	    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	    align-items: baseline;
		    margin: 10px 0 0 0;
}

input, select{
	padding: 8px 7px;
    border-radius: 3px;
    outline: none !important;
    background: transparent;
    font-family: "Montserrat";
    border: 1px solid #c9c9c9;
    font-size: 1.2em;

	width: 100%;
}

.inpwr{
	position: relative;
    display: inline-block;
    margin: 10px;
	    flex-basis: 47%;
}

@media only screen and (max-width: 1040px) {
  /* For mobile phones: */
  .inpwr {
    flex-basis: 100%;
  }
}
label{
	    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
}

.msg{
	    padding: 20px;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    margin: 50px;
    background: #ffffff63;
}

/* ERG LISTE */

table.erg{
	
	width: 100%;
	border-collapse: collapse;
	text-transform: capitalize;
	margin-bottom: 30px;
}

table.erg h2{
	margin-bottom: 0;
}

table.erg thead :last-child td{
	border-bottom: 2px solid black;
	font-weight: bold;
}

table.erg tbody tr:nth-child(even) {
	background: #c1c1c14d;
}

table.erg tbody tr td.lname {
	text-transform: uppercase;
}

table.erg td {
	padding: 4px 7px;
}

.backcontainer{
	position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(10px,-10px);
    
}

.backcontainer a {
	color: var(--main);
    font-weight: 800;
	text-decoration: none;
}

.copycontainer {
	    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(-10px, -10px);
    font-size: 0.9em;
	color: #a79d9d;
	text-align: right; 
}

.copycontainer a {
	text-decoration: none;
	color: #787878;
}
@media only screen and (max-width: 500px) {
  /* For mobile phones: */
  .backcontainer {
    display: none;
  }
}

section#EuCookieOptIn p {
     display: block;
     text-align: justify;
}
section#EuCookieOptIn button.optin, section#EuCookieOptIn button.optout {
     background-color: #4CAF50;
     border: none;
     color: white;
     padding: .8em 1.2em;
     text-align: center;
     text-decoration: none;
     display: inline-block;
     font-size: 1.4em;
	 cursor: pointer;
}
 section#EuCookieOptIn button.optin:active, section#EuCookieOptIn button.optout:active {
     transform: scale(.95);
}
 section#EuCookieOptIn button.optout {
    background-color: #e7e7e7;
     color: black;
}
 section#EuCookieOptIn {
     display: block;
     z-index: 1001;
     position: fixed;
     bottom: 2vh;
     right: 2vw;
     margin: 0;
     color: #555;
     border: 1px solid #b40b06;
     background: #fff;
     text-align: center;
     font-size: .66em;
     padding: 1em;
     line-height: 2em;
     opacity: .95;
     min-width: 256px;
     width: 50%;
     max-width: 512px;
	 box-shadow: 0 0 230px -21px #00000099;

}
 section#EuCookieOptIn:hover {
     opacity: 1;
}
 #blocker {
	
    position: fixed;
    top: 0;
	background: #fffffff5;
    left: 0;
    width: 100vw;
    z-index: 1;
    height: 100vh;
    pointer-events: none;
 }
 
 #blocker:after{
	content: "Gleich gehts los! Bitte erst Cookies zulassen oder ablehnen... Danke :)";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    font-size: 3em;
	 
 }
 
 @supports ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
  #blocker {
    backdrop-filter: blur(20px);
	background: transparent;
  }
  
}
 
 
 
@media only screen and (max-width: 600px) {
  /* For mobile phones: */
 section#EuCookieOptIn {
        right: 50%;
    transform: translateX(50%) scale(1.2);
    
    z-index: 1000;
    bottom: 10vh;
  }
  
  #blocker:after{
	 
    top: 40%;
   
    transform: translate(-50%, -50%);
   
    font-size: 2em;
    width: 80vw;
  }
}