.formTemplate .input::placeholder,
.formTemplate .button::placeholder,
.formTemplate .select::placeholder,
.formTemplate .textarea::placeholder {
    color: #555;
}

.formTemplate .input[text*="*"]::placeholder,
.formTemplate .button::placeholder,
.formTemplate .select::placeholder,
.formTemplate .textarea::placeholder {
    color: red;
}

.formTemplate .form {
    position: relative;
    width: 100%;
    padding-bottom: 10px;
}

.formTemplate .form form {
    width: 100%;
}

.item.disabled {
    display: none!important;
}

.formTemplate form .item,
.formTemplate form .formRow {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
}

.formTemplate form .hidden {
    display: none;
}

.formTemplate form .item.button {
    background: var(--main-lightgrey-color);
    color: black;
    text-transform: unset;
    font-size: 1.2rem;
    padding: 15px;
    align-items: center;
    flex-wrap: nowrap;
}

.formTemplate form .item.button input[type="radio"] {
    cursor: pointer;
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: var(--main-color);
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid var(--main-color);
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.formTemplate form .item.button input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--main-color);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
}

.formTemplate form .item.button input[type="radio"]:checked::before {
    transform: scale(1);
}

.formTemplate form .item.button input[type="radio"]:focus {
    outline: max(2px, 0.15em) solid var(--main-color);
    outline-offset: max(2px, 0.15em);
}

.formTemplate form .item.button label {
    width: 100%;
    padding-left: 20px;
    padding-bottom: 0;
    padding-top: 0;
}

.formTemplate .item.newsletter p {
    margin-bottom: 15px;
}

.formTemplate form .form-action {
    margin-top: 30px;
    text-align: right;
    overflow: hidden;
}

.formTemplate form .label {
    width: 25%;
    padding: 10px 20px 10px 0;
}

.item.formError .label {
    color: darkorange;
    font-weight: 700;
}

.label.full {
    width: 100%!important;
}

.item.formError .input {
    border: 1px solid darkorange;
}

.formError-icon {
    position: absolute;
    font-family: var(--fa-font);
    color: darkorange;
    font-weight: 300;
    top: 12px;
    left: -23px;
}

.formTemplate form .formRow .label {
    width: 200px;
    padding: 10px 20px;
}

.formTemplate form .label.inline {
    width: 35%;
    padding: 10px 20px;
}

.formTemplate form .formRow .label.inline {
    width: 200px;
    padding: 10px 20px;
}

.formTemplate form .formRow .label.inline.small {
    width: 100px!important;
}

.label.full.smalltext {
    width: 100%;
    text-align: right;
    font-size: 0.8rem;
}

.formTemplate form .value {
    width: 100%;
    position: relative;
}

.formTemplate form .value.street {
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
}

.formTemplate form .value.street .label {
    width: 75px;
    text-align: right;
    padding: 10px;
}

.formTemplate form .formRow .value {
    width: 100%;
    position: relative;
}

.formTemplate form .formRow .value.street {
    width: 70%;
    position: relative;
}

.formTemplate form .formRow .value.plz {
    width: 30%;
    position: relative;
}

.formTemplate form .formRow .value.number {
    text-align: right;
    width: 30%;
    position: relative;
}

.formTemplate form .formRow .valueText {
    padding: 10px 20px;
    width: 100%;
}

.formTemplate form .formRow .value.inline {
    width: 38%;
}

.formTemplate form .value.address {
    width: 50%!important;
}

.formTemplate form .formRow .value.address {
    width: 72%!important;
}

.formTemplate form .value.address.small {
    width: 15%!important;
}

.formTemplate form .label.address.small {
    width: 5%!important;
}

.formTemplate .small {
    width: 40%!important;
}

.formTemplate .label.value {
    font-size: 0.8rem;
    padding: 0!important;
    text-align: right;
}

.formTemplate .label.agb {
    padding: 0!important;
    text-align: left;
    margin-left: 170px;
    width: 25px!important;
}

.formTemplate .input,
.formTemplate .button,
.formTemplate .select,
.formTemplate .textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #CCCCCC;
    padding: 10px 20px;
}

.formTemplate input[required="required"],
.formTemplate select[required="required"] {
    border: 1px solid #ccc;
}

