/***************************/
/* OBSERVACIONES GENERALES */
/***************************/

/***********/
/* IMPORTS */
/*@import url("colors.css"); */
html, body {
	font-size: 12px;
	font-family: Roboto, sans-serif;
	color: var(--gris-texto-base);
}


/* Una sombra más liviana */
.ui-shadow {
	-moz-box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.10), 0px 4px 16px
		rgba(51, 51, 51, 0.25) !important;
	-webkit-box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.10), 0px 4px 16px
		rgba(51, 51, 51, 0.25) !important;
	box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.10), 0px 4px 16px
		rgba(51, 51, 51, 0.25) !important;
}
/* Una sombra m�s liviana*/
.ui-state-focus {
	box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 16px
		rgba(51, 51, 51, 0.08) !important;
}

.ui-widget,
.ui-widget input,
.ui-widget select, 
.ui-widget textarea, 
.ui-widget button {
	font-family: Roboto, sans-serif;
	font-size: 1rem;
}


/* Estilo de caja utilizado en todo lado xD */
.box-container {
	border-radius: 20px;
	background-color: white;
}
.fieldset-container {
	border-radius: 5px;
	background-color: white;
	border: 1px solid var(--gris-lineas);
}

/* Para la barra de navegación */
.custom-nav-item {
	padding: 0 10px;
    border-width: 0 1px 0 1px;
	border-style: solid;
	border-color: var(--gris-lineas);
}
.custom-nav-item.active>.nav-link {
	color: var(--blue-conavi) !important;
}


/* ========================================= */
/* LOGIN */
/* ========================================= */
.login-fondo{
	border-radius: 20px;
	background: linear-gradient(rgba(62, 120, 240, 0.7) 100%, rgba(0, 0, 0, 0.5)100%), url("/SAEP_CONAVI_Web/javax.faces.resource/img/imgPuenteFondo.jpg.xhtml") no-repeat top center;
	background-size: 100% 100%;
	width: 100%;
	height: 600px;
    height: calc(100vh - 150px);
    min-height: 450px;
}
@media(max-width: 767px){ /* md */
	.login-fondo{
		height: auto;
	}
}

.position-bottom{
	position: absolute;
	bottom: 0px;
}

