.cookie-consent-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 10000;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1.75rem;
    padding: 1.25rem;
    background: rgba(7, 11, 18, .96);
    color: #fff;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .62);
    backdrop-filter: blur(24px);
}

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

.cookie-consent-banner__accent {
    position: absolute;
    top: 0;
    right: 2rem;
    left: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(69, 184, 255, .8), transparent);
}

.cookie-consent-banner__content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-consent-banner__icon {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 2.5rem;
    align-items: center;
    justify-content: center;
    margin-top: .125rem;
    border: 1px solid rgba(69, 184, 255, .25);
    border-radius: 999px;
    color: #69c6ff;
}

.cookie-consent-banner__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.cookie-consent-banner__copy {
    min-width: 0;
}

.cookie-consent-banner__title {
    margin: 0;
    font-family: Sora, sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.25;
}

.cookie-consent-banner__text {
    margin: .5rem 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: .875rem;
    line-height: 1.5rem;
}

.cookie-consent-banner__actions {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.25rem;
}

.cookie-consent-banner__customize,
.cookie-consent-banner__button {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: "IBM Plex Mono", monospace;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-decoration: none;
}

.cookie-consent-banner__customize {
    order: 3;
    color: rgba(255, 255, 255, .58);
}

.cookie-consent-banner__customize:hover {
    color: #fff;
}

.cookie-consent-banner__button {
    border: 0;
    padding: 0 1.25rem;
    cursor: pointer;
}

.cookie-consent-banner__button--deny {
    order: 2;
    border: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    color: rgba(255, 255, 255, .78);
}

.cookie-consent-banner__button--accept {
    order: 1;
    padding-inline: 1.5rem;
    background: #fff;
    color: #000;
}

@media (min-width: 768px) {
    .cookie-consent-banner {
        right: 1.5rem;
        left: auto;
        width: 540px;
        padding: 1.5rem;
    }

    .cookie-consent-banner__actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .cookie-consent-banner__customize {
        order: 1;
        margin-right: auto;
    }

    .cookie-consent-banner__button--deny {
        order: 2;
    }

    .cookie-consent-banner__button--accept {
        order: 3;
    }
}
