/*ESTILOS GENERALES AL DOCUMENT*/
*{
    margin: 0px;
    padding: 0px;
    box-sizing: content-box;
    font-family: 'Exo', sans-serif;

}

 /*OCULTAR ELEMENTOS*/
.ocultar{
    display: none;
}

.ocultar__dinamico{
    display: none;
    animation: ocultar_suave;         
    animation-duration: 1s;
}

/*ANIMACION PARA OCULTAR DINAMICAMENTE*/
@keyframes ocultar_suave{
    0%{
        display: flex;
        opacity: 1;
    }
    100%{
        opacity: 0;
        display: none;
    }
}


 /*MOSTRAR ELEMENTOS*/
.mostrar{
    display: block;
}

/*ANIMACION PARA MOSTRAR DINAMICAMENTE*/
.mostrar__dinamico{
    display: block;
    animation: mostrar_suave;
    animation-duration: 2s;
}

@keyframes mostrar_suave{
    0%{
        display: none;
        opacity: 0;
    }
    100%{
        opacity: 1;
        display: flex;
    }
}

/*ESTANDARES*/

.contenedores{
    box-sizing: border-box;
    padding: 10px;
    margin: 10px 0px;
}

.titulos{
    margin: auto;
    color: #868888;
    font-size: 38px;
    padding: 10px;
    width: 80%;
    text-align: center;
}

.subtitulos{
    margin: auto;
    color: #868888;
    font-size: 16px;
    padding: 5px;
    font-weight: 500;
}

.avisos{
    width: 85%;
    margin: 20px auto;
    padding: 5px 15px 5px 15px;
    text-align: justify;
    color: #868888;
   /* border-right: solid 1px #873E48 ;
      border-left: solid 1px #873E48 ;*/
    border-radius: 5px;
}

.boton{
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #873E48;
    font-size: 15px;
    border: solid 1px #873E48;
    margin: 10px;
    border-radius: 7px;
    transition: all 0.5s;
    box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

.entornos{
    padding: 5px 5px 25px 5px;
    width: 60%;
    border: solid 1px #acaca8;
    border-radius: 8px;
    margin: 20px 5px;
    box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3);

}

.combos, .text, .cargar{
    padding: 5px;
    width: 500px;
    border: solid 1px;
    color: #8e9393;
    font-size: 15px;
    border-radius: 8px;
    outline: none;
    box-shadow: 0PX 1PX 2PX 0PX #D4E2D4;
}



/* ----HEADER---- */


.header__logo{
   width: 100%;
   padding: 10px 0px;
}

.logo{
    width: 220px;
    height: 100px;
    padding: 10px;
    margin-left: 5%;
}

.contenedores--titulo{
    height: 400px;
    padding-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: end;

}

.contenedores--titulo3{
    height: 450px;
    padding-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: end;

}

.banner{
    width: 60%;
    height: 330px;
    margin: auto;
    border: none;
    background-image: url("../img/banner.jpg");
    background-position: 0px 0px;
    background-size: cover;
    border-radius: 5px;
    box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

 .titulos--principal{
    background-color: rgb(113, 112, 112);
    background-color: white;
    box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, 0.3);
    width: 40%;
 }

/* ----MAIN---- */
.contenedores--main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;

}

.contenedores--botones{
    padding: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 50px;
}

/*CAJA BUZON DE SUGENERCIA*/


/*CONTENEDORES TIPO DE REPORTE, RELACION DE REPORTE, TRATAMIENTO DENUNCIANTE
FECHA DE LA SITUACION,REFERENCIAS DEL DENUNCIANTE */
.contenedores--cajas{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0px;
}

/*MODIFICADOR DE OTRA RELACIÓN DE REPORTE*/
.contenedores--otros{
    width: 400px;
    text-align: center;
}


/*TRATAMIENTO DEL DENUNCIANTE*/
.contenedores--datos{
    margin: auto;
    width: 430px;
}

.text--datos{
    width: 100%;
}

/*REFERENCIAS DEL DENUNCIANTE*/

.contenedor__btn__referencias{
    display: flex;
}

.boton--referencia{
    width: 70px;
    height: 25px;
    margin: 5px;
}

.contenedores--referencia{
    padding: 0px 0px 10px 0px;
    border-left: solid 1px #868888;
    border-right: solid 1px #868888;
    border-bottom: solid 1px #868888;;
    border-radius: 5px;
}

.contenedores--titulo--referencia{

    padding: 5px;
    text-align: center;
    background-color: #868888;
    border-radius: 5px 5px 0px 0px;
}

.subtitulos--ref{
    color: white;
}

