.msj_comentario{
    display: none;
}
:root {
    --rojo: #E50914;
    --fondo: #141414;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:linear-gradient(rgb( 25,25,25 ), rgb(0, 29, 57));
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}
a{
     outline: none;
  text-decoration: none;
  color: #fff;
}
a:hover{
    outline: none;
     text-decoration: none;
    color: #fff;
}


body::-webkit-scrollbar
{
    width: .3em;
    background: rgba(76,76,76,1);
}
body::-moz-scrollbar
{
    width: .3em;
    background: rgba(76,76,76,1);
}
body::-webkit-scrollbar-thumb
{
    width: .3em;
    background: #ED6004;
    border-radius: 16px;
}
body::-moz-scrollbar-thumb
{
    width: .3em;
    background: #ED6004;
    border-radius: 16px;
}

body::scrollbar
{
    width: .3em;
    background: rgba(76,76,76,1);
}
body::-ms-scrollbar
{
    width: .3em;
    background: rgba(76,76,76,1);
}
body::scrollbar-thumb
{
    width: .3em;
    background: #ED6004;
    border-radius: 16px;
}
body::-ms-scrollbar-thumb
{
    width: .3em;
    background: #ED6004;
    border-radius: 16px;
}





.contenedor {
    width: 90%;
    margin: auto;

}

.contenedor_config {
    width: 90%;
    margin: auto;
}

header {
    padding: 0;
}

header .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logotipo {
    font-family: 'Bebas Neue', cursive;
    font-weight: normal;
    color: var(--rojo);
    
}

header nav a {
    color: #AAA;
    text-decoration: none;
    margin-right: 20px;
}

header nav a:hover,
header nav a.activo {
    color: #FFF;
}

/* ---- ----- ----- Pelicula Principal ----- ----- ----- */
.pelicula-principal {
    font-size: 16px;
    min-height: 25.62em;
    color: #fff;
    background: white;
    margin-bottom: 3.12em;
    
}

.config {
    font-size: 16px;
    min-height: 25.62em;
    color: #fff;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: end;
}

.pelicula-principal .contenedor {
    
    margin-bottom: 6.25em;
}

.pelicula-principal .titulo {
    font-weight: 600;
    font-size: 3.12em;
    margin-bottom: 0.4em;
}

.pelicula-principal .descripcion {
    font-weight: normal;
    font-size: 1em;
    line-height: 1.75em;
    max-width: 50%;
    margin-bottom: 1.25em;
}

.pelicula-principal .boton {
    background: rgba(0,0,0, 0.5);
    border: none;
    border-radius: 0.31em;
    padding: 0.93em 1.87em;
    color: #fff;
    margin-right: 1.25em;
    cursor: pointer;
    transition: .3s ease all;
    font-size: 1.12em;
}

.pelicula-principal .boton:hover {
    background: #fff;
    color: #000;
}

.pelicula-principal .boton i {
    margin-right: 1.25em;
}

