@CHARSET "ISO-8859-1";

/* Ejemplos                */
/**************************/
/* Colores               */
.ejemplos-colores
{
    /* Tablas */
    background: #8d99ae; /* Gris */
    background: #949fb2; /* Gris mas ligero*/
    background: #9aa4b7; /* Gris Tenue */
    background: #5A4140; /* Cafe */
    background: #bf0022; /* Guinda Botones */
    background: #354a6b; /* Azul Gris claro */
    background: #263049; /* Azul plomo */
}
/***************************/

/*  Valores Default  */
/*-------------------*/
html, body
{
	font: 1em Arial;
	background: #fff;
	margin: 0;
	height: 100%;
}
/* Tabla Default   */
/*************************/
table
{
    margin: 0px 0px 0px 0px;
    width: 100%;
    border-spacing: 0px;
    float: left;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font: 0.8em calibri;
}
table tr:nth-child(even)
{
    background: #fff;
}
table tr:nth-child(odd)
{
    background: #f3f3f3;
}
table th
{
    color: #222;
    height: 30px;
    font-size: 1.2em;
    font-weight: normal;
    border-top: solid 1px #b9b9b9;
    border-bottom: solid 1px #b9b9b9;
    border-right: solid 1px #b9b9b9;
    border-left: solid 1px #b9b9b9;
    background: #fff;
}
table td
{
    color: #232323;
    height: 23px;
    font: 0.9em calibri;
    border-bottom: 1px solid #d9d9d9;
    border-right: solid 1px #dbd8c6;
    border-left: solid 1px #ffffff;
}
table td:first-child
{
    border-left: solid 1px #dbd8c6;
}
table td a
{
    text-decoration: none;
    color: #912832;
}

/* Formularios Default   */
/*************************/
input[type="text"],
input[type="password"]{
    padding: 0 10px;
    height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #999;
}
input[type="date"],
input[type="time"]{
    padding: 0 0 0 10px;
    height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #999;
}
input[type="text"]:focus,
input[type="password"]:focus{
    outline-color: #ccc;
    box-shadow: 0px 0px 6px rgba(60, 0, 0, 0.25);
    border: 1px solid #999 !important;
}
input[type="submit"],
input[type="file"], button {
    height: 30px;
    font-size: 0.9em;    
}
select {
    padding: 5px;
    height: 30px !important;
    display: inline-block;
    color: #666;
    font-size: 0.8em;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #999;
    background: #fff;
}
select:disabled {
    background: #ececec;
    border: 1px solid #ccc;
}
select:focus{
    outline-color: #ccc;
    box-shadow: 0px 0px 6px rgba(60, 0, 0, 0.25);
    border: 1px solid #999 !important;
}

/* Checkbox Switch  */
/********************/
.switch{
    margin-right: 25px;
    position: relative;
    display: inline-block;
    width: 80px;
    height: 34px;
}
.switch input{
    opacity: 0;
    width: 0;
    height: 0;
}
.slider{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}
.slider:before{
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
}
input:checked + .slider{
    background-color: #2196f3;
    background-color: #7B0C26;
}
input:focus + .slider{
    box-shadow: 0 0 1px #2196f3;
}
input:checked + .slider:before{
    -webkit-transform: translateX(46px);
    -ms-transform: translateX(46px);
    transform: translateX(46px);
}
.slider.round{
    border-radius: 34px;
}
.slider.round:before{
    border-radius: 50%;
}
/* Ocultar / Mostrar      */
/*************************/
.oculto {
    display: none !important;
    position: relative;
}
.visible {
    display: block;
}


/* Posicion de elementos  */
/*************************/
.ala-izquierda {
    float: left!important;
}
.ala-derecha {
    float: right!important;
}
.ala-centro {
    margin: 0 auto;
}

/* Alineacion de texto  */
/***********************/
.texto-centro{
    text-align: center !important;
}
.texto-izquierda{
    text-align: left !important;
}
.texto-derecha{
    text-align: right !important;
}

/* Colores de texto  */
/*********************/
.texto-blanco{
    color: #fff !important;
}
.texto-ligero{
    color: #f3f3f3 !important;
}
.texto-ligeroazul-h{
    color: #d0d7dd !important;
}
.texto-ligeroazul-p{
    color: #c0c9d1 !important;
    color: #a7b1ba !important;
}

/* Clear Both      */
/******************/
.clearBoth { clear: both; }

/*//////////////////////////*/
/* Padding de Elementos    */
.pad-ala-derecha {
    padding-right: 1vw !important;
}
.pad-ala-izquierda {
    padding-left: 1vw !important;
}
.pad-arriba {
    padding-top: 1vw !important;
}
.pad-abajo {
    padding-bottom: 1vw !important;
}
.pad-ala-derecha-alt {
    padding-right: 2vw !important;
}
.pad-ala-izquierda-alt {
    padding-left: 2vw !important;
}
.pad-arriba-alt {
    padding-top: 2vw !important;
}
.pad-abajo-alt {
    padding-bottom: 2vw !important;
}
.pad-ala-izde {
    padding-left: 1vw !important;
    padding-right: 1vw !important;
}
.pad-ala-izde-alt {
    padding-left: 2vw !important;
    padding-right: 2vw !important;
}
.pad-ala-todo {
    padding: 1vw !important;
}
.pad-ala-todo-alt {
    padding: 2vw !important;
}
.pad-ala-todo-min {
    padding: 0.3vw !important;
}
.pad-nada {
    padding: 0 !important;
}

/*//////////////////////////////*/
/* Margenes de Contenedores    */
.mar-ala-derecha {
    margin-right: 5px !important;
}
.mar-ala-izquierda {
    margin-left: 5px !important;
}
.mar-arriba {
    margin-top: 5px !important;
}
.mar-abajo {
    margin-bottom: 5px !important;
}
.mar-ala-derecha-alt {
    margin-right: 1vw !important;
}
.mar-ala-izquierda-alt {
    margin-left: 1vw !important;
}
.mar-arriba-alt {
    margin-top: 1vw !important;
}
.mar-abajo-alt {
    margin-bottom: 1vw !important;
}

