/*
|--------------------------------------------------------------------------
| Contenedor general
|--------------------------------------------------------------------------
*/

.inac-player-progress-holder,
.inac-single-progress-holder {
    display: block;
    width: 100%;
    box-sizing: border-box;
    clear: both;
}

.inac-shark-progress-widget {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Imágenes
|--------------------------------------------------------------------------
*/

.inac-shark-progress-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.inac-shark-progress-image {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/*
|--------------------------------------------------------------------------
| Textos
|--------------------------------------------------------------------------
*/

.inac-shark-progress-level {
    font-weight: 800;
    line-height: 1.2;
}

.inac-shark-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    line-height: 1.35;
}

.inac-shark-progress-percent {
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 800;
}

.inac-shark-progress-note {
    font-weight: 600;
    line-height: 1.3;
}

/*
|--------------------------------------------------------------------------
| Barra
|--------------------------------------------------------------------------
*/

.inac-shark-progress-bar {
    position: relative;
    display: block;
    width: 100%;
    height: 11px;
    overflow: hidden;
    border-radius: 999px;
}

.inac-shark-progress-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    border-radius: inherit;
    background: linear-gradient(
        90deg,
        #2b78ed 0%,
        #58a8ff 100%
    );
    transition: width 0.35s ease;
}

/*
|--------------------------------------------------------------------------
| Reproductor del curso
|--------------------------------------------------------------------------
*/

.inac-player-progress-holder {
    padding: 0 16px 16px;
    margin: 0;
}

.inac-player-progress-holder .inac-shark-progress-widget {
    max-width: 100%;
    padding: 16px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: #252525;
}

.inac-player-progress-holder .inac-shark-progress-image {
    max-width: 145px;
    max-height: 120px;
}

.inac-player-progress-holder .inac-shark-progress-image-wrap {
    min-height: 115px;
    margin-bottom: 8px;
}

.inac-player-progress-holder .inac-shark-progress-level {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 22px;
}

.inac-player-progress-holder .inac-shark-progress-bar {
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.16);
}

.inac-player-progress-holder .inac-shark-progress-meta {
    color: #ffffff;
    font-size: 13px;
}

.inac-player-progress-holder .inac-shark-progress-note {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

/*
|--------------------------------------------------------------------------
| Página individual del curso
|--------------------------------------------------------------------------
*/

.inac-single-progress-holder {
    margin: 16px 0 24px;
}

.inac-single-progress-holder .inac-shark-progress-widget {
    padding: 18px;
    border: 1px solid #dbe6f7;
    border-radius: 18px;
    background: #f4f8ff;
    box-shadow: 0 8px 24px rgba(12, 47, 93, 0.07);
}

.inac-single-progress-holder .inac-shark-progress-image {
    max-width: 180px;
    max-height: 145px;
}

.inac-single-progress-holder .inac-shark-progress-image-wrap {
    min-height: 135px;
    margin-bottom: 8px;
}

.inac-single-progress-holder .inac-shark-progress-level {
    margin-bottom: 14px;
    color: #0a315e;
    font-size: 24px;
}

.inac-single-progress-holder .inac-shark-progress-bar {
    margin-bottom: 12px;
    background: #dce6f5;
}

.inac-single-progress-holder .inac-shark-progress-meta {
    color: #0a315e;
    font-size: 14px;
}

.inac-single-progress-holder .inac-shark-progress-note {
    margin-top: 10px;
    color: #637895;
    font-size: 12px;
}

/*
|--------------------------------------------------------------------------
| Ocultar progreso original
|--------------------------------------------------------------------------
*/

.inac-native-player-progress-hidden {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

.inac-native-course-score-hidden {
    display: none !important;
}

/*
|--------------------------------------------------------------------------
| Escritorio: limita correctamente el bloque del reproductor
|--------------------------------------------------------------------------
*/

@media (min-width: 1025px) {
    .inac-player-progress-holder .inac-shark-progress-widget {
        max-width: 305px;
        margin-right: auto;
        margin-left: auto;
    }
}

/*
|--------------------------------------------------------------------------
| Tabletas y celulares
|--------------------------------------------------------------------------
*/

@media (max-width: 1024px) {
    .inac-player-progress-holder {
        padding: 0 12px 14px;
    }

    .inac-player-progress-holder .inac-shark-progress-widget {
        padding: 14px;
    }

    .inac-single-progress-holder {
        margin-top: 14px;
    }
}

@media (max-width: 767px) {
    .inac-player-progress-holder .inac-shark-progress-image {
        max-width: 125px;
        max-height: 105px;
    }

    .inac-player-progress-holder .inac-shark-progress-image-wrap {
        min-height: 100px;
    }

    .inac-player-progress-holder .inac-shark-progress-level {
        font-size: 19px;
    }

    .inac-single-progress-holder .inac-shark-progress-widget {
        padding: 15px;
        border-radius: 15px;
    }

    .inac-single-progress-holder .inac-shark-progress-image {
        max-width: 145px;
        max-height: 120px;
    }

    .inac-single-progress-holder .inac-shark-progress-image-wrap {
        min-height: 110px;
    }

    .inac-single-progress-holder .inac-shark-progress-level {
        font-size: 21px;
    }
}


span.masterstudy-progress__bar-empty {
    display: none !important;
}
.masterstudy-single-course-complete-block__content {
    display: none !important;
}
span.masterstudy-single-course-complete-block__details {
    display: none !important;
}
span.masterstudy-single-course-complete-block__icon {
    display: none !important;
}
.masterstudy-single-course-complete-block {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 16px 10px 10px;
    background: transparent !important;
    border-radius: 80px;
}




