







#header-cookie-bar {
    position: relative;
    z-index: 212;
    background-color: #eee;
    font-size: 12px;
}
#header-cookie-bar .header-cookie-bar-wrapper {
    display: flex;
    align-items: center;
    margin: 10px 0 10px 0;
}
#header-cookie-bar .header-cookie-bar-text {
    margin-right: 20px;
    padding-right: 15px;
    width: 100%;
    border-right: 1px solid #ccc;
}
#header-cookie-bar .header-cookie-close {
    display: block;
    width: 30px;
    height: 30px;
    color: #666;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}
#header-cookie-bar .header-cookie-close:hover {
    color: #000;
}
#header-cookie-bar .header-cookie-close:before {
    display: block;
    content: "␡";
    font-family: "SS BlackTie-Light";
}


#header-cookie-bar a {
    text-decoration: underline;
}
#header-cookie-bar .header-cookie-bar-text p {
    display: inline;
    margin: 0;
}
#header-cookie-bar .header-cookie-bar-text a.cookie-agree {
    cursor: pointer;
}



/**
 * 11.0 - Media Queries
 */


/**
 * 11.3 - <= 900px
 */

@media screen and (max-width: 900px) {

    #header-cookie-bar {
        position: fixed;
        bottom: 0;
        background-color: rgba(230,230,230,0.95);
    }
    #header-cookie-bar .header-cookie-bar-wrapper {
        margin: 20px 0 20px 0;
    }
    #header-cookie-bar .header-cookie-bar-text {
        color: #333;
    }

}


/**
 * 11.4 - <= 480px
 */

@media screen and (max-width: 480px) {

    #header-cookie-bar .header-cookie-bar-wrapper {
        margin: 10px 0 10px 0;
    }
    #header-cookie-bar .header-cookie-bar-text {
        margin-right: 10px;
        padding-right: 10px;
        font-size: 11px;
    }
    #header-cookie-bar .header-cookie-close {
        width: 20px;
        height: 20px;
        line-height: 20px;
    }

}