/* ---- ----- ----- Contenedor Titulo y Controles ----- ----- ----- */
.contenedor-titulo-controles {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.contenedor-titulo-controles h3 {
    color: #fff;
    font-size: 30px;
}

.contenedor-titulo-controles .indicadores button {
    background: #fff;
    height: 3px;
    width: 10px;
    cursor: pointer;
    border: none;
    margin-right: 2px;
}

.contenedor-titulo-controles .indicadores button:hover,
.contenedor-titulo-controles .indicadores button.activo {
    background: red;
}


/* ---- ----- ----- Contenedor Principal y Flechas ----- ----- ----- */
.peliculas-recomendadas {
    margin-bottom: 20px;
}

.peliculas-recomendadas .contenedor-principal {
    display: flex;
    align-items: center;
    position: relative;
}

.peliculas-recomendadas .contenedor-principal .flecha-izquierda,
.peliculas-recomendadas .contenedor-principal .flecha-derecha {
    position: absolute;
    border: none;
    background: rgba(0,0,0,0.3);
    font-size: 40px;
    height: 50%;
    top: calc(50% - 25%);
    line-height: 40px;
    width: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 500;
    transition: .2s ease all;
}

.peliculas-recomendadas .contenedor-principal .flecha-izquierda:hover,
.peliculas-recomendadas .contenedor-principal .flecha-derecha:hover {
    background: rgba(0,0,0, .9);
}

.peliculas-recomendadas .contenedor-principal .flecha-izquierda {
    left: 0;
}

.peliculas-recomendadas .contenedor-principal .flecha-derecha {
    right: 0;
}

/* ---- ----- ----- Carousel ----- ----- ----- */
.peliculas-recomendadas .contenedor-carousel {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    scroll-behavior: smooth;
}

.peliculas-recomendadas .contenedor-carousel .carousel {
    display: flex;
    flex-wrap: nowrap;
}

.peliculas-recomendadas .contenedor-carousel .carousel .pelicula {
    min-width: 20%;
    transition: .3s ease all;
    box-shadow: 5px 5px 10px rgba(0,0,0, .3);
}

.peliculas-recomendadas .contenedor-carousel .carousel .pelicula.hover {
    transform: scale(1.2);
    transform-origin: center;
}

.peliculas-recomendadas .contenedor-carousel .carousel .pelicula img {
    width: 100%;
    vertical-align: top;
}

/* ---- ----- ----- CONTENEDOR BUSCADOR ----- ----- ----- */

.campo-buscador{
    display: none;
    position: absolute;
    background: black;
    width: 100%;
    height: auto;
    z-index: 600;
}

.campo-buscador .generos{
    display: inline-block;
    border: solid white .5px;
    color: white;
    margin-top: 0;
    border-radius: .2em;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding-top: 1em;
    cursor: pointer;
}
.fa-angle-right{
    float: right;
}




.info_post{
    position: relative;
    
    top: 50%;
    
   
    transform: translateY(-100%)!important;
    width: 200%;
    background:linear-gradient(rgb(10%, 10%, 10%), rgb(100%, 20%, 5%));
  
    padding: 1rem;
    z-index: 1;
    border-radius: 5px;
    display: none;
    margin-top: -1rem;
    pointer-events: none;
    max-width: 345px;
    font-size: .800rem;
    line-height: 1.25rem;
    color: #E7E1DE ;
    opacity: 0.9;
    transition-duration: 1s, 3s;



    

}

li:hover .info_post {
    
    display: inline-block;



}




.info_post1{
    position: absolute;
      width: 100%;
      min-width: 18%;
      height: 0;
}

.titulo_info, .imdb_calfi{
    color: orange;
}
.titulo_info{
    color: #FE6E17;
    font-size: 16px;
}

.col-sm-4{
    width: 16.66%;
    max-width: 20%;
}
.datos_imdb{
    color: orange;
}
.datos_imdb span{
    color: #E7E1DE;
}








/* ---- ----- ----- Media Queries ----- ----- ----- */
@media screen and (max-width: 800px) {
    header .logotipo {
        margin-bottom: 10px;
        font-size: 30px;
    }

    header .contenedor {
        flex-direction: column;
        text-align: center;
    }

    .pelicula-principal {
        font-size: 14px;
    }

    .pelicula-principal .descripcion {
        max-width: 100%;
    }

    .peliculas-recomendadas .contenedor-carousel {
        overflow: visible;
    }

    .peliculas-recomendadas .contenedor-carousel .carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .peliculas-recomendadas .indicadores,
    .peliculas-recomendadas .flecha-izquierda,
    .peliculas-recomendadas .flecha-derecha {
        display: none;
    }
    
    header nav a {
    margin-right: 0;
    }
}


.input-group{
    margin-left: 5em;

}

.form-outline .form-control {
    background: white;

}



.entradas img{
    width: 100%;
}
.video-list-thumbs{}
.video-list-thumbs > li{
    margin-bottom:12px;
}
.video-list-thumbs > li:last-child{}
.video-list-thumbs > li > a{
    
    position:relative;
    color: #fff;
    border-radius:3px
    transition:all 500ms ease-in-out;
    border-radius:4px
}
.video-list-thumbs > li > a:hover{
    box-shadow:0 2px 5px rgba(0,0,0,.3);
    text-decoration:none
}
.video-list-thumbs h2{
    bottom: 0;
    font-size: 14px;
    height: 33px;
    margin: 8px 0 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.video-list-thumbs .glyphicon-play-circle{
    font-size: 60px;
    opacity: 0.6;
    position: absolute;
    right: 39%;
    top: 31%;
    text-shadow: 0 1px 3px rgba(0,0,0,.5);
    transition:all 500ms ease-in-out;
}
.video-list-thumbs > li > a:hover .glyphicon-play-circle{
    color:#fff;
    opacity:1;
    text-shadow:0 1px 3px rgba(0,0,0,.8);
}
.video-list-thumbs .duration{
    background-color: black;
    border-radius: 2px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    left: 12px;
    line-height: 13px;
    padding: .5em;
    position: absolute;
    top: 12px;
    transition:all 500ms ease;
}
.video-list-thumbs > li > a:hover .duration{
    background-color:#1266f1;
}


@media (min-width:320px) and (max-width: 480px) { 
    .video-list-thumbs .glyphicon-play-circle{
    font-size: 35px;
    right: 36%;
    top: 27%;
    }

    li:hover .info_post {
display: none;
}

header nav a {
    margin-right: 0;
    }
        



    .video-list-thumbs h2{
        bottom: 0;
        font-size: 12px;
        height: 22px;
        margin: 8px 0 0;
    }

    

}




@media only screen and (max-width: 600px) {

    .boton_entradas{
            width: 100%;
            
        }
        li:hover .info_post {
display: none;
}
    
        

    .btn_buscar{
            display: none;
        }

        .contenedor{
            margin-bottom: 0;
        }


        .col-xs-6{

            width: 50%;
            max-width: 50%;
        }

        .info_post1{
            width: 100%;
        }

        .pcMsg{
    display: none;
}

header nav a {
    margin-right: 0;
    }


}

@media  (min-width:601px) and (max-width: 848px) {
        .btn_buscar{
            display: none;
        }
        li:hover .info_post {
display: none;
}
    
        

        .col-xs-6{

            width: 25%;
            max-width: 25%;
        }

        .info_post1{
            width: 100%;
        }
        .contenedor{
            margin-bottom: 0;
        }
        .pcMsg{
    display: none;
}

header nav a {
    margin-right: 0;
    }


}

.fa-bars{
        color: white;
    }

    .pelicula-principal, header, .video-list-thumbs{
        box-shadow: 0 0 15px 5px rgba(31, 73, 125, 0.8);
        
    }



.config {

    background: #2A2A2A;
}

.navbar-nav a{
    
    border-radius: .3em;
    background:linear-gradient(rgb(30%, 10%, 10%), rgb(100%, 20%, 5%));
    color: white;
}

.navbar-nav a:hover{
    
    background: #4f4f4f  ;
    
}
.btn-primary{
    background:linear-gradient(rgb(30%, 10%, 10%), rgb(100%, 20%, 5%));
}




.contenido_capitulos{
            margin-right:.1%;
            
        }



.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 88%;
    
}

.row {
    --mdb-gutter-x: 0.3rem;
        margin-left: calc(var(--mdb-gutter-x)/-);
   
   
}

@media (max-width: 991px ){
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 100%;
}
    .contenido_capitulos{
            margin-right:.8%;
            
        }
        
        .form-inline .form-control {
                max-width: 100%;
                width: 100%;
                
            }
            
            .mr-sm-2, .mx-sm-2 {
                        margin-right: 0rem!important;
                }
           
        .btn_buscar{
            display: none;
        }
        
        header nav a {
           
             margin-right: 0; 
        }
      
        

}