/*////////////////////////////*/
/* Bordes de Contenedores    */
.borde-sencillo {
    border: solid 1px #ccc !important;
}
.borde-sencillo-arr {
    border-top: solid 1px #ccc !important;
}
.borde-sencillo-der {
    border-right: solid 1px #ccc !important;
}
.borde-sencillo-izq {
    border-left: solid 1px #ccc !important;
}
.borde-sencillo-aba {
    border-bottom: solid 1px #ccc !important;
}
.borde-sencillo-arde {
    border-top: solid 1px #ccc !important;
    border-right: solid 1px #ccc !important;
}
.borde-sencillo-ariz {
    border-top: solid 1px #ccc !important;
    border-left: solid 1px #ccc !important;
}
.borde-sencillo-abde {
    border-bottom: solid 1px #ccc !important;
    border-right: solid 1px #ccc !important;
}
.borde-sencillo-abiz {
    border-bottom: solid 1px #ccc !important;
    border-left: solid 1px #ccc !important;
}
/* <<< Borde Alternativo >>> */
.borde-sencillo-alt {
    border: solid 1px #ddd !important;
}
.borde-sencillo-alt-arr {
    border-top: solid 1px #ddd !important;
}
.borde-sencillo-alt-der {
    border-right: solid 1px #ddd !important;
}
.borde-sencillo-alt-izq {
    border-left: solid 1px #ddd !important;
}
.borde-sencillo-alt-aba {
    border-bottom: solid 1px #ddd !important;
}
/* <<< Borde Alternativo 2 >>> */
.borde-sencillo-alt2 {
    border: solid 1px #e5e5e5 !important;
}
.borde-sencillo-alt2-arr {
    border-top: solid 1px #e5e5e5 !important;
}
.borde-sencillo-alt2-der {
    border-right: solid 1px #e5e5e5 !important;
}
.borde-sencillo-alt2-izq {
    border-right: solid 1px #e5e5e5 !important;
}
.borde-sencillo-alt2-aba {
    border-bottom: solid 1px #e5e5e5 !important;
}
/* <<< Bordes Especiales >>> */
.borde-guinda-arriba-10 {
    border-top: solid 10px #99040c !important;
    border-top: solid 10px #bf0022 !important;
}
.borde-guinda-izquierda-5 {
    border-left: solid 5px #7B0C26 !important;
}
.borde-guinda-izquierda-10 {
    border-left: solid 10px #99040c !important;
    border-left: solid 10px #bf0022 !important;
    border-left: solid 10px #7B0C26 !important;
}
.borde-guinda-izquierda-25 {
    border-left: solid 25px #99040c !important;
    border-left: solid 25px #bf0022 !important;
    border-left: solid 25px #7B0C26 !important;
}
.borde-guinda-derecha-5 {
    border-right: solid 5px #7B0C26 !important;
}
.borde-guinda-derecha-10 {
    border-right: solid 10px #99040c !important;
    border-right: solid 10px #bf0022 !important;
    border-right: solid 10px #7B0C26 !important;
}
.borde-guinda-derecha-25 {
    border-right: solid 25px #99040c !important;
    border-right: solid 25px #bf0022 !important;
    border-right: solid 25px #7B0C26 !important;
}
.borde-azul-derecha-5 {
    border-right: solid 5px #0e284f !important;
}
/* <<< Borde Redondeado >>> */
.borde-redondo-5{
    border-radius: 5px;
}
.borde-redondo-10{
    border-radius: 10px;
}
.borde-redondo-20{
    border-radius: 20px;
}
.borde-redondo-arriba-10{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.borde-redondo-abajo-10{
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.borde-redondo-izquierda-10{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.borde-redondo-izquierda-20{
    border-top-left-radius: 45px;
    border-bottom-left-radius: 45px;
}
.borde-redondo-derecha-10{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.borde-redondo-derecha-20{
    border-top-right-radius: 45px;
    border-bottom-right-radius: 45px;
}
.borde-redondo-ariz-10{
    border-top-left-radius: 10px;
}
.borde-redondo-arde-10{
    border-top-right-radius: 10px;
}
.borde-redondo-abiz-10{
    border-bottom-left-radius: 10px;
}
.borde-redondo-abde-10{
    border-bottom-right-radius: 10px;
}



/* Inputs     */
/**************/
.inpt-search {
    padding: 0 10px;
    min-width: 143px;
    height: 30px;
    color: #646464;
    font-size: 1em;
    background: #f3f3f3;
    border: 1px solid #999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.inpt-search:focus{
    outline-color: #ccc;
    box-shadow: 0px 0px 6px rgba(60, 0, 0, 0.25);
    border: 1px solid #999 !important;
}
.inpt-result {
    padding: 5px;
    min-width: 143px;
    height: 30px;
    display: inline-block;
    color: #666;
    font-size: 0.9em;
    overflow: hidden;
    background: #ececec;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Resultado de la busqueda */
/***************************/
.busqueda-cont {
    margin-top: 32px;
    width: 300px;
    display: list-item;
    list-style-type: none;
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.busqueda-result {
    width: 100%;
    display: block;
}
.lista-result {
    margin: 0;
    padding: 0;
    display: none;
    list-style-type: none;
    cursor: default;
    border: 1px solid #888;
    background: #fff;
}
.lista-result li {
    padding: 0 10px;
    height: 25px;
    line-height: 25px;
}
.lista-result li:hover {
    background: #e5e5e5;
}
.lista-result .item-result {
    height: 25px;
}

/* Estado del detalle pedimento */
/********************************/
.ped-estadodta {
    padding: 0 !important;
}
.ped-estadodta i {
    height: 100%;
    min-height: 25px;
    min-width: 30px;
    padding: 2px 0;
    display: inline-block;
    text-align: center;
    background: #f3f3f3;
    border-right: solid 1px #828282;
}
.ped-estadodta em {
    width: calc(100% - 40px);
    min-height: 25px;
    padding: 2px 10px;
    margin: 0;
    display: inline-block;
    /*color: #fff;*/
    /*#9a1818;*/
    box-sizing: border-box;
}
.ped-estadodta i.verdeP3 {
    color: #fff;
    background: #028e53;
}
.ped-estadodta i.verdeP2 {
    color: #444;
    background: #2bffd4;
}
.ped-estadodta i.verdeP1 {
    color: #444;
    background: #b2ffb6;
    background: #d4ffb2;
}
.ped-estadodta i.blancoP0 {
    color: #444;
    background: #fff;
}

/* Rojo / Verde / Naranja */
/*************************/
.rojoestado
{
    background: #d50101;
    border-bottom: 1px solid #c80303;
    border-right: solid 1px #c80303;
	border-left: solid 1px #c80303;
}
.verdeestado
{
    background: #028e53;
    background: #11c472;
    border-bottom: 1px solid #03ac5f;
    border-right: solid 1px #03ac5f;
	border-left: solid 1px #03ac5f;
    
}
.rojoestado2
{
    color: #fff;
    background: #d50101;
    border-bottom: 1px solid #c80303;
    border-right: solid 1px #c80303;
	border-left: solid 1px #c80303;
}
.naranjaestado
{
    color: #fff;
    background: #fd9713;
    border-bottom: 1px solid #ea8707;
    border-right: solid 1px #ea8707;
	border-left: solid 1px #ea8707;
}

/* Graficas                  */
/*---------------------------*/
#graficascont
{
    margin: 0;
    padding: 0;
    float: left;
    width: 100%;
    background: #e3e3e3;
}
#graficascont .titulo
{
    margin: 0px 0px 0px 0px;
    padding: 15px 10px 0 20px;
    width: 100%;
    height: 60px;
    float: left;
    border-bottom: solid 2px #d3d3d3;
    background: #fff;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#graficascont .titulo h3
{
    margin: 0;
    padding: 0;
    font: 1.3em Arial;
    font: normal, normal, normal 1.3em/100% Arial, sans-serif;
    color: #464646;
}
.graficas
{
    margin: 0;
    padding: 10px;
    width: 25%;
    height: auto;
    float: left;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.graficas .titulografica
{
    margin: 0px 0px 0px 0px;
    padding: 15px 0px 0 0px;
    width: 100%;
    height: 60px;
    float: left;
    border-bottom: solid 0px #d3d3d3;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.graficas .titulografica h4
{
    margin: 0;
    padding: 0;
    font: 1.2em Arial;
    font: normal, normal, normal 1.3em/100% Arial, sans-serif;
    text-align: center;
    color: #464646;
}
.graficas .nografica
{
    margin: 0;
    padding: 0 5% 0 5%;
    float: left;
    width: 100%;
    height: 100%;
    background: url('../images/graficana.png') no-repeat 0 0;
    background-position: center;
    background-size: 92%;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.graficas .nografica img {
    margin: 0;
    width: 100%;
    height: 290px;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.grafica1
{
    margin: 0px 0 0 0;
    width: 100%;
    
    float: left;
}

/* Operaciones Recientes      */
/*---------------------------*/
.operecientes
{
    margin: 0;
    padding: 0;
    display: inline-block;
    background: #ffffff; /* Old browsers */
    background: linear-gradient(to bottom,  #ffffff 50%,#efefef 100%); /* W3C */
    border-top: solid 0px #dedede;
    border-left: solid 0px #e5e5e5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.operecientes .alto-min
{
    min-height: 240px;
}
.operecientes .titulo-ope
{
    margin: 0px 0px 0px 0px;
    padding: 15px 10px 0 20px;
    width: 100%;
    min-height: 45px;
    display: inline-block;
    border-bottom: solid 0px #808080;
    background: #ffffff; /* Old browsers */
    /*background: linear-gradient(to right bottom,  #ffffff 0%,#efefef 100%); /* W3C */
    box-sizing: border-box; 
}
.operecientes .titulo-ope.titulo-1x
{
    min-height: 45px;
}
.operecientes .titulo-ope.titulo-2x
{
    height: 65px;
}
.operecientes .titulo-ope h3
{
    margin: 0;
    padding: 0;
    font: 1.3em Arial;
    font: normal, normal, normal 1.3em/100% Arial, sans-serif;
    color: #fff;
    color: #434343;
    color: #0e284f;
}
.operecientes .titulo-ope h5
{
    margin: 0;
    padding: 0;
    font: 0.9em Arial;
    font: normal, normal, normal 1.3em/100% Arial, sans-serif;
    color: #fff;
    color: #434343;
}
.operecientes table
{
    margin: 0px 0px 0px 0px;
    width: 100%;
    border-spacing: 0px;
    text-align: center;
    background: #000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.operecientes table tr:nth-child(even)
{
   background: #fff;
}
.operecientes table tr:nth-child(odd)
{
   background: #e9e9e9;
}
.operecientes table th:first-child
{
    color: #5A4140;
    color: #fff;
    height: 30px;
    font-size: 1em;
    font-weight: normal;
    border-top: solid 0px #705050;
    border-bottom: solid 2px #7e7e7e;
    border-bottom: solid 3px #0e284f;
    border-right: solid 0px #3D2D2D;
    border-left: solid 0px #705050;
    background: #838383;
    background: #0e284f;
}
.operecientes table th
{
    color: #5A4140;
    color: #fff;
    height: 30px;
    font-size: 1.1em;
    font-weight: normal;
    border-top: solid 0px #705050;
    border-bottom: solid 2px #7e7e7e;
    border-bottom: solid 3px #0e284f;
    border-right: solid 0px #3D2D2D;
    border-left: solid 0px #705050;
    background: #838383;
    background: rgba(159,10,34,0.90);
    background: #0e284f;
}
.operecientes table th.resaltado
{
    color: #5A4140;
    color: #fff;
    height: 30px;
    font-size: 1em;
    font-weight: normal;
    border-top: solid 0px #705050;
    border-bottom: solid 2px #7e7e7e;
    border-bottom: solid 3px rgba(159,10,34,0.90);
    border-right: solid 0px #3D2D2D;
    border-left: solid 0px #705050;
    background: #838383;
    
    background: #0e284f;
    background: rgba(14,40,79,0.95);
}
.operecientes table td:first-child
{
    border-left: solid 0px #ebe8d6;
    border-right: solid 0px #ebe8d6;
}
.operecientes table td
{
    color: #232323;
    height: 27px;
    font: 1em calibri;
    border-bottom: solid 0px #e0e0e0;
    border-right: solid 0px #ebe8d6;
    border-left: solid 0px #ffffff;
}
.operecientes table td a
{
    text-decoration: none;
    color: #912832;
}
.operecientes table .txt-destacado
{
    font-weight: 500;
    color: #0e284f;
    color: rgba(159, 10, 34, 0.90) !important;
    font-style: normal;
}
.operecientes .tbl-tooltip
{
    position: relative;
    display: inline-block;
}
.operecientes .tbl-tooltip .tooltiptext
{
    min-width: 150px;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    padding: 5px;
    text-align: center;
    color: rgba(250, 250, 250, 0.90);
    visibility: hidden;
    position: absolute;
    background: #0e284f;
    border-radius: 6px;
    z-index: 0;
}
.operecientes .tbl-tooltip:hover .tooltiptext
{
    visibility: visible;
    opacity: 1;
}

/* Widget Totales (Operaciones) */
/*------------------------------*/
.widg-totales-cont
{
    margin: 0;
    padding: 0;
    display: inline-block;
    border-top: solid 0px #dedede;
    border-left: solid 0px #e5e5e5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.widg-totales-cont .titulo-widg-totales-cont
{
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 15px;
    border: solid 0px #808080;
    /*background: linear-gradient(to right bottom,  #ffffff 0%,#efefef 100%); /* W3C */
    box-sizing: border-box; 
}
.widg-totales-cont .titulo-widg-totales-cont h3
{
    margin: 0;
    padding: 0;
    font: 1.3em Arial;
    color: #fff;
    color: #434343;
    color: #0e284f;
}
.widg-totales-cont .fondo
{
    background: #ffffff;
    background: linear-gradient(to bottom,  #ffffff 50%,#efefef 100%); /* W3C */
}
.widg-totales-cont .alto-min
{
    min-height: 240px;
}
.widg-totales
{
    margin: 0;
    padding: 0;
    display: inline-block;
    border-top: solid 0px #dedede;
    border-left: solid 0px #e5e5e5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.widg-totales .titulo-widg-totales
{
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 15px;
    border: solid 0px #808080;
    box-sizing: border-box; 
}
.widg-totales .titulo-widg-totales h3
{
    margin: 0;
    padding: 0;
    font: 1.2em Arial;
    color: #0e284f;
    /*color: rgba(159,10,34,0.99);*/

}
.widg-totales .widg-totales-lista
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.widg-totales .widg-totales-lista .widg-totales-item
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.widg-totales .widg-totales-lista .widg-totales-item .widg-totales-item-encabezado
{
    padding: 5px 10px 5px 10px;
    color: #5A4140;
    color: #fff;
    min-height: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: linear-gradient(to bottom, #d7dee5 25%, #c9d0d8 99%);
    border: solid 1px #fff;
    border-width: 1px 1px 0px 1px;
    box-sizing: border-box;
}
.widg-totales .widg-totales-lista .widg-totales-item .widg-totales-item-encabezado.fondo-ivory
{
    background: rgba(14,40,79,0.95) !important;    
    background: linear-gradient(to bottom, #e9e9e9, #fff) !important;
}
.widg-totales .widg-totales-lista .widg-totales-item .widg-totales-item-encabezado span
{
    color: #0e284f;
    font-size: 1.1em;
    font-weight: normal;
    text-align: center;
    list-style: none;
    display: list-item;
}
.widg-totales .widg-totales-lista .widg-totales-item .widg-totales-item-contador
{
    padding: 5px 10px 5px 10px;
    min-height: 30px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: linear-gradient(to bottom, #c9d0d8 0%, #a5aeb7 65%);
    border: solid 1px #fff;
    border-width: 0px 1px 1px 1px;
    box-sizing: border-box;
}
.widg-totales .widg-totales-lista .widg-totales-item .widg-totales-item-contador.fondo-ivory
{
    background: rgba(14,40,79,0.95);
    background: linear-gradient(to top, #f3f3f3, #fff) !important;
}
.widg-totales .widg-totales-lista .widg-totales-item .widg-totales-item-contador span
{
    color: #0e284f;
    font-size: 1.3em;
    font-weight: normal;
    text-align: center;
    list-style: none;
    display: list-item;
}
.widg-totales .widg-totales-lista .widg-totales-item .resaltado
{
    background: #0e284f;
    background: rgba(14,40,79,0.95);
    border: solid 1px #0e284f;
    border-width: 0px 1px 0px 1px;
    border-left: solid 5px rgba(159,10,34,0.90);
}
.widg-totales .widg-totales-lista .widg-totales-item .resaltado span
{
    color: #fff;
}
.widg-totales .widg-totales-tbl .titulo-widg-totales-tbl h3
{
    margin: 0;
    padding: 0;
    font: 1em Arial;
    color: #fff;
    color: #0e284f;
}
.widg-totales .widg-totales-tbl .titulo-widg-totales-tbl h5
{
    margin: 0;
    padding: 0;
    font: 0.9em Arial;
    color: #fff;
    color: #0e284f;
}
.widg-totales .widg-totales-tbl table
{
    margin: 0px;
    width: 100%;
    text-align: center;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.widg-totales .widg-totales-tbl table tbody tr:nth-child(even)
{
   background: #eee !important;
}
.widg-totales .widg-totales-tbl table tbody tr:nth-child(odd)
{
   background: #fff !important;
}
.widg-totales .widg-totales-tbl table th
{
    padding: 5px 10px 5px 10px;
    color: #fff;
    color: #0e284f;
    height: 30px;
    font-size: 1.1em;
    font-weight: normal;
    text-align: center;
    border: solid 0px #0e284f;
    border-bottom: solid 3px #0e284f;
    /*background: #0e284f;
    background: rgba(14,40,79,0.95);*/
    background: transparent;
}
.widg-totales .widg-totales-tbl table th.resaltado
{
    color: #5A4140;
    color: #fff;
    height: 30px;
    font-size: 1.2em;
    font-weight: normal;
    border-top: solid 0px #705050;
    border-bottom: solid 3px #0e284f;
    /*border-bottom: solid 3px rgba(159,10,34,0.90);*/
    /*border-bottom: solid 3px rgba(14,40,79,0.99);*/
    border-right: solid 0px #3D2D2D;
    border-left: solid 0px #705050;
    background: #0e284f;
    background: rgba(14,40,79,0.95);
}
.widg-totales .widg-totales-tbl table td
{
    padding: 5px 10px;
    color: #434343;
    font: 1em calibri;
    border-bottom: solid 0px #e0e0e0;
    border-right: solid 0px #ebe8d6;
    border-left: solid 0px #ffffff;
}
.widg-totales .widg-totales-tbl table td:first-child
{
    color: #0e284f;
    font-size: 1em;
    font-weight: bold;
    border-top: solid 0px #705050;
    border-bottom: solid 0px #7e7e7e;
    border-right: solid 0px #3D2D2D;
    border-left: solid 0px #705050;
    /*background: rgba(80,80,80,0.05);*/
}
.widg-totales .widg-totales-tbl table td a
{
    text-decoration: none;
    color: #912832;
}
.widg-totales .widg-totales-tbl table .txt-destacado
{
    font-weight: 500;
    color: #0e284f;
    color: rgba(159, 10, 34, 0.90) !important;
    font-style: normal;
}
.widg-totales .widg-totales-tbl .tbl-tooltip
{
    position: relative;
    display: inline-block;
}
.widg-totales .widg-totales-tbl .tbl-tooltip .tooltiptext
{
    min-width: 150px;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    padding: 5px;
    text-align: center;
    color: rgba(250, 250, 250, 0.90);
    visibility: hidden;
    position: absolute;
    background: #0e284f;
    border-radius: 6px;
    z-index: 0;
}
.widg-totales .widg-totales-tbl .tbl-tooltip:hover .tooltiptext
{
    visibility: visible;
    opacity: 1;
}
.widg-totales-cont .pie-widg-totales-cont
{
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 30px;
    display: inline-block;
    box-sizing: border-box; 
}
.widg-totales-cont .pie-widg-totales-cont h5
{
    margin: 0;
    padding: 0;
    font: 0.7em Arial;
    color: #fff;
    color: #434343;
}

/* Sector Widgets Menu Izq  */
/*--------------------------*/
.sector-widg-menu
{
    padding: 0;
    margin: 0;
}
@media (min-width: 992px)
{
    .sector-widg-menu
    {
        padding: 0;
        margin: 0;
        min-height: calc(100vh - 90px) !important;
    }
}

/* Cabeza Solo Mobiles XS    */
/*---------------------------*/
.navbar
{
    min-height: 60px;
    padding: 0 !important;
    margin: 0 !important;
}
#cabeza-xs
{
    width: 100%;
    min-height: 60px;
    /*box-shadow: 2px 0px 10px #939393;*/
    z-index: 2;
    overflow: hidden;
}
#cabeza-xs .logo-menu-xs
{
    width: calc(100% - 80px);
    /*height: 90px !important;
    height: 100px !important;*/
    padding: 0;
    display: inline-block;
    /*background: #0e284f;*/
    /*border-bottom: solid 1px #133260;*/
}
#cabeza-xs .logo-menu-xs img
{
    width: 95%;
    /*margin: 0 auto;*/
    padding: auto;
    display: inline-block;
}
#cabeza-xs .menu-toggler
{
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 2.5em;
    /*color: #212529;*/
    color: #f5f5f5 !important;
    display: inline-block;
    border-width: 0;
    background-color: transparent !important;
}
#cabeza-xs .menu-toggler i
{
    margin: 0;
    padding: 0 7px;
    border-radius: 8px;
    border: solid 1px #133260
}
#panel-xs
{
    min-width: 130px;
    max-width: 260px;
    min-height: 100%;
    /*box-shadow: 2px 0px 10px #939393;*/
}
#panel-xs .btn-close
{
    /*color: #212529;*/
    /*color: #f5f5f5 !important;*/
    /*background: #fff !important;*/
    /*background-color: #fff !important;*/
}
#panel-xs .btn-custom
{
    /*color: #212529;*/
    color: #f5f5f5 !important;
    border-width:0;
    background-color: transparent !important;
}
#panel-xs .btn-custom i
{
    margin: 0;
    padding: 8px 10px;
    border-radius: 8px;
    border: solid 1px #133260;
}

/* Panel de Menu Bootstrap sm, md y lg */
/*-------------------------------------*/
#panel
{
    min-width: 130px;
    max-width: 260px;
    min-height: 100%;
    background: #6E0B22;
    background: linear-gradient(to bottom right, #99040c, #670d11);
    /*box-shadow: 2px 0px 10px #939393;*/
    z-index: 2;
}
#logo
{
    margin: 0 0 15px 0;
    padding: 15px 0 0 0;
    height: 60px;
    float: left;
}
.bodlogin
{
	font: 1em Arial;
	background: #ffffff;
	margin: 0;
}	
#menu
{
	width: 220px;
	float: left;
}
.accordion,
.accordion ul,
.accordion li,
.accordion a,
.accordion span
{
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}
.accordion li
{
    list-style: none;
}
.accordion li > a
{
    display: block;
    position: relative;
    min-width: 110px;
    padding: 0 10px 0 40px;
 	
 	color: #fdfdfd;
    font: bold 12px/32px Arial, sans-serif;
    text-decoration: none;
    text-shadow: 0px 1px 0px rgba(0,0,0, .35);
 
    background: #6d060b;
    background: -moz-linear-gradient(top,  #7E080E 0%, #6d060b 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7E080E), color-stop(100%,#6d060b));
    background: -webkit-linear-gradient(top,  #7E080E 0%,#6d060b 100%);
    background: -o-linear-gradient(top,  #7E080E 0%,#6d060b 100%);
    background: -ms-linear-gradient(top,  #7E080E 0%,#6d060b 100%);
    background: linear-gradient(top,  #7E080E 0%,#6d060b 100%);
 
    -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255,255,255, .1), 0px 1px 0px 0px rgba(0,0,0, .1);
    -moz-box-shadow: inset 0px 1px 0px 0px rgba(255,255,255, .1), 0px 1px 0px 0px rgba(0,0,0, .1);
    box-shadow: inset 0px 1px 0px 0px rgba(255,255,255, .1), 0px 1px 0px 0px rgba(0,0,0, .1);
}
.accordion li > a span {
    display: block;
    position: absolute;
    top: 7px;
    right: 0;
    padding: 0 10px;
    margin-right: 10px;
 
    font: normal bold 12px/18px Arial, sans-serif;
    background: #560308;
 
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
 
    -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
    -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
    box-shadow: inset 1px 1px 1px rgba(0,0,0, .2), 1px 1px 1px rgba(255,255,255, .1);
}
.accordion > li > a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 24px;
    height: 24px;
    margin: 4px 8px;
 
    background-repeat: no-repeat;
    background-image: url(../images/menuicons.png);
    background-position: 0px 0px;
}
.accordion li.ini > a:before { background-position: 0px 0px; }
.accordion li.ini:hover > a:before,
.accordion li.ini:target > a:before { background-position: 0px 0px; }

.accordion li.esta > a:before { background-position: -144px 0px; }
.accordion li.esta:hover > a:before,
.accordion li.esta:target > a:before { background-position: -144px 0px; }
 
.accordion li.alma > a:before { background-position: -24px 0px; }
.accordion li.alma:hover > a:before,
.accordion li.alma:target > a:before { background-position: -24px 0px; }
 
.accordion li.archi > a:before { background-position: -48px 0px; }
.accordion li.archi:hover > a:before,
.accordion li.archi:target > a:before { background-position: -48px 0px; }

.accordion li.avi > a:before { background-position: -48px 0px; }
.accordion li.avi:hover > a:before,
.accordion li.avi:target > a:before { background-position: -48px 0px; }

.accordion li.expo > a:before { background-position: -24px 0px; }
.accordion li.expo:hover > a:before,
.accordion li.expo:target > a:before { background-position: -24px 0px; }

.accordion li.ferro > a:before { background-position: -96px 0px; }
.accordion li.ferro:hover > a:before,
.accordion li.ferro:target > a:before { background-position: -96px 0px; }

.accordion li.reto > a:before { background-position: -120px 0px; }
.accordion li.reto:hover > a:before,
.accordion li.reto:target > a:before { background-position: -120px 0px; }

.accordion li.immex > a:before { background-position: -120px 0px; }
.accordion li.immex:hover > a:before,
.accordion li.immex:target > a:before { background-position: -120px 0px; }

.accordion li.sign > a:before { background-position: -144px 0px; }
.accordion li.sign:hover > a:before,
.accordion li.sign:target > a:before { background-position: -144px 0px; }

.sub-menu li a {
    color: #5f2b2e;
    text-shadow: 1px 1px 0px rgba(255,255,255, .2);
 
    background: #f0f0f0;
    border-bottom: 1px solid #c9c9c9;
 
    -webkit-box-shadow: inset 0px 1px 0px 0px rgba(255,255,255, .1), 0px 1px 0px 0px rgba(0,0,0, .1);
    -moz-box-shadow: inset 0px 1px 0px 0px rgba(255,255,255, .1), 0px 1px 0px 0px rgba(0,0,0, .1);
    box-shadow: inset 0px 1px 0px 0px rgba(255,255,255, .1), 0px 1px 0px 0px rgba(0,0,0, .1);
}
 
.sub-menu li:last-child a { border: none; }
 
.sub-menu li > a span {
    color: #797979;
    text-shadow: 1px 1px 0px rgba(255,255,255, .2);
    background: transparent;
    border: 1px solid #c9c9c9;
 
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
 
.sub-menu em {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 14px;
    color: #5f2b2e;
    font: normal 10px/32px Arial, sans-serif;
}
.accordion > li:hover > a,
.accordion > li:target > a {
    color: #edeae7;
    text-shadow: 1px 1px 1px rgba(255,255,255, .2);
    background: #a5cd4e;
    background: -moz-linear-gradient(top,  #47181a 0%, #3b1214 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#47181a), color-stop(100%,#3b1214));
    background: -webkit-linear-gradient(top,  #47181a 0%,#3b1214 100%);
    background: -o-linear-gradient(top,  #47181a 0%,#3b1214 100%);
    background: -ms-linear-gradient(top,  #47181a 0%,#3b1214 100%);
    background: linear-gradient(top,  #47181a 0%,#3b1214 100%);
}
 
.accordion > li:hover > a span,
.accordion > li:target > a span {
    color: #fdfdfd;
    text-shadow: 0px 1px 0px rgba(0,0,0, .35);
    background: #320c0e;
}
 
.sub-menu li:hover a { background: #fff; }
.accordion li > .sub-menu {
    height: 0;
    overflow: hidden;
 
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
 
.accordion li:target > .sub-menu8 {
    height: auto;
}
.accordion li:target > .esta {
    height: 65px;
}
.accordion li:target > .alma {
    height: 131px;
}
.accordion li:target > .archi {
    height: 65px;
}
.accordion li:target > .avi {
    height: 32px;
}
.accordion li:target > .expo {
    height: 32px;
}
.accordion li:target > .ferro {
    height: 65px;
}
.accordion li:target > .reto {
    height: 162px;
}
.accordion li:target > .immex {
    height: 162px;
}

/* Logo de Menu Acordeon BS */
/*/////////////////////////*/
.logo-menu
{
    width: 100%;
    height: 90px !important;
    padding: 1.2vw 0;
    display: inline-block;
    background: #0e284f;
    border-bottom: solid 1px #0e284f;
    border-bottom: solid 1px #7f0b23;
    border-bottom: solid 1px #133260;
}
.logo-menu img
{
    margin: 0 auto;
    width: 100%;
    display: inline-block;
}

/* Menu Acordeon Bootstrap*/
/*////////////////////////*/
.menu-accordion-bs
{
    margin:0;
    min-height: calc(100vh - 155px) !important;
    height: calc(100% - 155px) !important;
    /*width: 100%;
    display: inline-block;*/
    overflow-y: auto;
    background: #0e284f;
    box-sizing: border-box;
}
.menu-accordion-bs .item-solo
{
    padding-left: 20px;
    padding-top: 3px;
    padding-bottom: 3px;
    color: #fff;
    border-radius: 0;
    border-top: solid 1px #0e284f;
    border-bottom: solid 1px #133260;
    /*box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);*/
    background: transparent;
}
.menu-accordion-bs .item-solo i
{
    color: #fff;
    padding-right: 7px;
}
.menu-accordion-bs a.item-solo:hover
{
    color: #ffc9d2;
    background: #133260;
    background: #9f0b23;
}
.menu-accordion-bs .accordion
{
    background: #0e284f;
}
.menu-accordion-bs .accordion .accordion-button:focus 
{
    box-shadow: 0 0 0 0.25rem transparent; 
}
.menu-accordion-bs .accordion .accordion-item
{
    border-top: solid 1px #0e284f;
    border-bottom: solid 1px #133260;
    background: #0e284f;
}
.menu-accordion-bs .accordion .accordion-item .accordion-button
{
    color: #fff;
    background: #0e284f;
}
.menu-accordion-bs .accordion .accordion-item .accordion-button::after
{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23144677'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.menu-accordion-bs .accordion .accordion-item .accordion-button:hover
{
    color: #fff;
    background: #0e284f;
    background: #9f0b23;
}
.menu-accordion-bs .accordion .accordion-item .accordion-button i
{
    color: #fff;
    padding-right: 7px;
}
.menu-accordion-bs .accordion .accordion-item .accordion-body
{
    padding: 0px;
}
.menu-accordion-bs .accordion .accordion-item .list-group
{
    border-radius: 0;
}
.menu-accordion-bs .accordion .accordion-item .list-group a
{
    padding-left: 30px;
}
.menu-accordion-bs .accordion .accordion-item .list-group a:hover
{
    color: #ffc9d2;
    background: #9f0b23;
}
.menu-accordion-bs .accordion .accordion-item .list-group .list-group-item.active
{
    color: #ffc9d2 !important;
    background: #9f0b23 !important;
}
.menu-accordion-bs .accordion .accordion-item .list-group .list-group-item
{
    color: #0e284f;
    background: #eaeff7;
}
.menu-accordion-bs .accordion .accordion-item .list-group li
{
    color: #0e284f !important;
    background: #eaeff7 !important;
}
.menu-accordion-bs .accordion .accordion-item .list-group li:hover
{
    background: #9f0b23 !important;
}
.menu-accordion-bs .accordion .accordion-item .list-group li a
{
    width: calc(100% - 40px) !important;
    display: inline-block !important;
    color: #0e284f !important;
    background: transparent !important;
    box-shadow: none;
}
.menu-accordion-bs .accordion .accordion-item .list-group li a:hover
{
    color: #ffc9d2 !important;
}
.menu-accordion-bs .accordion .accordion-item .list-group .list-group-item.active a
{
    color: #ffc9d2 !important;
}
.menu-accordion-bs .accordion .accordion-item .list-group li i
{
    cursor: pointer;
}
.menu-accordion-bs .accordion .accordion-item .list-group li i:hover
{
    color: #ffc9d2 !important;
}
/* Pie del panel */
.pie
{
    margin: 0 auto;
    min-height: 55px;
}
.pie p
{
    margin: 10px 0px 5px 0px;
    font-size: 0.8em;
    text-align: center;
    color: #fff;
}

#bienvenido
{
	margin: 0 auto;
	width: 94%;
	float: left;
}
#bienvenido .titulo
{
	margin: 0;
	width: 100%;
	height: 60px;
	float: left;
}
#bienvenido .titulo h2
{
	margin: 0 auto;
	text-align: center;
	font-size: 1.8em;
	font-weight: normal;
	color: #7E080E;
}
#bienvenido .contenido
{
	margin: 0 auto;
	width: 80%;
}
#bienvenido .contenido p
{
	margin: 10px 10px 10px 30px;
	text-align: center;
}
#bienvenido .contenido img
{
	margin: 0 auto;
}
#cuerpocont
{
	min-height: 100%;
	background: #F7F6F2;
    background-color: #eff3f9;
	z-index: 1;
}
#cuerpo
{
	margin: 0 auto;
	min-height: 500px;
	overflow: hidden;
	*height: auto !important;
	*height: 350px;
	*overflow: visible;
}
#cabezalogin
{
	margin: 0 auto;
    padding-bottom: 20px;
	width: 300px;
	overflow: hidden;
    box-sizing: border-box;
}
#cuerpologin
{
	margin: 0 auto;
	padding: 0;
	width: 100%;
    height: 100%;
	overflow: hidden;
	background: #E2E3E5;
}
#clearing
{
	clear: both;
}
/* Titulo Contenedor */
/********************/
#titulocont
{
	margin: 0;
    padding: 0;
    width: 100%;
    height: 90px;
    /*float: left;*/
    border-bottom: solid 2px #e3e3e3;
    background: url("../images/gplaypattern.png")repeat-x;
    background: url("../images/dotspattern.png")repeat-x;
    /*background: url("../images/gplaypattern.png")repeat-x;*/
    box-sizing: border-box;
}
#titulo
{
	margin: 0;
	height: 90px;
	display: inline-block;
    vertical-align: middle;
    overflow: hidden;
}
#titulo h1
{
    padding-top: 15px;
	color: #7E080E;
	font: normal normal normal 1.7em/230% Helvetica;
	text-align: left;
}

/* Sesion Mobile */
/*****************/
#sesion-xs
{
    min-width: 80px;
    max-width: 160px;
    height: 100%;
    display: inline-block;
    box-sizing: border-box;
}
#sesion-xs.fondo
{
    background: rgba(159,10,34,0.90);
}
#sesion-xs.fondo-svg
{
    background: url("../images/fondo-logout-xs.svg");
    background-position: left center;
    background-size: auto;
}
#sesion-xs .sesion-icono
{
    width: 85px;
    height: 89px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}
#sesion-xs .sesion-icono a
{
    font-size: 1.3em;
    line-height: 1.5em;
    color: #fff;
}
#sesion-xs .sesion-icono i
{
    font-size: 1.3em;
    color: #0e284f;
    /*color: #7E080E;*/
    color: #fff;
}
#sesion-xs .sesion-icono a.sesion-cerrar
{
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
    line-height: 0.9em;
    color: #0e284f;
    color: #fff;
    /*color: #7E080E;*/
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
/* Sesion SM-LG */
#sesion
{
    min-width: 180px;
    max-width: 350px;
    height: 90px;
    display: inline-block;
    box-sizing: border-box;
    overflow: hidden;
}
#sesion.fondo
{
    background: linear-gradient(to right, rgba(14,40,79,0) 10%, rgba(14,40,79,0.55) 75%) !important;
    /*background: rgba(14,40,79,0.95);*/
    /*background-position: center;*/
    background-size: cover;
}
#sesion.fondo-svg
{
    background: url("../images/fondo-logout-lg2.svg");
    background-position: left center;
    background-size: auto;
}
#sesion .sesion-nombre
{
    min-width: 90px;
    max-width: 150px;
    height: 89px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    box-sizing: border-box;
}
#sesion .sesion-nombre p
{
    margin: 0;
    font-size: 0.75em;
    /*word-spacing:9999px; /*Reemplaza espacio por retorno de carro*/
    color: #0e284f;
}
#sesion .sesion-icono
{
    /*min-width: 75px;*/
    height: 89px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    /*background: rgba(14,40,79,0.35);*/
}
#sesion .sesion-icono.fondo-svg
{
    background: url("../images/fondo-logout-lg.svg");
    background-position: left center;
    background-size: auto;
}
#sesion .sesion-icono a
{
    font-size: 1.3em;
    line-height: 1.5em;
    color: #fff;
}
#sesion .sesion-icono i
{
    font-size: 1.3em;
    color: #0e284f;
    /*color: #7E080E;*/
    color: #fff;
}
#sesion .sesion-icono a.sesion-cerrar
{
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
    line-height: 0.9em;
    color: #0e284f;
    color: #fff;
    /*color: #7E080E;*/
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
/* Login Box    */
.loginboxcont
{
    margin: 0 auto;
    margin-top: 10px;
    min-width: 630px;
    width: 32vw;
    min-height: 250px;
}
.loginbox
{
    padding: 0;
    display: inline-grid;
    grid-template-columns: 230px 400px;
    grid-column-gap: 0vw;
    grid-row-gap: 1vw;
    box-sizing: border-box;
    overflow: hidden;
    font-family: Calibri;
    border-width: 0px 10px 0px 0;
    border-color: #7B0C26;
    border-style: solid;
    border-radius: 5px;
    background: #7B0C26;
    box-sizing: border-box;
    box-shadow: 0px 1px 15px #777;
}
.capsula_izq
{
    width: 100%;
    min-height: 330px;
    padding: 0;
    display: inline-block;
    border: solid 0px #ddd;
    box-sizing: border-box;
}
/* Menu Login : Antes atado a capsula_izq */
/*---------------------------------------*/
ul.menu_login {
    margin: 0;
    padding: 1vw 0;
}
ul.menu_login li{
    margin: 0;
    padding: 15px;
    list-style-type: none;
    font-size: 1.1em;
    background: rgba(0,0,0,0.25);
}
ul.menu_login li span{
    color: inherit;
}
ul.menu_login li a{
    text-decoration: none;
    color: #fff;
}
ul.menu_login li.titulo{
    padding: 1vw;
    min-height: 60px;
    font-size: 1.8em;
    color: #fff;
    border-width: 0 !important;
    background: none;
}
ul.menu_login li.titulo .linea-titulo{
    margin-top: 8px;
    width: 40px;
    height: 3px;
    background: #a6bbdb;
}
ul.menu_login li.current{
    background: #fff;
}
ul.menu_login li.current small{
    font-size: 0.8em;
}

.capsula_der
{
    width: 100%;
    height: 100%;
    padding: 50px 0 0px 0;
    display: inline-block;
    background: #fff;
    border: solid 0px #ddd;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-sizing: border-box;
}
.capsula_der .campo .fila{
    width: 100%;
    display: inline-block;
    text-align: center;
}
.capsula_der .campo label
{
    width: 100%;
    display: inline-block;
    font-size: 1.2em;
}
.capsula_der .campo input[type=text]{
    width: 15vw;
    height: 30px;
    display: inline-block;
    text-align: center;
}
.capsula_der .campo input[type=password]{
    width: 15vw;
    height: 30px;
    display: inline-block;
    text-align: center;
}
.capsula_der .boton
{
    height: 30px;
    margin-top: 10px;
    min-width: 80px;
    font-size: 0.9em;
}
.capsula_der .btn120x
{
    width: 15vw !important;
}
.capsula_pie
{
    height: 50px;
    width: 100%;
    padding: 20px 5px 5px 5px;
    display: inline-block;
    text-align: center;
}
.capsula_pie a
{
    font-size: 1em;
    text-align: center !important;
    color: #800000;
}
.campo
{
	margin: 0 auto;
	width: 100%;
	float: left;
	margin-top: 10px;
}
.campobg
{
	margin: 0 auto;
	width: 97%;
	float: left;
	margin: 10px;
	background: #f3f3f3;
	border: solid 2px #e9e9e9;
}
.izquierda
{
	float: left;
    width: 40%;
    *width: 36%;
    margin: 0;
    padding: 0px 10px 0px 0px;
	text-align: right;
}
.izquierda label
{
	font-size: 1.2em;
	color: #434343;
}
.izquierda h4
{
	margin: 2px 2px 2px 28px;
	padding: 0;
	text-align: left;
	font: normal normal normal 1.3em/100% Helvetica;
	color: #2e2e2e;	
}
.izquierda70
{
	float: left;
    width: 68%;
    margin: 0;
    padding: 0px 10px 0px 0px;
	text-align: right;
}
.derecha
{
	float: right;
    width: 57%;
    margin: 0;
    padding: 0;
	text-align: left;
}
.derecha h4
{
	margin: 2px 2px 2px 30px;
	padding: 0;
	text-align: left;
	font: normal normal normal 1.3em/100% Helvetica;
	color: #2e2e2e;	
}
.derecha p
{
	margin: 2px 2px 2px 0px;
	padding: 0;
	text-align: left;
	font: normal normal normal 0.9em/100% Helvetica;
	color: #7E0D28;	
}
.derecha30
{
	float: left;
    width: 29%;
    margin: 0;
    padding: 0;
	text-align: left;
}
.celda100
{
	float: left;
    width: 98%;
    margin: 0;
    padding: 7px 5px 5px 10px;
	text-align: left;
}
.celda100 h4
{
	margin: 2px 2px 0px 0px;
	padding: 0;
	text-align: left;
	font: normal normal normal 1.3em/100% Helvetica;
	color: #232323;	
}
.celda100 p
{
	margin: 2px 2px 2px 0px;
	padding: 0;
	text-align: left;
	font: normal normal normal 0.9em/100% Helvetica;
	color: #7E0D28;	
}
.celda25
{
	float: left;
    width: 30%;
    margin: 0;
    padding: 7px 5px 5px 10px;
	text-align: left;
}
.celda25 label
{
	margin: 2px 2px 2px 0px;
	padding: 0;
	text-align: left;
	font: normal normal normal 1.2em/100% Helvetica;
	color: #434343;
}
.celda25 h4
{
	margin: 2px 2px 0px 0px;
	padding: 0;
	text-align: left;
	font: normal normal normal 1.3em/100% Helvetica;
	color: #434343;	
}
.celda25 p
{
	margin: 2px 2px 2px 0px;
	padding: 0;
	text-align: left;
	font: normal normal normal 0.9em/100% Helvetica;
	color: #7E0D28;	
}
.celda50
{
	float: left;
    width: 45%;
    margin: 0;
    padding: 7px 5px 5px 10px;
	text-align: left;
}
.celda50 label
{
	margin: 2px 2px 2px 0px;
	padding: 0;
	text-align: left;
	font: normal normal normal 1.2em/100% Helvetica;
	color: #434343;
}
.celda50 h4
{
	margin: 2px 2px 0px 0px;
	padding: 0;
	text-align: left;
	font: normal normal normal 1.3em/100% Helvetica;
	color: #434343;	
}
.celda50 p
{
	margin: 2px 2px 2px 0px;
	padding: 0;
	text-align: left;
	font: normal normal normal 0.9em/100% Helvetica;
	color: #7E0D28;	
}
.sinalineacion
{
	margin: 0;
    padding: 4px 10px 4px 30px;
	text-align: left;
}
.sinalineacion label
{
	font-size: 1.2em;
	color: #434343;
}
.w340
{
	width: 340px;
}
.sinalineacion a
{
	text-decoration: none;
	color: #912832;
	margin: 0px 8px 0px 8px;
	font-size: 1.1em;
}
.centrar
{
	text-align: center;
}
.inputtext
{
	height: 20px;
}
.subbutton
{
	height: 30px;
	font-size: 0.9em;
}
.barraprogreso
{
	margin: 15px 0px 0px 50px;
	padding: 0px;
	width: 90%;
	float: left;
	border: 1px solid #aeaeae;
	background: #ececec;
}
.barraprogreso h3
{
	margin: 10px 0px 10px 200px;
	padding: 0px;
	font: normal normal normal 1.3em/100% Helvetica;
	color: #2e2e2e;
}
.barraprogreso img
{
	margin: 0px 20px 0px 3px;
}
.menuclasico
{
	margin-left: 10px;
	padding: 0px;
}
.menuclasico li
{
	list-style: none;
	margin-right: 20px;
}
.menuclasico li a
{
	text-decoration: none;
	color: #303030;
	float: left;
	margin-right: 20px;
	font: normal normal normal 1em/100% Helvetica;
}
.menuclasico img
{
	border-width: 0;
}
.menubuscar
{
	margin: 0px 0px 0px 40px;
	padding: 0px 0px 0px 60px;
	width: 87%;
	height: 33px;
	border-bottom: 0px solid #898989;
}
.menubuscar li
{
	list-style: none;
	float: left;
	margin: 0px;
	padding: 8px 15px 8px 15px;
	border: 1px solid #4d4d4d;
}
.menubuscar li a
{
	text-decoration: none;
	color: #303030;
	float: left;
	font: bold normal normal 1em/100% Helvetica;
}
.opcionesbusqueda
{
	margin: 0px 0px 0px 40px;
	background: #f8f8f8;
	padding: 10px 20px 10px 20px;
	width: 845px;
	background: url('../images/opcionesbusqueda.png') no-repeat;
}
#BusqCliente
{
	margin: 0;
	padding: 0;
}
#BusqEntrada
{
	margin: 0;
	padding: 0;
}
#rojodiv
{
	display: none;
}
#rojodiv label
{
	color: #CC0000;
}
#verdediv
{
	display: none;
}
#verdediv label
{
	color: #006E2E;
}
.col100
{
	width: 100%;
	float: left;
}
.col100 h3
{
	margin-left: 10px;
	font: normal normal normal 1.4em/100% Helvetica;
}
.col100 h4
{
	margin-left: 10px;
	font: normal normal normal 1.2em/100% Helvetica;
}
.col100 h5
{
	margin-left: 200px;
	font: normal normal normal 1em/100% calibri;
}
.col100 p
{
	margin: 30px;
	font: normal normal normal 1.1em/130% Helvetica;
}
.col100 select
{
	margin-left: 200px;
}
.col33
{
	width: 20%;
	height: 250px;
	float: left;
	background: url('../images/bgcol330.png') no-repeat;
}
.col33 h4
{
	margin-left: 0px;
	text-align: center;
	font: normal normal normal 1.2em/100% Helvetica;
}
.col33 a
{

	text-decoration: none;
	color: #000000;
	font: normal normal normal 1.2em/100% Helvetica;
}
.col33 p
{
	margin: 30px;
	font: normal normal normal 1.0em/130% Helvetica;
}
.col33 a img
{
	margin: 0px 20px 0px 20px;
}
.widget
{
	width: 100%;
	height: 160px;
	float: left;
	display: inline-block;
	margin: 10px 0px 0px 10px;
	background: url('../images/bgwidget0.png') no-repeat;
}
.widget h4
{
	margin-left: 0px;
	text-align: center;
	font: normal normal normal 1.2em/100% Helvetica;
}
.widget a
{

	text-decoration: none;
	color: #000000;
	font: normal normal normal 1.2em/100% Helvetica;
}
.widget p
{
	margin: 10px 20px 10px 20px;
	text-align: left;
	color: #000000;
	font: normal normal normal 1em/130% calibri;
}
.widget img
{
	margin: 0px 12px 0px 0px;
	border-width: 0px;
}
.widget a img
{
	margin: 0px 12px 0px 0px;
}
.widget ul
{
	margin: 0px 0px 0px 50px;
	padding: 0;
}
.widget li
{
	margin: 0;
	list-style: none;
}
.widget label
{
	margin-left: 20px;
}

.conttablarecientes
{
	width: 100%;
	float: left;
	display: inline-block;
	margin: 20px 0px 0px 10px;
	background: url('../images/bgwidget0.png') no-repeat;
}
.conttablarecientes h4
{
	margin-left: 0px;
	text-align: center;
	font: normal normal normal 1.2em/100% Helvetica;
}
.conttablarecientes a
{

	text-decoration: none;
	color: #000000;
	font: normal normal normal 1.2em/100% Helvetica;
}
.tablarecientes
{
	width: 480px;
	border-spacing: 0px;
	margin-top: 10px;
	margin-left: 15px;
	padding: 0;
	text-align: center;
	background: url('../images/headtable1.png') no-repeat;
}
.tabla
{
	width: 97%;
	border-spacing: 0px;
	margin-top: 15px;
	margin-left: 15px;
	padding: 0;
	text-align: center;
	background: url('../images/headtable1.png') no-repeat;
}
.tabla th
{
	color: #2f2f2f;
	height: 30px;
	font: normal normal normal 1.1em/100% Helvetica;
	border-bottom: 2px solid #c0b599;
	background: #eeebe3;
}
.tabla tr.row1
{
	color: #232323;
	height: 23px;
	background: #ffffff;
	font: 0.8em calibri;
}
.tabla tr.row2
{
	height: 23px;
	background: #f3f3f3;
	font: 0.8em calibri;
}
.tabla td
{
 	border-bottom: 1px solid #e0e0e0;
}
.tabla td.left
{
	text-align: left;
	padding-left: 20px;
}
/*------------ Miscelanea -------------*/
/*-------------------------------------*/
/*-- Fondos de contenedores --*/
.fondo-blanco{background: #fff !important;}
.fondo-ligero-blanco{
    /*
    background: #394d6b !important;
    background: linear-gradient(to bottom right, #cfdef9 0%, #cfdef9 20%, #394d6b 55%) !important;
    background: linear-gradient(to bottom right, #fff 0%, #a5b3d3 25%, #394d6b 45%, #0e284f 75%) !important;
    */
    background: #f1f0ee;
    background: #aaaaaa;
    background: linear-gradient(to bottom right, #f1f0ee 15%, #aaa 65%) !important;
}
.fondo-azul-degrado{
    background: linear-gradient(to bottom right, #234475 15%, #0e284f 45%) !important;
}
.fondo-azul-degrado-alt{
    background: linear-gradient(to bottom right, #265e89 25%, #12385e 55%) !important;
}
.fondo-gris-degrado{
    background: linear-gradient(to bottom right, #d7dee5 25%, #a5aeb7 65%) !important;
}
.fondo-gris-degrado-alt{
    background: linear-gradient(to bottom right, #e1e7ed 15%, #d7dee5 99%) !important;
}
.fondo-guinda {
    background: #99040c !important;
    background: #bf0022 !important;
    background: #7B0C26 !important;
}
.fondo-ligero{
    
    background: #f9f9f9 !important;
    background: #f1f1f1 !important;
}
.fondo-ligerocrema{
    background: #ececec !important;
    background: #dad6d6 !important; /*Timberwolf*/
}
.fondo-ligerocrema:before{
    content: "";
    width: 100%;
    height: 80px;
    position: absolute;
    display: inline-block;
    background-image: -webkit-linear-gradient(top, #dce0e0 0%, #ececec 100%);
    background-image: linear-gradient(to bottom right, #dce0e0 0%, #ececec 55%);
    border-image-slice: 1;
    z-index: 1;
}
.fondo-azul{
    background-color: rgba(32,44,70,1) !important;
}
.fondo-azul-menu
{
    background: #0e284f !important;
}
.fondo-ivory
{
    background: #e9e9e9 !important;
}
.fondo-ivory2
{
    background: #f0f0f0 !important;
}
.fondo-ivory3
{
    background: #f3f3f3 !important;
}
.fondo-ivory4
{
    background: rgba(250, 250, 250, 0.75) !important;
}
#galeriadocs
{
    margin: 0 auto;
    float: left;
    width: 100%;
    margin: 10px 0px 0px 10px;
    padding: 10px;  
}
#galeriadocs img
{
    float: left;
    margin: 7px 17px 15px 5px;
    box-shadow: 2px 2px 4px #b3b3b3;
}
.thumb
{
    width: 12%;
}
/*////////////////////////////////////////////////*/
/* Formancho Retrocompatibilidad estilo Sector   */
.formancho
{
    margin: 0;
    padding: 1.5vw 1.5vw 0 1.5vw;
    width: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.formancho-1col
{
    grid-template-columns: 1fr;
}
.formancho-2col
{
    grid-template-columns: 350px 350px;
}
.formancho-3col
{
    grid-template-columns: 1fr 1fr 1fr;
}
.formancho .sector
{
    margin: 0 0 10px 0;
    padding: 0.5vw 1.5vw 0.5vw 1.5vw;
    width: 100%;
    display: inline-block;
    border: solid 1px #e5e5e5;
    border-top: solid 2px #d9d9d9;
    background: -moz-linear-gradient(top,  #f9f9f9 0%, #fff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#fff));
    background: -webkit-linear-gradient(top,  #f9f9f9 0%,#fff 10%);
    background: -o-linear-gradient(top,  #f9f9f9 0%,#fff 100%);
    background: -ms-linear-gradient(top,  #f9f9f9 0%,#fff 100%);
    background: linear-gradient(top,  #f9f9f9 0%,#fff 100%);
    opacity: 1.0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.formancho .fila
{
    margin: 0;
    padding: 5px 0;
    width: 100%;
    float: left;
}
.formancho .fila .titulo
{
    margin: 0px 0px 5px 0px;
    padding: 0;
    width: 100%;
    height: 32px;
    float: left;
    border-bottom: solid 1px #ededed;
}
.formancho .fila .titulo a
{
    margin: 0px 8px 0px 0px;
    padding: 5px 0px 5px 0px;
    font-size: 1.2em;
    font-weight: lighter;
    color: #713e3e;
    text-decoration: none;
}
.formancho .fila .grupo1
{
    margin: 5px 0px 5px 0;
    width: 150px;
    float: left;
}
.formancho .fila .grupo2
{
    margin: 5px 0px 5px 0;
    width: 350px;
    float: left;
}
.formancho .fila .dato
{
    margin: 3px 15px 3px 0;
    width: auto;
    float: left;
}
.formancho .fila .dato label
{
    display: block;
    font-size: 1em;
}
/* Deshabilitado Temporalmente */
/*
.formancho .fila .dato span
{
    min-width: 30px;
    height: 30px;
    padding: 5px 10px;
    margin: 0;
    display: inline-block;
    background: #efefef;
    border: solid 1px #828282;
    border-radius: 1px;
    box-sizing: border-box;
}
*/
.formancho .fila .dato .intxt-error
{
    border: solid 1px #ff0000;
}
.formancho .fila .dato select
{
    margin: 0;
    height: 25px;
}
.formancho .fila .dato .sel80
{
    min-width: 88px;
    height: 26px;
}
.formancho .fila .dato .sel100
{
    min-width: 100px;
    height: 26px;
}
.formancho .fila .dato .sel130
{
    min-width: 140px;
    height: 26px;
}
.formancho .fila .dato .sel188
{
    width: 188px;
    height: 26px;
}
.formancho .fila .dato .sel250
{
    width: 250px;
}
.formancho .fila .dato .sel300
{
    width: 440px;
}
.formancho .fila .dato .sel444
{
    width: 444px;
}
.formancho .fila .dato a
{
    margin: 0px 8px 0px 0px;
    display: block;
    font-size: 0.8em;
    color: #912832;
    text-decoration: none;
}
.formancho .fila .eliminar
{
    /*
    margin: 5px 15px 5px 0;
    padding: 15px 0 0 0;
    width: auto;
    float: right;
    */
}
.formancho .boton{
    padding: 5px 1vw 5px 1vw;
    line-height: 20px;
    font-size: 0.9em;
    color: #9f0022;
    display: inline-block !important;
    cursor: pointer;
    box-sizing: border-box;
    background: #fff;
    border: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
.formancho .boton:hover{
    color: #fff;
    background: #bf0022;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}

/*///////////////////////////////
/* Formancho Estilo Sector    */
.sector-estilo
{
    width: 100%;
    display: inline-block;
    border: solid 1px #e5e5e5;
    border-left: solid 4px #d9d9d9;
    background: -moz-linear-gradient(top,  #f9f9f9 0%, #fff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#fff));
    background: -webkit-linear-gradient(top,  #f9f9f9 0%,#fff 10%);
    background: -o-linear-gradient(top,  #f9f9f9 0%,#fff 100%);
    background: -ms-linear-gradient(top,  #f9f9f9 0%,#fff 100%);
    background: linear-gradient(top,  #f9f9f9 0%,#fff 100%);
    opacity: 1.0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}

/*//////////////////////////////////////*/
/* Sectores, infocliente, cajadearena   */
/* Titulo, Dato y Row para BS-bootstrap */
#sectores
{
    margin: 0;
    padding: 0;
}
#infocliente
{
    /*display: inline-block;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#cajadearena
{
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.cajadearena
{
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.row .titulo
{
    width: 100%;
    height: 32px;
    float: left;
    overflow: hidden;
    border-bottom: solid 1px #e3e3e3;
    box-sizing: border-box;
}
.row .titulo a
{
    margin: 0px 8px 0px 0px;
    padding: 5px 0px 5px 0px;
    font-size: 1.2em;
    font-weight: lighter;
    color: #713e3e;
    text-decoration: none;
}
.row .titulo-alt
{
    width: 100%;
    height: 32px;
    float: left;
    box-sizing: border-box;
}
.row .titulo-alt a
{
    margin: 0px 8px 0px 0px;
    padding: 5px 0px 5px 0px;
    font-size: 1.2em;
    font-weight: lighter;
    color: #713e3e;
    text-decoration: none;
}
.row iframe
{
    height: calc(100% - 90px);
    position: fixed;
}
.row .dato {

}
.row .dato input[type="text"],[type="password"],
    [type="tel"],[type="date"],[type="time"]{
    width: 100%;
}
.row .dato select{
    width: 100%;
}
.row .lista{
    width: 100%;
}
.row .lista select{
    width: 100%;
    min-height: 55vh !important;
    overflow-y: scroll;
}
.row .dato textarea{
    width: 100%;
    min-height: 100px;
}
.row .dato label
{
    display: block;
    font-size: 1em;
}
.row .dato span
{
    width: 100%;
    min-height: 30px;
    padding: 2px 10px;
    margin: 0;
    display: inline-block;
    /*color: #fff;*/
    background: #efefef;
    /*#9a1818;*/
    border: solid 1px #828282;
    border-radius: 1px;
    box-sizing: border-box;
}
.row .dato a
{
    margin: 0px 8px 0px 0px;
    display: block;
    font-size: 0.9em;
    color: #912832 !important;
    text-decoration: none;
}
.row .widg-titulo
{
    width: auto;
    min-height: 24px;
    padding: 0px 10px;
    margin: 0;
    display: block;
    /*color: #fff;*/
    text-align: center;
    background: transparent !important;
    border: solid 0px transparent !important;
    box-sizing: border-box;
}

/* Widget Estado  */
/******************/
.row .widg-estado
{
    width:100%;
    height: auto;
    padding: 0;
    border: solid 1px #828282;
    box-sizing: border-box;
}
.row .widg-estado .widg-izquierda
{
    padding: 0;
    /*width: calc(100% - 40px);*/
    min-height: 55px;
    word-wrap: break-word;
    display: inline-block;
    background: #e9e9e9;
    box-sizing: border-box;
}
.row .widg-estado .widg-izquierda span.titulo
{
    width: 100%;
    height: auto;
    padding: 3px 10px;
    margin: 0;
    text-align: left;
    word-wrap: break-word;
    display: inline-block;
    background: transparent;
    /*#9a1818;*/
    border: solid 0px transparent;
    border-bottom: solid 1px #ccc;
    box-sizing: border-box;
}
.row .widg-estado .widg-izquierda span.descripcion
{
    width: 100%;
    padding: 3px 10px;
    margin: 0;
    font-size: 0.8em;
    text-align: left;
    display: inline-block;
    background: #fff;
    border: solid 0px transparent;
    box-sizing: border-box;
}
.row .widg-estado .widg-derecha
{
    margin: 0;
    width: 40px;
    min-height: 55px;
    height: 100%;
    text-align: center;
    display: inline-block;
    background: #e9e9e9;
    border-width: 0px;
    border-left: solid 1px #ccc;
    border-bottom: solid 1px #828282;
    box-sizing: border-box;
}
.row .widg-estado .widg-derecha .cantidad
{
    width: 100%;
    height: 50%;
    min-height: 30px;
    padding: 0;
    margin: 0;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}
.row .widg-estado .widg-derecha .cantidad span
{
    padding: 2px 0;
    font-size: 0.8em;
}
.row .widg-estado .img-estado
{
    padding: 0;
    margin: 0;
    min-width: 100%;
    height: 50%;
    min-height: 24px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}
.row .widg-estado .img-estado a
{
    margin: 0;
}
.row .widg-estado .img-estado i
{
    color: #fff;
}
.row .widg-estado .icono-verde
{
    color: #fff;
    background-color: green;
}
.row .widg-estado .icono-amarillo
{
    color: #333;
    background-color: yellow;
}
.row .widg-estado .icono-amarillo .img-estado i
{
    color: #333;
}
.row .widg-estado .icono-rojo
{
    color: #fff;
    background-color: red;
}
.row .widg-estado .icono-gris
{
    color: #212529;
    background-color: #d3d3d3;
}
.row .widg-estado i
{
    font-size: 1.3em;
    line-height: 1em;
}
.row .widg-estado span
{
    width: auto;
    min-height: 24px;
    padding: 0px 8px;
    margin: 0;
    display: inline-block;
    background: transparent;
    /*#9a1818;*/
    border: solid 0px transparent;
    box-sizing: border-box;
}

/* Widget Archivos */
/******************/
.row .widg-archivos
{
    width:100%;
    height: auto;
    padding: 0;
    border: solid 1px #828282;
    box-sizing: border-box;
}
.row .widg-archivos .widg-izquierda
{
    padding: 0;
    width: calc(100% - 40px);
    min-height: 55px;
    word-wrap: break-word;
    display: inline-block;
    background: #e9e9e9;
    box-sizing: border-box;
}
.row .widg-archivos .widg-izquierda span.titulo
{
    width: 100%;
    height: auto;
    padding: 3px 10px;
    margin: 0;
    text-align: center;
    word-wrap: break-word;
    display: inline-block;
    background: transparent;
    /*#9a1818;*/
    border: solid 0px transparent;
    border-bottom: solid 1px #ccc;
    box-sizing: border-box;
}
.row .widg-archivos .widg-izquierda span.descripcion
{
    width: 100%;
    padding: 3px 10px;
    margin: 0;
    font-size: 0.8em;
    text-align: center;
    display: inline-block;
    background: #fff;
    border: solid 0px transparent;
    box-sizing: border-box;
}
.row .widg-archivos .widg-derecha
{
    margin: 0;
    width: 40px;
    min-height: 55px;
    height: 100%;
    text-align: center;
    display: inline-block;
    background: #e9e9e9;
    border-width: 0px;
    border-left: solid 1px #ccc;
    border-bottom: solid 1px #828282;
    box-sizing: border-box;
}
.row .widg-archivos .widg-derecha .cantidad
{
    width: 100%;
    height: 50%;
    min-height: 30px;
    padding: 0;
    margin: 0;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}
.row .widg-archivos .widg-derecha .cantidad span
{
    padding: 2px 0;
    font-size: 0.8em;
}
.row .widg-archivos .accion
{
    padding: 0;
    margin: 0;
    min-width: 100%;
    height: 50%;
    min-height: 24px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}
.row .widg-archivos .accion a
{
    margin: 0;
}
.row .widg-archivos .accion i
{
    color: #fff;
}
.row .widg-archivos .icono-verde
{
    color: #fff;
    background-color: green;
}
.row .widg-archivos .icono-amarillo
{
    color: #333;
    background-color: yellow;
}
.row .widg-archivos .icono-amarillo .accion i
{
    color: #333;
}
.row .widg-archivos .icono-rojo
{
    color: #fff;
    background-color: red;
}
.row .widg-archivos .icono-gris
{
    color: #212529;
    background-color: #d3d3d3;
}
.row .widg-archivos i
{
    font-size: 1.3em;
    line-height: 1em;
}
.row .widg-archivos span
{
    width: auto;
    min-height: 24px;
    padding: 0px 8px;
    margin: 0;
    display: inline-block;
    background: transparent;
    /*#9a1818;*/
    border: solid 0px transparent;
    box-sizing: border-box;
}
/* Widget TipoDoc */
/******************/
.row .widg-tipodoc
{
    width: 100%;
    height: auto;
    padding: 0;
    border: solid 1px #828282;
    box-sizing: border-box;
}
.row .widg-tipodoc .widg-tipodoc-item
{
    height: auto;
    padding: 0;
    margin: 0;
    display: inline-block;
    border: solid 1px #828282;
    box-sizing: border-box;
}
.row .widg-tipodoc .widg-tipodoc-item:hover
{
    cursor: pointer;
    background: rgba(240,240,240,30);
    border: solid 1px #828282;
}
.row .widg-tipodoc .widg-tipodoc-item .icono
{
    padding: 5px 0 0 4px;
    width: 32px;
    height: 100%;
    float: left;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}
.row .widg-tipodoc .widg-tipodoc-item .icono i
{
    font-size: 1.3em;
    line-height: 1.3em;
}
.row .widg-tipodoc .widg-tipodoc-item input[type=radio]
{
    display: none;
}
.row .widg-tipodoc .widg-tipodoc-item.active
{
    background: #d3d3d3;
}
.row .widg-tipodoc .widg-tipodoc-item .widg-tipodoc-txt
{
    width: calc(100% - 50px);
    /*min-height: 24px;*/
    height: 100%;
    padding: 5px 0;
    margin: 0;
    text-align: left;
    vertical-align: middle;
    font-size: 0.9em;
    /*line-height: 1em;*/
    display: inline-block;
    /*color: #fff;*/
    background: transparent;
    /*#9a1818;*/
    border: solid 1px transparent;
    border-radius: 1px;
    box-sizing: border-box;
}
.row .widg-tipodoc .widg-tipodoc-item .widg-tipodoc-txt:hover
{
    cursor: pointer;
}
/* Widget ArchivosLista */
/***********************/
.row .widg-archivoslista
{
    width: 100%;
    height: auto;
    min-height: 100px;
    padding: 0;
    overflow-y: auto;
    list-style: none;
    border: solid 1px #828282;
    box-sizing: border-box;
}
.row .widg-archivoslista li
{
    padding-left: 5px;
    padding-right: 5px;
    background: #f3f3f3;
    border-bottom: solid 1px #b2b2b2;
}
.row .widg-archivoslista li input[type="checkbox"]
{
    margin-left: 5px;
    margin-right: 5px;
}
.row .widg-archivoslista li ~ input[type="checkbox"]:checked
{
    background: #d3d3d3;
}
.row .widg-archivoslista.min-alto
{
    min-height: 200px;
}
.row .widg-archivoslista.min-alto-alt
{
    min-height: 300px;
}

/* Widget Descarga */
/*******************/
.row .widg-dcg
{
    width:100%;
    height: auto;
    margin: 15px 0 0 0;
    padding: 0;
    border: solid 1px #828282;
    box-sizing: border-box;
}
.row .widg-dcg .widg-dcg-titulo 
{
    width: auto;
    min-height: 35px;
    padding: 0;
    /*padding-left: 10px;*/
    margin: 0;
    color: #fff;
    text-align: center;
    background: #0e284f !important;
    border-bottom: solid 1px #888 !important;
    box-sizing: border-box;
}
.row .widg-dcg .widg-dcg-titulo label
{
    width: calc(100% - 50px);
    padding: 5px 10px;
    display: inline-block;
    border-right: solid 1px #888 !important;
}
.row .widg-dcg .widg-dcg-titulo input[type=checkbox]
{
    margin: 5px 8px;
    display: inline-block;
    border: solid 1px #888 !important;
}
.row .widg-dcg .widg-dcg-lista
{
    margin: 0;
    padding: 0;
    list-style: none;
    color: #0e284f;
    background: #eaeff7 ;
    box-sizing: border-box;
}
.row .widg-dcg .widg-dcg-lista li
{
    padding: 2px 0 2px 10px;
    border-top: solid 1px #e9e9e9;
    border-bottom: solid 1px #a0bce8;
    border-bottom: solid 1px #abbcd6;
    box-sizing: border-box;
}
.row .widg-dcg .widg-dcg-lista li em
{
    width: calc(100% - 42px);
    padding: 0px 0px;
    font-size: 1em;
    display: inline-block;
    border-right: solid 1px #ccc !important;
    box-sizing: border-box;
}

.row .widg-dcg .widg-dcg-lista li input[type=checkbox]
{
    margin: 5px 0 0 12px;
    display: inline-block;
    border: solid 1px #888 !important;
}
.row .widg-dcg i
{
    font-size: 1.3em;
    line-height: 1em;
}
.row .widg-dcg span
{
    width: auto;
    min-height: 24px;
    padding: 0px 10px;
    margin: 0;
    display: inline-block;
    /*color: #fff;*/
    background: transparent;
    /*#9a1818;*/
    border: solid 1px transparent;
    border-radius: 1px;
    box-sizing: border-box;
}
.row .widg-dcg .widg-dcg-pie
{
    width: auto;
    min-height: 25px;
    padding: 0;
    /*padding-left: 10px;*/
    margin: 0;
    color: #444;
    text-align: center;
    font-size:0.8em;
    background: #9cb3d6 !important;
    background: #adbfdb !important;
    /*background: #bac3d1 !important;*/
    border-bottom: solid 0px #888 !important;
    box-sizing: border-box;
}
.row .widg-dcg .widg-dcg-pie label
{
    padding: 3px 10px;
    text-align: center;
    border-right: solid 0px #888 !important;
}

.row .datopedimp a
{
    margin: 0px 8px 0px 0px;
    font-size: 1em;
    color: #912832 !important;
    text-decoration: none;
}

/* Widget Resumen */
/******************/
.row .widg-resumen
{
    /*width: 100%;*/
    min-width: 200px;
    height: auto;
    min-height: 65px;
    padding: 0;
    display: inline-block;
    box-sizing: border-box;
}
/* Fondos widg-resumen (tambien para hijos ) */
/*********************************************/
.row .widg-resumen .fondo-blanco
{
    background: #fff;
}
.row .widg-resumen .widg-izquierda
{
    margin: 0;
    min-width: 63px;
    min-height: 63px;
    height: auto;
    text-align: center;
    border-width: 0px;
    box-sizing: border-box;
}
.row .widg-resumen .widg-izquierda .icono
{
    padding: 0;
    margin: 0;
    min-width: 100%;
    height: 100%;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}
.row .widg-resumen .widg-izquierda .icono span
{
    margin: 0;
    min-width: 100%;
    height: 100%;
    line-height: calc(100% - 5px);
}
.row .widg-resumen .widg-izquierda .icono i
{
    font-size: 2em;
    line-height: 1em;
    color: #0e284f;
}
.row .widg-resumen .widg-centro
{
    padding: 0;
    /*width: 100%;*/
    min-height: 55px;
    word-wrap: break-word;
    display: inline-block;
    box-sizing: border-box;
}
.row .widg-resumen .widg-centro span.titulo
{
    width: 100%;
    height: auto;
    padding: 3px 15px;
    margin: 0;
    text-align: left;
    font-weight: 500;
    word-wrap: break-word;
    display: inline-block;
    color: #0e284f;
    background: transparent;
    /*#9a1818;*/
    border: solid 0px transparent;
    border-bottom: solid 0px #ccc;
    box-sizing: border-box;
}
.row .widg-resumen .widg-centro span.descripcion
{
    width: 100%;
    padding: 3px 15px;
    margin: 0;
    font-size: 0.8em;
    text-align: left;
    /*text indent va junto a padding left */
    /*text-indent: -20px;
    padding-left: 40px;*/
    display: inline-block;
    border: solid 0px transparent;
    box-sizing: border-box;
}
.row .widg-resumen .widg-derecha
{
    margin: 0;
    min-width: 22px;
    max-width: 38px;
    min-height: 22px;
    height: auto;
    text-align: center;
    display: inline-block;
    border-width: 0px;
    border-left: solid 0px #eee;
    border-bottom: solid 0px #828282;
    box-sizing: border-box;
}
.row .widg-resumen .widg-derecha .accion
{
    padding: 1px 0 0 0;
    margin: 0;
    min-width: 22px;
    min-height: 22px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}
.row .widg-resumen .widg-derecha .accion a
{
    margin: 0;
    display: inline-block;
}
.row .widg-resumen .widg-derecha .accion i
{
    color: #fff;
    font-size: 1em;
    line-height: 0.8em;
}
.row .widg-resumen .widg-derecha .accion.color-verde a i
{
    color: green;
}
.row .widg-resumen .widg-derecha .icono-verde
{
    color: #fff;
    background-color: green;
}
.row .widg-resumen .widg-derecha .icono-verde i
{
    color: #fff !important;
}
.row .widg-resumen .widg-derecha .icono-rojo
{
    background-color: red;
}
.row .widg-resumen .widg-derecha .icono-rojo i
{
    color: #fff !important;
}
.row .widg-resumen .widg-derecha .icono-ivory
{
    background-color: #e9e9e9;
}
.row .widg-resumen .widg-derecha .icono-ivory i
{
    color: #333 !important;
    color: #0e284f !important;
}
.row .widg-resumen .widg-derecha .icono-gris
{
    background-color: #d7dee5;
}
.row .widg-resumen .widg-derecha .icono-gris i
{
    color: #333 !important;
    color: #0e284f !important;
}

/* Widget lista: Convierte el widget en una lista */
/*------------------------------------------------*/
.row .widg-resumen .widg-lista
{
    padding: 0;
    /*width: 100%;*/
    min-height: 55px;
    word-wrap: break-word;
    display: inline-block;
    box-sizing: border-box;
}
.row .widg-resumen .widg-lista span.titulo
{
    width: 100%;
    height: auto;
    padding: 3px 15px;
    margin: 0;
    text-align: left;
    font-weight: 500;
    word-wrap: break-word;
    display: inline-block;
    color: #0e284f;
    background: transparent;
    /*#9a1818;*/
    border: solid 0px transparent;
    border-bottom: solid 0px #ccc;
    box-sizing: border-box;
}
.row .widg-resumen .widg-lista .widg-lista-item
{
    width: 100%;
    padding: 3px 15px;
    margin: 0;
    font-size: 0.8em;
    text-align: left;
    /*text indent va junto a padding left */
    /*text-indent: -20px;
    padding-left: 40px;*/
    display: inline-block;
    border: solid 0px transparent;
    box-sizing: border-box;
}
.row .widg-resumen .widg-tooltip
{
    position: relative;
    display: inline-block;
}
.row .widg-resumen .widg-tooltip .tooltiptext
{
    min-width: 150px;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    padding: 5px;
    text-align: center;
    color: rgba(250, 250, 250, 0.90);
    visibility: hidden;
    position: absolute;
    background: #0e284f;
    border-radius: 6px;
    z-index: 0;
}
.row .widg-resumen .widg-tooltip:hover .tooltiptext
{
    visibility: visible;
    opacity: 1;
}
.row .widg-resumen .txt-destacado
{
    font-weight: 500;
    font-style: normal;
    color: #0e284f;
    color: rgba(159, 10, 34, 0.90);
}
.row .widg-resumen .txt-destacado-light
{
    font-weight: 100;
    color: #0e284f;
}
.row .widg-resumen i
{

}
.row .widg-resumen span
{
    /*
    width: auto;
    min-height: 24px;
    padding: 0px 8px;
    margin: 0;
    display: inline-block;
    background: transparent;
    border: solid 0px transparent;
    box-sizing: border-box;
    */
}

/* Decision        */
/*******************/
.row .decision
{
    margin: 5px 0px;
    width: auto;
    float: left;
}
.row .decision a
{
    margin: 0px 8px 0px 0px;
    display: block;
    font-size: 1.5em;
    color: #912832 !important;
    text-decoration: none;
}

/*///////////////////////////////
/* Botonera                   */
/*///////////////////////////*/
.botonera
{
    padding: 0 !important;
    width: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.botonera .botona{
    padding: 8px 1vw 8px 1vw;
    line-height: 20px;
    font-size: 0.9em;
    color: #9f0022;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    background: #fff;
    border: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
.botonera .botona i{
    padding: 0 5px;
    color: #6f0022;
}
.botonera .botona:hover{
    color: #fff;
    background: #bf0022;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}
.botonera .botona:hover > i{
    color: #fff;
}
.botonera .botona:disabled{
    cursor: not-allowed ;
    color: #cf6622;
    background: #dfdfdf;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}
.botonera .botona-alt{
    padding: 8px 1vw 8px 1vw;
    line-height: 20px;
    font-size: 0.9em;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    background: #0e284f;
    border: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
.botonera .botona-alt i{
    padding: 0 5px;
    color: #fff;
}
.botonera .botona-alt:hover > i{
    color: #fff;
}
.botonera .botona-alt:hover{
    color: #fff;
    background: #bf0022;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}
.botonera .btn-confirmar{
    padding: 8px 1vw 8px 1vw;
    line-height: 20px;
    font-size: 0.9em;
    color: #9f0022;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    background: #fff;
    border: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
.botonera .btn-confirmar i{
    padding: 0 5px;
    color: #6f0022;
}
.botonera input[type="submit"] {
    height: 38px;
    font-size: 0.9em;
}

/* Boton Eliminar    */
/********************/
.botonera .btn-eliminar{
    padding: 6px;
    line-height: 20px;
    font-size: 0.9em;
    color: #9f0022;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    background: #fff;
    border: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
.botonera .btn-eliminar i{
    padding: 0 5px;
    color: #6f0022;
}
.botonera .btn-eliminar:hover{
    color: #fff;
    background: #bf0022;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}
.botonera .btn-eliminar:hover > i{
    color: #fff;
}
.botonera .btn-eliminar-disabled > i{
    color: #fff !important;
}
.botonera .btn-eliminar.disabled:hover{
    cursor: default; /*not-allowed;*/
    /*color: #fff;*/
    background: #fff;
    box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}

/* Total         */
/****************/
.botonera .total
{
    margin: 5px 0px 0 0;
    width: auto;
    float: left;
}
.botonera .total a
{
    margin: 0px 8px 0px 0px;
    display: block;
    font-size: 0.8em;
    color: #912832;
    text-decoration: none;
}
.botonera .aladerecha
{
    float: right;
}
.botonera .aladerecha .button
{
    height: 50px;
    font-size: 1.1em;
    margin: 0px 8px 0px 8px;
    padding: 10px;
}
.botonera .alaizquierda
{
    float: left;
}
.botonera .validagral a
{
    font-size: 1em;
    color: #912832 !important;
}
.btnBorrar
{
    cursor: pointer;
}
/* Botonera de la tabla*/
.botonera-tbl {
    width: auto;
    min-height: 37px;
    padding: 0px 0 0px 0;
    overflow: visible;
    border-width: 0;
}
.botonera-tbl .boton{
    padding: 8px 1vw 8px 1vw;
    line-height: 20px;
    font-size: 0.9em;
    color: #9f0022;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    background: #fff;
    border-top: solid 1px #ccc;
    border-bottom: solid 0px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
.botonera-tbl .boton:hover{
    color: #fff;
    background: #bf0022;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}
.botonera-tbl .boton:disabled,
.boton[disabled]{
    background: #b2a9ab;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.5);
    transition: background .3s ease, box-shadow .3s ease;
}
.botonera-tbl .botona{
    padding: 8px 1vw 8px 1vw;
    line-height: 20px;
    font-size: 0.9em;
    color: #9f0022;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    background: #fff;
    border: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
.botonera-tbl .botona i{
    padding: 0 5px;
    color: #6f0022;
}
.botonera-tbl .botona:hover{
    color: #fff;
    background: #bf0022;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}
.botonera-tbl .botona:hover > i{
    color: #fff;
}
.botonera-tbl .botona:disabled{
    cursor: not-allowed ;
    color: #cf6622;
    background: #dfdfdf;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}
.botonera-tbl .boton-alt{
    padding: 8px 1vw 8px 1vw;
    line-height: 20px;
    font-size: 0.9em;
    color: #9f0022;
    color: #23232E;
    display: inline-block;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    background: #fff;
    transition: color .3s ease-out, border .3s ease-out;
}
.botonera-tbl .boton-alt:hover{
    color: #6b0017;
    border: solid 1px #c4a8a8;
    transition: color .4s ease, border .3s ease;
}
.botonera-tbl .boton-alt2{
    padding: 8px 1vw 8px 1vw;
    line-height: 20px;
    font-size: 0.9em;
    color: #fff;
    display: inline-block;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 3px;
    box-sizing: border-box;
    background: #23232E;
    transition: background-color .5s ease-out;
}
.botonera-tbl .boton-alt2:hover{
    color: #9f0022;
    border: 1px solid #af0022;
    background: transparent;
    transition: background-color .4s ease;
}
.botonera-tbl .boton-claro{
    padding: 8px 1vw 8px 1vw;
    line-height: 20px;
    font-size: 0.9em;
    color: #333;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: 3px;
    box-sizing: border-box;
    background: #fff;
    transition: background-color .5s ease-out;
}
.botonera-tbl .boton-claro:hover{
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
    transition: background-color .4s ease;
}
.botonera-tbl .cajatexto{
    padding: 0;
    color: #9f0022;
    box-sizing: border-box;
    background: #fff;
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
/* Ancho para XS y SM */
.botonera-tbl .col-12 .cajatexto input[type="text"]{
    width: calc(100% - 110px);
}
/* Ancho para MD y LG */
.botonera-tbl .cajatexto.col-md-12 input[type="text"]{
    width: calc(100% - 52px);
}
.botonera-tbl .cajatexto input[type="text"]{
    padding: 0 10px;
    margin: 2px;
    height: 34px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 0px solid #999;
}
.botonera-tbl .cajatexto input[type="text"]:focus{
    margin: 2px;
    outline-color: transparent;
    box-shadow: 1px 0px 6px rgba(60, 0, 0, 0);
    border: 0px solid #999 !important;
    box-sizing: border-box;
}
.botonera-tbl .cajatexto select {
    padding: 5px;
    width: auto;
    height: 30px !important;
    display: inline-block;
    color: #666;
    font-size: 0.8em;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 0px solid #999;
    border-left: 1px solid #ccc;
    outline-width: 0;
    background: #fff;
}
.botonera-tbl .cajatexto select:focus{
    outline-color: transparent;
    outline-width: 0;
    box-shadow: 0px 0px 0px transparent;
    border: 0px solid transparent !important;
    border-left: 1px solid #ccc !important;
}
.botonera-tbl .cajatexto .minAncho {
    padding: 5px;
    width: 48px;
    height: 30px !important;
    display: inline-block;
    color: #666;
    font-size: 0.8em;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 0px solid #999;
    border-left: 1px solid #ccc;
    outline-width: 0;
    background: #fff;
}
.botonera-tbl .cajatexto optgroup option{
    /*padding-left: 0px;*/
}

/* Datos retrocompatibilidad /*
/***************************/
.datos
{
    margin: 5px 0 10px 0px;
    padding: 0 2% 0 2%;
    width: 100%;
    float: left;
    background: #f5f5f5;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.datos .fila
{
    margin: 0;
    padding: 10px 0;
    width: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.datos .fila .titulo
{
    margin: 15px 0px 5px 0px;
    width: 100%;
    height: 22px;
    float: left;
    border-bottom: solid 1px #912832;
}
.datos .fila .titulo a
{
    margin: 0px 8px 0px 0px;
    padding: 5px 0px 5px 0px;
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    background: #912832;
}
.datos .fila .titulo2
{
    margin: 0px 0px 5px 0px;
    padding: 0;
    width: 100%;
    height: 32px;
    float: left;
    border-bottom: solid 1px #ededed;
}
.datos .fila .titulo2 a
{
    margin: 0px 0px 0px 0px;
    padding: 5px 0px 5px 0px;
    font-size: 1.2em;
    font-weight: lighter;
    color: #713e3e;
    text-decoration: none;
}
.datos .fila .dato
{
    margin: 5px 10px;
    width: auto;
    float: left;
}
.datos .fila .dato label
{
    display: block;
    font-size: 1em;
}
.datos .fila .dato a
{
    margin: 0px 8px 0px 0px;
    display: block;
    font-size: 0.9em;
    color: #912832;
    text-decoration: none;
}
.datos .fila .tablaretornos
{
    margin: 8px 10px 20px 10px;
    width: 99.5%;
    border-spacing: 0px;
    float: left;
    text-align: center;
}
.datos .fila .tablaretornos tr.row1
{
    color: #232323;
    height: 23px;
    background: #ffffff;
    font: 0.8em calibri;
}
.datos .fila .tablaretornos tr.row2
{
    height: 23px;
    background: #f3f3f3;
    font: 0.8em calibri;
}
.datos .fila .tablaretornos .primerhijo
{
    border-left: solid 1px #ebe8d6;
}
.datos .fila .tablaretornos th
{
    color: #fff;
    height: 30px;
    font-size: 1em;
    font-weight: normal;
    border-top: solid 2px #705050;
    border-bottom: solid 1px #4D2D2D;
    border-right: solid 1px #3D2D2D;
    border-left: solid 1px #705050;
    background: #5A4140;
}
.datos .fila .tablaretornos td
{
    font-size: 1em;
    border-bottom: 1px solid #e0e0e0;
    border-right: solid 1px #ebe8d6;
    border-left: solid 1px #ffffff;
}
.datos .fila .tablaretornos td a
{
    text-decoration: none;
    color: #912832;
}
.datos .fila .tablaretornos .tachado
{
    text-decoration: line-through;
}

.datos .fila .decision
{
    margin: 5px 0px;
    width: auto;
    float: left;
}
.datos .fila .decision a
{
    margin: 0px 8px 0px 0px;
    display: block;
    font-size: 1.5em;
    color: #912832;
    text-decoration: none;
}
.datos .fila .paginacion
{
    margin: 0 auto;
    margin-top: 10px;
    padding: 0px 0 0 0;
    width: 100%;
    min-height: 40px;
    text-align: center;
    border-width: 0px;
    border-top: solid 1px transparent;
    /*border-image: linear-gradient(to right, rgba(255, 255, 255, 0) 20%, rgba(220, 220, 220, 1) 50%, rgba(255, 255, 255, 0) 80%);
    border-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(220, 220, 220, 1) 100%);
    border-image: linear-gradient(to right, rgba(220, 220, 220, 1) 0%, rgba(220, 220, 220, 1) 50%);
    border-image-slice: 1;*/
    border-radius: 0px;
    box-sizing: border-box;
}
.datos .fila .paginacion .titulopaginacion
{
    width: 100%;
}
.datos .fila .paginacion .titulopaginacion h4
{
    margin: 10px 0 10px 0;
    font-size: 1.3em;
    font-weight: normal;
    color: #912832;
    text-align: center;
}
.datos .fila .paginacion .paginas
{
    margin: 0 auto;
    float: left;
    text-align: center;
    display: inline-block;
}
.datos .fila .paginacion .paginas a
{
    margin: 1px 2px 3px 1px;
    padding: 3px 0 0 0;
    width: 26px;
    height: 26px;
    display: list-item;
    float: left;
    font-size: 0.9em;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    list-style-type: none;
    color: #912832;
    border: solid 1px #e9e9e9;
    border-radius: 5px;
    background: #f9f9f9;
    box-sizing: border-box;
}
.datos .fila .paginacion .paginas a:first-child
{
    margin: 1px 2px 3px 1px;
}
.datos .fila .paginacion .paginas a:hover
{
    text-align: center;
    border: solid 1px #c9c9c9;
    background: #fff;
}
.datos .fila .paginacion .paginas .paginaactual
{
    margin: 1px 2px 0 1px;
    padding: 3px 0 0 0;
    width: 26px;
    height: 26px;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    color: #fff;
    text-align: center;
    background: linear-gradient(#9d1339, #912832);
    border: solid 1px transparent;
}
.datos .fila .paginacion .paginas .paginaactual:hover
{
    text-align: center;
    border: solid 1px #912832;
    background: linear-gradient(#9d1339, #912832);
}

/*  Tabla Detalle Almacen  */
/*------------------------*/
.datos .fila .tblentradadetalle
{
	margin: 8px 10px 20px 10px;
	width: 100%;
	border-spacing: 0px;
	float: left;
	text-align: center;
}
.datos .fila .tblentradadetalle tbody tr:nth-child(odd) {
   background-color: #e3e3e3;
}
.datos .fila .tblentradadetalle .primerhijo
{
	border-left: solid 1px #ebe8d6;
}
.datos .fila .tblentradadetalle th
{
	color: #fff;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 2px #705050;
	border-bottom: solid 1px #4D2D2D;
	border-right: solid 1px #3D2D2D;
	border-left: solid 1px #705050;
	background: #5A4140;
}
.datos .fila .tblentradadetalle td
{
	height: 25px;
	font-size: 1em;
	border-bottom: 0px solid #e0e0e0;
	border-right: solid 0px #ebe8d6;
	border-left: solid 0px #ffffff;
}
.datos .fila .tblentradadetalle .celda1
{
	padding: 0 20px 0 0;
	width: 210px;
	table-layout:fixed;
	font-size: 1em;
	text-align: right;
	border-bottom: 0px solid #e0e0e0;
	border-right: solid 0px #ebe8d6;
	border-left: solid 0px #ffffff;
}
.datos .fila .tblentradadetalle .celda2
{
	table-layout:fixed;
	font-size: 0.9em;
	text-align: left;
	border-bottom: 0px solid #e0e0e0;
	border-right: solid 0px #ebe8d6;
	border-left: solid 0px #ffffff;
}

.datos .fila .tblentradadetalle td a
{
	text-decoration: none;
	color: #912832;
}
/* Buscador */
.buscador
{
    margin: 0;
    height: 40px;
    box-sizing: border-box;
}
.buscador .opcionesbusqueda
{
    margin: 0;
    padding: 3px;
    /*width: 400px;*/
    height: 40px;
    background: #fff;
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    box-sizing: border-box;
}
.buscador .opcionesbusqueda .cajabusqueda
{
    margin: 1px;
    padding: 0 0 0 10px;
    width: 190px;
    height: 36px;
    border: none;
    background: #fff;
}
.buscador .opcionesbusqueda .cajabusqueda:focus
{
    outline-color: transparent;
    box-shadow: 1px 1px 1px transparent;
    border: 1px solid transparent !important;
    box-sizing: border-box;
}
.buscador .opcionesbusqueda .opciones
{
    margin: 1px 1px;
    width: 115px;
    height: 38px !important;
    display: inline-block;
    border: none;
    background: #fff;
    border: solid 0px transparent;
    border-left: solid 1px #ccc;
    box-sizing: border-box;
}
.buscador .opcionesbusqueda .opciones:focus
{
    outline-color: transparent;
    outline-width: 0;
    box-shadow: 0px 0px 0px transparent;
    border: 0px solid transparent !important;
    border-left: 1px solid #ccc !important;
    box-sizing: border-box;
}
.buscador .opcionesbusqueda .buscar
{
    margin: 0;
    width: 80px;
    height: 38px;
    padding: 0px 1vw;
    font-size: 0.9em;
    color: #fff;
    display: inline-block;
    float: right;
    box-sizing: border-box;
    background: #bf0022;
    border-radius: 0;
    border: solid 0px #ccc;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
.buscador .opcionesbusqueda .buscar i{
    padding: 0 5px;
    color: #6f0022;
}
.buscador .opcionesbusqueda .buscar:hover{
    color: #fff;
    background: #0e284f !important;
    box-shadow: inset 0 0 10px 0 rgba(0,0,0,0.3);
    transition: background .3s ease, box-shadow .3s ease;
}
.buscador .opcionesbusqueda .buscar:hover > i{
    color: #fff;
}
.errorpag
{
	margin: 25px 20px 15px 20px;
	padding: 0 0px 0 20px;
	width: 94%;
    min-height: 250px;
	float: left;
	border: solid 1px #e5e5e5;
	border-top: solid 2px #d9d9d9;
	border-radius: 3px;
    background: -moz-linear-gradient(top,  #f9f9f9 0%, #fff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#fff));
    background: -webkit-linear-gradient(top,  #f9f9f9 0%,#fff 10%);
    background: -o-linear-gradient(top,  #f9f9f9 0%,#fff 100%);
    background: -ms-linear-gradient(top,  #f9f9f9 0%,#fff 100%);
    background: linear-gradient(top,  #f9f9f9 0%,#fff 100%);
}
.errorpag .fila
{
	margin: 0;
	padding: 5px 0;
	width: 100%;
	float: left;
}
.errorpag .fila .titulo
{
	margin: 40px 10px 5px 0px;
	padding: 0;
	width: 98%;
	height: 32px;
	float: left;
	border-bottom: solid 0px #ededed;
}
.errorpag .fila .titulo a
{
	margin: 0px 8px 0px 30px;
	padding: 5px 10px 5px 0px;
	font-size: 1.6em;
	font-weight: lighter;
	color: #713e3e;
	text-decoration: none;
}
.errorpag .fila .contenido
{
	margin: 0px 10px 5px 0px;
	padding: 0;
	width: 98%;
	height: 32px;
	float: left;
	border-bottom: solid 0px #ededed;
}
.errorpag .fila .contenido a
{
	margin: 0px 8px 0px 30px;
	padding: 5px 10px 5px 0px;
	font-size: 1.1em;
	font-weight: lighter;
	color: #713e3e;
	text-decoration: none;
}

/* Detalle del Pedimento  */
/*************************/
.dtllpedimento
{
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.dtllpedimento .pedimentoimp
{
    padding: 10px;
}
.dtllpedimento .pedimentoimp .datopedimp
{
    margin: 5px 0;
    width: 100%;
    float: left;
}
.dtllpedimento .pedimentoimp .datopedimp label
{
    font-size: 1.1em;
}
.dtllpedimento .pedimentoimp .datopedimp a
{
    margin: 0px 8px 0px 0px;
    font-size: 1em;
    color: #912832;
    text-decoration: none;
}
.dtllpedimento .partida
{
    margin: 15px 0% 10px 0%;
    padding: 0;
    width: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.dtllpedimento .partida .titulo
{
    margin: 0px 10px 0px 0px;
    padding: 5px 10px 0px 10px;
    width: auto;
    height: 30px;
    float: left;
    border-top: solid 1px #9aa4b7;
    border-bottom: solid 0px #9aa4b7;
    border-left: solid 1px #9aa4b7;
    border-right: solid 1px #9aa4b7;
    background: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.dtllpedimento .partida .titulo a
{
    margin: 0px;
    font-size: 1em;
    font-weight: normal;
    color: #232323;
    text-decoration: none;
}
.dtllpedimento .partida .titulo-eliminar
{
    padding: 3px 10px 5px 10px;
    height: 30px;
    text-align: right;
    border-left: solid 1px #ebe8d6;
    border-right: solid 1px #ebe8d6;
    border-bottom: solid 1px #e0e0e0;
    background: #fff;
}
.dtllpedimento .partida .titulo-eliminar a
{
    margin: 0px;
    font-size: 1em;
    font-weight: lighter;
    color: #9f0000;
    text-decoration: none;
    cursor: pointer;
}
.dtllpedimento .partida .titulo-eliminar img
{
    width: 18px;
    padding-right: 4px;
    padding-right: 4px;
}
.dtllpedimento .total
{
    margin: 5px 0px 0 0;
    width: auto;
    float: right;
}
.dtllpedimento .total label
{
    margin: 0px 8px 0px 0px;
    font-size: 1.1em;
    color: #912832;
}
.dtllpedimento .total .tachado
{
    text-decoration: line-through;
}
/* Tabla de la partida   */
/*************************/
.tblpartida
{
	margin: 0px 0px 0px 0px;
	width: 100%;
	border-spacing: 0px;
	float: left;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.tblpartida th
{
	color: #000;
	height: 30px;
	font-weight: normal;
    border-top: solid 1px #8d99ae;
    border-bottom: solid 1px #8d99ae;
    border-right: solid 1px #949fb2;
    border-left: solid 1px #8d99ae;
    background: #8d99ae;
    transition: background .3s ease-out, box-shadow .3s ease-out;
}
.tblpartida th:hover
{
    /*background: #0e284f !important;*/
    box-shadow: inset 0 0 25px 0 rgba(0,0,0,0.1);
    transition: background .3s ease, box-shadow .3s ease;
}
.tblpartida td
{
    color: #232323;
    height: 23px;
    font: 0.9em calibri;
    border-bottom: 1px solid #e0e0e0;
    border-right: solid 1px #ebe8d6;
    border-left: solid 1px #ffffff;
    background: #ffffff;
}
.tblpartida td:first-child
{
	border-left: solid 1px #ebe8d6;
}
.tblpartida td a
{
	text-decoration: none;
	color: #912832;
}
/*Tabla Pedimento de Exportacion*/
#dtllpedimento .tblpedimentoexp
{
	margin: 8px 0 20px 0;
	padding: 0;
	width: 100%;
	border-spacing: 0px;
	float: left;
	text-align: center;
}
#dtllpedimento .tblpedimentoexp tr
{
	color: #232323;
	height: 23px;
	background: #fff;
}
#dtllpedimento .tblpedimentoexp tr:nth-child(odd)
{
 	background: #f3f3f3;
}
#dtllpedimento .tblpedimentoexp th
{
	color: #fff;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 2px #705050;
	border-bottom: solid 1px #4D2D2D;
	border-right: solid 1px #3D2D2D;
	border-left: solid 1px #705050;
	background: #5A4140;
}
#dtllpedimento .tblpedimentoexp td:first-child
{
	border-left: solid 1px #ebe8d6;
}
#dtllpedimento .tblpedimentoexp td
{
	font-size: 0.9em;
	border-bottom: 1px solid #e0e0e0;
	border-right: solid 1px #ebe8d6;
	border-left: solid 1px #ffffff;
}
#dtllpedimento .tblpedimentoexp td a
{
	text-decoration: none;
	color: #912832;
}
#dtllpedimento .tblpedimentoexp.tachado
{
	text-decoration: line-through;
}
#dtllretorno
{
	margin: 10px 0 0px 0;
	padding: 0 30px 0 30px;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#dtllretorno .retorno
{
	
}
#dtllretorno .retorno .retornoizq
{
	margin: 0px 0;
	width: 30%;
	float: left;
}
#dtllretorno .retorno .retornoder
{
	margin: 5px 0;
	width: 70%;
	float: right;
}
#dtllretorno .retorno .datoretorno
{
	margin: 5px 0;
	width: 100%;
	float: left;
}
#dtllretorno .retorno .datoretorno label
{
	font-size: 1.1em;
}
#dtllretorno .retorno .datoretorno a
{
	margin: 0px 8px 0px 0px;
	font-size: 1em;
	color: #912832;
	text-decoration: none;
}
/*Tabla Retornos*/
#dtllretorno .tblretorno
{
	margin: 8px 0 20px 0;
	padding: 0;
	width: 100%;
	border-spacing: 0px;
	float: left;
	text-align: center;
}
#dtllretorno .tblretorno tr
{
	color: #232323;
	height: 23px;
	background: #fff;
}
#dtllretorno .tblretorno tr:nth-child(odd)
{
 	background: #f3f3f3;
}
#dtllretorno .tblretorno th
{
	color: #fff;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 2px #705050;
	border-bottom: solid 1px #4D2D2D;
	border-right: solid 1px #3D2D2D;
	border-left: solid 1px #705050;
	background: #5A4140;
}
#dtllretorno .tblretorno td:first-child
{
	border-left: solid 1px #ebe8d6;
}
#dtllretorno .tblretorno td
{
	font: 0.9em calibri;
	border-bottom: 1px solid #e0e0e0;
	border-right: solid 1px #ebe8d6;
	border-left: solid 1px #ffffff;
}
#dtllretorno .tblretorno td a
{
	text-decoration: none;
	color: #912832;
}
#dtllretorno .tblretorno .tachado
{
	text-decoration: line-through;
}
#dtllretorno .total
{
	margin: 5px 0px 0 0;
}
#dtllretorno .total label
{
	margin: 0px 8px 0px 0px;
	font-size: 1.1em;
	color: #912832;
}
#dtllretorno .total .tachado
{
	text-decoration: line-through;
}
#hojacont
{
	margin: 0 auto;
	padding: 10px 0 10px 0;
	width: 100%;
	background: #a3a3a3;
}
#hojacont
{
	margin: 0 auto;
	padding: 10px 0 10px 0;
	width: 100%;
	background: #a3a3a3;
}
#hoja
{
	margin: 0 auto;
	padding: 0;
	width: 1024px;
	min-height: 1325px;
	overflow: hidden;
	*height: auto !important;
	*height: 700px;
	*overflow: visible;
	background: #fff;
	box-shadow: 0px 0px 12px #232323;
}
#hoja #encabezado
{
	margin: 0;
	padding: 75px 0 0 0;
	width: 100%;
	min-height: 165px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja #encabezado h2
{
	margin: 0px;
	padding: 3px 0 3px 0;
	text-align: center;
	font-size: 1.3em;
}
#hoja #encabezado h3
{
	margin: 0px;
	padding: 3px 0 3px 0;
	text-align: center;
	font-size: 1.1em;
	font-weight: lighter;
}
#hoja #datosretorno
{
	margin: 25px 0 0 0;
	padding: 0 5% 0 6%;
	width: 100%;
	min-height: 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#hoja #distribuidora
{
	margin: 0px;
	padding: 0 0 0 10px;
	width: 70%;
	min-height: 100px;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#hoja #distribuidora h2
{
	margin: 0px;
	padding: 3px 0 3px 0;
	text-align: left;
	font-size: 1.1em;
}
#hoja #distribuidora h3
{
	margin: 0px;
	padding: 3px 0 3px 0;
	text-align: left;
	font-size: 1em;
	font-weight: lighter;
}
#hoja #remision
{
	margin: 0px 0 0 0;
	width: 30%;
	min-height: 100px;
	float: right;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja #remision .tblremision
{
	margin: 8px 0px 20px 0px;
	width: 100%;
	border-spacing: 0px;
	float: right;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja #remision .tblremision tr
{
	color: #232323;
	height: 35px;
	background: #ffffff;
	font: 1em calibri;
}
#hoja #remision .tblremision:first-child
{
	color: #232323;
	height: 25px;
	font: 1em calibri;
	border-top: solid 1px #4d4d4d;
	background: #ffffff;
}
#hoja #remision .tblremision tr td:first-child
{
	color: #232323;
	height: 25px;
	font: 1em calibri;
	border-left: solid 1px #4d4d4d;
	background: #ffffff;
}
#hoja #remision .tblremision td
{
	font-size: 1em;
	border-bottom: 1px solid #4d4d4d;
	border-right: solid 1px #4d4d4d;
	border-left: solid 1px #ffffff;
}
#hoja #datospedimento
{
	margin: 50px 0 0 0;
	padding: 0 5% 0 6%;
	width: 100%;
	min-height: 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#hoja #datospedimento #cliente
{
	margin: 0px;
	padding: 5px 10px 0 0;
	width: 60%;
	min-height: 100px;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#hoja #datospedimento #cliente h2
{
	margin: 0px;
	padding: 3px 0 3px 0;
	text-align: left;
	font-size: 1.1em;
}
#hoja #datospedimento #cliente h3
{
	margin: 0px;
	padding: 3px 0 3px 0;
	text-align: left;
	font-size: 1em;
	font-weight: lighter;
}
#hoja #datospedimento #pedimento
{
	margin: 0px 0 0 0;
	width: 30%;
	min-height: 100px;
	float: right;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja #datospedimento #pedimento .tblpedimento
{
	margin: 8px 0px 20px 0px;
	width: 100%;
	border-spacing: 0px;
	float: left;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja #datospedimento #pedimento .tblpedimento tr
{
	color: #232323;
	height: 35px;
	background: #ffffff;
	font: 1em calibri;
}
#hoja #datospedimento #pedimento .tblpedimento:first-child
{
	color: #232323;
	height: 25px;
	font: 1em calibri;
	border-top: solid 1px #4d4d4d;
	background: #ffffff;
}
#hoja #datospedimento #pedimento .tblpedimento tr td:first-child
{
	color: #232323;
	height: 25px;
	font: 1em calibri;
	border-left: solid 1px #4d4d4d;
	background: #ffffff;
}
#hoja #datospedimento #pedimento .tblpedimento td
{
	font-size: 1em;
	border-bottom: 1px solid #4d4d4d;
	border-right: solid 1px #4d4d4d;
	border-left: solid 1px #ffffff;
}
#hoja .partida
{
	margin: 15px 6% 10px 6%;
	padding: 0;
	width: 88%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja .partida .titulo
{
	margin: 0px 10px 0px 0px;
	padding: 5px 10px 0px 10px;
	width: auto;
	height: 30px;
	float: left;
	border-top: solid 1px #434343;
	border-left: solid 1px #434343;
	border-right: solid 1px #434343;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#hoja .partida .titulo a
{
	margin: 0px;
	font-size: 1.1em;
	font-weight: lighter;
	color: #232323;
	text-decoration: none;
}
#hoja .partida .tblpartida
{
	margin: 0px 0px 0px 0px;
	width: 100%;
	border-spacing: 0px;
	float: left;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja .partida .tblpartida th:first-child
{
	color: #232323;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 1px #4d4d4d;
	border-bottom: solid 1px #4d4d4d;
	border-left: solid 1px #4d4d4d;
	background: #ededed;
}
#hoja .partida .tblpartida th
{
	color: #232323;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 1px #4d4d4d;
	border-bottom: solid 1px #4d4d4d;
	border-right: solid 1px #4d4d4d;
	border-left: solid 0px #4d4d4d;
	background: #ededed;
}
#hoja .partida .tblpartida td:first-child
{
	border-left: solid 1px #9d9d9d;
}
#hoja .partida .tblpartida td
{
	color: #232323;
	height: 23px;
	font: 0.9em calibri;
	border-bottom: 1px solid #9d9d9d;
	border-right: solid 1px #9d9d9d;
	border-left: solid 1px #ffffff;
	background: #ffffff;
}
#hoja .partida .tblpartida td a
{
	text-decoration: none;
	color: #912832;
}
/*Reporte de Saldos*/
#hoja #reportesaldos
{
	margin: 50px 0 0 0;
	padding: 0 5% 0 6%;
	width: 100%;
	min-height: 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#hoja #reportesaldos #tituloreporte
{
	margin: 0px;
	padding: 5px 10px 0 0;
	width: 100%;
	min-height: 100px;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#hoja #reportesaldos #tituloreporte h2
{
	margin: 0px;
	padding: 3px 0 3px 0;
	text-align: center;
	font-size: 1.3em;
}
#hoja #reportesaldos #tituloreporte h3
{
	margin: 0px;
	padding: 3px 0 3px 0;
	text-align: center;
	font-size: 1em;
	font-weight: lighter;
}
#hoja #reportesaldos .pedpartida
{
	padding: 15px 0% 10px 0%;
	margin: 0;
	width: 100%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja #reportesaldos .pedpartida .tblpedpartida
{
	margin: 8px 0px 20px 0px;
	width: 100%;
	border-spacing: 0px;
	float: left;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja #reportesaldos .pedpartida .tblpedpartida th:first-child
{
	color: #232323;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 1px #4d4d4d;
	border-bottom: solid 1px #4d4d4d;
	border-left: solid 1px #4d4d4d;
	background: #ededed;
}
#hoja #reportesaldos .pedpartida .tblpedpartida th
{
	color: #232323;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 1px #4d4d4d;
	border-bottom: solid 1px #4d4d4d;
	border-right: solid 1px #4d4d4d;
	border-left: solid 0px #4d4d4d;
	background: #ededed;
}
#hoja #reportesaldos .pedpartida .tblpedpartida tr
{
	color: #232323;
	height: 23px;
	background: #ffffff;
}
#hoja #reportesaldos .pedpartida .tblpedpartida tr:nth-child(odd)
{
 	background: #f5f5f5;
}
#hoja #reportesaldos .pedpartida .tblpedpartida td:first-child
{
	border-left: solid 1px #9d9d9d;
}
#hoja #reportesaldos .pedpartida .tblpedpartida td
{
	font: 0.8em calibri;
	border-bottom: 1px solid #9d9d9d;
	border-right: solid 1px #9d9d9d;
	border-left: solid 1px #ffffff;
}
 /* Todos los tamanos son en porciento*/
/*-----------------------------------*/
#hoja #reportesaldos .pedpartida .tblpedpartida .celdatam6
{
	width: 6%;
}
#hoja #reportesaldos .pedpartida .tblpedpartida .celdatam7
{
	width: 7.5%;
}
#hoja #reportesaldos .pedpartida .tblpedpartida .celdatam10
{
	width: 10%;
}
#hoja #reportesaldos .pedpartida .tblpedpartida .celdatam14
{
	width: 14%;
}
#hoja #reportesaldos .pedpartida .tblpedpartida .celdatam30
{
	width: 30%;
}

 /* Descargos de la partida del reporte*/
/*------------------------------------*/
#hoja #reportesaldos .descargos
{
	padding: 0px 0% 0px 0%;
	margin: 0;
	width: 78.5%;
	float: right;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja #reportesaldos .descargos .tbldescargos
{
	margin: 8px 0px 20px 0px;
	width: 100%;
	border-spacing: 0px;
	float: left;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja #reportesaldos .descargos .tbldescargos tr
{
	color: #232323;
	height: 23px;
	background: #ffffff;
}
#hoja #reportesaldos .descargos .tbldescargos  tr:nth-child(odd)
{
 	background: #f5f5f5;
}
#hoja #reportesaldos .descargos .tbldescargos th:first-child
{
	color: #232323;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 1px #4d4d4d;
	border-bottom: solid 1px #4d4d4d;
	border-left: solid 1px #4d4d4d;
	background: #ededed;
}
#hoja #reportesaldos .descargos .tbldescargos th
{
	color: #232323;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 1px #4d4d4d;
	border-bottom: solid 1px #4d4d4d;
	border-right: solid 1px #4d4d4d;
	border-left: solid 0px #4d4d4d;
	background: #ededed;
}
#hoja #reportesaldos .descargos .tbldescargos td:first-child
{
	border-left: solid 1px #9d9d9d;
}
#hoja #reportesaldos .descargos .tbldescargos td
{
	font: 0.8em calibri;
	border-bottom: 1px solid #9d9d9d;
	border-right: solid 1px #9d9d9d;
	border-left: solid 1px #ffffff;
}
#hoja #reportesaldos .descargos .tbldescargos .celdatam12
{
	width: 12.8%;
}
#hoja #reportesaldos .descargos .tbldescargos .celdatam18
{
	width: 17.5%;
}
#hoja #reportesaldos .descargos .tbldescargos .celdatam19
{
	width: 19%;
}
.tblbasicacont
{
	margin: 15px 6% 10px 6%;
	padding: 0;
	width: 88%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.tblbasicacont .tblbasica
{
	margin: 8px 0px 20px 0px;
	width: 100%;
	border-spacing: 0px;
	float: left;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.tblbasicacont .tblbasica tbody tr:nth-child(odd) {
   background-color: #f3f3f3;
}
.tblbasicacont .tblbasica th:first-child
{
	color: #232323;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 1px #4d4d4d;
	border-bottom: solid 1px #4d4d4d;
	border-left: solid 1px #4d4d4d;
	background: #ededed;
}
.tblbasicacont .tblbasica th
{
	color: #232323;
	height: 30px;
	font-size: 1em;
	font-weight: normal;
	border-top: solid 1px #4d4d4d;
	border-bottom: solid 1px #4d4d4d;
	border-right: solid 1px #4d4d4d;
	border-left: solid 0px #4d4d4d;
	background: #ededed;
}
.tblbasicacont .tblbasica td:first-child
{
	border-left: solid 1px #9d9d9d;
}
.tblbasicacont .tblbasica td
{
	height: 20px;
	font: 0.8em calibri;
	border-bottom: 1px solid #9d9d9d;
	border-right: solid 1px #9d9d9d;
	border-left: solid 1px #ffffff;
}
.tblbasicacont .tblbasica td a
{
	text-decoration: none;
	color: #912832;
}
.tblbasicacont .total
{
	margin: 5px 0px 0 0;
	padding: 0;
	width: auto;
	float: right;
}
.tblbasicacont .total label
{
	margin: 0px 0px 0px 0px;
	padding: 0;
	text-align: right;
	font-size: 1.1em;
	color: #232323;
}
.tblbasicacont .total .tachado
{
	text-decoration: line-through;
}
#hoja .botonera
{
	margin: 5px 5% 10px 6%;
	width: 89%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
#hoja .botonera .aladerecha
{
	float: right;
}
#hoja .botonera .aladerecha .button
{
	margin: 0px 0px 0px 8px;
	height: 50px;
	font-size: 1.1em;	
	padding: 10px;
}
#hoja .botonera .alaizquierda
{
	float: left;
}

.menutiles
{
	margin: 0 auto;
	width: 99%;
	float: left;
}
.menutiles .tile
{
	margin: 10px;
	padding: 10px;
	width: 180px;
	height: 180px;
	float: left;
	background: #EBE8D6;
	border: solid 6px #f3f1e7;
}
.menutiles .tile:hover
{
	background: #f3f1e7;
}
.menutiles .tile h5
{
	margin: 0;
	color: #9e1818;
	padding: 0 1px;
	font-size: 1.1em;
	font-weight: normal;
	text-align: center;
}
.menutiles .tile a:link, a:visited
{
	color: #9e1818;
	padding: 0 1px;
	text-decoration: none;
}
.menutiles .tile a img
{
	margin: 0 0 0 15px;
	padding: 0;
	background: transparent;
	border: solid 0px #ffffff;
}

#pielogin
{
	margin: 0 auto;
	width: 630px;
	height: 50px;
	padding-top: 7px;
}
#pielogin p
{
	margin: 0px;
	font-size: 0.8em;
    text-align: center;
}


/***********************************************************/
/****************      Nuevo Estilo       ******************/
/***********************************************************/
/*-- anchors --*/
a{
    outline: 0;
    text-decoration: none;
}
a img{
    border: 0;
}
a:link, a:visited{
    color: #ad0101;
    padding: 0;
}
/*-- table --*/
table.zebra {
    width: 100%;
    background: #fff;
    border: solid 1px #ccc;
    box-sizing: border-box;
}
table.zebra tr:nth-child(odd) {
    background: #dbe8ff;
    background: #edeff2;
    background: #e5ecec;
    background: #dfdfdf;
}
table.zebra th {
    padding: 5px;
    color: #404040;
    font-weight: bold;
    background: #fff;
    border-bottom: solid 1px #ccc;
    border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
}
table.zebra td {
    max-height: 32px !important;
    padding: 3px 3px;
}
table.zebra td img {
    opacity: 0.5;
    transition: all .3s ease-out;
}
table.zebra td img:hover {
    opacity: 1;
    transition: all .3s ease-in;
}
table.zebra input[type=checkbox] {
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 5px 0;
}
table.zebra .icono {
    width: 38px !important;
    height: 38px;
    padding: 0px 0;
}
table.zebra .iconosvg {
    width: 32px;
    height: 32px;
    padding: 0px 0;
}
table.zebra .iconosvg img {
    width: 24px;
    height: 24px;
}
table.zebra i::before {
    font-size: 1.6em;
}
table.zebra table th {
    font-size: 1.3em !important;
}
table.zebra table td {
    font-size: 1em !important;
}
table.zebra .celda-destacada {
    background: #caf278;
}
/* Clases Defaults */
/*********************************/
/* Contenedores de tamaños personalizados */
.conte-def {
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-height: 20px;
    display: inline-block;
    box-sizing: border-box;
}
.conte-def .fila {
    width: 100%;
    box-sizing: border-box;
}
.conte-def .intext {
    width: 100%;
    min-height: 25px;
    box-sizing: border-box;
}
.conte-def .insel {
    width: 100%;
    min-height: 25px;
    box-sizing: border-box;
}
.conte-def .insel option{
    padding: 5px 10px;
}
.conte-def .videoprev {
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
}
.conte-def .videoprev iframe{
    position: absolute;
}

/* Control de lista y edicion de publicaciones(gral) */
/****************************************************/
.lista-control{
    width: 100%;
    box-sizing: border-box;
}
/* Noti-Caja de Arena */
#noti-cajadearena{
    width: 100%;
}
.lista-control .filacont{
    width: 100%;
    box-sizing: border-box;
}
.lista-control table {
    font-size: 0.9em;
}
.lista-control .paginacion
{
    width: auto;
    min-height: 1vw;
    background: #fff;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    box-sizing: border-box;
}
.lista-control .paginacion .titulopaginacion
{
    padding: 0.5vw 1.5vw;
    width: auto;
    float: left;
    border-right: solid 1px #ccc;
}
.lista-control .paginacion .titulopaginacion span
{
    font-size: 0.8em;
    font-weight: normal;
    color: #912832;
    text-align: left;
}
.lista-control .paginacion .paginas
{
    padding: 0.5vw 0.2vw;
    text-align: right;
    float: right;
}
.lista-control .paginacion .paginas a
{
    margin: 3px 3px 3px 3px;
    padding: 2px 8px 2px 8px;
    font-size: 1em;
    font-weight: normal;
    text-decoration: none;
    color: #912832;
    text-align: center;
    background: linear-gradient(#fff, #e9e9e9);
    border: solid 1px #d3d3d3;
}
.lista-control .paginacion .paginas a:hover
{
    color: #fff;
    text-align: center;
    background: linear-gradient(#9d1339, #912832);
    border: solid 1px #e3e3e3;
}
.lista-control .paginacion .paginas .paginaactual
{
    margin: 3px 3px 3px 3px;
    padding: 2px 8px 2px 8px;
    font-size: 1em;
    font-weight: normal;
    text-decoration: none;
    color: #fff;
    text-align: center;
    background: linear-gradient(#9d1339, #912832);
    border: solid 1px #d3d3d3;
}

/* Paginacion BootStrap  */
/*-----------------------*/
.paginacion-bs
{
    width: auto;
    min-height: 1vw;
    height: auto;
    background: #fff;
    box-sizing: border-box;
}
 .paginacion-bs.borde-paginacion
{
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}
.paginacion-bs .titulo-paginacion
{
    margin: 0 auto;
    padding: 0.5vw 1.5vw;
    min-height: 55px;
    height: 100%;
    text-align: center;
    display: inline-block;
}
.paginacion-bs .titulo-paginacion span
{
    font-size: 0.8em;
    font-weight: normal;
    color: #912832;
    text-align: center;
}
/* Borde para XS y SM  */
/***********************/
/* min-width: 576px    */
@media (max-width: 768px) 
{
    .paginacion-bs .titulo-paginacion
    {
        min-height: 25px;
    }
    .paginacion-bs .titulo-paginacion.borde-selectivo
    {
        border-bottom: solid 0px #eee;
        border-right-width: 0px
    }
}
/* Borde para XS y SM  */
/***********************/
@media (min-width: 768px) 
{
    .paginacion-bs .titulo-paginacion
    {
        min-height: 55px;
    }
    .paginacion-bs .titulo-paginacion.borde-selectivo
    {
        border-right: solid 1px #ccc;
        border-bottom-width: 0px
    }
}
.paginacion-bs .paginas
{
    margin: 0 auto;
    padding: 0.5vw 0.2vw;
    height: 100%;
    min-height: 50px;
    text-align: center;
    /*display: inline-block;*/
}
.paginacion-bs .paginas a
{
    margin: 3px 3px 3px 3px;
    padding: 2px 8px 2px 8px;
    float: left;
    font-size: 1em;
    font-weight: normal;
    text-decoration: none;
    list-style-type: none;
    text-align: center;
    color: #912832;
    display: inline-block;
    background: linear-gradient(#fff, #e9e9e9);
    border: solid 1px #d3d3d3;
    border-radius: 5px;
    box-sizing: border-box;
}
.paginacion-bs .paginas a:hover
{
    color: #fff;
    text-align: center;
    background: linear-gradient(#9d1339, #912832);
    border: solid 1px #e3e3e3;
}
.paginacion-bs .paginas .paginaactual
{
    margin-top: 3px !important;
    padding-top: 3px;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    color: #fff;
    text-align: center;
    background: linear-gradient(#9d1339, #912832);
    border: solid 1px transparent;
}
.paginacion-bs .paginas .paginaactual:hover
{
    text-align: center;
    border: solid 1px #912832;
    background: linear-gradient(#9d1339, #912832);
}
.paginacion-bs .paginas .separador
{
    margin: 3px 0 0 0 !important;
    padding: 0px !important;
    font-size: 0.9em;
    font-weight: normal;
    text-decoration: none;
    color: #444;
    text-align: center;
    background: transparent;
    border: solid 0px transparent;
}
.paginacion-bs .paginas .separador:hover
{
    text-align: center;
    color: #444;
    border: solid 0px transparent;
    background: transparent;
}
.paginacion-bs .paginas .btn-pagina
{
    cursor: pointer;
}

