.hbnt-wrapper {
    width: 100%;
}

.hbnt-ticker {
    background: #ffffff;
    color: #000000;

    display: flex;
    overflow: hidden;
    align-items: center;
}
.hbnt-label {
    background: #000000;
    padding: 11px 28px;
    margin-right: 15px;
    white-space: nowrap;
    font-weight: bold;
    z-index: 99;
    font-size: 16px;
    color: white;
}

.hbnt-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    animation: hbnt-scroll 18s linear infinite;
}

.hbnt-list li {
    margin-right: 40px;
    white-space: nowrap;
}

.hbnt-list a {
    color: #000000;
    text-decoration: none;
}

@keyframes hbnt-scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}
