.cookie-banner {
    display: none;
    position: fixed;
    bottom: 1rem;
    z-index: 10;
    left: 1rem;
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    border-radius: 0.375rem;
    background: #fff;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05), 0px 1px 2px 0px rgba(0, 0, 0, 0.12), 0px 4px 8px 0px rgba(4, 27, 58, 0.1);
}

.cookie-banner button {
    border: none;
}

.cookie-banner__header {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-banner__header p {
    color: #000;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.cookie-banner__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.cookie-banner__footer div:last-child {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.cookie-banner__body {
    max-width: 24rem;
    color: #8c8c8c;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
    /* 1.3125rem */
}

.cookie-banner__link {
    color: var(--button-secondary-textColor);
    font-weight: bold;
}

@media only screen and (max-width: 786px) {
    .cookie-banner {
        left: 1rem;
        padding: 0.5rem;
        bottom: 0.2rem;
    }
}