

















/*
    Hierarchie

    #cookieconsent-banner                                   ## backdrop
        #cookieconsent-banner.cc-dialog                     ## visible / white bg
            #cookieconsent-banner .cc-content               ## content
            #cookieconsent-banner .cc-header                ## header
                #cookieconsent-banner .cc-title             ## h4
                #cookieconsent-banner .cc-text              ## header text
                #cookieconsent-banner .cc-option            ## option + text
                    #cookieconsent-banner .cc-checkbox      ## checkbox + label
                    #cookieconsent-banner .cc-checkbox-text ## description
                #cookieconsent-banner .cc-option            ## option + text
                    #cookieconsent-banner .cc-checkbox      ## checkbox + label
                    #cookieconsent-banner .cc-checkbox-text ## description
                #cookieconsent-banner .cc-footer            ## text
                #cookieconsent-banner .cc-buttons           ## buttons
                #cookieconsent-banner .cc-links             ## links

*/

div#cookieconsent-banner {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647; 
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

/* reset all */
div#cookieconsent-banner * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
    font-family: Arial, Helvetica, Verdana, sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-style: normal;
    vertical-align: baseline;
    border-radius: 0;
    border: none;
    width: auto;
    height: auto;

    position: relative;
    left: 0;
}

div#cookieconsent-banner div.cc-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: calc(100% - 70px);
    width: 680px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    margin: -30px auto 0 auto;
    background-color: transparent;
}

@media screen and (max-width: 700px) {
    div#cookieconsent-banner div.cc-dialog {
        width: calc(100% - 70px);
        min-width: 320px;
    }

    div#cookieconsent-banner .cc-button-accept,
    div#cookieconsent-banner .cc-button-accept-all {
        width: 100%;
    }

    div#cookieconsent-banner div.cc-content {
        padding: 20px;
    }
}

div#cookieconsent-banner div.cc-content {
    border-radius: 11px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    position: relative;
    border: 1px solid rgba(0, 0, 0, .2);
    background-clip: padding-box;
    outline: 0;
    padding: 30px 20px 10px;
    overflow: auto;
    max-height: 97vh;
}

div#cookieconsent-banner h4.cc-title {
    line-height: 20px;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
}

div#cookieconsent-banner div.cc-text {
    padding-bottom: 5px;
    padding-top: 5px;
}

div#cookieconsent-banner div.cc-option {
    margin: 8px 0;
    padding: 2px 0;
}

div#cookieconsent-banner label {
    white-space: normal;
    text-overflow: clip;
    overflow: visible;
}

div#cookieconsent-banner label.cc-checkbox {
    display: flex;
    align-items: center;
    height: 23px;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    padding-left: 32px;
    margin-bottom: 2px;
}


/* Hide the browser's default checkbox */
div#cookieconsent-banner .cc-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* custom checkbox box */
div#cookieconsent-banner .cc-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 23px;
    width: 23px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
div#cookieconsent-banner .cc-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a colored background */
div#cookieconsent-banner .cc-checkbox input:checked ~ .checkmark {
    background-color: #df0000;
}

/* Create the checkmark/indicator (hidden when not checked) */
div#cookieconsent-banner .cc-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
div#cookieconsent-banner .cc-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
div#cookieconsent-banner .cc-checkbox .checkmark:after {
    left: 9px;
    top: 4px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

div#cookieconsent-banner p.cc-checkbox-text {
    max-width: 100%;
    font-size: 14px;
    padding-left: 32px;
}

div#cookieconsent-banner label.disabled {
    cursor: not-allowed;
}

div#cookieconsent-banner a {
    color: #df0000;
    touch-action: manipulation;
    font-weight: 700;
}

div#cookieconsent-banner div.cc-footer {
    padding: 5px 0;
    font-size: 14px;
}

div#cookieconsent-banner .cc-buttons {
    padding: 8px 0;
    text-align: right;
}

div#cookieconsent-banner .cc-links {
    padding: 5px 0 0;
    text-align: right;
}

div#cookieconsent-banner .cc-links a {
    font-size: 12px;
    text-decoration: underline;
    padding: 0 5px;
}

div#cookieconsent-banner .cc-button-accept,
div#cookieconsent-banner .cc-button-accept-all {
    cursor: pointer;
    text-decoration: none;
    margin: 8px 4px 0 0;
    padding: 8px 12px;
    background: 0 0;
    border-radius: 0 !important;
    font-style: normal;
    font-weight: 700;
    transition: 200ms ease all;
}

div#cookieconsent-banner .cc-button-accept,
div#cookieconsent-banner .cc-button-accept-all,
div#cookieconsent-banner .cc-button-accept:hover + .cc-button-accept-all {
    color: #df0000;
    border: 2px solid #df0000;
    background-color: white;
}

div#cookieconsent-banner .cc-button-accept-all,
div#cookieconsent-banner .cc-button-accept:hover {
    color: white;
    background-color: #df0000;
}
