/*****

	Fecha Inicio :     27.09.19
    Autor/a :          Irantzu Suberviola
    Últ. Actuali.:     27.09.19
    Autor/a :          Irantzu Suberviola


	-- ÍNDICE --
	
		1. CHARSET
        2. FUENTES
        3. GENERALES
        	3.1. Generales
        	3.2. Buttons
        	3.4. H1/H2/H3/H4/H5/H6
        4. ESTRUCTURA
        	4.1. Estructura
        	4.2. Loading
		5. ICONOS
			5.1. Iconos Font Awesome (y efectos)
			5.2. Drag & Drop
		6. SECCIONES WEB
			6.1. Login
			6.2. Cabecera
				6.2.1. popupInfoUsuario
			
		

*****/

@charset "UTF-8";

@import url(fonts.css);

/*

- charset
- fuentes
- generales
- estructura
- iconos font awesome

*/

/*--------------------------------------------------------------------- Generales */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

@-ms-viewport {width: device-width;}

body *[class^="z-"]:not([class*="z-icon"]),
.z-button {
	font-family: Roboto, Verdana, Geneva, Arial, Helvetica, sans-serif;
}

body,
.z-window,
.z-window-content {padding: 0px;}

header, nav, section, article, aside, footer {display: block;}

.border > div {height: auto;}


/*     BUTTONS     */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: none;
    border: none;
    background-color: transparent;
    padding: 0px;
}

input::-ms-reveal, input::-ms-clear {
	display: none;
}

input,
button,
a {
	background-image: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

button:focus,
a:focus {outline:0;}




/*     H1 H2 H3 H4 H5 H6     */
h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0px;
	display: inline-block;
}

.negrita * {
	color: #000;
	font-weight: bold;
}


/* ------------------------------------------------------- Estructura */
.z-label,
.z-radio-content,
.z-checkbox-content,
.z-loading {
	font-size: 1rem;
}
.z-north,
.z-south,
.z-west,
.z-center,
.z-east,
.z-tree {
	border: none;
	overflow: auto;
}

.z-north {
	padding: 0px;
	border: 1px solid #cecece;
	-webkit-box-shadow: 0px 6px 5px 0px rgba(233,233,233,1);
	-moz-box-shadow: 0px 6px 5px 0px rgba(233,233,233,1);
	box-shadow: 0px 6px 5px 0px rgba(233,233,233,1);
}
.z-north-body {
	border-bottom: 1px solid #dbdbdb;
}
.z-south-body {
	padding: 0px;
}

.z-west {
	padding-top: 20px;
	overflow-y: scroll;
}
/* quitar la barra de scroll west */
.z-west::-webkit-scrollbar { 
  display: none;
}

.z-tree-body table {
	border-collapse: collapse;
}

.z-treerow:first-child .z-treecell {
	width: 100%;
}

.z-treecol-content,
.z-treecell-content,
.z-treefooter-content {
	padding: 6px 0px;
}

.z-tree-icon,
.z-tree-spacer {
	margin-right: 16px;
}

.z-tree-icon i {
	color: #999;
	font-size: 27px;
}

.mpSubMenu .z-treecell-content {
	padding: 0px;
}

@media all and (max-width: 1200px) {
	.z-listbox-header table,
	.z-listbox-body table {
		table-layout: auto !important;
	}
}


@media all and (max-width: 992px) {
	._z-south {
		position: fixed;
		bottom: 100%;
	}
	
	.z-center .z-window,
	.z-center .z-window-content {
		height: 100%;
	}
}

@media all and (max-width: 575px) {
	.z-north-body {
		padding-right: 6px;
		padding-left: 6px;
	}
}

/*     LOADING     */
.z-loading {
    background: rgba(224, 225, 227, 0.6); /*#eee*/
	position: fixed;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	border: none;
}

.z-loading .z-loading-indicator {
	position: absolute;
	top: 50% !important;
	left: 50% !important;
	-webkit-transform: translate(-50%, -50%) !important;
	-moz-transform: translate(-50%, -50%) !important;
	-ms-transform: translate(-50%, -50%) !important;
	-o-transform: translate(-50%, -50%) !important;
	transform: translate(-50%, -50%) !important;
	border: 1px solid #cfcfcf;
}

.z-loading .z-loading-icon {
	margin-right: 5px;
}

.z-apply-loading {
    z-index: 9 !important;
}

.z-menuitem-disabled  .z-menuitem-image {
	opacity: 0.7;
}

.z-window-modal  .z-window-content {
	margin: 15px;
}


/*     ERROR     */
.z-error {
	display: none !important;
}



/*--------------------------------------------------------------------- iconos font awesome */
*[class*="fa-"] {
	text-align: center;
	font-size: 1.2rem;
	width: 32px;
	height: 32px;
	line-height: 32px;
}
.mpIcoConFondo {
	font-size: 1.4rem;
	width: 42px;
	height: 42px;
	line-height: 42px;
	border-radius: 50%;
}
.mpIcoGirado {transform: rotate(180deg);}
.mpIcoVolteado {transform: scaleX(-1);}



