#cookie_note{
    z-index: 999;
    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{
    margin: 0;
    font-size: 1.1em;
    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;
    }
}

@media (max-width: 575px) { 
    #cookie_note.show { 
        display: block; 
        text-align: left; 
        position: fixed; 
        bottom: 0px; 
        left: 50%; 
        width: 90%; 
    } 
}


.btn-sm {
    font-size: 1.0em;
    line-height: 2.6em;
    padding: .6em 1.6em;
    color: #191c50;
    background: linear-gradient(-27deg, #c8b38d 0%, #ffe4b2 100%);
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0.2em;
}

.btn-sm:hover {
      opacity: 0.4;
      transition: 0.3s;
  }

