.cookie__notification {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 8px;
    left: 50%;
    width: 900px;
    max-width: 85vw;
    transform: translateX(-50%);
    padding: 15px;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid white;
    box-shadow: 2px 3px 10px rgb(0 0 0 / 40%);
    font-size: 12px;
    z-index: 10;
}

@media (min-width: 576px) {
    .cookie__notification {
        display: none;
        flex-direction: row;
        align-items: flex-start;
    }
}



.cookie__notification p {
    font-size: 16px;
    margin: 0;
    text-align: left;
    color: var(--almost-black);
    width: 600px;
    max-width: 80vw;
}

.button__cookie {
    margin-left: 25px;
}

@media (max-width: 576px) {
    .button__cookie {
        width: 100% !important;
        margin-top: 10px;
        margin-left: 0;
    }
}
