* {
    box-sizing: border-box;
}

.Marquee {
    padding: 7px 0px;
    color: #fff;
    font-weight: 200;
    display: box;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.Marquee-content {
    display: flex;
    animation: marquee 26s linear infinite running;
}

.Marquee-tag {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 400;
    width: max-content;
    margin: 0 20px;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

@-moz-keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translate(-50%);
    }
}

@-webkit-keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translate(-50%);
    }
}

@-o-keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translate(-50%);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translate(-50%);
    }
}

header .cart-icon {
    line-height: 0;
}

.banner-slider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slider .swiper-pagination span {
    position: relative;
    display: block;
}

.banner-slider .swiper-pagination span {
    opacity: 1;
}

.banner-slider .swiper-pagination span.swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    outline: 2px solid #373636;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}