.cmp-container {
    border: 2px solid #2A5788;
    border-radius: 4px;
    padding: 16px;
}

.cmp-title {
    color: #2A5788;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
}

.cmp-subtitle {
    color: #516583;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cmp-description {
    color: #516583;
    margin: 0 0 18px;
}

.cmp-widget {
    display: grid;
    gap: 16px;
}

.cmp-card {
    background-color: #E3E8EE;
    border-radius: 4px;
    color: #516583;
    padding: 16px;
}

.cmp-card-header {
    margin-bottom: 12px;
}

.cmp-card-label {
    color: #2A5788;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.cmp-course-title,
.cmp-current-title {
    color: #2A5788;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.cmp-progress-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.cmp-stat-box {
    background-color: #FFFFFF;
    border-radius: 4px;
    display: flex;
    flex: 0 1 auto;
    flex-direction: column;
    gap: 3px;
    justify-content: flex-start;
    max-height: 100px;
    min-width: 0;
    overflow: hidden;
    padding: 8px 10px;
    width: auto;
}

.cmp-stat-label {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.cmp-stat-value {
    color: #2A5788;
    font-size: 18px;
    line-height: 1.1;
}

.cmp-stat-subvalue {
    color: #516583;
    font-size: 12px;
    line-height: 1.15;
}

.cmp-stat-meter {
    line-height: 0;
    margin-top: 4px;
}

.cmp-progress-bar {
    background-color: #A9A9AD;
    border-radius: 6px;
    height: 14px;
    overflow: hidden;
    width: 100%;
}

.cmp-progress-bar-fill {
    background-color: #97D312;
    height: 100%;
}

.cmp-progress-description {
    margin-top: 10px;
}

.cmp-current-meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.cmp-current-hint {
    margin: 0 0 12px;
}

.cmp-type-tag {
    background-color: #FFFFFF;
    border-radius: 999px;
    color: #2A5788;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
}

.cmp-status {
    border-radius: 999px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
}

.cmp-status-completed {
    background-color: #63B563;
}

.cmp-status-in-progress {
    background-color: #2A5788;
}

.cmp-status-not-started,
.cmp-status-failed {
    background-color: #EA4052;
}

.cmp-primary-link,
.cmp-secondary-link,
.cmp-module-link {
    color: #2A5788;
    font-weight: 700;
    text-decoration: underline;
}

.cmp-primary-link {
    display: inline-block;
}

.cmp-success-box,
.cmp-message-box {
    background-color: #FFFFFF;
    border-left: 4px solid #63B563;
    border-radius: 4px;
    padding: 12px;
}

.cmp-message-box {
    border-left-color: #2A5788;
}

.cmp-accordion-toggle {
    align-items: center;
    background: transparent;
    border: none;
    color: #516583;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 0;
    text-align: left;
    width: 100%;
}

.cmp-accordion-title {
    color: #2A5788;
    font-size: 18px;
    font-weight: 700;
}

.cmp-accordion-count {
    background-color: #FFFFFF;
    border-radius: 999px;
    font-weight: 700;
    padding: 4px 10px;
}

.cmp-accordion-panel {
    display: none;
    margin-top: 14px;
}

.cmp-accordion-panel.cmp-accordion-panel-open {
    display: block;
}

.cmp-module-list {
    display: grid;
    gap: 10px;
}

.cmp-module-row {
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 4px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px;
}

.cmp-module-row-current {
    border: 2px solid #2A5788;
}

.cmp-module-main {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    min-width: 0;
}

.cmp-module-index {
    color: #2A5788;
    font-weight: 700;
    min-width: 24px;
}

.cmp-module-texts {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.cmp-module-link {
    display: inline-block;
    overflow-wrap: anywhere;
}

.cmp-module-side {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

@media (max-width: 900px) {
    .cmp-module-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .cmp-module-side {
        justify-content: flex-start;
    }
}

.cmp-module-title {
    color: #2A5788;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.cmp-link-disabled-note {
    color: #516583;
    font-size: 12px;
    font-weight: 700;
}


.cmp-summary-success {
    margin-bottom: 12px;
}

.cmp-progress-stats-detail {
    margin-top: 12px;
    margin-bottom: 0;
}

.cmp-stat-box-detail {
    min-width: 160px;
}

.cmp-progress-meter {
    display: flex;
    justify-content: center;
    margin: 8px 0 16px;
}

.cmp-progress-meter .c-chart-progressmeter {
    margin: 0 auto;
}

.cmp-module-status {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.cmp-module-status-text {
    color: #516583;
    font-size: 14px;
    font-weight: 700;
}

.cmp-module-side img {
    display: block;
}


.cmp-progress-stats-all {
    align-items: stretch;
}

.cmp-progress-stats-all .cmp-stat-box {
    flex: 1 1 180px;
}

.cmp-stat-box-detail {
    min-width: 150px;
}


.cmp-summary-card {
    padding: 8px 10px;
}

.cmp-card-header-compact {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-bottom: 8px;
}

.cmp-progress-overview-compact {
    margin-top: 0;
}

.cmp-progress-stats-all {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin-bottom: 0;
}

.cmp-summary-card .cmp-card-label,
.cmp-summary-card .cmp-stat-label {
    font-size: 10px;
    letter-spacing: 0.03em;
}

.cmp-summary-card .cmp-course-title {
    font-size: 16px;
}

.cmp-stat-box-compact {
    gap: 2px;
    min-width: 0;
    padding: 8px;
}

.cmp-summary-card .cmp-stat-value {
    font-size: 16px;
    line-height: 1.2;
}

.cmp-summary-card .cmp-stat-subvalue {
    font-size: 11px;
}

.cmp-summary-card .cmp-stat-meter {
    margin-top: 4px;
}

.cmp-summary-card .cmp-success-box {
    margin-bottom: 8px;
    padding: 8px 10px;
}

.cmp-stat-box-certificate {
    justify-content: center;
}

.cmp-certificate-link {
    display: inline-flex;
    margin-top: 4px;
}


.cmp-stat-box-with-meter {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.cmp-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    min-width: 0;
}

.cmp-stat-box-with-meter .cmp-stat-label,
.cmp-stat-box-with-meter .cmp-stat-value {
    overflow-wrap: anywhere;
}

.cmp-stat-box-with-meter .cmp-stat-meter {
    align-items: center;
    align-self: stretch;
    display: flex;
    justify-content: flex-end;
    line-height: 0;
    margin-top: 0;
    max-width: 52px;
    min-width: 52px;
    overflow: hidden;
    width: 52px;
}

.cmp-stat-box-with-meter .cmp-stat-meter > * {
    flex-shrink: 0;
    transform: scale(0.52);
    transform-origin: right center;
}

.cmp-stat-box-with-meter .cmp-stat-meter .c-chart-progressmeter {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
}

@media (max-width: 700px) {
    .cmp-container {
        padding: 12px;
    }

    .cmp-card {
        padding: 12px;
    }

    .cmp-card-header-compact {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .cmp-summary-card .cmp-course-title,
    .cmp-current-title,
    .cmp-accordion-title {
        font-size: 15px;
        line-height: 1.25;
    }

    .cmp-progress-stats-all {
        gap: 6px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cmp-stat-box,
    .cmp-stat-box-compact,
    .cmp-stat-box-detail {
        max-height: none;
        min-height: 58px;
        padding: 7px 8px;
    }

    .cmp-stat-box-with-meter {
        gap: 6px;
    }

    .cmp-summary-card .cmp-stat-value {
        font-size: 14px;
        line-height: 1.15;
    }

    .cmp-summary-card .cmp-stat-subvalue,
    .cmp-description,
    .cmp-current-hint,
    .cmp-module-status-text,
    .cmp-link-disabled-note {
        font-size: 11px;
        line-height: 1.3;
    }

    .cmp-card-label,
    .cmp-summary-card .cmp-stat-label {
        line-height: 1.2;
        white-space: normal;
    }

    .cmp-stat-box-certificate {
        align-items: flex-start;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cmp-progress-stats-all {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    }

    .cmp-stat-box-with-meter {
        gap: 6px;
    }

    .cmp-stat-box-with-meter .cmp-stat-meter {
        max-width: 46px;
        min-width: 46px;
        width: 46px;
    }

    .cmp-stat-box-with-meter .cmp-stat-meter > * {
        transform: scale(0.46);
    }
}

@media (max-width: 480px) {
    .cmp-progress-stats-all {
        grid-template-columns: 1fr;
    }

    .cmp-stat-box,
    .cmp-stat-box-compact,
    .cmp-stat-box-detail {
        min-height: 54px;
    }

    .cmp-module-row {
        padding: 10px;
    }
}

.il-chart-progressmeter-box.fixed-size {
width: 200px!important;
}

.cmp-stat-box-with-meter .cmp-stat-meter {
overflow:visible;
max-height: 85px;
}

.cmp-stat-box.cmp-stat-box-compact.cmp-stat-box-with-meter {
height: 100px;
}
.cmp-stat-box-with-meter {
align-items:start;
}

.cmp-stat-box-with-meter .cmp-stat-meter > * {
transform: scale(0.72);
}

.cmp-card.cmp-summary-card .cmp-progress-stats.cmp-progress-stats-all {
grid-template-columns: 1fr 1fr;
}
.cmp-card.cmp-current-card .cmp-current-meta {
display: none;
}

.il-chart-progressmeter-container {
display: flex;
justify-content: flex-end;
}

@media (min-width:981px) {
    .cmp-widget {
	display: grid;
	gap: 16px;
	grid-template-columns: 50% 50%;
    }
}

@media (min-width:1360px) {
.cmp-widget {
display: grid;
row-gap: 26px;
grid-template-columns: 65% 35%;
}
}


.cmp-card.cmp-modules-card {grid-column: 1/3;}
@media (max-width:980px) {
.cmp-widget {
display:flex;
flex-direction:column;
}
}

.cmp-card.cmp-current-card a.cmp-primary-link.cmp-open-scorm-tab {
text-decoration: none;
background: #eed149;
color: black;
padding: 1.25rem 2.25rem;
border-radius: 20px;
width: max-content;
font-size:20px;
}

.cmp-card.cmp-current-card {
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
gap:15px;
}

.cmp-card.cmp-current-card {}

.cmp-card.cmp-current-card .cmp-current-title{
font-size: 28px;
}

.cmp-progress-stats-all > div {
height: 100px;
}

.cmp-container {
border:0;
padding-left:0;
}

.cmp-container h2.cmp-title {
display:none;
}

.cmp-container span.cmp-type-tag {
padding-left:0;
}


