body{
    position: relative !important;
}
.ellipses{
    cursor: pointer;
}
#barra-secciones{
    display: block;
}
.activarIconoBarraSecciones{
    background-color: #343A40;
    color: white !important;
    border: 4px solid #F1F1F1 !important;
}
.seccion_barra_secciones:hover{
    text-decoration: none;
    background-color: #343A40;
    color: white !important;
    border: 4px solid #F1F1F1 !important;
}
#modal_primera_parte_para_celular{
    display: none;
}
#modal_primera_parte_para_tablet_y_pc{
    display: block;
}
#div_buscar_guion, #div_buscar_cartel, #div_buscar_filme{
    padding-top: 3%;
}
.titulo_guion{
    text-transform: uppercase;
}
.input-group{
    padding-bottom: 3%;
}
.input-group-text{
    background-color: black !important;
    border-color: transparent;
    color: white !important;
}
.form-control:focus{
    box-shadow: none !important;
    border-color: black !important;
}
.cartel, .filme{
    overflow: hidden;
    position: relative;
    transition: background-color .5s;
    width: 295px;
    height: 413px;
    display: flex;
    justify-content: center;
    align-content: center;
}
.modal-body > div:nth-child(3) > div:nth-child(3),
.modal-body > div:nth-child(3) > div:nth-child(4){
    border-right: 1px solid white;
}
.close{
    display: block;
}
#p_seleccionar_tipo_obra{
    font-size: 1.157rem;
}
.col-lg-4{
    padding-bottom: 5%;
}
.imagen_cartel{
    height: 100%;
    transform: translate3d(0, -20px, 0) scale(1.12);
    transition: all .5s;
}
.imagen_filme{
    position: absolute;
    height: 100%;
    transform: translate3d(0, -20px, 0) scale(1.12);
    transition: all .5s;
}
.cartel_datos{
    position: absolute;
    padding: 1em 2em;
    top: 0;
    color: #fff;
    text-align: center;
}
.cartel_titulo{
    font-weight: bold;
    font-size: 1.2em;
    text-transform: uppercase;
    background: #343A40;
    padding: .5em .7em;
	font-family: ArefRuqaa, sans-serif;
}
.cartel_datos_adicionales p{
    margin-bottom: 20px;
}
.cartel_datos_adicionales h5{
    margin-top: 20px;
}
.cartel_datos_adicionales h6{
    margin-top: 20px;
}
.cartel_datos_adicionales button{
    margin-top: 20px;
}
.cartel_datos::before{
    content: '';
    border-top: 60px solid white;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 30px;
    left: -75%;
    height: 100%;
    transform: rotateZ(-45deg) translate3d(0,-30%,0);
    transition: transform .5s;
}
.cartel_datos_adicionales{
    opacity: 0;
    transform: scale(1.3);
    transition: all .5s;
}
.cartel:hover, .filme:hover{
    background: black;
}
.cartel:hover .cartel_imagen, .filme:hover .imagen_filme {
    transform: translate3d(0,0,0) scale(1);
    opacity: .4;
}
.cartel:hover .cartel_datos_adicionales{
    opacity: 1;
    transform: scale(1);
}
.cartel:hover .cartel_datos::before{
    transform: rotateZ(-45deg) translate3d(0,0,0);
}
@font-face {
    font-family: ArefRuqaa;
    src: url(../../fonts/ArefRuqaa-Regular.ttf);
}
.filme_titulo{
    font-weight: bold;
    font-size: 1.4em;
    /* text-transform: uppercase; */
    background: #343A40;
    padding: .5em .7em;
    color: white;
    font-family: ArefRuqaa, sans-serif;
}
#filme_sinopsis_no_visible{
    display: none;
}
.filme_director{
    padding: .3em .5em;
    background: #F1F1F1;
    color: black;
}
.datos_filme{
    height: 25px;
    position: absolute;
    top: 1em;
    opacity: 1;
    background: white;
}
.filme_datos_adicionales{
    opacity: 0;
}
@keyframes mover_datos_filme {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.filme:hover .filme_datos_adicionales{
    animation-name: mover_datos_filme;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    opacity: 1;
}
.card-body{
    color: black !important;
}
.card_filme:hover{
    margin-top: -0.5%;
    -webkit-box-shadow: 10px 11px 12px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 11px 12px -6px rgba(0,0,0,0.75);
    box-shadow: 10px 11px 12px -6px rgba(0,0,0,0.75);
    cursor: pointer;
}
.div_imagen_cartel{
    width: 295px;
    height: 413px;
}
.card_cartel > div:nth-child(1) > div:nth-child(2){
    padding-bottom: 2%;
    width: 400px;
    background-color: white;
}
.search_select{
    padding-bottom: 3%;
}
#more_sponsors{
    color: #1184BE !important;
    font-family: sans-serif !important;
    font-weight: 400;
    font-size: 23px !important;
}
#more_sponsors:hover{
    color: #686868 !important;
    text-decoration: none;
}
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid black;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: black;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.modal{
    z-index: 1111111111;
}
.loading{
    padding: 3% 3% 3% 3%;
    width: 100%;
    height: 100%;
    z-index: 999999999999999999;
    background: 50% 50% no-repeat rgb(0,0,0);
    opacity: .9;
    position: absolute !important;
    display: flex;
    justify-content: center;
    align-content: center;
}
#contenido_cargable{
    position: fixed !important;
    top: 40%;
}
#contenido_cargable .spinner-border{
    width: 5rem;
    height: 5rem;
}
.ocultar_campo_filtrado{
    display: none;
}
.boton_cerrar_select{
    display: none;
}
.guion{
    color: black;
}
.guion img:nth-child(1){
    display: inline-block;
}
.guion img:nth-child(2){
    display: hide;
}
.guion:hover{
    margin-left: 2%;
    cursor: default;
    color: white !important;
    background-color: black;
    width: 90%;
}
.guion:hover img:nth-child(1){
    display: none;
}
.guion:hover img:nth-child(2){
    display: inline-block;
}
.festival_trailer:hover{
  text-decoration: none;
  color: black;
  -webkit-text-stroke: 0.5px white;
  -moz-text-stroke: 0.5px white;
}
.boton_cerrar_modal_cartel_responsive{
    display: none;
}
#jumbotron_seleccion_oficial{
    height: 170px;
}
.h1_seleccion_no_mostrar_en_celular{
    margin-top: -2%;
    display: block;
}
.h1_seleccion_mostrar_en_celular{
    display: none;
}
@media (max-width: 990px) {
    #modal_primera_parte_para_celular{
        display: block;
    }
    #modal_primera_parte_para_tablet_y_pc{
        display: none;
    }
    .modal-body > div:nth-child(3) > div:nth-child(3),
    .modal-body > div:nth-child(3) > div:nth-child(4){
        border: none;
    }
    .close{
        display: none;
    }
    #barra-secciones{
        display: none;
    }
    .boton_cerrar_modal_cartel_responsive{
        display: block;
    }
}

@media (max-width: 480px) {
    .h1_seleccion_mostrar_en_celular{
        display: block;
    }
    .h1_seleccion_no_mostrar_en_celular{
        display: none;
    }
    .foto_cartel_modal{
        width: 282px !important;
        height: 400px !important;
    }
}

