﻿.CookieContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    pointer-events: none;
    z-index: 2147483647;
}

    /* Banner */
    .CookieContainer .CookieConsent {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 100%;
        width: 100%;
        pointer-events: none;
    }

        .CookieContainer .CookieConsent .CookieConsentOverlay {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: rgba(0, 0, 0, .5);
            pointer-events: all;
        }

        .CookieContainer .CookieConsent .CookieConsentContainer {
            box-sizing: border-box;
            position: fixed;
            display: block;
            bottom: 0;
            left: 50%;
            width: 100%;
            padding: 20px 35px;
            transform: translateX(-50%);
            background: #fff;
            border-radius: 35px 35px 0 0;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .16);
            pointer-events: all;
        }

@media screen and (min-width: 992px) {
    .CookieContainer .CookieConsent .CookieConsentContainer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 1500px;
        max-width: calc(100% - 30px);
        border-radius: 50px 50px 0 0;
    }
}

.CookieContainer .CookieConsent .ConsentText {
    box-sizing: border-box;
    padding: 0;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
}

@media screen and (min-width: 992px) {
    .CookieContainer .CookieConsent .ConsentText {
        line-height: 1.4;
    }
}

@media screen and (min-width: 1500px) {
    .CookieContainer .CookieConsent .ConsentText {
        padding: 0 125px;
    }
}

.CookieContainer .CookieConsent .ConsentButtons {
    display: flex;
    justify-content: center;
    height: 45px;
    width: 100%;
    margin-top: 10px;
}

@media screen and (min-width: 1500px) {
    .CookieContainer .CookieConsent .ConsentButtons {
        display: flex;
        justify-content: flex-end;
        margin-top: 0;
    }
}

.CookieContainer .CookieConsent .ConsentButtons .ConsentButton {
    height: 45px;
    width: 50%;
    padding: 0 25px;
    background: transparent;
    border: none;
    font-size: .9rem;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .CookieContainer .CookieConsent .ConsentButtons .ConsentButton {
        width: auto;
        padding: 0 50px;
    }
}

.CookieContainer .CookieConsent .ConsentButtons .ConsentButton:last-child {
    background: var(--primary-color);
    border-radius: 10px;
    color: var(--primary-highcontrast-color);
    font-weight: 700;
    text-decoration: none;
}

