/* Office Closure Notice */
.office-banner { 
    position: fixed;
    bottom: 27px;
    width: 100%;
    padding: 5px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(37, 37, 37, 0.94);
    z-index: 9999;
    color: #ffffff;
    font-family: inherit;
}
.office-banner > p {
    color: #ffffff;
    padding: 25px 10px;
    font-weight: 400;
    margin-bottom: 0 !important;
    font-size: 16px;
    line-height: 100%;
}
.office-banner .close {
    background-color: #000;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 2px;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 14px;
}
.office-banner > p .title {
    text-decoration: underline;
    font-weight: 500;
    text-transform: uppercase;
}   
.office-banner > p .pr-1,
.office-banner > p .pr-2,
.office-banner > p .pr-3,
.office-banner > p .pr-4 {
    display: block;
    padding: 5px 0;
}  
.office-banner > p .pr-4 a {
    color: #ffffff;
    text-decoration: underline;
}

@media only screen and (max-width: 813px) {
    .office-banner > p {
        max-height: 200px;
        overflow-y: scroll;
    }
    .office-banner > p:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 60px;
        background: -webkit-gradient(linear,left top,left bottom,from(rgba(199, 199, 199, 0.02)),to(#717171));
        background: linear-gradient(180deg,rgba(199,199,199,0) 0.2%,#717171 100%);
    }
}