#elb-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 99999;
    display: flex;
    align-items: stretch;
    height: 38px;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    font-size: 14px;
    font-family: inherit;
}

#elb-banner[hidden] { display: none; }

.elb-marquee-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.elb-marquee {
    position: absolute;
    top: 0;
    left: 100%;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    height: 100%;
    will-change: left;
}

.elb-event {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 100px 0 0;
    font-weight: 500;
}

.elb-sep {
    display: inline-block;
    margin-right: 100px;
    opacity: .5;
    font-size: 10px;
}

.elb-event-link {
    font-weight: 700;
    text-decoration: underline;
    opacity: .9;
    color: inherit;
}
.elb-event-link:hover { opacity: 1; }

.elb-close {
    flex-shrink: 0;
    background: rgba(0,0,0,.15);
    border: none;
    border-left: 1px solid rgba(255,255,255,.2);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0 14px;
    opacity: .85;
    color: inherit;
    display: flex;
    align-items: center;
    transition: background .15s;
}
.elb-close:hover {
    background: #ea3718;
    opacity: 1;
}