/*--------------------------------------------------------------------- popups genéricos */
.popupGen,
.z-messagebox-window {
	padding:20px;
	border: 1px #407cff solid;
	background-color: #fff;
}
.popupGen-icon,
.z-window-icon {
	position: absolute;
	top: 20px;
	right: 20px;
}
.popupGen-icon i,
.z-window-icon i {font-weight: bold;}

.popupGen-header,
.z-window-header {
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 5px;
    border-bottom: 1px #ddd solid;
    margin-bottom: 20px;
}
.popupGen-content button,
.z-window-content button {
    background-color: #407cff;
    border-radius: 5px;
    padding: 10px 50px;
    text-align: center;
    margin-top: 20px;
}
.z-hlayout-inner:first-child {float: left;}
.z-hlayout-inner:last-child {float: right;}

/*--------------------------------------------------------------------- DRAG & DROP */

.dropupload {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	text-align: center;
	z-index: -10;
	visibility: hidden;
	display: table;
	height: 100%;
	width: 100%;
}

.dropupload-hover {
	border: 3px dashed #616778;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 20px;
	z-index: 1000;
	visibility: visible;
}

.dropupload span {
	display: table-cell;
	vertical-align: middle;
	font-size: 30px;
	font-weight: bolder;
	color: #616778;
}

.dropUploadHidden {
	display: none;
}

#dropUploadPorcentajeDiv {
	border: 1px solid #ccc;
	border-top-left-radius: 3px;
	background-color: #fff;
	padding: 20px 20px;
	text-align: center;
	position: fixed;
	bottom: 0px;
	border-top-right-radius: 3px;
	left: 0;
	right: 0;
	transition: all 0.3s ease;
	display: block;
}

.dropUploadPorcentajeDivHidden {
    bottom: -100% !important;
    display: none !important;
}


/*------------------------------------------------------------------------------------------------------------------/
/*--------------------------------------------------------------------------        SECCIONES WEB        -----------/
/*------------------------------------------------------------------------------------------------------------------/

/*--------------------------------------------------------------------- Login */

#login-body {
	padding: 0;
	background-color: #fff;
	margin-bottom: 20px;
}

#login-container {
	width: 100%;
	min-width: 290px;
	max-width: 490px;
    text-align: center;
	color: #646464;
	font-size: 14px;
	letter-spacing: 0.5px;
	padding: 0 20px;
	margin-top: 30px;
}

#login-container img {
	margin-bottom: 30px;
}

@media (min-width: 345px) {
	#login-logo:first-child {
		height: 50px;
	}
}

#login-caja {
	padding: 30px 30px;
	box-shadow: 1px 0px 15px #777;
	text-align: left;
}

#login-caja h2 {
	color: #296aff;
    font-size: 24px;
    display: block;
    text-align: center;
	margin-bottom: 30px;
}

#login-caja label {
    display: inline-block;
}

#login-caja a {
	text-decoration: none;
	color: #296aff;
}

#login-caja p {
	text-align: center;
	margin-bottom: 20px;
}

#login-caja .login-input input {	
	border: 1px solid #c3c3c3;
	background-color: #fff;
	color: #333;
	font-size: 15px;
	width: 100%;
	height: 100%;
	border-radius: 7px;
	padding: 10px;
	margin: 5px 0 15px 0;
}

#login-caja #contrasena {
	padding-right: 50px;
}

#login-caja .login-button {
	background-color: #296aff;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	padding: 12px;
	border: none;
	border-radius: 7px;
	letter-spacing: 1px;
	margin: 25px auto;
	display: block;
	max-width: 240px;
	width: 100%;
	cursor: pointer;
}

#login-caja span.fa {
	font-size: 25px;
	color: #757575;
    margin-right: 15px;
	margin-top: -55px;
    float: right;
    position: relative;
    display: inline-block;
	cursor: pointer;
}

#login-caja span.fa-eye-slash {
    margin-right: 13px;
}

#login-caja .link-reset-password {
	text-align: center;
	margin-top: 10px;
}

#login-caja .text-center {
	display: flex;
    justify-content: center;
    flex-direction: row; 
	font-weight: bold;
	border-radius: 7px;
	
}

#login-caja .text-center label {
	color: #646464;
	margin: 10px 7px;
	text-align: center;
}


#login-caja .login-button-img{
	border-radius: 7px;
	margin: 10px;
	height: 50px;
	width: 50px;
}

/* -- Accesos -- */
#login-caja .text-center a {
	/*display: flex;
	align-items: center;
	text-decoration: none;
	color: #296aff;
	box-shadow: rgba(167,167,167,.22) 0 0 6px 2px;
    border-radius: 7px;
	margin-top: 10px;*/
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	text-decoration: none;
	color: #296aff;
	box-shadow: rgba(167, 167, 167, .22) 0 0 6px 2px;
	border-radius: 3px;
	margin: 10px 5px;
	width: 100rem;
	cursor: pointer;
}

#login-caja .text-center a:first-of-type {
	/*margin-bottom: 15px;*/
}

#login-caja .text-center a:hover {
	   /*box-shadow: rgba(167,167,167,.22) 0 0 8px 2px, #296aff 0 0 0 1px; */
	   box-shadow: rgba(167, 167, 167, .22) 0 0 8px 2px, #296aff 0 0 3px 1px;;
	   transform: translateY(-3px);
}	
/* -- FIN Accesos -- */

