<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#box_useragreement {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vw;
    min-height: 100%;
    z-index: 6000;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

#box_useragreement .content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: auto;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
    margin: 20px auto auto auto;
    background-color: #FFF;
} 

#box_useragreement h1 {
    color: #FFF;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 10px 0;
    background-color: rgb(0, 142, 72);;
    text-align: center;
}

#box_useragreement p {
    position: relative;
}

#box_useragreement label {
    width: auto;
}

#box_useragreement input[type='checkbox'] {
    transform: scale(1.0);
}

#box_useragreement input[type='checkbox'] {
    margin-right: 30px;
}

#box_useragreement input[type='button'] {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
    background-color: rgb(0, 142, 72);;
    color: #FFF;
    cursor: pointer;
}

#box_useragreement input[type='checkbox'] + .slider {
    position: absolute;
    cursor: pointer;
    top: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 34px;
}

#box_useragreement input[type='checkbox'] + .slider span {
    width: 20px;
    height: 20px;
    background-color: #777;
    border-radius: 100%;
    float: left;
    transition: all 0.5s ease-in-out;
}

#box_useragreement input[type='checkbox']:checked + .slider span {
    background-color: rgb(0, 142, 72);;
    border-radius: 100%;
    float: right;
}


#box_useragreement input[type='checkbox']:disabled + .slider span {
    background-color: #333;
}

#box_useragreement input[type='checkbox']:disabled + .slider,
#box_useragreement input[type='checkbox']:disabled + .slider span {
    cursor: not-allowed;
}

.CAcookieeinstellungen {
    cursor: pointer !important;
}

@media only screen and (min-width: 1200px) {

    #box_useragreement {
        position: fixed;
    }

    #box_useragreement .content {
        margin: 10vh auto auto auto;
    } 

}</pre></body></html>