.backdrop {
    /*background-color: #961d47;*/
    bottom: 0;
    left: -100%;
    overflow: auto;
    position: fixed;
    right: 100%;
    top: 0;
    -webkit-transition:all .8s;
    transition: all .8s;
    z-index: 4;
    height: 100vh;
    width: 100%;
}
.backdrop.backdrop--amarillo {
    background-color: #ffd200;
}
.backdrop.backdrop--aqua {
    background-color: #49a5aa;
}
.backdrop.backdrop--rojo {
    background-color: #e31837;
}

.course-444 .backdrop {
    background: #f47920;
}

.backdrop.in {
    left: 0;
    right: 0;
}
.backdrop .borde-final {
    width: 100%;
}
.backdrop .contenido {
    background: #fff;
    padding: 30px;
    position: relative;
    height: 100%;
}
.backdrop .contenido-scorm {
    background: #fff;
    position: relative;
    height: 100%;
}

.backdrop .fondo {
    /*background: url(../pix/backdrop-bg1.svg) top no-repeat, url(../pix/backdrop-bg2.svg) bottom no-repeat;*/
    padding: 8px;
    height: 100%;
    /*padding-bottom: 16%;*/
}

@media (max-width: 767px) {
    .backdrop .fondo {
        padding: 5px;
    }
}

.backdrop .leccion{
    /*min-height: calc(100vh - 412px);*/
    overflow: auto;
    padding: 0 20px;
}
.backdropFull__iframe{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}


.backdropClose {
    height: 63px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 0 20px;
    background-color: #e31635;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    transition: transform .3s;
    z-index: 9;
    box-shadow: -2px 8px 0 hsl(351, 82%, 43%);
}

.backdropClose:hover {
	cursor: pointer;
}

.backdropClose__icon {
    width: 30px;
    transition: transform 300ms;
}

.backdropClose:hover .backdropClose__icon {
    transform: scale(1.15);
}