#login-incorrecto {
	display: block;
	border-radius: 7px;
	margin: 10px 0 20px 0;
	padding: 10px 15px;
	text-align: left;
	background-color: #f2dede;
	color: #a94442;
	border: 1px solid #ebccd1;
	font-weight: bold;
}

#login-incorrecto .fa {
	margin-right: 5px;
}

@media (min-width: 490px) {
	#login-container {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		margin: 20px 0;
		max-height: 90vh;
	}
	
	#login-caja {
		padding: 30px 50px;
	}
}

@media (max-width: 344px) {
	#login-caja .text-center a {
		margin: 0 !important;
	}

	#login-logo {
		width: 220px;
	}
}



/*--------------------------------------------------------------------- Cabecera */

.mpBuscarCabecera {
	position: relative;
}
.mpBuscarCabecera button {
	border: none;
	background-color: transparent;
	-webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    /*right: 2.5%;*/
    right: 30px;
    top: 50%;
    transform: translate(0px, -50%);
}
.mpBuscarCabecera button:last-of-type {
	left: 20px;
    right: auto;
}
.mpBuscarCabecera input[type="text"] {
	width: 98%;
	background-color: #f5f5f5;
	border: none;
	/*border-radius: 12px/6px;*/
	border-radius: 12px;
	/*padding-left: 32px;*/
	padding-left : 42px;
}
.mpIconosCabecera i,
.mpBuscarCabecera .fa-search {
	color: #707070;
}

.mpAvisos {
	display: inline-block;
	position: relative;
}
.mpAvisos strong {
	display: block;
	width: 16px;
	height: 16px;
	line-height: 16px;
	text-align: center;
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 10px;
	color: #fff;
	border-radius: 50%;
	background-color: #bc1a1a;
}

.mpAvisos strong span:first-child {position:initial}

.mpAvisos span {
	position: absolute;
	left: -50000px;
}

div[class*="mpIdentificacion"] p {
	color: #333;
	margin-bottom: 2px;
	/*font-size: 0.8rem;*/
	font-size: 14px;
	padding-right: 6px;
}
div[class*="mpIdentificacion"] p * {
	/*font-size: 0.8rem;*/
	font-size: 14px;
}
div[class*="mpIdentificacion"] p span {
	display: block;
}
.mpFotoPerfil {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid #ccc;
}


@media all and (max-width: 575px) {
	.mpLogoCabecera  img {
		width: 160px;
	}
	
	.mpBuscarCabecera button:last-of-type {
		position: static;
		left: auto;
		right: auto;
		top: auto;
		padding: 0px;
		transform: none;
	}
	.z-north-body *[class*="col-"] {
		padding-left: 5px;
		padding-right: 5px;
	} 
}


/*--------------------------------------- popupInfoUsuario */

.popupInfo .mpIdentificacionEscritorio {padding: 10px 0 20px; font-size: 16px;}
.popupInfo .mpIdentificacionEscritorio .mpFotoPerfil {margin:0 16px 0 0!important}
.popupInfo .infoUsuarioPopup ul li {width:33.33%}
.popupInfo .infoUsuarioPopup ul .z-tab-text {font-size: 16px;}
.popupInfo .infoUsuarioPopup .z-tabpanels .z-tabpanel {padding: 20px;}
.popupInfo .infoUsuarioPopup .z-tabpanels .z-tabpanel .row {

    margin: 0;
}

/* -------------------------------------------------------- Contenido Central */
.z-center-body {
	overflow: auto;
}
.mpContenidoCentral {
	
}

/* -------------------------------------------------------- Arbol Carpetas */
.mpSubMenu .z-label {
	fonmt-size: 0.875rem;
}
.navbar-btn {
	-webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    padding: 0px;
}

@media all and (min-width: 960px) {
	.navbar-btn {
		display: none;
	}
}

@media all and (max-width: 960px) {
	.z-west-body {
		width: 0px;
		padding: 0px;
		transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
	}
	.z-center-body {
		width: 100%;
	}
	.z-west.active,
	.z-west-body.active {
		width: 260px !important;
		transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
	}
	.z-west {
		z-index: 100;
		top: 0px !important;
		overflow: visible;
		min-height: 100vh !important;
		border-right: 1px solid #000 !important;
		padding-top: 6px !important;
	}
	.z-west.active {
		-webkit-box-shadow: 5px 0px 5px 0px rgba(233,233,233,1);
		-moz-box-shadow:5px 0px 5px 0px rgba(233,233,233,1);
		box-shadow: 5px 0px 5px 0px rgba(233,233,233,1);
	}
	.z-west .z-window,
	.z-west .z-window-content {
		background: transparent;
		pointer-events: none;
	}
	.z-west .z-window-content * {
		pointer-events: auto;
	}
	
	
	#sidebarCollapse {
		position: absolute;
		right: 0px;
		background-color: #fff;
		transition: position 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
	}
	#sidebarCollapse.active {
		right: -50px;
		top: 16px;
	}
	.z-center-body.active {
		
	}
	
	
}

/* ----------------------------------------------------- Camino Migas */
.zkMigas li {
	list-style: none;
	display: inline-block;
	color: #666;
	font-size: 0.8rem;
}
.zkMigas li::after {
	content: " > ";
	display: inline-block;
	padding-left: 6px;
}
.zkMigas li:last-child {
	color: #407cff;
}
.zkMigas li:last-child::after {
	display: none;
}


