.running-text-lane {
	padding-top: 20px; /* COMMENT THIS WHEN YOU RE-ENABLE THE ANIMATION */
    width: 100%;
    height: var(--this-height);
    overflow: hidden;
    position: relative;
}
.running-text-lane > div {
    width: fit-content;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
}
.running-text-lane > div > div {
    display: inline-block;
    animation-duration: 15s;
/*     animation-name: runningTextLane; */ /* UNCOMMENT THIS TO RE-ENABLE THE ANIMATION */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
/*     padding-left: 100%; */ /* UNCOMMENT THIS TO RE-ENABLE THE ANIMATION */
}
.running-text-lane > div:nth-child(2) > div {
    animation-delay: 7.5s;
}

span[class*="tl-text"] {
    font-size: var(--font-size-m);
    display: inline-block;
    margin-right: 5px;
    position: relative;
}
.tl-text-gray {
    font-weight: 300;
    color: #9c9c9c;
}
.tl-text-gray-bold {
    font-weight: 700;
    color: #9c9c9c;
}
.tl-text-dash {
    width: 10px;
    height: 12px;
    top: -12px;
    position: relative  !important;
    display: inline-block   !important;
    font-size: 0    !important;
}
.tl-text-dash::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 4px;
    width: 10px;
    background-color: #9c9c9c;
}

@keyframes runningTextLane {
    
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
    
}