﻿/* Efectos que damos al mandar a flotar el video */
@-webkit-keyframes fade-in-up {
    0% {
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* El texto de contenido donde flota el video */
@keyframes fade-in-up {
    0% {
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* Contenedor principal del video */
.contenedor_video {
    padding: 45px;
    display: block;
    margin: 0 auto;
}

/* El subcontenedor con la clase .video con el elemento HTML video */
.videoHelpPlayer video {
    max-width: 100%;
    max-height: 100%;
    width: 750px;
    height: 450px;
    background-color: #e6e5e6;
}

/* Contenedor del video flotante o sticky */
.videoflotante {
    position: fixed;
    /*top: 50px;*/
    bottom: 125px;
    right: 35px;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    /*width: 517px;*/
    max-width: 600px;
    max-height: 320px;
    width: 60%;
    height: 60%;
    -webkit-animation: fade-in-up .25s ease forwards;
    animation: fade-in-up .25s ease forwards;
    border: 5px solid #888d92;
    z-index: 999;
}

/* Botón cerrar el video flotante */
.btn_cerrar {
    font-size: 30px;
    position: absolute;
    margin-top: -45px;
    /*margin-left: 320px;
  bottom: 230px;*/
    right: 1px;
    cursor: pointer;
}

/* Oculta el botón para cerrar el video flotante */
.btn_cerrar_cls {
    display: none;
}
