:root{
	--primario-bg: #01888B;
	--primario-text-color: #000;
	--secundario-bg: #64C1C6;
	--secundario-text-color: #000;
	--readonly-bg: #f4f4f4;
	--readonly-text-color: #696969;
	--logo-bg: var(--primario-bg, #01888B);
	--logo-bg-text: #fff;
	--logo-bg-opaque: #152b5588;
	--important-bg: var(--primario-bg, #01888B);
	--important-bg-color: var(--primario-text-color, #000);
	--font-color: #000;
	--table-bg-color: #fff;
	--table-border-color: #639ace;
	--table-text-size: 1rem;
	--login-font-size: 1em;
	--dialog-header: var(--primario-bg);
	--dialog-header-text: #fff;
}

/* TAG body Styles*/
body{
	margin: 0;
	padding: 0;
	
	&.aplicacion {
		overflow-x: hidden;
		min-height: 100vh;
		width: 100%;
		background: url("../../../cliente/empresa.gif") no-repeat 100% top;
		object-fit: cover;
		color: #000000;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 9pt;
	}
	
	&.ventanaEmg {
		color: #000000;
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 9pt;
	}
	
	&.modulos {
		background-color: #002a57;
	}
	
}

aside.asideLoadingPage {
	visibility: hidden;
	position: fixed;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #0004;
	z-index: 50;

	& .loadingPage {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
		align-content: center;
		padding: 0.5rem;
		width: 30rem;
		height: 2rem;
		background-color: #ffffff;
		color: #ffffff;
		text-align: center;
		font-size: 1rem;
		font-weight: bold;
		border: 2px solid var(--table-border-color);

		& .imgLoadingPage {
			width: 40px;
			padding: 1rem;
			aspect-ratio: 1/1;
		}

		& span {
			flex-grow: 1;
			flex-shrink: 1;
			flex-basis: auto;
			align-self: auto;
			padding: 0.5rem;
			color: #000;
		}
	}
}

/* Dialog/Modal de cambio de grupos*/
div{
	
	&.modal{
		visibility: hidden;
		position: fixed;
		bottom: 0;
		width: 100%; /* Full width */
		height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #0004; /* Black w/ opacity  */
		overflow: auto; /* Enable scroll if needed  */
		z-index: 50;
		
		& .modal-content {
			display: table;
			margin-top: 0;
			background-color: #fefefe;
			opacity: 0.8;
		}
	}
	
	&.modal-pdf {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);

		& .modal-content {
			background-color: #fff;
			width: 80%;
			max-width: 600px;
			margin: 10% auto;
			padding: 0px;
			border: 1px solid #ccc;
			border-radius: 0px;
			
			& .close {
				float: right;
				cursor: pointer;
				margin-right: 10px;
				margin-top: 10px;
				font-size: 20px;
			}
		}
	}
	
	&.contenedorMensajes {
		position: fixed;
		display: flex;
		flex-direction:column;
		z-index: 10;
		bottom: 0;
		
		& [data-fade-timeout] {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			
		}
		
		& .mensaje {
			width: 100dvw;
			height: auto;
			padding-left: 5px;
			display: flex;
			justify-content: flex-start;
			align-items: center;
			column-gap: 0.5rem;
			font-weight: bold;
			background-color: #003399;
			color: #cccccc;
			text-align: left;
			font-size: 8pt;
			border-top: #333333 1px solid;
		}
		
		& img.cerrar-mensajes {
			cursor: pointer;
			position: relative;
			width: 15px;
			height: 15px;
			margin-right: 25px;
		}
		
		& img.mostrar-mensajes {
			display: none;
			cursor: pointer;
			position: fixed;
			bottom: 0;
			margin: 2px;
		}
	}
	
}

dialog{
	width: 400px;
	padding: 0;

	&::backdrop {
		background: #0007;
	}
	
	& header{
		--dialog-header: var(--logo-bg);
		--dialog-header-text: #fff;
		display: flex;
		padding: 10px;
		align-items: center;
		justify-content: space-between;
		font-weight: 500;
		background: var(--dialog-header, #aaa);
		color: var(--dialog-header-text, #000);
		
		& button{
			padding: 3px 5px;
			background: #152B55;
			color: #fff;
			outline-width: 0px;
			outline-style: solid;
			outline-color: #000;
			border-radius: 5px;
			transition-property: background, color, outline-width;
			transition-timing-function: cubic-bezier(.4,0,.2,1);
			transition-duration: .15s;
			
			&:hover{
				background: #fff;
				color: #000;
				outline-width: 1px;
			}
		}
	}
	
	& .dialog-body{
		display: flex;
		flex-direction: column;
		padding: 20px;
		
		& .select-section{
			display: flex;
			gap: 20px;
			
			& select{
				width: 100%;
				height: 20px;
				border-color: light-dark(#152B55,#fff);
				border-width: 3px;
				border-radius: 5px;
			}
			
		}
	}
}

.container{
	width: 100%;
	margin-inline: auto;
	
	@media (min-width: 640px) {
		max-width: 640px;
	}
	@media (min-width: 768px) {
		max-width: 768px;
	}
	@media (min-width: 1024px) {
		max-width: 1024px;
	}
	@media (min-width: 1280px) {
		max-width: 1280px;
	}
	@media (min-width: 1536px) {
		max-width: 1536px;
	}
}

/* Pagina login */

/* Imagen de fondo */
body.accesoTemaFlotante {
	background-image: url('../img/forms/accesoFondo.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-clip: border-box;
	background-attachment: scroll;
	background-color: #d4e2ef;
	-webkit-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-o-background-size: 100% auto;
	background-size: 100% auto;
	height: 100%;
	overflow: hidden;
	object-fit: cover;
	object-position: center top;
}


TABLE.appConfigForm {
	width: 100%;
	background-color: #d3e2ea;
}

TABLE.appConfigHeader {
	width: 100%;
	color: #ffffff;
	text-align: center;
	font-size: 6pt;
	font-weight: bold;
	background-color: #9cbee6;
}

TABLE.appConfigBody {
	width: 100%;
	text-align: center;
	font-size: 6pt;
	font-weight: bold;
}

TABLE.appConfigMenu {
	width: 40%;
	height: 100%;
	color: #ea0000;
	font-size: 6pt;
	font-weight: bold;
	text-align: center;
	border-top: 0px solid #639ace;
	border-bottom: 0px solid #639ace;
	border-right: 0px solid #639ace;
	border-left: 0px solid #639ace;
}

TABLE.appConfigModule {
	width: 100%;
	color: #ea0000;
	text-align: center;
	font-size: 6pt;
	font-weight: bold;
	background-color: #fcfcfc;
	border-top: 1px solid #639ace;
	border-bottom: 1px solid #639ace;
	border-right: 1px solid #639ace;
	border-left: 1px solid #639ace;
}

TABLE.appConfigAdm {
	width: 100%;
	color: #000033;
	text-align: center;
	font-size: 6pt;
	font-weight: bold;
}

TD.appConfigModuleHeader {
	text-align: center;
	color: #336699;
	font-weight: bold;
	background-color: #f0f0d2;
}

TABLE.appConfigModuleBody {
	width: 100%;
	height: 100%;
	color: #000000;
	font-size: 8pt;
	font-weight: bold;
	text-align: left;
	background-color: #ffffff;
	border: 2px solid #f0f0d2;
}

IMG.imgTheme {
	border: 4px solid #f0f0d2;
	cursor: pointer;
	width: 80px;
	height: 50px;
}

IMG.nowTheme {
	border: 4px solid #f0f0d2;
	cursor: pointer;
	width: 530px;
}

TD.labelTheme {
	color: #6699ff;
	font-size: 8pt;
	font-family: verdana, arial, helvetica, sans-serif;
	cursor: pointer;
}

TABLE {
	font-size: 8pt;
	color: #000033;
	font-family: verdana, arial, helvetica, sans-serif;
}

TH {
	font-size: 8pt;
	color: #000033;
	font-family: verdana, arial, helvetica, sans-serif;
}

TD {
	font-size: 8pt;
	color: #000033;
	font-family: verdana, arial, helvetica, sans-serif;
}

INPUT {
	font-size: 8pt;
	font-family: verdana, arial, helvetica, sans-serif;
}

INPUT.ajaxText {
	border-style: ridge;
}

textarea {
	font-size: 8pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	resize: vertical;
}

select {
	font-size: 8pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	
	&.input-readonly{
		pointer-events: none;
		background-color: var(--color-readonly);
		
		&::-ms-expand,
		&::-webkit-inner-spin-button,
		&::-webkit-outer-spin-button {
			display: none;
		}
	}
	
}

button{
	font-size: 8pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	cursor: pointer;
}


input[type="file"]::file-selector-button{
	font-size: 8pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	cursor: pointer;
}

.required{
	color: var(--important-bg);
}

.border{
	border-width: 1px;
	border-style: solid;
	--un-border-opacity: 1;
	border-color: rgb(0 0 0 / var(--un-border-opacity));
}

A {
	text-decoration: none;
}

A.f_etiquetaListaTest {
	height: 8px;
	font: 700 small-caps 6px arial, helvetica, sans-serif;
	padding-left: 5px;
	font-weight: bold;
	color: #666666;
	text-align: left;
}

A.linkListActive {
	font: 700 small-caps 12px arial, helvetica, sans-serif;
	text-transform: none;
	color: #6699ff;
	text-decoration: underline;
	cursor: pointer;
}

A.linkListnoActive {
	font: 700 small-caps 12px arial, helvetica, sans-serif;
	text-transform: none;
	color: #000000;
}

A.f_etiquetaLista {
	font: 700 small-caps 12px arial, helvetica, sans-serif;
	padding-left: 5px;
	font-weight: bold;
	color: #666666;
	text-align: left;
	cursor: pointer;
}

A.f_etiquetaListaTotal {
	font: 700 small-caps 12px arial, helvetica, sans-serif;
	padding-left: 5px;
	font-weight: bold;
	color: #666666;
	text-align: left;
	cursor: pointer;
}

A.linkListArrowActive {
	font: 700 small-caps 12px arial, helvetica, sans-serif;
	text-transform: none;
	color: #6699ff;
	cursor: pointer;
}

A.linkListArrownoActive {
	font: 700 small-caps 12px arial, helvetica, sans-serif;
	text-transform: none;
	color: #cc6633;
}

TD.encabezado {
	border-top: #666666 1px solid;
	padding-left: 5px;
	font-weight: bold;
	background-image: url(img/fondotitulo.jpg);
	color: #ffffff;
	border-bottom: #666666 1px solid;
	height: 20px;
	text-align: left;
}

TD.logo {
	width: 60px;
	height: 60px;
	padding: 2px;
	vertical-align: middle;
}

TD.logoMegasoft {
	padding-right: 5px;
	height: 20px;
	background-color: #ffffff;
	text-align: right;
}

TD.contenido {
	padding: 3px;
	vertical-align: top;
}

TD.mensaje {
	border-top: #333333 1px solid;
	padding-left: 5px;
	font-weight: bold;
	color: #cccccc;
	height: 20px;
	background-color: #003399;
	text-align: left;
}

TD.mensajeAprobacion {
	padding-left: 5px;
	font-weight: bold;
	color: #333333;
	height: 20px;
	text-align: left;
}

TD.error {
	border-top: #c0c0c0 1px solid;
	padding-left: 5px;
	font-weight: bold;
	color: #000000;
	height: 20px;
	background-color: #c0c0c0;
	text-align: left;
}

TD.botones {
	text-align: right;
}

TABLE.encabezado {
	border-top: #666666 1px solid;
	font-weight: bold;
	left: 0px;
	background-image: url(img/fondotitulo.jpg);
	color: #ffffff;
	border-bottom: #666666 1px solid;
	position: relative;
	top: 0px;
	height: 20px;
	text-align: left;
}

TD.encabezadoInfo {
	color: #000000
}

TD.helpBar {
	vertical-align: middle;
	background-color: #cccccc;
	text-align: right
}

IMG.imgHelpBar {
	max-height: 50px;
	border-width: 0px;
	overflow: hidden;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	
	&#seguridad
	, &#theme
	, &#seguridad
	, &#users
	, &#mailServer
	, &#msgUsers
	, &#inspector
	, &#files
	, &#listLogs{
		width: 50px;
		overflow: hidden;
		aspect-ratio: 1 / 1;
	}
	
	&.logotipo-empresa{
		aspect-ratio: 4 / 1;
	}
	
	&.btn-menu{
		aspect-ratio: 4 / 3;
		max-height: 18px;
	}
	
	&.logo-empresa{
		aspect-ratio: 3 / 2;
	}
	
	&[data-idioma]{
		overflow: initial;
		aspect-ratio: 5 / 3;
	}
}

IMG.imgLogoEmp {
	border-width: 0px;
	cursor: pointer;
	height: 50px;
}

TABLE.modules {
	border: 2px outset;
	background-color: #cccccc;
}

TD.moduleitem {
	font-size: 8pt;
	color: #333333;
	background-color: #cccccc;
	text-align: center;
}

TD.moduleitem_over {
	font-size: 8pt;
	cursor: pointer;
	color: #333333;
	background-color: #999999;
	text-align: center;
}

INPUT.textFormChart {
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 7pt; 
	text-align:absmiddle;
	border: #cccccc 1px solid;
}

TABLE.listado {
	border: #333333 1px solid;
	background-color: #dfecff;
}

TABLE.listado_encabezado {
	border-left: 4px solid #639ace;
	border-bottom: 4px solid #639ace;
}

TH.l_encabezado {
	height: 24px;
	color: #000066;
	font-style: bold;
	border-right: 0px solid #cccccc;
	background-image: url(../img/forms/form.lst.th.bkg.gif);
}

TH.l_encabezado_curva {
	width: 10%;
	border-left: 0px solid #cccccc;
	color: #000066;
	background-position: right;
	background-repeat: no-repeat;
	background-image: url(../img/forms/form.lst.th.curva.bkg.gif);
}

TABLE.l_conjunto {
	border-bottom: 4px solid #639ace;
	border-left: 4px solid #639ace;
}

TR.l_titulo_separador {
	background-color: #99aacc;
}

TD.l_elemento0 {
	font-size: 7pt;
	height: 14px;
	background-color: #ffffff;
	border-bottom: 1px solid #cccccc;
	border-left: 0px solid #cccccc;
	border-right: 0px solid #cccccc;
}

TD.l_elemento1 {
	font-size: 7pt;
	height: 14px;
	background-color: #ffffff;
	border-bottom: 1px solid #cccccc;
	border-left: 0px solid #cccccc;
	border-right: 0px solid #cccccc;
}

TD.l_elementoBorde0 {
	height: 20px;
	background-color: #ffffff;
	border-bottom: 1px solid #cccccc;
	border-right: 4px solid #639ace;
}

TD.l_elementoBorde1 {
	height: 20px;
	background-color: #ffffff;
	border-bottom: 1px solid #cccccc;
	border-right: 4px solid #639ace;
}

TD.l_total {
	height: 14px;
	background-color: #ffffff;
	border-bottom: 1px solid #cccccc;
	border-top: 0px solid #cccccc;
	border-right: 0px solid #cccccc;
}

TD.l_elemento0_over {
	cursor: hand;
	font-size: 7pt;
	height: 14px;
	border-bottom: 1px solid #cccccc;
	background-color: #ffffea;
}

TD.l_elemento1_over {
	cursor: hand;
	font-size: 7pt;
	height: 14px;
	border-bottom: 1px solid #cccccc;
	background-color: #ffffea;
}

TD.l_elementoBorde0_over {
	cursor: hand;
	height: 20px;
	background-color: #ffffea;
	border-bottom: 1px solid #cccccc;
	border-right: 4px solid #639ace;
}

TD.l_elementoBorde1_over {
	cursor: hand;
	height: 20px;
	background-color: #ffffea;
	border-bottom: 1px solid #cccccc;
	border-right: 4px solid #639ace;
}

TD.l_customBorde {
	background-color: #dbdbdb;
	border-right: 4px solid #639ace;
}

TD.pestannas {
	vertical-align: bottom;
}

DIV.p_pestannas {
	z-index: 1;
	left: 16px;
	position: absolute;
	top: 24px;
}

DIV.p_flechaScroll {
	z-index: 2;
	overflow: hidden;
	width: 16px;
	cursor: pointer;
	position: absolute;
	top: 23px;
	height: 16px;
	background-color: #ffffff;
}

TD.p_inactivaOver {
	border-right: #333333 1px solid;
	border-top: #333333 1px solid;
	border-left: #333333 1px solid;
	padding-right: 3px;
	padding-left: 3px;
	font-size: 8pt;
	background-image: url(../img/forms/inactive.over.gif);
	vertical-align: middle;
	cursor: pointer;
	color: #333333;
	height: 15px;
}

TD.p_inactiva {
	border-right: #333333 2px solid;
	border-top: #333333 2px solid;
	border-left: #333333 2px solid;
	padding-right: 3px;
	padding-left: 3px;
	font-weight: normal;
	font-size: 8pt;
	background-image: url(../img/forms/inactive.gif);
	vertical-align: middle;
	cursor: pointer;
	color: #787878;
	height: 15px;
}

TD.p_activa {
	border-right: #333333 1px solid;
	padding-right: 3px;
	border-top: #333333 1px solid;
	padding-left: 3px;
	font-weight: bold;
	font-size: 8pt;
	background-image: url(../img/forms/active.gif);
	vertical-align: middle;
	border-left: #333333 1px solid;
	color: #ffffff;
	height: 15px;
}

TD.p_separador {
	width: 1px;
	background-color: #ffffff;
}

TD.p_ultima {
	border-bottom: #333333 1px solid;
	background-color: #ffffff;
}

TABLE.formulario {
	border: 2px outset;
	color: #000033;
	background-color: #ffffff;
}

TD.f_titulo {
	font-weight: bold;
	color: #000000;
	text-align: center;
}

TD.f_titulo_sep {
	font-weight: bold;
	color: #000000;
	background-color: #99aacc;
	text-align: center;
}

TD.f_etiqueta {
	padding-left: 5px;
	font-weight: bold;
	width: 200px;
	color: #666666;
	text-align: left;
}

TD.f_etiquetaRequerida {
	padding-left: 5px;
	font-weight: bold;
	width: 200px;
	color: #996666;
	text-align: left;
}

TD.t_titulo_uci {
	font-weight: bold;
	font-size: small;
	color: #990000;
	font-family: verdana, arial, helvetica, sans-serif;
	background-color: #cccccc;
	text-align: center;
}

TD.f_areaIngresoDatos {
	text-align: left;
}

TD.f_areaInformacionAdicional {
	color: #000033;
	text-align: left;
}

TH.l_encabezadoDetalle {
	font-weight: bold;
	color: #000000;
	font-family: verdana, arial, helvetica, sans-serif;
	height: 20px;
	background-color: #99aacc;
	text-align: left;
	text-decoration: underline;
}

TABLE.encabezadoDetalle {
	background-color: #c9c9c9
}

TABLE.encabezadoNieto {
	background-color: #f4f7cc
}

.requeriedValue {
	background-color: #ffffcc
}

.wrongValue {
	background-color: #ffc4c4
}

TD.rep_boton {
	border: #996600 thin inset;
	background-position: center 50%;
	font-weight: bold;
	font-size: 11px;
	background-image: url(../img/forms/reportButton.gif);
	vertical-align: middle;
	cursor: pointer;
	color: #000000;
	text-align: center;
	white-space: nowrap;
}

IMG.imgReport {
	border-width: 0px;
	cursor: pointer;
}

TD.boton_general {
	height: 15px;
	background-image: url(../img/forms/boton.bkg.gif);
	cursor: hand;
	font-weight: normal;
	text-align: center;
	color: #000000;
	font-size: 11px;
	vertical-align: middle;
	white-space: nowrap;
}

TD.boton_general_over {
	height: 15px;
	background-image: url(../img/forms/boton.bkg.over.gif);
	cursor: hand;
	font-weight: bold;
	font-size: 11px;
	text-align: center;
	color: #003399;
	vertical-align: middle;
	white-space: nowrap;
}

TD.boton_izq {
	width: 8px;
	height: 15px;
	background-repeat: no-repeat;
	background-image: url(../img/forms/boton.izq.bkg.gif);
	cursor: pointer;
	cursor: hand;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	vertical-align: middle;
	white-space: nowrap;
}

TD.boton_der {
	width: 12px;
	height: 15px;
	background-repeat: no-repeat;
	background-image: url(../img/forms/boton.der.bkg.gif);
	cursor: pointer;
	cursor: hand;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	vertical-align: middle;
	white-space: nowrap;
}

IMG.imgButton {
	border-width: 0px;
	cursor: pointer;
}

TEXTAREA.mensaje {
	border-right: #ffffff 1px solid;
	border-top: #ffffff 1px solid;
	border-left: #ffffff 1px solid;
	border-bottom: #ffffff 1px solid;
	scrollbar-face-color: white;
	scrollbar-highlight-color: white;
	overflow: auto;
	scrollbar-shadow-color: silver;
	scrollbar-3dlight-color: silver;
	scrollbar-arrow-color: #cccccc;
	scrollbar-track-color: white;
	scrollbar-darkshadow-color: silver;
	scrollbar-width: 20;
}

TEXTAREA.sql {
	width: 700px;
	background: #fffff0;
	color: black;
	scrollbar-face-color: white;
	scrollbar-highlight-color: white;
	overflow: auto;
	scrollbar-shadow-color: silver;
	scrollbar-3dlight-color: silver;
	scrollbar-arrow-color: #cccccc;
	scrollbar-track-color: white;
	scrollbar-darkshadow-color: silver;
	scrollbar-width: 20;
}

/* INPUT.chkbox {} */

/* SELECT.select {} */

TD.labelLogin {
	font-size: 8pt;
	color: #ffffff;
	font-family: verdana, arial, helvetica, sans-serif;
}

A.labellogin {
	color: #000000;
	font-family: verdana, arial, helvetica, sans-serif;
	background-color: #ffffff;
	cursor: hand;
	font-weight: bold;
}

TD.confirmClaveMsg {
	font-size: 8pt;
	color: #ffffff;
	font-family: verdana, arial, helvetica, sans-serif;
	height: 25px;
	font-weight: bold;
}

INPUT.textForm {
	border: #cccccc 1px solid;
}

DIV.flowTable {
	overflow: auto;
	overflow-x: scroll;
	border: 0px solid #ffffff;
	scrollbar-width: 15;
	scrollbar-face-color: white;
	scrollbar-track-color: white;
	scrollbar-arrow-color: #cccccc;
	scrollbar-shadow-color: silver;
	scrollbar-3dlight-color: silver;
	scrollbar-highlight-color: white;
	scrollbar-darkshadow-color: silver;
}

A.cambiarAnalista {
	color: #006699;
	cursor: hand;
	text-decoration: underline;
}

A.cambiarAnalistaOver {
	color: #999900;
	cursor: hand;
	text-decoration: underline;
}

TR.pvcGrupo {
	background-color: #639ace;
}

TD.pvcGrupo {
	text-align: left;
	color: #ffffff;
	font-weight: bold;
}

TABLE.loadingPage {
	color: #ffffff;
	font-size: 6pt;
	font-weight: bold;
	text-align: center;
	background-color: #ffffff;
	border: 2px solid #639ace;
}

img.neonHeader {
	height: 55px;
}

a.neonVersion {
	color: #ffffff;
	font-style: italic;
	font-weight: bold;
}

a.modulemenu {
	color: #000000;
	font-size: 17pt;
	text-align: left;
	cursor: pointer;
	font-family: sans-serif;
	font-weight: bold;
}

/* <!-- Ventana de Modulos --> */
body.modulos {
	background-color: #858d8c;
	margin: 0;
}

table.modulos {
	background-color: #002a57;
	border-top: #002a57;
	border-bottom: #002a57;
	border-right: #002a57;
	border-left: #002a57;
}

.modal {
	position: absolute; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
	background-color: #fefefe;
	opacity: 0.8;
	display: table;
	margin: 0 auto;
	margin-top: 15%;
}

TD.versionTema {
	color: #000000;
	font-style: italic;
	FONT-WEIGHT: bold;
	BACKGROUND-image: url("../img/forms/neonCenter.jpg");
}

/*--- Boton reiniciar contraseña ---*/
.btn-reset-password {
	background: none;
	border: none;
	color: #549659;
	cursor: pointer;
	position: absolute;
	right: 0;
	font-size: 8pt;
	font-weight: bold;
	font-family: verdana, arial, helvetica, sans-serif;
}
/*--- Fin Boton reiniciar contraseña ---*/

/*--- Página de cambiar la contraseña ---*/
.change-password {
	background-image: url("../../../cliente/empresa.gif");
	background-repeat: no-repeat;
	background-position: top right;
}

.change-password__table {
	width: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 10px 20px;
	border-radius: 0px;
	box-shadow: 1px 2px 10px #000;
	display: block;
}
/*--- Fin Página de cambiar la contraseña ---*/
.paises {
	margin-top: -7px !important;
}