.cookie_alert {
    display: none;
    position: fixed;
    bottom: 0;
    background: #fff;
    padding: 25px;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 21px 0px rgba(50, 50, 50, 0.49);
    -moz-box-shadow:    0px 0px 21px 0px rgba(50, 50, 50, 0.49);
    box-shadow:         0px 0px 21px 0px rgba(50, 50, 50, 0.49);
    border-radius: 5px 5px 0 0;
    margin: auto;
    left: 0;
    right: 0;
}
.cookie_alert .checkbox input {
    margin-left: 0;
}
.cookie_alert .checkbox {
    margin-bottom: 15px;
}
.cookie_alert .checkbox input, .cookie_alert .checkbox label {
    display: inline-block;
}
.cookie_alert .checkbox label {
    font-weight: bold;
}
.cookie_alert .checkbox label span {
    display: block;
    font-weight: normal;
    font-size: 0.9em;
}
.cookie_alert .accept-btn {
    padding: 1px 10px;
    background: #555;
    color: #fff;
    font-size: 1.125em;
    font-weight: 400;
    line-height: 2.111em;
    border: 0;
    height: 2.222em;
    margin: 0 auto;
    transition: all 300ms ease-in-out;
}
.cookie_alert .accept-btn.highlighted {
    background: #8f1b1c;
}
.cookie_alert .accept-btn:hover {
    opacity: 0.7;
}
.cookie_alert .accept-btn:disabled {
    opacity: 0.3;
}
.cookie_alert .button-block {
    text-align: right;
}