/* ------------------------------------------------------ Opciones Generales */
.mpOpcionesItemsSeleccionados {
	margin: 0px;
}
.mpOpcionesItemsSeleccionados li {
	display: inline-block;
	list-style: none;
	margin: 0px;
}
.mpOpcionesItemsSeleccionados li span {
	display: inline-block;
	text-indent: -50000px;
}

@media all and (max-width: 575px) {
	.mpLogoTitularBandeja {
		width: calc(56px * 0.8);
	}
}


/* ------------------------------------------------------ Tabla Documentos */
.mpBotonesAccionBandeja button {
	-webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    border: none;
    padding: 0px;
}

table.dataTable {
	margin-top: 0px;
	margin-bottom: 0px;
}

.mpTablaDocs {
	border: none;
}
.mpTablaDocs * {
	color: #333;
}
.mpTablaDocs *[class*="fa-"]{
	color: #707070;
}

.mpCeldaEstado {
	width: 80px;
	text-align: center;
}

.mpCeldaSoloCheck div,
.mpCeldaEstado div {
	padding-left: 4px;
	padding-right: 4px;
	text-align: center;
}

.mpTablaDocs th {
	background-color: #fff;
	border: none;
	color: #000;
}
.mpTablaDocs th * {
	font-weight: 500;
}
.mpTablaDocs .z-listheader-content {
	color: #000;
}
.z-listbox-body table {
	border-collapse: separate;
}
.z-listbox-body table tbody tr {
	border: none;
	border-bottom: 1px solid #ddd;
}

@media all and (max-width: 992px) {
	
	.mpTablaDocs.mpTablaColapsable {
		height: calc(100% - 58px - 61px - 6px);
	}
	.mpTablaDocs.mpTablaColapsable .z-listbox-body  {
		height: 100% !important;
	}
	.mpTablaDocs.mpTablaColapsable .z-listbox-header  {
		display: none;
	}
	.mpTablaDocs td span {
		display: block;
		padding: 1px;
	}
	.mpTablaDocs td strong {
		display: block;
		position: absolute;
		left: -50000px;
	}
}


/* -------------------------------------------------------- Subir Documentos */
.popupGen .popupGen-content .z-north {border:0}
.popupGen .popupGen-content .z-north .z-north-body {padding: 0 0 20px}
.popupGen .popupGen-content .z-west {min-width: 300px!important; float: left;} 
.popupGen .popupGen-content .z-west .z-west-body {width: 100%!important; padding: 0}
.popupGen .popupGen-content .z-west .z-listbox {height:200px!important;}
.popupGen .popupGen-content .z-center .z-center-body {max-width: 350px; float: right; padding:20px;}
.popupGen .popupGen-content .z-center .z-center-body input[type="radio"],
.popupGen .popupGen-content .z-center .z-center-body input[type="checkbox"] {
	float: left;
    width: 6%;
    margin: 0 2%;
}
.popupGen .popupGen-content .z-center .z-center-body label {
	float: right;
    width: 90%;
    float: left;
    padding: 3px 0;
    margin-bottom: 20px;
}
.popupGen .popupGen-content .z-center .z-center-body span.z-label {
	float: left;
	margin: 0 0 20px;
	width: 100%;
	font-weight: bold;
	text-align: center
}
.popupGen .popupGen-content .z-south {padding-bottom: 20px;}


/* -------------------------------------------------------- Pestañas */
.nav-tabs .nav-link {
	color: #055555;
	border: 1px solid #d3dbeb;
	border-right: none;
	border-radius: 0px;
	padding: 4px 80px 4px 20px;
}

@media all and (max-width: 960px) {
	.nav-tabs .nav-link {
		padding-right: 8vw;
	}
}

.nav-tabs .nav-link:last-child {
	border-right: 1px solid #d3dbeb;
}
.nav-tabs .nav-link.active {
	color: #4868aa;
	font-weight: bold;
	border-bottom: 3px solid #4868aa;
}
.nav-tabs .nav-link i {
	color: #707070;
}
.nav-tabs .nav-link.active i {
	color: #4868aa;
}

/* --------------------------------------------------------------------- Popovers tablas */
.popover-body {
	padding: 0px;
	-webkit-box-shadow: 0px 0px 5px 5px rgba(204,204,204,1);
	-moz-box-shadow: 0px 0px 5px 5px rgba(204,204,204,1);
	box-shadow: 0px 0px 5px 5px rgba(204,204,204,1);
}
.popover-body .list-group {
	padding: 4px 0px;
}
.popover-body .list-group .list-group-item {
	border: none;
	padding: 4px 20px 4px 12px;
}

.popover-body .list-group .list-group-item *:not(i) {
	color: #333;
}


/* --------------------------------------------------------------------- Pie */
.z-south-body .row {
	background-color: #333;
}

.progress {
	height: 3px;
	margin: 10px 0px;
	background-color: #fff;
}
.progress-bar {
	background-color: #407cff;
}
.mpInfoAlmacenamiento {
	background: #4a206d url(../images/mpLogoPie.png) no-repeat 52px 24px;
	padding: 22px 30px 22px 90px;
	color: #fff;
}

