.trust-bar-f0f99793 {
background-color: #000000;
overflow: hidden;
position: relative;
width: 100%;
box-sizing: border-box;
}
.trust-bar-f0f99793::before,
.trust-bar-f0f99793::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
width: 150px;
z-index: 2;
pointer-events: none;
}
.trust-bar-f0f99793::before {
left: 0;
background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.trust-bar-f0f99793::after {
right: 0;
background: linear-gradient(to left, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.trust-bar-track-f0f99793 {
display: flex;
width: max-content;
--scroll-speed: 35s;
animation: trust-bar-scroll-f0f99793 var(--scroll-speed) linear infinite;
will-change: transform;
}
.trust-bar-track-f0f99793:hover {
animation-play-state: paused;
}
.trust-bar-list-f0f99793 {
display: flex;
flex-shrink: 0;
align-items: center;
}
.trust-bar-item-f0f99793 {
display: flex;
align-items: center;
white-space: nowrap;
padding: 0 40px;
font-size: 14px;
color: #ffffff;
font-weight: 500;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
letter-spacing: 0.5px;
}
.trust-bar-accent-f0f99793 {
color: #00C853;
margin-right: 8px;
font-weight: 700;
}
@keyframes trust-bar-scroll-f0f99793 {
0% {
transform: translate3d(0, 0, 0);
}
100% {
transform: translate3d(-50%, 0, 0);
}
}