
/** TIPO VIDEO  & TIPO PRESENTACIÓN  & TIPO PODCAST **/

.sliderFichaContenido.video:after,
.sliderFichaContenido.presentacion:after,
.sliderFichaContenido.audio:after {
    content: "";
    display: block;
    font-size: 100px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin: 0 auto;
    margin-top: -75px;
    cursor: pointer;
    background: unset;
    background-image: image-set(url(../../resources/icons-svg/icon_Play.svg) 1x, url(../../../resources/icons-svg/icon_Play.svg) 1x);
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {

    .sliderFichaContenido.video:after,
    .sliderFichaContenido.presentacion:after,
    .sliderFichaContenido.audio:after {
        width: 71px;
        height: 71px;
        margin-top: -35px;
    }
}

.sliderFichaContenido.video:hover:after,
.sliderFichaContenido.presentacion:hover:after {
    filter: invert(1);
}

.sliderFichaContenido.video:before {
    z-index: 4;
}

.sliderFichaContenido.video .contenedor-video {
    display: none;
    position: absolute;
    top: 0;
    left: 40px;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.sliderFichaContenido.video .contenedor-video.activo {
    display: block;
}

.sliderFichaContenido.video .contenedor-video iframe {
    width: 100%;
    height: 100%;
}

.sliderFichaContenido.video .cerrar-video {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 46px;
    height: 40px;
    cursor: pointer;
    color: #FFF;
    z-index: 5;
    text-align: center;
    line-height: 40px;
}

.sliderFichaContenido.video .cerrar-video.activo {
    display: block;
}

.fichaVideo .tipoFicha p::before,
.fichaPresentacion .tipoFicha p::before {
    background-image: image-set(url(../../resources/icons-svg/icon_video_black.svg) 1x, url(../../../resources/icons-svg/icon_video_black.svg) 1x);
}

.fichaPodcast .tipoFicha p::before {
    background-image: image-set(url(../../resources/icons-svg/icon_podcast_black.svg) 1x, url(../../../resources/icons-svg/icon_podcast_black.svg) 1x);
}

.fichaPodcast .adjunto {
    margin-block: 30px;
}

.fichaPodcast .adjunto a {
    position: relative;
    max-height: 47px;
    padding: 12.5px 23.3px 12.5px 50.7px;
    border-radius: 5px;
    box-shadow: 6px 6px 10px 0 rgba(151, 163, 165, 0.1);
    border: solid 1px var(--c-primary);
    background-color: var(--c-primary);

    font-family: Montserrat;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.33;
    letter-spacing: 0.3px;
    color: #fff;
}

.fichaPodcast .adjunto a:hover {
    text-decoration: underline;
    color: white;
}

.fichaPodcast .adjunto a::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: -2px;
    left: 5.7px;
    background-size: contain;
    background-repeat: no-repeat;
}

.fichaPodcast .adjunto a::before {
    background-image: image-set(url(../../resources/icons-svg/icon_podcast_white.svg) 1x, url(../../../resources/icons-svg/icon_podcast_white.svg) 1x);
}