.cookies_wrapper{
    position: fixed;
    bottom: 30px;
    left:0;
    right: 0;
    transform: translateY(250%);
    z-index: 1000;
}

.cookies_wrapper[aria-hidden="false"] {
    pointer-events: auto; /* Enables interaction when visible */
}

.cookie_container{
    display: flex;
    font-size: 12px;
    font-weight: 300;
    gap:20px;
    background-color: var(--white);
    padding: 5px 10px;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie_container button{
    border: none;
    color: var(--white);
    background-color: var(--primary);
    padding: 10px 20px;
    width: 7rem;
    cursor: pointer;
}

.slide_in{
    animation: slideIn 0.5s forwards;
}

.slide_out{
    animation: slideOut 0.5s forwards;
}

/* Animation for showing the banner */
@keyframes slideIn {
    from {
        transform: translateY(250%);
    }
    to {
        transform: translateY(0);
    }
}

/* Animation for hiding the banner */
@keyframes slideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(250%);
    }
}
