#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);
    z-index: 10000;
}

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

#cookie_note a {
    color: #3c8a78;
}

.cookie_accept{
    width:20%;
    background: #3c8a78;
    padding: 10px 38px;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    background-color: #3c8a78;
    border: 1px solid #3c8a78;
    outline: none;
    cursor: pointer;
    transition: .5s;
    height: 42px;
    min-width: 160px;
    border-radius: 0px;

}
@media (min-width: 576px){
    #cookie_note.show{
        display: flex;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 575px){
    #cookie_note.show{
        display: block;
        text-align: left;
    }
}