.formTemplate input::placeholder {
    color: #ccc;
    opacity: 0.9;
}

.formTemplate .label.streetNumber {
    display: none;
}

.formTemplate .input.street {
    width: 78%;
}

.formTemplate .input.streetNumber {
    width: 20%;
    float: right;
}

.formTemplate .input.plz {
    width: 20%;
}

.formTemplate .input.zip {
    width: 90%;
}

.formTemplate .input.number {
    width: 90%;
}

.formTemplate .input.place {
    width: 78%;
    float: right;
}

.formTemplate .label.textarea {
    vertical-align: top;
}

.formTemplate .value .textarea {
    min-height: 150px;
    padding: 2%;
}

.formTemplate .value .textarea::placeholder {
    color: #007367;
}

.formTemplate .button {
    font-family: var(--main-font-fa);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: auto;
    background: var(--main-color);
    color: #FFFFFF;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.formTemplate .button:hover {
    background: var(--main-lightgrey-color);
    color: #000;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.formTemplate .action {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: stretch;
}

.formTemplate .action.password {
    justify-content: space-between;
    margin-bottom: 10px;
}

.formTemplate .button.passwordForgot {
    width: auto;
    min-width: 240px;
    background: none;
    right: unset;
    color: black;
    padding: 0;
}

.layerMemberLoginForgot {
    display: none;
}

.layerMemberLoginForgot .form {
    width: 95%!important;
    background-color: rgba(109, 0, 86, 0.2);
    padding: 10px 2.5%;
    margin-top: 35px;
}

.layerMemberLoginForgot .form .item.mail {
    display: unset;
}

.layerMemberLoginForgot .form .item.mail label {
    font-weight: 700;
}

.layerMemberLoginForgot .form .input {
    margin-top: 10px;
    border: 1px solid #000;
    background: none;
}

.layerMemberLoginForgot .form input::placeholder {
    color: #000;
}

.layerMemberLoginForgot .form .action .button {
    margin-top: 10px;
    display: block;
    position: unset;
}

.label.dataprotection {
    width: 100%!important;
    text-align: right;
}

.label.dataprotection a,
.value.dataprotection a {
    font-weight: 600;
    color: var(--main-color);
}

.fa-eye {
    cursor: pointer;
    font: var(--fa-font-light);
    position: absolute;
    bottom: 11px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    font-size: 1.25rem;
    color: #4b4b4b;
}

.fa-eye:before {
    content: '\f06e';
}

.fa-eye.fa-eye-slash:before {
    content: '\f070';
}


/* Newsletter An-/Abmeldung 

.formTemplate.newsletterSignout {
    width: 45%;
    float: right;
}

.formTemplate.newsletterSignin {
    width: 45%;
    padding: 0 5% 2.5rem 0;
    border-right: 1px solid #ccc;
    float: left;
}
*/

#containerFooter .layerNewsletterSignin.formTemplate .input {
    border: none!important;
}


/* Kontaktformular */

#frm_19115,
#frm_19111 {
    background: #eee;
    width: 100%;
    padding: 25px;
}

#frm_19115 .input,
#frm_19115 .button,
#frm_19115 .select,
#frm_19115 .textarea,
#frm_19815 .input,
#frm_19815 .button,
#frm_19815 .select,
#frm_19815 .textarea {
    border: none;
}

#frm_19111 .formRow {
    align-items: baseline;
}

.functionBarLarge {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: stretch;
}


/* Formular Event-Anmeldung */

.formTemplate.eventRegister {
    padding: 1rem 2rem 1rem 1rem;
    background: var(--main-lightgrey-color);
    margin-top: 4rem;
}

.formTemplate.eventRegister .head {
    padding: 1rem;
}

.captcha.detailLabel {
    width: 100%;
    margin-left: 170px;
}

.captcha.detailLabel a {
    font-weight: 700;
    letter-spacing: 0.75px;
}

.item.customer.newsletter {
    background: #eee;
    align-items: baseline;
    color: black;
    border: none;
}

.item.customer.newsletter .label {
    width: 25%;
}

.item.customer .error {
    font-size: 1.25rem;
    padding: 25px;
    width: 100%;
}

.item.customer {
    border: 1px solid #ccc;
}

.item.customer .label {
    padding: 15px 20px;
    width: 19%;
}

