div#cookie-note {
    background-color: white;
    color: black;
    box-shadow: 0 0 5px 2px rgba(0,0,0,0.2);
    display: block;
    right: 20px;
    bottom: 20px;
    position: fixed;
    height: auto;
    width: 25em;
    z-index: 1337;
    padding: 10px;
}


 div#cookie-note button{
    display: inline-block;
    color: rgba(0,0,0,1);
    background-color: rgba(255, 255, 255, 0);
    border: solid #fff 4px;
    padding: 12px 45px;
    font-weight: 300;
    font-size: 1.2em;
    color: rgba(255,255,255,1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-align: center;
    width: auto;
    font-family: 'Oswald', sans-serif;
    line-height: 1.2em;
    vertical-align: middle;
}

#cookie-note button:hover {
    background-color: #ffffff;
    opacity: 1;
    color: #090909;
}



#cookie-note a:hover{
    color: #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
}