.cont__campos__ref{
    padding: 3px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cbo--referencia{
    width: 100%;
}

.text--referencia{
    width: 100%;
}

.contenedor__input__referencia{
    width: 80%;
    display: flex;
    flex-direction: column;
}

.text--masinvolucrados{
width: 350px;
}

/*FILTRO DE DOCUMENTOS PERMITIDOS*/
.lbl_filtro{
    padding: 5px;
    font-size: 12px;
}

.img{
    width: 25px;
    height: 25px;
    margin-left: 10PX;
}

.boton--enviar{
    width: 150px;
    background-color: #873E48;
    color: white;
}

/*ENTORNO DE DESCARGAS DE DOCUMENTOS*/

.entornos--documento{
    padding: 30px 5px;
    margin-bottom: 100px;
}

.contenedores--documento{
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 2px;
}

.cont__titulo__doc{
    width: 80%;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 10px;
    background-color: #F5F5F5;  
}

.cont__descarga__doc{
    display: flex;
    justify-content: end;
    width: 20%;
    background-color: #F5F5F5;

}

.boton--descarga{
    width: 120px;
    height: 30px;
    margin: center;
    
}
/*ENTORNO DE CONSULTAR ESTADO DE LA SITUACIÓN*/

.entorno--consultar{
text-align: center;
margin: 20px 20px 200px 20px;

}


/*FINAL DE PAGINA*/

.final{
    margin-top: 40px;
    width: 75%;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    padding: 10px;
    border-radius: 10px;
}

.cont__titulocanales{
    width: 100%;
    margin: 2px;
    color: #873E48;
    font-size: 15px;
    text-align: center;
}

.items__calnales{
    font-family: 'Exo', sans-serif;
    margin: 20px 20px;
}

.subtitulo--footer{
    margin: 5px;
}

.parrafo__footer{
    font-size: 17px;
    margin-top: 6px;
}

.notas{
    width: 100%;
    text-align: justify;
    margin-top: 5px;

}





.msjsatisfactorio{

    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 150px;
}


.contenedores--msj{

    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contenedores--msjtitulo{
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 3px #873E48;
    margin-bottom: 40px;
}

.contenedores--generalradio{
display: flex;
}

.contenedores--radio{

    display: flex;
    justify-content: center;
    text-align: center;
    padding: 5px 20px;
}
.radio{
    margin: 10px;
}

.text--rdespecifique{
    text-align: center;
}


.icono{
width: 25px;
height: 25px;
}

.importante{
    padding-top: 5px;

}
/*EFECTO DE BOTONES ACTIVO*/

.corregir{
    background-color: #fdebec;
    border-color: red;

}

.conforme{
    color: #8e9393;
    border-color: #873E48;
}


/*EFECTO DE BOTONES ACTIVO*/
.activo{
    background-color: #873E48;
    color: #f4f6f7;
    box-shadow: 0px 1px 0px 0px #868888;
}


/* FUNCIONES HOVER */
.boton:hover{
    background-color: #873E48;
    color: #f4f6f7;
    box-shadow: 0px 1px 0px 0px #868888;
}


.contenedores--documento:hover{
border-radius: solid 1px red;
}


 /************************************************************************   RESPONSIVE    *****************************************************/



/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

.banner{
    background-position: 0px 0px;
    width: 95%;
}
.titulos{
    font-size: 18px;
}
.entornos{
    width: 95%;

}
.contenedores--botones{
    padding: 0px;
    width: 100%;
    margin-top: 5px;
}
.contenedores--main{
    margin-top: 0px;
}
.boton{
    width: 100px;
    height: 50px;
    font-size: 12px;
    border: solid 1px #873E48;
    margin: 5px;
    border-radius: 7px;
    transition: all 0.5s;
}

.boton--referencia{
    width: 50px;
    height: 25px;
}

.boton--enviar{
    width: 140px;
    background-color: #873E48;
    color: white;
}

.boton--descarga{
    width: 120px;
    height: 30px; 
    font-size: 8px;           
}

.contenedores--titulo3{
    height: 400px;
    padding-top: 270px;
}

.contenedores--datos{
    margin: auto;
    width: 90%;
}
.contenedores--otros{
    width: 100%;
    text-align: center;
}

.combos, .text, .cargar{
    width: 100%;
}

.text--datos{
    width: 95%;
}

.avisos{
    width: 95%;
}
.logo{
    width: 160px;
    height: 55px;
}
.header__logo{
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 
 .logo{
     margin-left: 0%;
 }

 

 .subtitulos{
    margin: auto;
    font-size: 11px;
    padding: 5px 0px;
    font-weight: 550;
}

.contenedor__input__referencia{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}




}

/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) and (max-width: 767px) {

    .banner{
        background-position: 0px 0px;
        width: 90%;
    }
    .titulos{
        font-size: 28px;
    }
    .entornos{
        width: 90%;
    }
    
    .boton{
        width: 170px;
        height: 50px;
    }

    .boton--referencia{
        width: 70px;
        height: 25px;
        margin: 5px;
    }

    .boton--enviar{
        width: 140px;
        background-color: #873E48;
        color: white;
    }

    .avisos{
        width: 95%;
    }
    .logo{
        width: 160px;
        height: 55px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */

    @media only screen and (min-width: 768px) and (max-width: 991px) {

        .banner{
            background-position: 0px 0px;
            width: 90%;
        }
        .titulos{
            font-size: 30px;
        }
        .entornos{
            width: 90%;
        }
        .boton{
            width: 170px;
            height: 50px;
        }

        .boton--referencia{
            width: 70px;
            height: 25px;
            margin: 5px;
        }

        .boton--enviar{
            width: 140px;
            background-color: #873E48;
            color: white;
        }


        .avisos{
            width: 95%;
        }
        .logo{
            width: 170px;
            height: 60px;
        }
    }


/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .banner{
        background-position: 0px -20px;
        width: 80%;
    }
    .titulos{
        font-size: 30px;
    }
    .entornos{
        width: 80%;
    }
    .avisos{
        width: 90%;
    }
    .logo{
        width: 180px;
        height: 60px;
    }

}


@media only screen and (min-width: 1200px) and (max-width: 1519px) {

    .banner{
        background-position: 0px -30px;
        width: 70%;
    }
    .titulos{
        font-size: 34px;
    }
    .entornos{
        width: 70%;
    }

}



/* Extra large devices (large laptops and desktops, 1520px and up) */
@media only screen and (min-width: 1520px){

    .titulos{
        font-size: 38px;
    }
}

