.button {
  border: none; /* Remove borders */
  color: white; /* Add a text color */
  padding: 10px 10px 10px 10px; /* Add some padding */
  cursor: pointer; /* Add a pointer cursor on mouse-over */
  font-size: 0.8rem;
  text-align: center; 
  font-weight: bold;
  margin-left: 10px;
}

.success {background-color: #04AA6D;} /* Green */
.success:hover {background-color: #46a049;}

#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 span{
    margin: 0;
    font-size: 0.8rem;
    text-align: left;
    color: black;
}

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

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