
#cookie_notification {
    display: none;
    font: 14px 'Montserrat', 'Arial', sans-serif;
    position: fixed;
    z-index: 999;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    color: #000;
    background: #E8EFF5;
}

#cookie_notification.show {
    display: block;
}

#cookie_notification * {
    margin-bottom: 0;
    padding-bottom: 0;
}

#cookie_notification a {
    text-decoration: none;
    color: #FF5722;
}

#cookie_notification a:hover {
    text-decoration: underline;
}

@media (max-width:767px) {
    #cookie_notification {
        text-align: center;
    }
}

#cookie_notification button {
    -webkit-border-radius: 0;
    -webkit-appearance: none;
}

#cookie_notification button {
    display: inline-block;
    height: 28px;
    padding: 0 10px;
    cursor: pointer;
    transition: background .2s linear;
    color: #fff;
    border: none;
    border-radius: 25px;
    background: #FF5722;
    margin: 0 5px;
}

@media (max-width:479px) {
    #cookie_notification button {
        width: 100%;
    }
}