/* News state is scoped to the top navigation and works on every page. */
#h-bar .au-news-bell-wrap {
    display: inline-block;
    float: right;
    margin: 1px 0 0 2.5%;
    vertical-align: middle;
}
#h-bar .au-news-bell {
    align-items: center;
    border-radius: 15px;
    color: #808b90;
    display: inline-flex;
    gap: 5px;
    padding: 3px 7px;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}
#h-bar .au-news-bell:hover,
#h-bar .au-news-bell:focus {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}
#h-bar .au-news-bell.is-unread {
    color: #ff5b55;
    font-weight: bold;
}
#h-bar .au-news-bell-dot {
    display: none;
    float: none;
    margin: 0;
    padding: 0;
}
#h-bar .au-news-bell.is-unread .au-news-bell-dot {
    background: #ed3838;
    border: 1px solid #fff;
    border-radius: 50%;
    display: block;
    float: none;
    height: 8px;
    position: absolute;
    right: 2px;
    top: 0;
    width: 8px;
}
#h-bar .au-news-bell svg {
    display: inline-block;
    flex: none;
}
#h-bar .au-news-bell-label {
    display: inline;
    float: none;
    font-size: 12px;
    margin: 0;
    padding: 0;
}
@media (max-width: 700px) {
    #h-bar .au-news-bell-label { display: none; }
}
