.custom_cookie_container {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.custom_cookie_container_banner {
    background-color: whitesmoke;
    padding: 30px;
    width: 700px;
}
.custom_cookie_container_banner p {
    color: #5F5F5F;
    text-align: center;
    line-height: 1.5rem;
    font-size: 0.9rem;
}
.custom_cookie_container_banner div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 10px;
}
.custom_cookie_container_banner button:first-child {
    all: unset;
    cursor: pointer;
}
.custom_cookie_container_banner button {
    all: unset;
    padding: 15px 120px;
    color: whitesmoke;
    background-color: #1BB76D;
    cursor: pointer;
}


.custom_cookie_einstellung {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.custom_cookie_einstellung_form {
    position: absolute;
    left: 0;
    width: 30%;
    height: 100%;
    background-color: whitesmoke;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
.custom_cookie_einstellung_form_text {
    line-height: 1.8rem;
}
.einstellung_options {
    padding: 0 50px;
}
.einstellung_option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.einstellung_option_name {
    text-transform: uppercase;
    font-weight: bold;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.switch input:first-of-type:checked + .slider {
    background-color: #5F5F5F;
}
input:checked + .slider:before {
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
.einstellung_btns {
    margin-top: auto;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    gap: 10px;
}
.einstellung_btns button {
    all: unset;
    cursor: pointer;
    font-size:18px;
    font-weight:normal;
    padding: 5px;
}
.einstellung_btns button:last-child {
    background-color: #1BB76D;
    color: whitesmoke;
    font-size:24px;
    padding:15px 120px;
    font-weight:bold;
}


@media (max-width: 1200px) {
    .custom_cookie_einstellung_form {
        width: 50%;
    }
    .einstellung_btns {
        height: 20%;
    }
}
@media (max-width: 800px) {
    .custom_cookie_container_banner {
        width: 300px;
    }
    .custom_cookie_einstellung_form {
        width: 70%;
    }
    .einstellung_btns {
        height: 20%;
    }
}
@media (max-width: 600px) {
    .custom_cookie_einstellung_form {
        width: 80%;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .einstellung_btns {
        height: 15%;
    }
    .custom_cookie_einstellung_form_text {
        line-height: 1.2rem;
    }
    .einstellung_options {
        padding: 0 10px;
    }
    .einstellung_btns button {
        font-size: 12px;
    }
    .einstellung_btns button:last-child {
        font-size: 18px;
        padding: 8px 60px;
    }
    .einstellung_option_name {
        font-size: 12px;
    }
}