/* Marquee Structural Styles */
.marquee-wrapper-644d6549 {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
}

.marquee-container-644d6549 {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.marquee-edge-fade-overlay-644d6549 {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.marquee-edge-fade-overlay-644d6549.left {
    left: 0;
}

.marquee-edge-fade-overlay-644d6549.right {
    right: 0;
}

.marquee-content-644d6549 {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-start;
    animation: marquee-scroll-644d6549 20s linear infinite;
    width: max-content;
}

.marquee-pause-hover-yes:hover .marquee-content-644d6549 {
    animation-play-state: paused;
}

.marquee-item-wrapper-644d6549 {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.marquee-text-644d6549 {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.marquee-icon-644d6549 {
    margin: 0; 
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.marquee-icon-644d6549 svg {
    width: 1em;
    height: 1em;
    display: block;
}

@keyframes marquee-scroll-644d6549 {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}