/* Progress bar styles for Lista Aulas */
.progress-bar-container {
    background: #039f0322;
    border-radius: 10px;
    height: 20px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    background-color: #00fa9a;
    height: 100%;
    border-radius: 10px;
    transition: width 2s ease-in-out;
}

/* Locked content overlay */
.locked-content {
    position: relative;
}

    .locked-content .real-content {
        pointer-events: none;
        filter: blur(2px);
    }

    .locked-content .locked-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

        .locked-content .locked-overlay i {
            color: #fff;
            font-size: 3rem;
            animation: lockPulse 1.5s ease-in-out infinite;
        }

.btn-left-del-conteudo {
   
    position: absolute;
    z-index: 5;
    /*margin-left: 16rem;*/
    right: 0;
    background-color: #FFFFFF;
    border-radius: 50px;
    box-shadow: 0px 0px 5px 0px #000000;
}

@keyframes lockPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
