#cookie_note {
    display: none;
    align-items: center;
    position: fixed;
    bottom: 25px;
    left: 50%;
    max-width: 90%;
    transform: translateX(-50%);
    padding: 15px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

#cookie_note p{
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
    color: black;
    line-height: 20px;
}

.cookie_accept{
    width: 100%;
}

.cookie_note_wrapper {
    width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#cookie_note {
    left: 190px;
}

@media (max-width: 575px){
    .cookie_note_wrapper {
        width: unset;
    }
    #cookie_note.show{
        display: block;
        width: 100%;
    }
}