
#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;

    max-width: 80%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 0;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    gap: 20px;
}

#cookie_note p {
    margin: 0;
    font-size: 15px;
    text-align: left;
    color: #838383;
}

.cookie_accept {
    min-width: 140px;
    height: 40px;
    align-self: center;
}

@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}
@media (max-width: 1600px){
    #cookie_note {
        width: 90%;
    }
}
@media (max-width: 992px){
    #cookie_note {
        width: 90%;
    }
}
@media (max-width: 767px){
    #cookie_note.show{
        display: block;
        text-align: center;
    }
    .cookie_accept{
        margin-top: 20px;
    }

    #cookie_note {
        width: 95%;
    }
}

@media (max-width: 576px){
    #cookie_note.show{
        display: block;
        text-align: center;
    }
    #cookie_note {
        width: 95%;
    }
}
