.hbnt-wrapper {
    width: 100%;
}

.hbnt-ticker {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.hbnt-label {
    background: #000;
    color: #fff;
    padding: 11px 28px;
    margin-right: 15px;
    white-space: nowrap;
    font-weight: bold;
z-index: 99 !important;
}



.hbnt-list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    animation: hbnt-scroll 20s linear infinite; /* speed is controlled by 80s */
}

@keyframes hbnt-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* full scroll of the duplicated list */
}

.hbnt-list li {
    display: flex;
    align-items: center;
    margin-right: 40px;
    white-space: nowrap;
}

.hbnt-list .hbnt-icon {
    margin-right: 8px;
}

.hbnt-list a {
    color: #000;
    text-decoration: none;
}

