/* cookies */
#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);
}

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

@media (min-width: 676px){
    #cookie_note.show{
        display: flex;
    }
   #cookie_note .cookie_accept{
      margin: 0.5rem 0.5rem;
      width: auto;
    }
   #cookie_note .cookie_decline{
      margin: 0.5rem 0.5rem;
      width: auto;
    }
}

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