.mpInfoAlmacenamiento span {
	font-size: 1.125rem;
}

.mpBotonAmplia button {
	border: none;
	background-color: #f5f5f5;
	-webkit-appearance: none;
    -moz-appearance: none;
    color: #4a206d;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
}


.mpOpcionesPie {
	margin-bottom: 0px;
	padding-right: 20px;
}
.mpOpcionesPie li {
	list-style: none;
	display: inline-block;
	padding: 4px 10px;
}
.mpOpcionesPie * {
	color: #fff;
}


@media all and (max-width: 960px) {
	.z-south-body .row {
		align-items: stretch !important;
	}
	.mpOpcionesPie {
		text-align: center;
		padding: 10px;
	}
}


@media all and (min-width: 576px) and (max-width: 960px) {
	.mpBotonAmplia {
		background: #4a206d;
		position: relative;
		padding: 20px;
	}
	
	.mpBotonAmplia button {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
}


@media all and (max-width: 575px) {
	.z-center-body {
		padding: 16px 8px 16px 4px;
	}
	.z-south .z-window-content .row {
		margin-left: 0px;
		margin-right: 0px;
	}
	.mpInfoAlmacenamiento  {
		padding: 10px 10px 10px 40px;
		background-position: 10px 10px;
		
		padding: 10px;
		background-image: none;
	}
	.mpOpcionesPie  {
		padding: 4px;
		margin-left: -12px;
		margin-right: -12px;
	}
	.mpInfoAlmacenamiento span,
	.mpOpcionesPie li * {
		font-size: 0.8rem;
	}
	.mpBotonAmplia {
		padding: 20px;
		text-align: center;
	}
	.mpBotonAmplia button {
		margin: 0px auto;
	}
	.mpOpcionesItemsSeleccionados {
		display: inline-block;
		padding-left: 10px;
	}
}

/*** AGREGADO IRAN 16.09 ****/
/* emisores boton */
.z_emisores {
	position: fixed;
    float: right;
    right: 15px;
    top: 180px;
    z-index: 9;
    background-color: darkviolet;
    -webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}
.z_emisores img {padding: 20px;}

/* emisores listado */
.z_emisores_list {
	position: absolute;
    right: 15px;
    z-index: 9999999;
    padding: 20px;
    background-color: #fff;
    top: 0px;
    min-width: 25%;
	border: 1px solid #cecece;
    border-right: 0;
    display:none;
    height:100%;
}
.z_emisores_list h4 {
	color:#4a206d;
	padding-bottom: 20px;
	border-bottom: 1px #d3dbeb solid;
	margin-bottom:20px;
}
.z_emisores_list h4 button {
	color: #333;
    font-size: 20px;
    float: right;
    font-weight: bold;
}
.z_emisores_list .z_p {
	padding-bottom: 20px;
	border-bottom: 1px #d3dbeb solid;
	margin-bottom:20px;
	max-width: 300px;
	float:left;
}
.z_emisores_list .z_p img {width:28%; margin-left:2%; float: right;}
.z_emisores_list .z_p > span {width:70%; font-size: 16px; float:left}
.z_emisores_list .z_p > span .z_emisor_desde {font-size:14px;}
.z_emisores_list .z_p a {font-size: 12px;}
.z_emisores_list #suscribir-emisor {
	color: #4a206d;
    margin: 0 20%;
    width: 60%;
    padding: 2% 5%;
    border: 1px solid #4a206d;
    float: left;
    text-align: center;
    -webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.z_emisores_list #suscribir-emisor:hover {
	text-decoration: none;
	background-color:#4868aa;
	border-color: #4868aa;
	color: #fff;
}


/* emisores pop up de explicacion */
.z_emisores-info {
    min-width: 200px;
    min-height: 300px;
    position: absolute;
    right: 45px;
    z-index: 10;
    top: 120px;
    padding: 10px;
    display: none;
}

.z_emisores-info span.z_info-txt {
	background-color: #f5f5f5;
    padding: 20px;
    margin-right: 10px;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 3px 5px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.25);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-weight: 800;
    max-width: 400px;
    float: right;
}
.z_emisores-info span.z_info-txt span {font-weight: bold; font-size: 16px;}
.z_emisores-info span.z_info-txt span.z_no-popup {
    margin-top: 40px;
    float: left;
    color: #aaa;
}
.z_emisores-info span.z_info-txt span.z_no-popup span {font-weight: normal; margin-left:5px; font-size: 14px;}
.z_emisores-info span.z_info-txt a {
    float: right;
    width: 5%;
    margin-left: 95%;
    margin-bottom: 10px;
    cursor: pointer;
}
.z_emisores-info span.z_info-txt img {margin: 0 0 0 40px;}
.z_emisores-info img {
	width: 66px;
    float: right;
}


/*********    POP UPS MODALES    *************/
.zk_popup-header {
	padding: 5px 10px;
}

.zk_popup-icon {
    font-size: 18px;
    color: #fff;
    display: block;
    cursor: pointer;
    float: right;
}









/************** PARCHE TEMPORAL **************/
._z-button {
	background: none;
	border: none;
}

