/*************************\
  Standard Elements
\*************************/

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    font-weight: 300;
    background: rgba(126,167,43,1);
    width: 100%;
}

body.overlay {
    background: rgba(126,167,43,0.95) url('../images/bg.png') no-repeat center bottom;
    background-size: cover;
}

a {
    text-decoration: underline;
    color: #fff;
}

a:hover {
    color: #e4007d;
}

hr {
    margin: 3rem 0 0 0;
    clear: left;
    width: 100%;
    border: none;
    border-top: 1px solid #cccccc;
    height: 1px;
}

img {
    max-width: 100%;
}

nav ul {
    padding: 0;
}

    nav li {
        display: inline-block;
    }

    nav li:after {
        content: ' | ';
    }

    nav li:last-of-type:after {
        content: '';
    }


option:disabled {
    color: #333333;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
   color: #333333;
   opacity: 1;
}

[placeholder]:focus::-webkit-input-placeholder {
   color: transparent;
}

h1 {
    font-size: 43px;
    line-height: 50px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: normal;
}

.anmeldeseite h1 {
    font-size: 30px;
    line-height: 30px;
}

h2 {
    font-size: 19px;
    margin: 0;
    line-height: 24px;
    letter-spacing: normal;
}


/*************************\
  Header
\*************************/

.header {
    margin: 0 auto;
}



/*************************\
  Structure
\*************************/

.site {
    overflow: hidden;
}

.container {
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}




/*************************\
  Main page content
\*************************/

.main {
    overflow: hidden;
}

.anmeldeseite {
    padding: 50px 0 20PX 0;
}

.overlayer {
    padding: 85px 0 70PX 0;
}

.disclaimer .checkable__text {
    margin-left: 30px;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
}

.close {
    position: absolute;
    right: 10px;
    top: 20px;
    font-size: 100px;
    font-weight: 200;
    cursor: pointer;
    z-index: 11;
}

.mandatory {
    margin-top: 20px;
    text-align: right;
    font-size: 12px;
}

label {
    font-weight: 300;
}


/*************************\
  Footer
\*************************/



/*************************\
  Substitutes & Overrides
\*************************/


input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select,
button {
    background: #fff;
    color: #333f48;
    font-size: 1.4rem;
    height: 25px;
    line-height: 25px;
    border: none;
}

input, textarea, select, fieldset {
    margin-bottom: 10px;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
select:focus {
    /*border: 1px solid #fff;*/
}

input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
    color: #fff;
    background-color: #e4007d;
    border: none;
    border-radius: 3px;
}

input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
input[type="submit"].button-primary:active,
input[type="reset"].button-primary:active,
input[type="button"].button-primary:active,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
    color: #fff;
    background-color: #e4007d;
    border: none;
}

input[type="submit"], input[type="reset"], input[type="button"] {
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 30px;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background-color: #e4007d;
    border-radius: 0px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

select {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

.select {
    position: relative;
}

label.checkbox,
label.radio {
    color: #808080;
    text-transform: initial;
}

.dropdown {
    position: absolute;
    right: 30px;
    top: 40px;
    cursor: pointer;
    pointer-events: none;
}

.dropdown:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 9px solid #cac7c7;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
}

.dropdown:after {
    content: '';
    position: absolute;
    left: 1px;
    top: 0;
    border-top: 8px solid #020101;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}




/*************************\
  Helpers
\*************************/

.top-margin {
    margin-top: 10px;
}

.mobile {
    display: none;
}

.smallprint {
    font-size: 1.3rem;
    margin-top: 3rem;
}

.disabled {
    color: #808080;
}




/*************************\
  Media Queries
\*************************/

@media only screen and (max-width: 1100px) {

    body {
        background-size: contain;
    }

}

@media only screen and (max-width: 680px) {

    h1 {
        font-size: 36px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }

}

@media only screen and (max-width: 600px) {

    .desktop {
        display: none;
    }

    .mobile {
        display: initial;
    }

}




/*************************\
  Form Errors
\*************************/

.error-message {
    display: block;
    max-height: 0;
    font-size: 1.3rem;
    color: #f50000;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease-in;
}

.error-message.show {
    max-height: 40px;
}

.error-message.show:last-child {
}

input[type="text"].error,
input[type="email"].error,
input[type="select"].error,
textarea.error,
select.error {
    border: 2px solid #f50000 !important;
}

.not-valid {
    float: left;
}