/* Popup */
.CookieContainer .ConsentPopup {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

    .CookieContainer .ConsentPopup .ConsentPopupOverlay {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, .5);
        pointer-events: all;
    }

    .CookieContainer .ConsentPopup .ConsentPopupContainer {
        box-sizing: border-box;
        position: fixed;
        display: flex;
        flex-direction: column;
        top: 50%;
        left: 50%;
        height: 750px;
        max-height: calc(100vh - 30px);
        width: 875px;
        max-width: calc(100vw - 30px);
        transform: translate(-50%, -50%);
        background: #fff;
        border-radius: 35px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .16);
        pointer-events: all;
    }

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer {
        flex-direction: row;
        border-radius: 50px;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupClose {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    height: 30px;
    width: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='414.667' viewBox='0 0 311 311.077' width='414.667'%3E%3Cpath d='M16.035 311.078c-4.098 0-8.195-1.559-11.309-4.695-6.25-6.25-6.25-16.383 0-22.633L283.789 4.688c6.25-6.25 16.383-6.25 22.633 0s6.25 16.383 0 22.637L27.363 306.383c-3.137 3.117-7.234 4.695-11.328 4.695zm0 0'/%3E%3Cpath d='M295.117 311.078c-4.098 0-8.191-1.559-11.309-4.695L4.727 27.324c-6.25-6.254-6.25-16.387 0-22.637s16.383-6.25 22.637 0L306.422 283.75c6.25 6.25 6.25 16.383 0 22.633-3.137 3.117-7.23 4.695-11.305 4.695zm0 0'/%3E%3C/svg%3E") no-repeat center center/15px 15px;
    border: none;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupClose {
        top: 23px;
        right: 23px;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 15px;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu {
        flex: 0 0 275px;
        padding: 60px 30px;
        border-right: 1px solid #d8d8d8;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu > svg {
    order: 1;
    height: auto;
    width: 120px;
    margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu > svg {
        order: 2;
        width: 140px;
        margin-bottom: 0;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu > ul {
    order: 2;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu > ul {
        order: 1;
    }

    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu > ul > li {
        display: block;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu > ul > li > .button {
    display: block;
    width: 100%;
    padding: 10px 30px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d8d8d8;
    color: #000;
    line-height: 1.1;
    text-align: left;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu > ul > li > .button {
        padding: 10px;
        margin-bottom: 25px;
        border-bottom: none;
        text-align: center;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu > ul > li > .button.active {
    background: var(--primary-color);
    border-bottom: none;
    outline: none;
    color: var(--primary-highcontrast-color);
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupMenu > ul > li > .button.active {
        border-radius: 12px;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 0 30px 30px;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails {
        padding: 30px;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsTitle {
    box-sizing: border-box;
    padding-bottom: 10px;
    margin: 0;
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsTitle {
        padding-bottom: 30px;
        font-size: 1.6rem;
        text-align: center;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea {
    display: none;
    flex-direction: column;
    flex: 1 1 auto;
}

    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea.active {
        display: flex;
    }

    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsLabel {
        box-sizing: border-box;
        padding-bottom: 10px;
        margin: 0;
        color: #000;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.1;
    }

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsLabel {
        padding-bottom: 30px;
        font-size: 1.2rem;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsText {
    box-sizing: border-box;
    position: relative;
    flex: 1 1 auto;
    padding-bottom: 30px;
    margin: 0;
    border-bottom: 1px solid #d8d8d8;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsText {
        border-bottom: none;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsText span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #707070;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    overflow-y: auto;
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCheckbox {
    box-sizing: border-box;
    padding-top: 15px;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCheckbox {
        min-height: 68px;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCheckbox.NoCheckbox > span {
    display: block;
    color: #26871C;
    font-weight: 600;
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCheckbox input[type=checkbox] {
    display: none;
}

    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCheckbox input[type=checkbox] + span {
        display: inline-block;
        position: relative;
        padding-left: 60px;
        line-height: 24px;
        vertical-align: top;
    }

        .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCheckbox input[type=checkbox] + span:before {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 5px;
            height: 24px;
            width: 46px;
            background: #111;
            border-radius: 17px;
            transition: all 275ms ease;
            cursor: pointer;
        }

    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCheckbox input[type=checkbox]:checked + span:before {
        background: var(--primary-color);
    }

    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCheckbox input[type=checkbox] + span:after {
        content: '';
        display: block;
        position: absolute;
        top: 2px;
        left: 7px;
        height: 20px;
        width: 20px;
        background: #fff;
        border-radius: 15px;
        transition: all 175ms ease;
        cursor: pointer;
    }

    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCheckbox input[type=checkbox]:checked + span:after {
        left: 29px;
        background: var(--primary-highcontrast-color);
    }

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCookies {
    box-sizing: border-box;
    font-weight: 600;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCookies {
        padding-top: 10px;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCookies span {
    display: inline-block;
    font-size: .9rem;
    font-weight: 400;
    vertical-align: top;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCookies span {
        font-size: 1rem;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCookies strong {
    display: block;
}

    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsArea .ConsentPopupDetailsCookies strong span {
        font-weight: 600;
    }

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsFooter {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsFooter {
        flex-direction: row;
        padding: 15px 0;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsFooter .ConsentButton {
    padding: 0 10px;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    line-height: 45px;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsFooter .ConsentButton {
        padding: 0 30px;
        line-height: 55px;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsFooter .ConsentButton:last-child {
    background: var(--primary-color);
    border-radius: 12px;
    color: var(--primary-highcontrast-color);
    font-weight: 400;
}

@media screen and (min-width: 992px) {
    .CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsFooter .ConsentButton:last-child {
        margin-right: 30px;
    }
}

.CookieContainer .ConsentPopup .ConsentPopupContainer .ConsentPopupDetails .ConsentPopupDetailsAlert {
    display: block;
    padding: 5px 0;
    font-size: .85rem;
    color: #707070;
}

#funcAlert {
    display: none;
}
