.cc_banner-wrapper {
    font-size: 12px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    z-index: 9001;
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.8);
    overflow: hidden;
}

#webhint {
    display: none;
}

.cc_btn {
    cursor: pointer;
    text-align: center;
    transition: font-size 200ms;
    line-height: 1.5em;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.75);
    padding: 8px 10px;
    background-color: #f1d600;
    display: inline-flex;
}

.cc_container .cc_message {
    font-size: 0.6em;
    transition: font-size 200ms;
    margin: 0;
    padding: 0;
    line-height: 1.5em;
    display: block;
    text-align: left;
}

.cc_container .cc_logo {
    display: none;
    text-indent: -1000px;
    overflow: hidden;
    width: 100px;
    height: 22px;
    background-size: cover;
    opacity: 0.9;
    transition: opacity 200ms;
}

.cc_container .cc_logo:is(:hover, :active, :focus) {
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .cc_btn {
        font-size: 1em;
    }

    .cc_container .cc_message {
        font-size: 1em;
        line-height: 1em;
    }
}

@media screen and (min-width: 992px) {
    .cc_container .cc_message {
        font-size: 1em;
    }
}

@media print {
    .cc_banner-wrapper, .cc_container {
        display: none;
    }
}

.cc_container {
    position: fixed;
    top: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    max-width: 900px;
    width: calc(100% - 30px);
    left: calc(50% - 15px);
    transform: translate(-50%);
    margin: auto 15px;
    background: #ffffff;
    color: #000000;
    box-sizing: border-box;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .cc_container {
        top: 5%;
    }
}

@media screen and (min-width: 500px) {
    .cc_container .cc_message {
        margin-top: 0.5em;
    }
}

@media screen and (min-width: 768px) {
    #webhint {
        display: block;
    }

    .cc_container {
        padding: 15px 30px 15px;
    }

    .cc_btn {
        font-size: 1em;
        padding: 8px 15px;
        display: flex;
        align-content: center;
        justify-content: center;
    }

    .cc_container .cc_message {
        font-size: 1em;
    }
}

@media screen and (min-width: 992px) {
    .cc_container .cc_message {
        font-size: 1em;
    }
}

.cc_btn, .cc_btn:visited {
    color: #777777;
    font-weight: bold;
    background-color: #ffffff;
    transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
    border-radius: 5px;
    border: 2px solid #ffffff;
    text-align: center;
    display: block;
}

.cc_btn:hover, .cc_btn:active, .cc_btn:focus {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
}

#imprint-cookie-link,
#privacy-cookie-link {
    display: inline-block !important;
    margin-top: 25px !important;
}

:is(#imprint-cookie-link, #privacy-cookie-link) > a {
    font-size: 14px !important;
    color: #52627c !important;
}

.cc_container a, .cc_container a:visited {
    text-decoration: none;
    transition: 200ms color;
}

.cc_container a:is(:hover, :focus, :active) {
    color: #777777;
}

:is(#imprint-cookie-link, #privacy-cookie-link) a:is(:hover, :focus, :active) {
    color: #777777 !important;
}

@keyframes slideUp {
    0% {
        transform: translateY(66px);
    }
    100% {
        transform: translateY(0);
    }
}

#cookie-buttons-div {
    text-align: center;
    display: grid;
    gap: 10px;
    margin: 5px 0;
}

@media (min-width: 768px) {
    #cookie-buttons-div {
        grid-template-columns: repeat(3, 1fr);
    }
}

:is(#cc_btn_accept_all, #cc_btn_confirm, #cc_btn_decline):is(:hover, :focus) {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
}

#cookie-details[open] section {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    height: 250px;
    margin-bottom: 10px;
}

#cookie-details summary {
    color: #575757;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: right;
    cursor: pointer;
    display: block;
}

#cookie-details h2 {
    display: inline-block;
    width: auto;
    margin: 0;
}

#cookie-details h3 {
    margin: 0 0 15px 0;
}

#cookie-details * + h3 {
    margin-top: 20px;
}

#cookie-details :is(h2, h3, h4) {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

#cookie-details summary::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 6px;
    margin-left: 5px;
    vertical-align: middle;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' %3E%3Cpath d='M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z' fill='%2352627c' /%3E%3C/svg%3E") center / 22px auto no-repeat;
}

#cookie-details[open] summary::after {
    transform: scaleY(-1);
}

#cookie-details[open] summary h2 > span:first-child,
#cookie-details:not([open]) summary h2 > span:last-child {
    display: none;
    visibility: hidden;
}

#privacy-cookie-link {
    padding-left: 10px;
}

#cc_btn_accept_all, #cc_btn_accept_confirm {
    -moz-hyphens: none;
    hyphens: none;
}

.cc_banner {
    line-height: 1.5em;
}

#cc_options {
    padding-top: 10px;
}

#cc_options label {
    margin-right: 5px;
}

#cc_options input {
    padding: 0;
}

#cc_options input[disabled] {
    appearance: none;
}

#cc_options input[disabled]::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: rgba(0, 0, 0, 0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' viewBox='0 -960 960 960' width='48'%3E%3Cpath d='M378-232.434 140.434-470l57.131-57.131L378-346.696l383.435-383.435L818.566-673 378-232.434Z' fill='%23fff'/%3E%3C/svg%3E") center / 14px auto no-repeat;
    border-radius: 2px;
    margin-bottom: -1px;
}

@media screen and (max-width: 560px) {
    #cc_btn_confirm {
        margin: 10px 0;
    }

    .cc_banner-wrapper #cookie-buttons-div {
        height: auto;
    }
}

.cookie_table > tbody {
    vertical-align: top;
}