.item.customer .value.customer {
    padding: 15px;
    width: unset;
}

.item.customer .value.customer img {
    max-width: 200px;
}

.item.customer [type="checkbox"] {
    position: relative;
    left: 15px;
    top: -4px;
    z-index: 0;
    -webkit-appearance: none;
}

.item.customer [type="checkbox"]+label {
    position: absolute;
}

.item.customer [type="checkbox"]+label::before {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: #fff;
    display: block;
    content: "";
    float: left;
    margin-right: 5px;
    z-index: 5;
    position: relative;
    box-shadow: inset 0px 1px 0px #fff0, 1px 1px 5px rgb(0 0 0 / 60%);
}

.item.customer [type="checkbox"]:checked+label::before {
    box-shadow: inset 0 0 0 3px #fff;
    content: '\f00c';
    font-family: var(--main-font-fa);
    font-weight: 800;
    color: black;
    text-align: center;
}

.formTemplate form .formRegister {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.formTemplate form .formRegister .item {
    display: block;
}

.formTemplate form .formRegister .item.flex50 {
    width: 47.5%;
}

.formTemplate form .formRegister .item.flex25 {
    width: 22.5%;
}

.formTemplate form .formRegister .item.flex75 {
    width: 72.5%;
}

.formTemplate form .formRegister .item.disable {
    display: none;
}

.formTemplate form .formRegister .label {
    width: unset;
    padding: 0;
    display: block;
    padding: 0 0 0.25rem 0;
}

.formTemplate form .formRegister #addressCompany.value,
.formTemplate form .formRegister #addressLine1.value {
    display: none;
}

.formTemplate form .formRegister #addressCompany.value.open,
.formTemplate form .formRegister #addressLine1.value.open {
    display: block;
}

.formTemplate form .formRegister .item.customer.newsletter {
    display: flex;
    background: #eee;
    align-items: baseline;
    color: black;
    border: none;
    padding: 0.5rem 0.5rem 0 0.5rem;
}

#showPassword {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.formTemplate form .formRegister .item.customer {
    border: 1px solid #ccc;
    display: flex;
    padding: 0.5rem;
}

.formTemplate form .formRegister .item.customer .value.customer {
    padding: 0 15px;
    width: unset;
}

@media only screen and (max-width: 900px) {
    .layerMemberLogin {
        float: none;
        width: 100%;
        padding-bottom: 70px;
        border-bottom: 1px solid #ccc;
        margin-bottom: 50px;
    }
    .layerMemberAddressRegister {
        width: 100%;
        float: none;
        padding-left: 0;
        border-left: none;
    }
}

@media only screen and (max-width: 650px) {
    .formTemplate form .formRow {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .formTemplate form .formRow .label.agb {
        padding: 0!important;
        text-align: left;
        margin-left: 0;
        width: 25px!important;
    }
    .formTemplate form .formRow .label,
    .formTemplate form .formRow .label.inline,
    .formTemplate form .formRow .value.inline,
    .formTemplate form .formRow .label.inline.small,
    .formTemplate form .value.address.small,
    .formTemplate form .formRow .value.address {
        width: 100%!important;
    }
    .eventRegister .formRow.row31,
    .eventRegister .formRow.row32 {
        flex-wrap: nowrap;
    }
    .captcha.detailLabel {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .formTemplate form .item,
    .formTemplate form .formRow {
        flex-wrap: wrap;
    }
    .formTemplate form .label {
        width: 100%;
        padding: 0 0 10px 0;
    }
    .formTemplate form .value {
        width: 100%;
        position: relative;
        padding: 0;
    }
}

@media only screen and (max-width: 550px) {
    .formTemplate .form .item .label,
    .formTemplate .form .item .value {
        display: block;
    }
    .formTemplate .form .item .label {
        width: 100%;
        margin-bottom: 5px;
    }
    .formTemplate .form .item .value {
        width: 100%;
        margin-bottom: 5px;
    }
    .formTemplate .form .item {
        display: block;
    }
    .formTemplate .input {
        height: unset;
        padding: 10px;
    }
    .formTemplate .action {
        flex-wrap: wrap;
    }
    .formTemplate .button.passwordForgot {
        padding-bottom: 1rem;
    }
}