.thpm_marquee {
    overflow: hidden;
    position: relative;
	padding-bottom: 5px;
	padding-top: 5px;
}

.thpm-track {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
}

.thpm-track.pause-on-hover:hover {
    animation-play-state: paused;
}

/* LEFT scroll */
.thpm-track.left {
	display: inline-block;
    padding-left: 100%; /* Push initial text to the far right edge */
    animation: scroll-left linear infinite;
}

/* RIGHT scroll */
.thpm-track.right {
    animation: scroll-right linear infinite;
}

/* START IMMEDIATELY VISIBLE */
@keyframes scroll-left {
    0%   { transform: translateX(5%); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}