.cookie-notice-consent,
.cookie-notice-consent * {
    box-sizing: border-box;
}

.cookie-notice-consent {
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: smaller;
    color: #fff;
    text-align: center;
}

.cookie-notice-consent__button,
.cookie-notice-consent__categories input,
.cookie-notice-consent__categories label {
    touch-action: manipulation;
    cursor: pointer;
    color: inherit;
}

.cookie-notice-consent__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px 30px;
    animation: fade-in 500ms ease-in-out;
    background-image: linear-gradient(10deg, var(--e-global-color-primary) 50px, var(--e-global-color-7e2f416));
}

.cookie-notice-consent.cookie-notice-consent--hidden {
    display: none;
}

.cookie-notice-consent__text,
.cookie-notice-consent__categories--inline.cookie-notice-consent__categories {
    width: 100%;
}

.cookie-notice-consent__categories--inline .cookie-notice-consent__category {
    display: inline-block;
    margin-right: 20px;
}

.cookie-notice-consent__category-description {
    opacity: .66;
    margin-bottom: 20px;
}

.cookie-notice-consent__categories[hidden],
.cookie-notice-consent__confirm-choice-button[hidden],
.cookie-notice-consent:not(.cookie-notice-consent--configured) .cookie-notice-consent__categories,
.cookie-notice-consent:not(.cookie-notice-consent--configured) .cookie-notice-consent__confirm-choice-button {
    display: none !important;
}

.cookie-notice-consent--configured .cookie-notice-consent__categories {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 12px 0 2px;
}

.cookie-notice-consent--configured .cookie-notice-consent__category {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.cookie-notice-consent__categories input + label {
    display: inline-block;
    padding-left: 10px;
}

.cookie-notice-consent__buttons {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.cookie-notice-consent__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 140px;
    min-height: 38px;
    margin: 0;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

#cookie-notice-consent #cookie-notice-consent__accept-button,
#cookie-notice-consent a#cookie-notice-consent__accept-button {
    border-color: #fff;
    background: #fff;
    color: var(--e-global-color-primary);
}

#cookie-notice-consent__configure-button {
    border-style: dashed;
}

#cookie-notice-consent.cookie-notice-consent--configured #cookie-notice-consent__configure-button {
    display: none;
}

#cookie-notice-consent__confirm-choice-button:not([hidden]) {
    border-color: #fff;
    background: rgba(255,255,255,.16);
}

.cookie-notice-consent__button:hover,
.cookie-notice-consent__button:focus {
    color: #fff;
    background: rgba(255,255,255,.18);
    border-color: #fff;
    box-shadow: none;
    transform: translateY(-1px);
}

#cookie-notice-consent #cookie-notice-consent__accept-button:hover,
#cookie-notice-consent #cookie-notice-consent__accept-button:focus,
#cookie-notice-consent a#cookie-notice-consent__accept-button:hover,
#cookie-notice-consent a#cookie-notice-consent__accept-button:focus {
    color: var(--e-global-color-primary);
    background: rgba(255,255,255,.92);
}

.cookie-notice-consent__button--inline {
    margin-left: 0;
}

.cookie-notice-consent--loading .cookie-notice-consent__container {
    position: relative;
    overflow: hidden;
}

#cookie-notice-consent {
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-items: end;
    min-height: 124px;
    opacity: .9;
}

#cookie-notice-consent.cookie-notice-consent--hidden {
    display: none;
}

#cookie-notice-consent a {
    color: inherit;
}

@media (max-width: 1024px) {
    #cookie-notice-consent {
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    .cookie-notice-consent__container {
        padding: 16px 18px calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-notice-consent__buttons {
        align-items: stretch;
    }

    .cookie-notice-consent__button {
        width: 100%;
        min-width: 0;
    }

    .cookie-notice-consent--configured .cookie-notice-consent__categories {
        align-items: stretch;
    }

    .cookie-notice-consent--configured .cookie-notice-consent__category {
        width: 100%;
        justify-content: center;
    }
}
