#alert-box {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    /*height:42px;*/
    /*padding:10px 0px;*/
    background: white;
    z-index: 5000;
    display: none;
    transition: all 1s;
}

#alert-box.active {
    display: block;
}

#alert-box .banner-content {
    margin: 0px;
    margin-left: 25px;
    margin-right: 215px;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0;
    font-family: Rooney-Light;
    color: #6d6e71;
    font-size: 16px;
    line-height: 1.5em;
    padding:15px 0px;
    /*margin: 0 0 15px;*/
}

#alert-box .banner-content a {
    color: #e46b2d;
}


.accept-cookies-button {
    background-color: #e46b2d;
    border: 1px solid #e46b2d;
    padding: 8px 18px;
    font-size: 9pt;
    /*font-weight: bold;*/
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -16px;
    color: white;
    font-family: gilroybold;
}

@media(max-width: 766px) {
    #alert-box .banner-content {
        margin: 0 auto;
        font-size: 1.3em;
        width: 100%;
        max-width: 95%;
    }

    .accept-cookies-button {
        top: auto;
        right: auto;
        position: relative;
        margin: 0px;
    }
}