.cookie-banner {
    color: var(--e-global-color-5865318);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    background-color: var(--e-global-color-e64be90);
    padding: 1rem;
    font-size: 0.875rem;
    box-sizing: border-box;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.4;
}

.cookie-banner a {
    padding-left: 0.25rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: inherit;
}

.cookie-banner .actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    font-size: 0.875rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .cookie-banner .actions {
        justify-content: flex-end;
        font-size: 1rem;
    }
}

@media (min-width: 1024px){
    .cookie-banner{ max-width: 50vw; }
}

.cookie-banner button {
    height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: all 0.5s;
    background-color: var(--e-global-color-e64be90);
    color: var(--e-global-color-5865318);
    box-shadow: -1px 1px 0px 0px rgba(0, 0, 0, 0.5);
    border-style: none;
    border-radius: 90px;
}

.cookie-banner button:hover{
    background-color: var(--e-global-color-5865318);
    color: var(--e-global-color-e64be90);
}