.kel-marquee-v2 {
    --sky: #6fc4ff;
    position: relative;
    width: 100%;
    height: 68px;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.kel-marquee-v2-track {
    position: absolute;
    left: 0;
    top: 50%;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: max-content !important;
    max-width: none !important;
    gap: 0 !important;
    will-change: transform;
    direction: ltr;
}

.kel-marquee-v2-set {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    width: max-content !important;
    max-width: none !important;
    gap: 22px;
    padding-left: 22px;
    box-sizing: border-box;
    direction: rtl;
}

.kel-marquee-v2-set span {
    display: block;
    flex: 0 0 auto !important;
    white-space: nowrap;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    direction: rtl;
}

.kel-marquee-v2-set i {
    display: block;
    width: 7px;
    height: 7px;
    min-width: 7px;
    flex: 0 0 7px !important;
    border-radius: 50%;
    background: var(--sky);
    box-shadow:
        0 0 5px var(--sky),
        0 0 11px rgba(111,196,255,.8),
        0 0 19px rgba(111,196,255,.35);
}

.kel-marquee-v2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to right, rgba(7,56,115,1), rgba(7,56,115,0));
}

.kel-marquee-v2::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(to left, rgba(7,56,115,1), rgba(7,56,115,0));
}

@media (max-width: 767px) {
    .kel-marquee-v2 {
        height: 56px;
    }
    .kel-marquee-v2-set {
        gap: 16px;
        padding-left: 16px;
    }
    .kel-marquee-v2-set span {
        font-size: 15px;
    }
    .kel-marquee-v2-set i {
        width: 6px;
        height: 6px;
        min-width: 6px;
        flex-basis: 6px !important;
    }
    .kel-marquee-v2::before,
    .kel-marquee-v2::after {
        width: 35px;
    }
}
