.hku-notice-notify-bar {    
    width:100%;    
    /* top:0%; */
    background-color: #800;
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    height: fit-content;
    height: -moz-max-content;
    max-height: 11.5%;
    border-bottom: 1px solid #A85250;
}
.hku-notice-notify-bar-content {
    width: 88vw;
    display: flex;
    margin-top: 7px;
    margin-bottom: 5px;
    justify-content: center;
    align-items: center;    
}

.hku-notice-status {
    margin: 3px;
    margin-right: 9px;
    min-width: 8px;
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background-color: red;
    justify-self: start;
    display: -webkit-inline-box;
    position: relative;
    top: 1px;
}

.hku-notice-notify-bar span {
    width: fit-content;
    width: -moz-max-content;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;    
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    color: #fff; 
}



.hku-notice-readmore {
    border: 1px solid #fff;
    line-height: 1.5;
    background: #800;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 8px;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
}

.hku-notice-readmore:hover {
    background-color: #fff;
    color: #800 !important;
}

.hku-notice-icon {
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    background-position: 50% 50%;
    position: absolute;
}

.hku-notice-left-arrow {
    background: url('../img/prev.png') no-repeat;
    left: 20px;
    right: auto;    
}

.hku-notice-right-arrow {
    background: url('../img/next.png') no-repeat;
    left: auto;
    right: 45px;   
}

.hku-notice-dismiss {
    background: url('../img/cross.png') no-repeat;
    left: auto;
    right: 10px;   
}


@media only screen and (max-width: 768px) {
    .hku-notice-notify-bar-content{
        width:77vw;
    }

    .hku-notice-notify-bar span, .hku-notice-readmore {
        font-size: 15px;
    }

    .hku-notice-left-arrow, .hku-notice-right-arrow {
        display: none;
    }
}


@media only screen and (max-width: 1295px) {
    .hku-notice-notify-bar span {
        max-width:82%;
    }
}