html, body
{
	font-family: Arial, sans-serif; /* "Trebuchet MS", Verdana, Arial, sans-serif; */
	font-size:14px;
}

:root {
  --blanco: #fff;
  --negro: #000;
  --gris: #888;
  --gris_blanco: #f2f2f2;
  --gris_claro: #bdbdbd;
  --grafito_claro: #444;
  --grafito: #333;
  --grafito_oscuro: #222;
  --naranja_claro: #038c5a;
  --naranja_brillo: #01633f; /* HOVER BOTONES */
  --naranja_base: #023d27;
}

/*************************************/
/*   SECCION SESION   ****************/
/*************************************/
.form_icono
{
	margin:0 auto; padding:10px; max-height: 150px; max-width: 150px; margin-top: -80px; background-color: white;
}

/*************************************/
/*   SECCION NAVBAR   ****************/
/*************************************/
.navbar_title
{
	color: var(--blanco);
	font-weight: bold;
	font-size: 21px;
}

.navbar_body_top
{
	margin-top: 70px;
}

/*************************************/
/*   SECCION BUTONES   ***************/
/*************************************/
.button_white_solid
{
	background-color: var(--blanco);
	border-color: var(--gris_claro);
	color: var(--grafito);
}

.button_white_solid:hover
{
	background-color: var(--gris_blanco);
	border-color: var(--gris_claro);
	color: var(--grafito);
}

.button_gold_solid
{
	background-color: var(--naranja_brillo);
	border-color: var(--naranja_brillo);
	color: var(--blanco);
}

.button_gold_solid:hover
{
	background-color: var(--naranja_base);
	border-color: var(--naranja_base);
	color: var(--blanco);
}

/*************************************/
/*   SECCION BREADCRUMB   ************/
/*************************************/
.breadcrumb_box
{
	color:#444;
	font-size:15px;
}

.breadcrumb_box a
{
	color:var(--naranja_brillo);
}

.breadcrumb_active 
{
	color:#444;
}

/*************************************/
/*   SECCION TITULOS   ***************/
/*************************************/
.title_main
{
	font-size:30px;
	color: var(--grafito);
	padding-top: 15px;
	padding-bottom: 15px;
}

.form_input_label
{
	font-size:12px;
	color: var(--gris);
}

/*************************************/
/*   SECCION FOOTER   ****************/
/*************************************/
.footer
{
	color: var(--grafito_claro);
	font-size: 12px;
}

/*************************************/
/*   SECCION ALERTS   ****************/
/*************************************/
.box_notification_form
{
	border-bottom:2px solid #FC0; 
	background-color:#FFC; 
	padding:10px; 
	color: var(--grafito);
	margin-bottom:5px;
}

/*************************************/
/*   SECCION MENU   ******************/
/*************************************/
.menu_enlace:hover span
{
	color: var(--grafito_claro);
	text-decoration: none;
}

.menu_enlace:hover, a
{
	color: var(--grafito_claro);
	text-decoration: none;
}

.menu_enlace:hover  .menu_icono
{
	color: var(--naranja_brillo);
	text-decoration: none;
}

.menu_enlace:hover  .menu_titulo
{
	color: var(--grafito);
	text-decoration: none;
}

.menu_icono
{
	color: var(--naranja_claro);
	font-size: 40px;
	text-decoration: none;
}

.menu_titulo
{
	font-size: 20px; 
	color: var(--grafito_claro);
	font-weight: bold;
	text-decoration: none;
}

.menu_descripcion
{
	font-size: 12px; 
	color: var(--gris);
	text-decoration: none;
}



/*************************************/
/*   SECCION SPINNER   ***************/
/*************************************/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
}
#textto
{
	position: relative;
    left: 45%;
    top: 60%;
    width: 350px;
    height: 350px;
    margin: -75px 0 0 -75px;
    font-size: 16px;
 	color: var(--grafito);
    text-align: center;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--naranja_base);
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--naranja_brillo);
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
 
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}