@charset "utf-8";

.swiper-wrapper-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 80px 20px 0;

    .swiper-slogan-carousel {
        width: 100%;

        .swiper-slide {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            text-align: left;
            font-size: 48px;
            font-weight: 700;
            line-height: 120%;
            min-height: 120px;
            /*min-height: unset;*/
            /*height: 100%;*/
        }
    }

    .clamp-text {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        color: #fff;
    }

    .progress-container {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
        width: 33.333%;
        justify-content: flex-start;

        .slide-number,
        .slide-sub-number {
            font-size: 13px;
            font-weight: 700;
            min-width: 28px;
            text-align: center;
        }

        .slide-number {
            color: #ffffff;
        }

        .slide-sub-number {
            color: #dadada;
        }

        .progress-bar {
            flex: 1;
            height: 4px;
            background-color: #dadada;
            border-radius: 2px;
            overflow: hidden;
            position: relative;

            .progress-fill {
                height: 100%;
                width: 100%;
                background-color: #2C9198;
                transform-origin: left;
                animation: progress-animation 3s linear infinite;
            }
        }

        .toggle-button {
            font-size: 16px;
            line-height: 100%;
            border: none;
            background: transparent;
            color: #ffffff;
            cursor: pointer;
        }
    }

    @keyframes progress-animation {
        0% {
            transform: scaleX(0);
        }
        100% {
            transform: scaleX(1);
        }
    }
}
