.consent-banner {
    border: unset;
    padding: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 9999;
}

.consent-banner--customization-mode.consent-banner {
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.consent-banner__inner {
    position: fixed;
    background-color: #1f1f1f;
    color: #fff;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem;
    font-size: 0.8rem;
    pointer-events: auto;
}

.consent-banner--customization-mode .consent-banner__inner {
    width: 100%;
    bottom: 50%;
    right: 0;
    transform: translateX(0) translateY(50%);
}

@media (min-width: 576px) {
    .consent-banner__inner {
        bottom: 2.5rem;
        right: 2.5rem;
        width: 30rem;
        max-width: calc(100% - 5rem);
    }

    .consent-banner--customization-mode .consent-banner__inner {
        width: 35rem;
        right: 50%;
        transform: translateX(50%) translateY(50%);
    }
}

.consent-banner__btn-group {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.consent-banner__btn-group .consent-banner__btn-item {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0.5rem;
}

.consent-banner__btn {
    font-size: 1em;
}

.consent-banner__btn--hide {
    display: block;
    margin-left: auto;
    margin-bottom: 1.5rem;
}

.consent-banner__text a {
    color: currentColor;
}

.consent-banner__label {
    font-weight: 700;
}

.consent-banner__legal-links {
    padding-top: 1.5rem;
}

.consent-banner__legal-link {
    color: currentColor;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.consent-banner__legal-link:first-child {
    padding-left: 0;
}

.consent-banner__legal-link:last-child {
    padding-right: 0;
}

.consent-banner__row {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.consent-banner__row:first-child {
    padding-top: 0;
}

.consent-banner__row:last-child {
    padding-bottom: 0;
}

.consent-banner__normal {
    display: block;
}

.consent-banner--customization-mode .consent-banner__normal {
    display: none;
}

.consent-banner__customization {
    display: none;
}

.consent-banner--customization-mode .consent-banner__customization {
    display: block;
}

.consent-banner-reopen-btn {
    background-color: transparent;
    color: inherit;
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    line-height: inherit;
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    border: none;
}
