body,html {
	margin:0px;
	padding:0px;
    background-color:#F4F4F4;
    font-family: arial;
}

img {
	border:0px;
}

li {
  text-align: left;
}

h3 {
  margin-top: 2em;
}

.cleardiv {
	clear:both;
	height:0px;
}

.header{
    width:100%;
    height:180px;
    background-color:#00A3E9;
    position: relative;
}

.header .gewinn{
    position: absolute;
    right:10%;
    top:50px;
    width: 250px;
    height: 250px;
    background-image:url('../img/gewinn.png');
    background-size: 100%;
}

.claim{
    color:#ffffff;
    width:40%;    
    margin:auto;
    height:180px;
}

.claim_text{
    font-size: 40px;
    cursor: pointer;
}

input[type="text"],
input[type="tel"]{
    height:50px;
    margin: 10px 0 10px 0;
    width:100%;
    padding:0 0 0 20px;
    box-sizing: border-box;
    font-size: 18px;
    border: 4px solid #00A3E9;
}

input[type="checkbox"] {
  display:none;
}
input[type="checkbox"] + label::before {
    width: 60px;
    height: 50px;
    background-image: url("../img/unchecked.png");
    background-size:100%;
    background-repeat: no-repeat;
    display: block;
    content: "";
    float: left;
    margin-right: 5px;
    cursor: pointer;
}
input[type="checkbox"]:checked+label::before {
    background-image: url("../img/checked.png");
    background-size:100%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.form_wrapper{
    width:40%;
    margin:auto;
    margin-top:20px;
}

.form_item{
    width:100%;
    display:block;
    position: relative;
}

.checkbox_item{
    height:50px;
    margin: 20px 0 20px 0;
}

.labeltext{
    font-size: 18px;
}

.submit_button{
    width:200px;
    position: absolute;
    right:0px;
}

.submit_button input[type="submit"]{
    width:200px;
    height:50px;
    background-color:#00A3E9;
    border:0px;
    color:#ffffff;
    font-size:22px;
    -webkit-appearance: none;
}

.footer{
    padding-top:20px;
    text-align: center;
    padding-bottom: 20px;
}

.popups{
    display:none;
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index:200;
    background-color:rgba(0,0,0,0.5);
    overflow: auto;
}

#impressum,
#teilnahmebedinungen,
#dsvgo{
    cursor: pointer;
}

.impressum_popup,
.teilnahmebedinungen_popup,
.dsvgo_popup{
    display:none;
    color:#000000;
    width:50%;
    margin:auto;
    margin-top:200px;
    background-color:#ffffff;
    padding: 20px;
    text-align: center;
}

.teilnahmebedinungen_popup, 
.impressum_popup {
  width:40%;
}

.impressum_popup p,
.dsvgo_popup p,
.teilnahmebedinungen_popup p {
  text-align: left;
}

.close{
    width:50px;
    height:50px;
    margin:auto;
    margin-top: -45px;
    font-size: 25px;
    background-color:#00A3E9;
    color:#ffffff;
    border-radius: 50%;
    cursor: pointer;
}

.danke{
    font-size: 34px;
    margin-top:60px;
    margin-bottom:60px;
}

@media only screen and (max-width: 1400px) {
    .claim,
    .form_wrapper{
        width:80%;
    }

    
    .header .gewinn{
        width: 150px;
        height: 150px;
    }
}

@media only screen and (max-width: 1024px) {
    .impressum_popup,
    .teilnahmebedinungen_popup,
    .dsvgo_popup{
        width:100%;
        margin-top:50px;
        box-sizing: border-box;
        font-size: 12px;
    }
}

@media only screen and (max-width: 950px) {
    .claim{
        width:300px;
        margin-left:10%;
    }
    
}

@media only screen and (max-width: 600px) {
    
    .header .gewinn{
        background-image:url('../img/gewinn_mob.png');
        width: 250px;
        height: 250px;
    }
    
    .danke{
        text-align: center;
        margin-top:40px;
        margin-bottom:40px;
    }
    
    
    .claim{
        width:100%;
        text-align: center;
        box-sizing: border-box;
        margin-left:0;
    }
    
    .claim table{
        width:100%;
    }
    
    .claim .claim_text{
        width:100%;
        display:block;
        text-align: center;
    }
    
    .header{
        height:auto;
        padding-bottom:50px;
    }
    
    .header .gewinn{
        position: static;
        margin:auto;
    }
    
    .submit_button{
        width:100%;
    }
    
    .submit_button input[type="submit"]{
        width:100%;
    }
    .labeltext{
        font-size: 14px;
    }
    
   
}