._z-label {
	line-height: inherit;
	font-weight: inherit;
	font-size: inherit;
}

strong span {
	font-weight: bolder !important;
}

.clickable {
	cursor: pointer;
}

/************** INICIO CABECERA **************/

.z-north, .z-north-body {
	height: auto !important;
}

.mpBuscarCabecera button {
	margin: 0 10px;
}

.mpBuscarCabecera input[type="text"] {
	width: 98% !important;
	padding-left: 35px;
}

/* La magia de Edge. */
.layoutNorte .mpIdentificacionEscritorio  {
	min-width: 190px;
}

@media all and (max-width: 960px) {
	.mpLogoCabecera {
		padding-left: 4rem !important;
		margin-left: 0 !important;
	}
	
	.layoutNorte .mpIdentificacionEscritorio  {
		display: none !important;
	}
}

@media all and (max-width: 960px) {
	#mpBuscarCabecera {
		display: block !important;
	}
}

#nombreUsuarioCabecera span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 125px;
}
.mpIdentificacionEscritorio .p-2 {
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 4px!important;
}


/************** FIN CABECERA **************/

/************** ARBOL **************/

.z-tree {
	padding: 0 10px;
}

.z-tree-spacer {
	margin-right: 8px;
}

.z-tree-icon {
	padding: 0 6px;
}

.z-tree-body table {
	table-layout: auto !important;
}

.z-treecell-content {
	white-space: nowrap;
}

.layoutOeste div, .layoutOeste nav, .layoutOeste table, .layoutOeste tbody {
    width: 100% !important;
}

#sidebarCollapse {
	display: none !important;
	z-index: 1;
}

@media all and (max-width: 960px) {
	#sidebarCollapse {
		display: block !important;
	}
	
	#sidebar.active .navbar-btn {
		padding: 5px;
		width: 44px;
		height: 44px;
	}
	
	/* La magia de Edge. */
	.layoutOeste { left: -1px !important; }

	
	.layoutOeste .z-include { overflow: hidden !important; }
	.layoutOeste.active .z-include { overflow: auto !important; }
	
	.layoutOeste .mpIdentificacionEscritorio  {
		padding: 0 10px;
	}
	
	.layoutOeste  .mpFotoPerfil {
		width: 62px;
		height: 62px;
	}
	
	.layoutOeste .mpIdentificacionEscritorio  .media-body  {
		margin-top: -6px;
	}
}

@media all and (min-width: 961px) {
	/* Parche para el bootstrap css que oculta a partir de los 961 y no de los 992px. */
	.layoutOeste .d-lg-none {
		display: none !important;
	}
}

.layoutOeste .z-include {
	overflow: auto;
}

.mpBotonAmplia {
	color: #4a206d;
	background: #fff !important;
	padding: 15px 30px !important;
	border-radius: 100px;
}

.z-south-body a {
	color: #fff !important;
}

.z-west.layoutOeste .z-west-body {
	width: 100% !important;
}

.z-west.layoutOeste .z-west-body.active {
	height: 100% !important;
}

#sidebar {
	max-width: 100% !important;
}

.pieArbol {
	position: absolute;
	bottom: 0;
}
.pieArbol .mpDivAmplia  {
	text-align: center;
    margin: 10px 0 5px 0;
}

@media all and (min-width: 961px) {
	.z-west.layoutOeste {
		width: 300px !important;
	}
	
	.pieArbol {
		display: none !important;
	}
}

@media (max-width: 960px) {
	.z-west.layoutOeste {
		width: 0 !important;
	}
	
	.mpBotonAmplia {
		margin-top: 30px;
	}
}

@media (max-width: 575px) {
	.z-west.layoutOeste {
		width: 1px !important;
	}
}
/************** FIN ARBOL **************/

/************** INICIO PIE **************/

.layoutSur.z-south {
	top: auto !important;
    bottom: 0;
}

.layoutSur.z-south,
.layoutSur.z-south .z-south-body,
.layoutSur.z-south .z-include {
	height: auto !important;
}

@media all and (max-width: 575px) {
	/*.z-south-body .mpDivAmplia,
	.z-south-body .mpInfoAlmacenamiento {
		display: none;
	}
	
	.mpOpcionesPieDiv {
		margin: 0 auto !important;
	}
	
	.mpInfoAlmacenamiento span, .mpOpcionesPie li * {
		font-size: 0.6rem !important;
	}

	.layoutSur .mpInfoAlmacenamiento  {
		width: 150px !important;
	}*/

	.mpBotonAmplia {
		margin: 0 auto !important;
		padding: 10px 15px !important;
		margin-top: 25px;
		font-weight: bold;
		font-size: 13px;
	}
}

@media (max-width: 960px) {
	.mpOpcionesPieDiv {
		margin: 0 auto !important;
	}
	
	.layoutSur .mpInfoAlmacenamiento {
		width: 280px !important;
	}
	.layoutSur .mpInfoAlmacenamiento , .layoutSur .mpDivAmplia {
		display: none;
	}
}

@media (max-width: 1200px) {
	.mpInfoAlmacenamiento span {
		font-size: 0.9rem !important;
	}
}


/************** FIN PIE **************/


/************** PRINCIPAL **************/
.z-popup-content {
	text-align: center;
}

