.creator-lms-page {
    .creator-lms-progressbar {
        .progressbar-title {
            color: var(--creator-lms-heading-color);
            font-size: 14px;
            font-weight: 500;
            line-height: 1;
            display: flex;
            flex-flow: row wrap;
            gap: 10px;
            justify-content: space-between;
            margin-bottom: 6px;

            span:first-child {
                width: calc(100% - 70px);
            }

            span:last-child {
                font-size: 16px;
                font-weight: 700;
            }

        }

        .creator-lms-progressbar-outer {
            width: 100%;
            height: 6px;
            display: block;
            border-radius: 100px;
            background: #EAEDF4;
            position: relative;
        }
        .creator-lms-progressbar-inner {
            height: 100%;
            background-color: var(--creator-lms-progressbar-color);
            display: block;
            border-radius: 100px;
            transition: width 0.3s linear;
        }
    }

    .creator-lms-circle-progressbar {
        position: relative;

        .circle-progress-svg {
            display: block;
            margin: 0 auto;
        }

        .circle-background {
            fill: none;
            background: transparent;
        }

        .circle-progress {
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .percent-text {
            color: var(--creator-lms-heading-color);
            font-size: 24px;
            font-weight: 500;
            line-height: 14px;
            position: absolute;
            top: 49px;
            left: 50%;
            transform: translateX(-50%);
        }

        .progressbar-title {
            text-align: center;
            color: var(--creator-lms-heading-color);
            font-size: 14px;
            font-weight: 500;
            line-height: 1.2;
            margin-top: 18px;
        }
    }
}


@media screen and (max-width: 1199px) {
    .creator-lms-page .creator-lms-circle-progressbar .percent-text {
        font-size: 20px;
    }
    .creator-lms-page .creator-lms-circle-progressbar .progressbar-title {
        margin-top: 10px;
    }
}