
.container-curso .titulo {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.35em;
    color: var(--color1);
}
.container-curso .sub-titulo {
    color: #898989;
    font-size: 0.75em;
}

.cont-porcent-playlist {
    float: right;
    right: 0;
    top: 0;
    font-size: 0.7em;
    background-color: var(--bgcolor1);
    color: white;
    padding: 0 0.5em;
    line-height: 1.8em;
    border-radius: 50px;
}


.cont-porcent-playlist.assistido {
    background-color: green;
}


.curso {
    position: relative;
    margin: 0 0 5em 0;
}

ul.ul-videos li {
    position: relative;
    width: calc(20% - 1em);
    display: inline-block;
    box-sizing: border-box;
    background-color: white;
    margin: 0.5em;
    vertical-align: top;
    background-color: #DEDFE2;
    background-image: radial-gradient(110px at 50% 30%, white 20%, #DEDFE2 100%);
    padding-bottom: 1em;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    overflow: hidden;
}
ul.ul-videos li:hover {
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
ul.ul-videos li:hover a img {
    filter: grayscale(0);
}
ul.ul-videos li.ultimo-video {
    box-shadow: 0 5px 7px 1px rgba(0,0,0,0.3);
    transform: scale(1.3);
    z-index: +1;
}
ul.ul-videos li.video-bloq a::after {
    position: absolute;
    top: 0.2em;
    right: 0.2em;
    z-index: +1;
    content: "\f30d";
    font-family: "Font Awesome 5 Pro";
    width: 1.5em;
    line-height: 1.5em;
    text-align: center;
    font-size: 0.9em;
    background-color: white;
    box-sizing: border-box;
    border-radius: 50%;
    color: black;
}
.curso-bloq-conteudo {
    margin-bottom: 3em;
}

ul.ul-videos {
    margin-top: 1em;
}
ul.ul-videos li a {
    display: inline-block;
}
ul.ul-videos li p {
    padding: 0 0.5em;
    box-sizing: border-box;
    height: 5em;
    font-size: 0.7em;
    color: #333;
    line-height: 1.1em;
}

ul.ul-videos li a img {
    width: 100%;
    padding: 1em 0;
    filter: grayscale(100%);
    transition: all 0.2s ease;
}


ul.ul-videos li .barra-porcent {
    background-color: orange;
    height: 3px;
    bottom: 0;
    position: absolute;
}
ul.ul-videos li .video-novo {
    position: absolute;
    top: 1.7em;
    left: -2.5em;
    width: 10em;
    font-size: 0.65em;
    text-transform: uppercase;
    color: white;
    padding: 0.35em 0 0.3em 0;
    transform: rotate(-45deg);
    background-color: var(--bgcolor1);
    text-align: center;
    box-shadow: -1px 3px 5px 0 rgba(0,0,0,0.1);
}
ul.ul-videos li .txt-porcent {
    position: absolute;
    top: 1.7em;
    left: -2.5em;
    width: 10em;
    font-size: 0.65em;
    text-transform: uppercase;
    color: white;
    padding: 0.35em 0 0.3em 0;
    transform: rotate(-45deg);
    background-color: orange;
    text-align: center;
    box-shadow: -1px 3px 5px 0 rgba(0,0,0,0.1);
}

ul.ul-videos li .barra-porcent.completo,
ul.ul-videos li .txt-porcent.completo {
    background-color: green;    
}
.content-sem-videos {
    font-size: 0.8em;
    color: grey;
}

/* CARREGANDO */
ul.menu-conteudo.carregando li {
    width: 7em;
    height: 1em;
    background-color: #e5e5e5;
  }
  
  .container-curso.carregando  .curso .titulo {
    width: 60%;
    height: 1em;
    background-color: #e5e5e5;
  }
  
  .container-curso.carregando li,
  .container-curso .ul-videos.carregando li {
    height: 11em;
  }
  

  
/* Media */
@media (max-width: 960px) {
    ul.ul-videos li {
        width: calc(50% - 1em);
    }
    .cont-porcent-playlist {
        position: relative;
        float: unset;
        margin-top: 1em;
        display: inline-block;
        margin-bottom: 1em;
    }
    ul.ul-videos li p {
        height: 7em;
    }
    ul.ul-videos {
        margin-top: 2em;
    }
}

@media screen and (max-width: 350px) {
    ul.ul-videos li {
        width: 80%;
        margin: 0 10% 2em 10%;
    }
}

