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

#cookie_note p{
    margin: 0;
    font-size: 0.7rem;
    text-align: left;
    color: black;
}

#cookie_note a{
    color: #53c5e2;
    text-decoration: underline;
}

.cookie_accept{
    width:20%;
    background-color: #53c5e2;
    border: none;
    height: 30px;
}

.btn:hover {
    background-color: #39bcff;
}

@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: block;
        text-align: center;
        margin-bottom: 50px;
        width: 250px;
    }
    .btn {
        width: 80px;
    }
    ._show p {
        padding-bottom: 10px;
    }
}