.mpBotonesAccionBandeja .mpIcoConFondo:hover {
	background-color: #407cff;
	color: #fff;
	transition: all 0.3s ease;
}

h2#nombreAgrupacion {
	border-bottom: 1px solid #f2f2f2;
	display: inline-block;
	width: calc(100% - 103px);
}

.z-listheader-sorticon {
	position: absolute !important;
	right: 0;
	width: auto !important;
	display: inline-block;
	top: 12px !important;
	display: inline-block;
	width: 20px !important;
}

.mpOpcionesItemsSeleccionados {
	position: absolute;
	right: 20px;
	border: none;
	background: none;
	margin-bottom: 10px !important;
	display: none !important;
}

.mpCeldaSoloCheck .fas,
.mpOpcionesItemsSeleccionados .fas {
	color: #707070;
	border-radius: 50%;
}

.mpOpcionesItemsSeleccionados .fas {
	display: inline-block;
	height: 35px;
	width: 35px;
	line-height: 1.9;
}

.mpCeldaSoloCheck .fas:hover,
.mpOpcionesItemsSeleccionados .fas:hover {
	color: #fff;
	background-color: #407cff;
	transition: all 0.3s ease;
}

.mpCeldaSoloCheck button:disabled .fas, .mpOpcionesItemsSeleccionados:disabled .fas,
.mpCeldaSoloCheck button[disabled] .fas, .mpOpcionesItemsSeleccionados[disabled] .fas {
	color: #d3dbeb;
	background-color: none;
	cursor: auto;
}

.mpCeldaSoloCheck:disabled .fas:hover, .mpOpcionesItemsSeleccionados:disabled .fas:hover,
.mpCeldaSoloCheck[disabled] .fas:hover, .mpOpcionesItemsSeleccionados[disabled] .fas:hover {
	color: #d3dbeb;
	background-color: inherit;
}

.mpCeldaEstado {
	width: 250px !important;
}

.mpCeldaMiniFecha {
	display: inline-block !important;
}

.mpCeldaMini {
	display: inline-block !important;
	float: right;
}

.mpCeldaMini img {
	height: 20px;
}

.mpCeldaMini img,
.mpCeldaEstado img {
	margin: 0 5px;
}

.principalTablaPopup .z-menupopup-content {
	padding: 10px 2px;
}

.principalTablaPopup .z-menuitem-content {
	padding: 8px 12px;
}

.principalTablaPopup .z-menuitem-text {
	font-size: 16px;
}

.principalTablaPopup [class*="fa-"] {
	width: 16px;
	height: 16px;
	font-size: 16px;
	line-height: 12px;
	margin-right: 10px;
}

@media (max-width: 575px) {
	.mpTablaDocsWrapper {
		height: calc(100% - 58px);
	}
	
	.mpTablaDocs.mpTablaColapsable {
		height: 100% !important;
	}
	
	.mpBotonesAccionBandeja  {
		display: none !important;
	}
	
	.z-drop-ghost {
		display: none !important;
	}
}

.datosAdicionales {
	display: block;
}

@media (min-width: 768px) {
	.datosAdicionales {
		display: none;
	}
	
	.mpOpcionesItemsSeleccionados {
		display: inline-block !important;
	}
	
	.mpTablaDocs table {
		table-layout: fixed !important;
	}
}

@media (max-width: 960px) {
	.mpBotonesAccionBandeja {
		display: none;
	}
}

/************** FIN PRINCIPAL **************/

/************** DOCUMENTO **************/
.layoutCentro .z-center-body {
	overflow: hidden;
}

.centerLayoutDocumentoContenido  .z-center-body {
	overflow: auto;
}

.layoutDocumentoCabecera-body h2 {
	display: inline-block;
	max-width: calc(100% - 112px);
}

.layoutDocumentoCabecera-body h2 span {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: block;
	width: 100%;
}

@media (max-width: 575x) {
	.layoutDocumentoCabecera-body button i {
		font-size: 16px;
		width: 25px;
		height: 25px;
		line-height: 25px;
	}

	.layoutDocumentoCabecera-body h2 {
		max-width: calc(100% - 90px);
	}

	.layoutDocumentoCabecera-body h2 span {
		font-size: 16px;
	}
}

.centerLlayoutDocumentoContenido .z-center-body,
.layoutDocumentoDetalles .z-east-body {
	overflow: auto;
}

.layoutDocumentoDetallesContenido .z-tabs {
	width: auto !important;
}

.layoutDocumentoDetallesNada {
	width: 50px !important;
}

.layoutDocumentoDetallesNada .layoutDocumentoDetallesContenido {
	display: none;
}

.layoutDocumentoDetallesContenido .z-listbox-body table {
	table-layout: auto !important;
}

.layoutDocumentoDetallesParte {
	max-width: 450px !important;
	width: 100% !important;
}

.layoutDocumentoDetallesTodo {
	width: 100% !important;
}

.verDetallesDocumento {
	background-color: #d3dbeb !important;
	color: #407cff !important;
	z-index: 1000;
    width: 50px !important;
	height: 50px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border: none;
	
	right: 0;
    overflow: hidden;
	position: absolute;
}

.verDetallesDocumento img {
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    position: relative;
    border-radius: 0 !important;
}