@media (min-width: 950px) and (max-width: 970px) and (min-height: 250px) and (max-height: 550px){
    
        .form-inline .form-control {
                max-width: 100%;
                width: 100%;
                
            }
            
            .mr-sm-2, .mx-sm-2 {
                        margin-right: 0rem!important;
                }
           
   
   .contenido_capitulos{
            margin-right:-.1%;
            
        }
        .btn_buscar{
            display: none;
        }
   
   .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 98%;
    }

     h3 {
        
        font-size: 16px;
    } 

    .contenedor-titulo-controles h3 {
        
        display: none;
    }   
    .pelicula-principal .descripcion {
            
            font-size: 12px;
            
            max-width: 60%;
            
    }
    .pelicula-principal .titulo{
        font-size: 32px;
    }
    .pelicula-principal {
        min-height: 25%;
        height: 25%;

    }
    .pelicula-principal .boton, .datos {
        font-size: 16px;
        padding: .5em;
        margin-bottom: 1em;
    }
    .pelicula-principal .contenedor{
        margin-bottom: -1em;

    }

    .info_post1 .descripcion{
        font-size: 10px;
        
        
   }
   .info_post1 h2{
        font-size: 12px;
        
        
   }

   li:hover .info_post {
    transition-duration: unset;

    }

    .info_post{
        max-width: 220%;
        width: 220%;

    }
    
    header nav a {
    margin-right: 0;
    }
    
}

.entradas_buscador li:hover .info_post{
    display: none;
}

.entradas_principal{
    
    margin-left:-.35%;
}




.cargando{
    position:fixed;
    left:0px;
    top:0px;
    width:100%;
    height:100vh;
    z-index:9999999;
    
    background:url("https://tlenflv.com/img/site/cargando.gif") center;
    background-color: #0C0C0C;
    background-repeat: no-repeat;
   
    
    

    
    
}










