/** Shopify CDN: Minification failed

Line 165:0 Unexpected "@keyframes"
Line 166:4 Unexpected "0%"
Line 171:4 Unexpected "100%"

**/
.m-scrolling-promotion {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.m-scrolling-promotion--left .m-promotion--animated {
    animation-name: scrolling-left;
}

.m-scrolling-promotion--right .m-promotion--animated {
    animation-name: scrolling-right;
}

.m-scrolling-promotion:hover .m-promotion--animated,
.m-scrolling-promotion--paused .m-promotion--animated {
    animation-play-state: paused;
}

.m-scrolling-promotion-section .container-full {
    padding-left: 0;
    padding-right: 0;
}

.m-promotion {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.m-promotion__item {
    margin: 0 calc(var(--item-gap-mobile) / 2);
    display: flex;
    align-items: center;
}

.m-promotion__item img,
.m-promotion__item svg {
    max-width: 100%;
    width: auto;
    height: calc(var(--image-height) * .75);
}

@media (min-width: 750px) {
    .m-promotion__item img,
    .m-promotion__item svg {
        max-width: 100%;
        height: var(--image-height);
    }
}

@media (min-width: 750px) {
    .m-promotion__item {
        margin: 0 calc(var(--item-gap) / 2);
    }
}

.m-promotion__icon {
    display: inline-flex;
    line-height: 0;
    margin-right: 10px;
    --icon-height: 26px;
}

.m-promotion__icon--small {
    --icon-height: 20px;
}

.m-promotion__icon--large {
    --icon-height: 32px;
}

.m-promotion__icon svg,
.m-promotion__icon img {
    width: auto;
    height: var(--icon-height);
    max-width: var(--icon-height);
    fill: currentColor;
}

.m-promotion__text {
    color: inherit;
    line-height: 1;
    white-space: nowrap;
    font-size: var(--text-size);
    color: rgb(var(--color-foreground));
}

@media screen and (max-width: 767px) {
    .m-promotion__text {
        font-size: calc(var(--text-size) * .75);
    }
}

.m-promotion--animated {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: var(--duration);
    animation-play-state: running;
    width: max-content;
    will-change: transform, width;
}

.m-promotion__item-testimonial {
    width: 300px;
    max-width: 50vw;
}

.m-promotion-testimonial__icon {
    display: flex;
    column-gap: .3rem;
    margin: 0 0 .8rem;
}

.m-promotion-testimonial__image {
    margin: 0 0 2.4rem;
}

@media screen and (max-width: 767px) {
    .m-promotion-testimonial__image {
        margin: 0 0 2rem;
    }
}

.m-promotion-testimonial__inner-bottom {
    margin-top: .8rem;
    gap: .8rem 1.2rem;
}

.m-promotion-testimonial__author {
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.m-promotion-testimonial__bio {
    position: relative;
    z-index: 0;
    color: rgb(var(--color-foreground));
    margin: 0;
    line-height: 1.28;
}

.m-promotion-testimonial__bio:before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 1px;
    left: 0;
    height: 1px;
    width: 100%;
    background: currentColor;
}

/* Keyframe Animations */
---

@keyframes scrolling-left {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }

    100% {
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes scrolling-right {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes scrolling-left-rtl {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }

    100% {
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes scrolling-right-rtl {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}