#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.9);
    font-size: 12px;

    max-height:100%;
    z-index:2147483647;
    width:100%;
    max-width:100%;
    overflow:auto;
}
.cookie-consent-heading {
    color:#fff;
    margin:5px auto;
    font-size:16px;
    font-weight:bold;
}
.cookie-consent-selection {
    padding-left:10px;
    margin:10px auto 0;
    display:inline-block;
    font-size:16px;
}
.cookie-consent-selection > span {
    white-space: nowrap;
}
.cookie-consent-selection input {
    margin:0;
    vertical-align: middle;
}
.cookie-consent-selection label {
    display:inline-block;
    margin-right:20px;
    color:#fff;
    font-size:12px;
}
.cookie-consent-access {
    margin-top:15px;
    margin-bottom:10px;
    float:right;
}
.cookie-consent-privacy {
    margin:10px auto;
}
.cookie-consent-privacy a {
    color:steelblue;
}

#cookie-consent-more {
    margin-top:10px;
    font-weight:bold;
    color:steelblue;
    cursor:pointer;
}

.cookie-consent-heading,
.cookie-consent-description,
.cookie-consent-access {
    padding:0 10px 0 5px;
}
.cookie-consent-description {
    overflow:auto;
    max-height:320px;
}
.cookie-consent-description .cookie-consent-heading {
    padding:0;
}
#cookie-consent-more-note.consent-note-opened {
    /* visible */
    max-height: 320px;
    transition: max-height 0.4s ease-in;
}
#cookie-consent-more-note.consent-note-closed {
    /* completely offscreen */
    max-height: 0;
    transition: max-height 0.4s ease-out;
    overflow: hidden;
}
.cookie-consent-access .btn {
    font-size:12px;
}
.cookie-consent-access .btn-default {
    background-image:none;
    background-color:transparent;
    text-shadow:none;
    color:#fff;
    border-color:#808080;
}
.cookie-consent-access .btn-default:hover {
    border-color:#606060;
}
.cookie-consent-access .btn-success {
    margin-left:10px;
}
.btn-cookie-selected {
    background-color:transparent;
    border:0;
    color:#eee;
}