#cookie_note{
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 60%;
    transform: translateX(-50%);
    padding: 20px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p{
    margin: 0;
    font-size: 14px;
    text-align: left;
    color: black;
    padding-right: 20px;
}
#cookie_note.showes{
        display: block;
        text-align: left;
        z-index: 99999;
    }
.cookie_accept{
    width:20%;
    min-width: fit-content;
}
.cookie_note a{
	background: #eaeaea;
    border: 1px solid #eaeaea;
    margin-right: 20px;
    display: inline-block;
    color: #333;
}
@media (min-width: 576px){
    #cookie_note.showes{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
@media (max-width: 575px){
    #cookie_note.showes{
        max-width: 100%;
        transform: unset;
        left: 0;
        bottom: 0;
    }
}