.cookie-consent {
    position: fixed;
    bottom: 32px;
    left: 32px;
    max-width: 600px;
    right: 0;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 1);
    color: var(--text-color);
    z-index: 1000;
    overflow: hidden;
}

@media screen and (max-width: 1140px) {
    .cookie-consent {
        left: 0;
        bottom: 0;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        z-index: 10000000000000;
        border-radius: 0 !important;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .cookie-consent__buttons {
        flex-wrap: wrap;
        justify-content: center !important;
        align-items: center;
        gap: 1rem;
    }
}

.cookie-consent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--sidebar-background);
    z-index: -1;
}

.cookie-consent__buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: left;
    gap: 1rem;
}

.cookie-consent button {
    background-color: var(--color-primary) !important;
    color: var(--color-secondary) !important;
    font-family: var(--buttonsfont);
    border: none;
    height: 52px;
}