.tss-header-banner {
    background-color: #0c0d1f;
    height: 40px;
    text-align: center;
    width: 750px;
}

.banner-text {
    display: inline-block;
    margin-right: 3px;
    color: white;
}

#header a.banner-cta {
    display: inline-block;
    color: #e9bc40;
    text-decoration: underline;
}

.banner-container {
    position: relative;
    height: 100%;
}

.banner-item {
    position: absolute;
    top: -1px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.banner-item.active {
    opacity: 1;
    pointer-events: auto;
}