.verDetallesDocumento.verDetallesDocumentoActivo {
	background-color: #407cff !important;
	color: #d3dbeb !important;
}

.verNadaDetallesDocumento { margin-top: 10px; }
.verParteDetallesDocumento { margin-top: 70px; }
.verTodoDetallesDocumento { margin-top: 130px; }

@media (max-width: 575px) {
	.centerLayoutDocumentoContenido {
		top: 75px !important;
		width: auto !important;
		z-index: 1;
	}
	
	.centerLayoutDocumentoContenido .z-center-body {
		width: auto !important;
	}
	
	.verDetallesBotonera {
		background-color: #f5f5f5;
		position: absolute;
		margin-top: -60px;
		width: 100%;
		text-align: right;
	}
	
	.verDetallesBotonera button {
		position: relative;
		vertical-align: bottom;
		margin: 10px 10px 0 0;
		width: 40px !important;
		height: 40px !important;
	}
	
	.verDetallesDocumento {
		border-top-left-radius: 10px;
		border-bottom-left-radius: 0;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 0;
	}
	
	.verParteDetallesDocumento {
		display: none;
	}
	
	.layoutDocumentoDetallesContenido {
		margin-right: 0 !important;
		border: none !important;
	}
	
	.nombreDetallesDocumento {
		display: none !important;
	}
	
	.layoutDocumentoDetallesContenido, .centerLlayoutDocumentoContenido  {
		margin-top: 60px;
	}
	
	.layoutDocumentoDetallesNada {
		left: 0 !important;
		right: 0 !important;
		height: 60px !important;
		width: 100% !important;
		overflow: hidden;
	}
	
	.layoutDocumentoDetallesNada .verDetallesBotonera {
		margin-top: 0;
		width: 100%;
	}
	
	.centerLlayoutDocumentoContenido,
	.centerLlayoutDocumentoContenido .z-center-body {
		width: 100% !important;
	}
}

.verDetallesDocumento i {
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	margin-left: -3px;
}

.documentoPDFBotonera {
	text-align: center;
	line-height: 3.3;
	display: none;
}

.documentoPDFBotonera button {
	background: #407cff !important;
}

.documentoPDFPaginas {
	display: inline-block;
}

.documentoPDFPaginas input {
	width: 40px;
    text-align: center;
    padding: 0;
}

.documentoPDFBotonera button i {
	color: #fff;
}

.nombreDetallesDocumento {
	display: block;
	font-size: 18px;
	color: #4a206d;
	font-weight: bold;
	padding: 30px 20px;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.layoutDocumentoDetalles {
	position: relative;
	z-index: 1;
	top: 0 !important;
}

.layoutDocumentoDetalles .z-east-body {
	padding: 0;
}

.layoutDocumentoDetallesContenido {
	border: 2px solid #9d9d9d;
	margin-right: 50px;
}

.layoutDocumentoDetalles .z-tabbox {
	border: none;
}

.layoutDocumentoDetalles .z-tab-text {
	font-size: 16px;
}

.layoutDocumentoDetalles .z-tabs-content {
	padding: 0 20px;
}

.layoutDocumentoDetalles .z-listbox {
	border: none;
	border-bottom: 1px solid #d9d9d9;
}

.layoutDocumentoDetalles .z-listitem .z-listcell {
	border: none;
}

.layoutDocumentoDetalles .titulosDetalles {
	color: #555;
	font-size: 14px;
}

.layoutDocumentoDetalles .documentoDetallesCarpetaEtiqueta {
	background-color: #e6e6e6;
	border: none;
	padding: 5px 10px;
	margin: 2px 5px;
	cursor: pointer;
}

.z-listitem.z-listitem-disabled * {
	color: inherit !important;
}

.tabpanelFirmasDocumentoCargando {
	margin: 30px 10px 20px 10px;
    border-bottom: 1px solid #c9c9c9;
    padding: 20px 0;
    border-top: 1px solid #c9c9c9;
}

.tabpanelFirmasDocumentoCargando img {
	width: 40px;
	height: 40px;
	float: left;
	margin-right: 10px;
}

.tabpanelFirmasDocumentoNota {
    font-size: 13px !important;
    margin-top: 20px;
    display: block;
}

#documentoPDF {
	border: 1px solid #9d9d9d;
	width: 100%;
	margin-top: 15px;
}

/* DropUpload modal */
.dropUploadModal .z-north {
	border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}

.dropUploadModal .z-west {
	padding: 0;
}

.dropUploadModal  .z-listheader,
.dropUploadModal button {
	background: #407cff;
}
.dropUploadModal button {
	margin: 15px 0;
}

.dropUploadModal .z-west .z-listbox {
	height: 270px;
}

.dropUploadModal .z-center span,
.dropUploadModal .z-center label {
	font-size: 13px;
}

.dropUploadModal .titulo {
	font-weight: bold;
}

.dropUploadModal .z-center .z-radio input,
.dropUploadModal .z-center .z-checkbox input {
	float: left;
	margin-right: 10px;
	margin-top: 3px;
}

.dropUploadModal .z-center .z-radio label,
.dropUploadModal .z-center .z-checkbox label {
	width: calc(100% - 45px);
}
.dropUploadModal .z-south-body {
	padding: 0 15px;
}
