/* VARIABLES */
:root {
	--header: 85px;
	--footer: 42px;
	--menuAncho: 60px;
	--bordeInput: #E5E5E5;

	--colorPrimario: 22,113,103;
	--primario: rgb(var(--colorPrimario));
	--primario10:rgba(var(--colorPrimario),0.1);
	--primario20:rgba(var(--colorPrimario),0.2);
	--primario30:rgba(var(--colorPrimario),0.3);
	--primario40:rgba(var(--colorPrimario),0.4);
	--primario50:rgba(var(--colorPrimario),0.5);
	--primario60:rgba(var(--colorPrimario),0.6);
	--primario70:rgba(var(--colorPrimario),0.7);
	--primario80:rgba(var(--colorPrimario),0.8);
	--primario90:rgba(var(--colorPrimario),0.19);
	--primario-hover:rgba(var(--colorPrimario),0.75);
	--primario-texto: #fff;
	--primario-hover-texto: #fff;

	--colorSecundario: 251,174,50;
	--secundario: rgb(var(--colorSecundario));
	--secundario10:rgba(var(--colorSecundario),0.1);
	--secundario20:rgba(var(--colorSecundario),0.2);
	--secundario30:rgba(var(--colorSecundario),0.3);
	--secundario40:rgba(var(--colorSecundario),0.4);
	--secundario50:rgba(var(--colorSecundario),0.5);
	--secundario60:rgba(var(--colorSecundario),0.6);
	--secundario70:rgba(var(--colorSecundario),0.7);
	--secundario80:rgba(var(--colorSecundario),0.8);
	--secundario90:rgba(var(--colorSecundario),0.19);
	--secundario-hover:rgba(var(--colorSecundario),0.75);
	--secundario-texto: #fff;
	--secundario-hover-texto: #fff;

	--colorTerciario: 246,73,73;
	--terciario: rgb(var(--colorTerciario));

	--exitoColor: #155724;
	--errorColor: #721C24;

	--avisoMsj: #FACB53;
	--exitoMsj: #3CB85A;
	--errorMsj: #f64949;
	
	--fontFamily: 'Lato', sans-serif;
	
	--anchoMarco: 1064px;
	
	--logo: 'logo.png';
	--logoRuta: url('/static/img/logo.png');

	--favicon: 'favicon.png';
	--faviconRuta: url('/favicon.png'); 
}

.preloader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primario50);
    z-index: 100000;
}
.preloader img {
    filter: opacity(0.5);
}

/* NORMALIZACIÓN DE ESTILOS */

*{
	box-sizing:border-box;
	margin:0;
	padding:0;
}

body{
	font-family: var(--fontFamily);
	font-size: 10px;
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,span{
	margin:0;
	padding:0;
}
table{
	border-collapse:collapse;
	border-spacing:0;
	width:100%;
	font-family: var(--fontFamily);
}
fieldset,img, abbr, acronym{
	border:0;
}
address,caption,pre,cite,code,dfn,th,var{
	font-style:normal;
	font-weight:normal;
}
ol,ul,dl{
	list-style:none;
}
caption{
	text-align:left;
}
img{
	border:0;
}
h1,h2,h3,h4,h5,h6{
	font-size:1em;
	font-size:100%;
	font-weight:normal;
}
a , a:visited{
	outline:none;
	color: currentColor;
}
input,select,textarea{
	font-family:var(--fontFamily);
}
a {
	text-decoration: none;
}
p {
font-weight: 300;
font-size: 1.4em;
line-height: 20px;
color: #333333;
}
select {
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
    appearance:none;
}
.scrollbar, .dataTables_scrollBody, .dataTables_scroll {
	scrollbar-width: thin;
}
.scrollbar::-webkit-scrollbar, .dataTables_scrollBody::-webkit-scrollbar, .dataTables_scroll::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
.scrollbar::-webkit-scrollbar-track, .dataTables_scrollBody::-webkit-scrollbar-track, .dataTables_scroll::-webkit-scrollbar-track {
	background: #efeeee;
}
.scrollbar::-webkit-scrollbar-thumb, .dataTables_scrollBody::-webkit-scrollbar-thumb, .dataTables_scroll::-webkit-scrollbar-thumb {
	background: #dcdcdc;
}
.fullhub {
	fill: var(--primario);
}
button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

/**********************************/

/* CLEARFIX ***********************/
.clearfix:after{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clearfix{
	display: inline-block;
}
/*\*/* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}/**/
/**********************************/

/* ALERTA PHP *********************/
.alerta{
	background-color:#333;
	color:#fff;
	font-size:1.2em;
	line-height:initial;
	width:100%;
	text-align:center;
	z-index:100000;
	margin-bottom:10px;
	border-radius: 4px;
}
.alerta.principal{
	position:fixed;
	top:0;
	right:0;
	left:0;
	z-index:100000;
	background:rgba(0,0,0,0.7) !important;
}
/**********************************/

@media print{
	body, body *{
		font-family:var(--fontFamily) !important;
	}
	.no-imprimir{
		display:none !important;
	}
}

/* AVISOS ************************/
#avisos{
	position:fixed;
	bottom:0;
	left:0;
	width: 220px;
	background:rgba(0,0,0,0.5);
	z-index:1100;
}
#avisos .caja_aviso{
	margin:5px;
	line-height:16px;
	font-size:1.3em;
	padding:5px 10px;
	text-align:left;
	border-radius:5px;
	border:1px solid #999;
}
/*********************************/

/* ALERTAS ***********************/
.error,.exito,.aviso,.mensaje{
	display:block;
	font-size:1.4em;
	padding:10px;
	height:auto !important;
	margin-bottom:20px;
	color:#333;
	text-align:center;
}
.exito{
	background: #D4EDDA !important;
	color: var(--exitoColor) !important;
}
.exito a{
	color: var(--exitoColor) !important;
	text-decoration:underline !important;
}
.error{
	background:#F8D7DA !important;
	color:var(--errorColor) !important;
}
.error a{
	color:var(--errorColor) !important;
	text-decoration:underline !important;
}
.aviso{
	background:#cce5ff !important;
	color:#004085 !important;
}
.aviso a{
	color:#004085 !important;
	text-decoration:underline !important;
}
.mensaje{
	background:#FFF3CD !important;
	color: #856404 !important;
}
.mensaje a{
	color: #856404 !important;
	text-decoration:underline !important;
}
.contenedor_alertas {
	position: relative;
	padding-top: 15px;
	width: 100%;
}
.contenedor_alertas .alerta {
	width: 100%;
}
.exitoTexto {
	color: var(--exitoColor);
}
.errorTexto {
	color: var(--errorColor);
}
/*********************************/

.botonera{
	margin-bottom:30px;
	text-align:right;
}
.botonera .boton{
	margin-left:10px;
}
a input {
	position:fixed;
	top:-2000px;
	right:-2000px;
	opacity:0;
}
.botonera-login {
	width: 100%;
}

/* BOTON PRINCIPAL ************/
.boton {
	cursor:pointer;
	display:inline-block;
	font-size:1.6em;
	padding:12px 30px;
	text-align:center;
	text-decoration:none;
	transition:all ease 200ms;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select:none;
	vertical-align:middle;
	white-space:nowrap;
	border-radius:6px;
	text-transform:none;
	max-width:100%;
	overflow:hidden;
	text-overflow:ellipsis;
	font-weight:300;
	line-height:16px;
	border:1px solid var(--primario);
	background-color:var(--primario);
	color:var(--primario-texto) !important;
}
.boton:hover{
	text-decoration:none;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.boton .bi{
	line-height:17px;
	display:inline-block;
	margin-left:5px;
	vertical-align:middle;
}
.boton.borde {
	background: #fff;
	border: 1px solid var(--primario);
	color: var(--primario) !important;
}
.boton.borde.blanco {
	background: transparent;
	border: 1px solid white;
	color: white !important;
}
.boton.aviso {
	background: #fff !important;
	border: 1px solid white;
	color: var(--avisoMsj) !important;
}
.boton.exito {
	background: #fff !important;
	border: 1px solid white;
	color: var(--exitoMsj) !important;
}
.boton.error {
	background: #fff !important;
	border: 1px solid white;
	color: var(--errorMsj) !important;
}
/******************************/

/* BOTON SECUNDARIO ***********/
.boton.secundario{
	background:none;
	border-color:var(--secundario);
	color:var(--secundario) !important;
}
/******************************/

/* BOTON TERCIARIO ************/
.boton.terciario{
	background:#ccc;
	border-color: #ccc;
	color:#fff !important;
}
/******************************/

/* BOTON ELIMINAR *************/
.boton.eliminar{
	background:none;
	border:1px solid #c00;
	color:#c00 !important;
}
/******************************/

/* PROPIEDADES ****************/
.boton.small{
	padding:10px 15px;
	font-size: 1.2em !important;
}
.boton.disabled,.boton.disabled:hover{
	background:#ccc !important;
	color:#fff !important;
	cursor:default !important;
	border:1px solid #ccc !important;
	box-shadow:none !important;
}
/******************************/

/* BLOQUES ***********************/
.bloque{
	margin-bottom:30px;
}
.bloque20{
	margin-bottom:20px;
}
.bloque10{
	margin-bottom:10px;
}
.bloque label {
	font-style: normal;
	font-weight: 400;
	font-size: 1.4em;
	line-height: 17px;
	margin-bottom: 6px;
	-webkit-transition: all ease 200ms;
	transition: all ease 200ms;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: relative;
	color: #333333;
	display: block;
}
.bloque-flex {
	display: flex !important;
}
/*********************************/

/* TEXTAREA **********************/
textarea{
	width:100%;
	max-width: 700px;
	box-sizing:inherit;
	height:200px;
	border:1px solid #ddd;
	border-radius: 5px;
	padding:8px;
	font-family: var(--fontFamily);
	font-size:1.4em;
	font-weight:300;
	color:#666;
	outline: 0;
}
textarea.full{
	max-width:100%;
}
/*********************************/

/* SELECT ************************/
select{
	width:100%;
	max-width:400px;
	border:1px solid #ddd;
	background:#fff;
	color:#666;
	font-family:var(--fontFamily);
	font-size:1.4em;
	padding:8px;
	min-width:220px;
	box-sizing:border-box;
	font-weight:300;
	border-radius: 8px;
	outline: 0;
	height:38px;
}
select.full{
	max-width:100%;
}
/*********************************/

/* TEXT **************************/
.text{
	width:100%;
	max-width:400px;
	box-sizing:border-box;
	border:1px solid var(--bordeInput);
	border-radius: 8px;
	background:#fff;
	font-size:1.4em;
	color:#666;
	padding:8px;
	font-family:var(--fontFamily);
	font-weight:300;
	outline: 0;
	line-height:20px;
	vertical-align: middle;
}
.text.hero{
	max-width:100%;
	font-size:2.0em;
	color:#555;
	padding:20px;
}
.text.hero:focus{
	color:var(--primario);
	border-color:var(--primario);
}
.text.full{
	max-width:100%;
}
/*********************************/

/* CHECKBOXES ********************/
input[type=checkbox]:not(.toggle) {
	height: 17px !important;
	width: 17px !important;
	min-width:17px;
	line-height: 24px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 3px;
	box-shadow: 0 0 0 1px #ccc;
	border: 4px solid #fff;
	position: relative;
	background: #fff;
	transition: all ease 200ms;
	margin-right: 10px;
	vertical-align: text-bottom;
}
input[type=checkbox][disabled] {
	background: #eee;
	border-color: #eee;
	box-shadow: 0 0 0 1px #bbb;
}
input[type=checkbox]:checked {
	background: var(--primario);
}
/*********************************/

/* TOGGLES ***********************/
input[type=checkbox].toggle {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #666;
	width: 40px;
	height: 10px;
	border-radius: 5px;
	position: relative;
	margin: 0 10px;
	z-index: 0;
	transition: all ease 200ms;
	vertical-align: text-top;
	margin-right:10px;
}
input[type=checkbox].toggle:focus {
	outline: 0;
}
input[type=checkbox].toggle:before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 1px solid #666;
	background: #fff;
	position: relative;
	top: -5px;
	left: 0px;
	border-radius: 50%;
	z-index: 0;
	transition: all ease 200ms;
}
input[type=checkbox].toggle.disabled:before {
	border: 1px solid #ddd !important;
}
input[type=checkbox].toggle ~ label {
	width: calc(100% - 50px);
}
input[type=checkbox].toggle:checked {
	background: #71C341;
}
input[type=checkbox].toggle:checked:before {
	left: 20px;
	border-color: #71C341;
}
input[type=checkbox].toggle:checked ~ label {
	color: var(--primario);
}
/*********************************/

/* DROPPABLES ********************/
.droppable:not(.tinymce){
	display:inline-block;
}
.droppable .imagen{
	display:inline-block;
	position:relative;
	background:#f5f5f5 url(../img/icono-mini.svg) center no-repeat;
	background-size:50%;
	background-blend-mode: soft-light;
	margin:0;
	margin-bottom:10px;
	border:1px solid #ddd;
}
.droppable .imagen img{
	display:block;
	margin:0;
}
.droppable .imagen img[src=""]{
	visibility:hidden;
}
.droppable a.eliminar {
	font-size:2.4em;
	position: absolute;
	right: 10px;
	bottom: 10px;
	color: #c00;
	opacity: 0.3;
	transition: all ease 200ms;
	border-radius:50%;
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
}
.droppable a.eliminar:hover{
	background:#c00;
	color:#fff;
	opacity:1;
}
.droppable .text{
	max-width:none;
	min-width:400px;
	display:block;
}
/*********************************/

/* INPUTS CON ELEMENTOS **********/
.con_icono{
	position:relative;
}
.con_icono .bi{
	position:absolute;
	left:0;
	margin-top:1px;
	margin-left:1px;
	font-size:1.6em;
	float: left;
	width:36px;
	line-height: 36px;
	text-align: center;
	border-radius: 4px;
	border-top-right-radius:0;
	border-bottom-right-radius:0;
	background:var(--primario);
	color:#fff;
}
.con_icono input, .con_icono select{
	padding-left:43px;
}

.con_toggler{
	position:relative;
}
.con_toggler .bi{
	position:absolute;
	top:28px;
	right:10px;
	font-size:2.6em;
	color:#333;
}
.con_toggler input{
	padding-right: 48px;
}

.con_boton input{
	border-top-right-radius:0;
	border-bottom-right-radius:0;
	float:left;
}
.con_boton .boton.small{
	float:left;
	margin:0;
	padding:10px 15px !important;
	border-top-left-radius:0;
	border-bottom-left-radius:0;
}
/*********************************/

.password_generado{
	background:#ccc;
	line-height:36px;
	padding:0 20px;
	max-width: 400px;
	font-size:1.6em;
}

input.invalido,textarea.invalido,select.invalido,.tinymce.invalido {
	border-color: red !important;
}

/* PRELOADER GENERAL ***********/
#preloader_general {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: var(--primario50);
	z-index: 9999;
}
#preloader_general::before {
	content: '';
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 6px solid #fff;
	border-bottom-color: var(--primario);
	-webkit-animation: rotar 400ms linear infinite;
	animation: rotar 400ms linear infinite;
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-25px;
	margin-left:-25px;
}
@-webkit-keyframes rotar {
	from {
	-webkit-transform: rotate(0);
	transform: rotate(0);   
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotar {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
/*******************************/

/* TABLAS ************************/
table{
	width:100%;
	border-collapse:collapse;
	margin-bottom:30px;
}
table .text, table select{
	font-size:1em;
}
th{
	text-align:left;
	padding:10px;
	height:24px;
	color:#333;
	font-size:1.4em;
	line-height:24px;
	vertical-align:top;
}
th.doble-altura{
	line-height:16px;
}
tr {
	transition:all ease 400ms;
}
td{
	font-size:1.4em;
	color:#666;
	height:15px;
	border-top:1px solid #ddd;
	padding:10px;
	font-weight:300;
}
td.nowrap{
	white-space:nowrap;
}
td.align-center{
	text-align:center;
}
td.align-left{
	text-align:left;
}
td.align-right{
	text-align:right;
}
td em{
	color:#47800E;
	font-weight:bold;
}
tr.checked td{
	background:#efefef;
}
tr.destacado td{
	font-weight:bold;
}
tbody tr:hover {
	transition:all ease 400ms;
	background:var(--primario10) !important;
}
th:focus-visible{
	outline:none;
}
.alinear-derecha {
	text-align: right;
}
td.checked-td {
    text-align: center;
}
.boton-editar.disabled,
.boton-facturar.disabled,
.boton-anular.disabled {
    pointer-events: none;
    opacity: .5;
	transition: all ease .3s;
}
/* Separadores */
.mb-0 {
	margin-bottom: 0px !important;
}
.mb-10 {
	margin-bottom: 10px !important;
}
.mb-20 {
	margin-bottom: 20px !important;
}
.mb-30 {
	margin-bottom: 30px !important;
}
.mb-40 {
	margin-bottom: 40px !important;
}
.mb-50 {
	margin-bottom: 50px !important;
}
.mb-60 {
	margin-bottom: 60px !important;
}
.mb-70 {
	margin-bottom: 80px !important;
}
.mb-80 {
	margin-bottom: 80px !important;
}
.mb-90 {
	margin-bottom: 90px !important;
}
.mb-100 {
	margin-bottom: 100px !important;
}
@media(max-width:991px){
	.mb-20 {
		margin-bottom: 15px !important;
	}
	.mb-30 {
		margin-bottom: 20px !important;
	}
	.mb-40 {
		margin-bottom: 24px !important;
	}
	.mb-50 {
		margin-bottom: 27px !important;
	}
	.mb-60 {
		margin-bottom: 30px !important;
	}
	.mb-80 {
		margin-bottom: 40px !important;
	}
	.mb-90 {
		margin-bottom: 50px !important;
	}
	.mb-100 {
		margin-bottom: 50px !important;
	}
}
/* *********************** */

/* TOOLTIP */

.tooltip {
    position: relative;
    /* display: inline-block; */
    /* border-bottom: 1px dotted black; */
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 0;
    margin-left: -7px;
    font-size: 11px;
    font-style: normal;
    font-family: var(--fontFamily);
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
td.tooltip{
	padding: 0 !important;
}
td.tooltip .tooltiptext {
    bottom: 80%;
}
.tooltip .tooltiptext.tip-vertical {
    text-align: left;
    left: 95%;
    bottom: -20%;
}
.tooltip .tooltiptext.tip-vertical:after {
    content: "";
    position: absolute;
    top: 40%;
    left: -5px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}

/* ***************************************** */

/* FLEXBOX */
.d-flex {
	display: flex !important;
}
.align-start {
	display: flex !important;
	align-items:flex-start !important;
}
.justify-start {
	display: flex !important;
	justify-content:flex-start !important;
}
.align-center {
	display: flex !important;
	align-items: center !important;
}
.justify-center {
	display: flex !important;
	justify-content: center !important;
}
.align-end {
	display: flex !important;
	align-items:flex-end !important;
}
.justify-end {
	display: flex !important;
	justify-content:flex-end !important;
}
.space-between {
	display: flex !important;
	justify-content: space-between !important;
}
.space-evenly {
	display: flex !important;
	justify-content: space-evenly !important;
}
.space-around {
	display: flex !important;
	justify-content: space-around !important;
}
.flex-column {
	display: flex !important;
	flex-direction: column !important;
}
.flex-wrap {
	flex-wrap: wrap;
}
.row-reverse {
	display: flex !important;
	flex-direction: row-reverse !important;
}
/* ************************* */

/* HOME */
.cooporativo {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 16vh;
	margin-bottom: 60px;
}
.video-columna {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	position: relative;
}
.video-columna::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	background: linear-gradient(117.1deg, var(--primario30) 23.38%, rgba(67, 179, 174, 0) 94.92%)
}
video {
	height: auto;
	width: auto;
}
.home .fullhub {
	width: 150px;
}
.formulario_login {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	flex-direction: column;
	padding: 20px 40px;
}
.formulario_login form {
	width: 100%;
}
.link_gris {
	font-size: 1.4em;
	color: #333333;
	text-decoration: none;
	transition: all ease .3s;
}
.link_gris:hover {
	cursor: pointer;
	opacity: .75;
}
.copyrights {
	font-size: 1.1em;
	color: #333;
	margin-top: auto;
}
.logo-home {
	width: auto;
	max-height: 120px;
	margin-top: auto;
	margin-bottom: 60px;
}
.ingresar {
    width: 100%;
}
.home h2 {
	font-weight: 700;
	font-size: 1.8em;
	color: var(--primario);
}
.recuperar-clave {
    display: flex;
    justify-content: flex-start;
    width: 100%;
	flex-direction: column;
}
.exito_clave p,
.error_clave p {
	font-weight: 300;
	font-size: 1.6em;
	color: #333333;
	text-align: center;
}
.exito_clave p span,
.error_clave p span {
	display: block;
}
.exito_clave .bi,
.error_clave .bi {
	justify-content: center;
    display: flex;
    margin-bottom: 30px;
}
/**********************/

/* HEADER */
.header {
	height: var(--header);
	padding: 0 20px 0 5px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
	position: fixed;
	top: 0;
	background: #fff;
	z-index: 200;
}
.header .fullhub {
	width: 86px;
	display: none;
}
.logo_box {
	width: 53px;
}
.logo_box a,
.logo_box img {
	min-width: 53px;
	max-width: 100%;
}
.empresa_box {
	margin-left: auto;
	/* padding: 0 0 0 127px; */
	display: flex;
	align-items: center;
	justify-content: center;
}
.empresa_box h3{
	font-weight: 300;
	font-size: 14px;
	color: #333333;
}
.usuario_box {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all ease .3s;
	position: relative;
	padding-left: 20px;
	height: 100%;
}
.usuario_box span{
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 13px;
	color: #FFFFFF;
	width: 30px;
	height: 30px;
	background: var(--secundario);
	border-radius: 90px;
	transition: all ease .3s;
}
.usuario_box:hover span{
	cursor: pointer;
	opacity: 0.75;
}
.header-admin .usuario_box {
	padding-left: 15px;
}
.tabs_box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-left: 60px;
	height: 100%;
	overflow: auto;
	padding-top: 8px;
}
.tab_tag {
	background: #fff;
	border: 1px solid #666;
	color: #666;
	border-radius: 8px;
	font-weight: 500;
	font-size: 1.2em;
	padding: 7px;
	text-transform: uppercase;
	margin-right: 10px;
	display: flex;
	text-transform: capitalize;
}
.tab_tag.activo {
	background: var(--primario);
	border: 1px solid var(--primario);
	color: #fff;
	opacity: .7;
}
.tab_tag span {
	display: block;
	width: max-content;
	cursor: pointer;
	margin-right: 5px;
}
.tab_tag i {
	transition: all ease .3s;
	cursor: pointer;
}
.tab_tag i:hover {
	transform: scale(1.4);
}
.usuario_datos {
	padding: 23px;
	background: #fff;
	position: absolute;
	top: calc(var(--header) - 15px);
	right: -10px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	min-width: 265px;
	transform-origin: top center;
	transform: scaleY(0);
	opacity: 0;
	transition: all ease .3s;
	z-index: 100;
}
.usuario_datos:before {
    content: '';
    display: block;
    background: #fff;
    width: 18px;
    height: 18px;
    position: absolute;
    top: -8px;
    box-shadow: -2px -3px 1px rgba(0, 0, 0, 0.05);
    transform: rotate(45deg);
    right: 17px;
}
.usuario_box:hover .usuario_datos{
	transform: scaleY(1);
	opacity: 1;
}
.usuario_datos h2 {
	font-weight: 400;
	font-size: 1.4em;
	color: var(--primario);
	margin-bottom: 10px;
	text-transform: uppercase;
}
.usuario_datos .nombre_usuario {
	font-weight: 400;
	font-size: 14px;
	color: #333333;
	margin-bottom: 5px;
}
.usuario_datos .email_usuario {
	font-weight: 300;
	font-size: 12px;
	color: #333333;
}
.usuario_datos .opciones_usuario {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
}
.usuario_datos .opciones_usuario .bi {
	font-size: 20px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.usuario_datos .opciones_usuario a {
	height: 30px;
	display: flex;
	align-items: center;
	font-size: 1.3em;
	font-weight: 300;
	color: #333;
	transition: all ease .3s;
}
.usuario_datos .opciones_usuario a:hover {
	color: var(--primario);
	opacity: .75;
}
/* *************************/

/* RANGO FELCHAS */
.bloque.rangoFechas {
	margin-bottom: 5px;
}
.bloque.bloque-select {
	margin-bottom: 0;
}
.opciones_desplegables table .bloque-select:after {
	bottom: 35%;
    right: 20px;
}
.rangoFechas label {
	margin-bottom: 3px;
	margin-left: 10px;
}
.rangoFechas input {
    border: none;
    outline: none !important;
    padding: 0;
    width: 85px;
    text-align: right;
    margin: 0;
}
select.facility {
	min-width: 140px !important;
}
.filtros-grafico {
	flex-wrap: wrap;
}
.filtros-grafico .bloque {
    margin: 10px 0;
}
/**************************/

/* OPCIONES DESPLEGABLES */
.opciones_desplegables {
	position: absolute;
	right: -200%;
	top: 0;
	bottom:0;
	padding: 30px 45px 35px 50px;
	min-width: 545px;
	box-shadow: -10px 0 10px rgba(0, 0, 0, 0.05);
	z-index: 5;
	transition: all ease .6s;
	background: #fff;
	max-height: calc(100vh - var(--header));
	scrollbar-width: thin;
	overflow: auto;
}
.opciones_desplegables::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
.opciones_desplegables::-webkit-scrollbar-track {
	background: #efeeee;
}
.opciones_desplegables::-webkit-scrollbar-thumb {
	background: #dcdcdc;
}

.opciones_desplegables.activo {
	right: 0;
}
.opciones_desplegables.despachar {
    max-width: 950px;
}
.opciones_desplegables .bloque {
    display: flex;
    align-items: center;
}
.opciones_desplegables label {
	width: -moz-available;
    width: -webkit-fill-available;
    text-align: right;
    margin-right: 10px;
}
.opciones_desplegables .bi-eye {
	top: 3px;
}
.main .opciones_desplegables h3 {
	font-weight: 700;
	font-size: 1.4em;
	color: var(--primario);
	margin-bottom: 0;
	text-transform: uppercase;
}
.opciones_desplegables input,
.opciones_desplegables select,
.select2-container{
	height: 35px;
	min-width: 270px;
}
.select2-container.invalido .select2-selection{
	border-color: red !important;
}
.opciones_desplegables .col-12 input:not([type='checkbox']),
.opciones_desplegables .col-12 select,
.opciones_desplegables .col-12 .select2-container{
	min-width: 290px;
}
.select2-container--default .select2-selection--single ,
.opciones_desplegables .select2-container--default .select2-selection--single {
	height: 35px;
	border-radius: 8px;
	border: 1px solid var(--bordeInput);
}
.select2-container--default .select2-selection--single .select2-selection__rendered,
.opciones_desplegables .select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-results__option {
    color: #333;
    line-height: 35px;
	font-size: 14px;
}
.select2-selection__arrow {
	display:none;
}
.opciones_desplegables textarea {
	min-width: 270px;
}

.opciones_desplegables .bi-arrow-right-short {
	font-size: 30px;
	color:var(--primario);
	position: absolute;
	top: 20px;
	left: 10px;
	cursor: pointer;
	transition: all ease .3s;
	transform: translateX(0);
}
.opciones_desplegables .bi-arrow-right-short:hover {
	opacity: 0.75;
	transform: translateX(5px);
}
.opciones_desplegables td.select-checkbox:last-child::before,
.opciones_desplegables td.select-checkbox:last-child::after {
    margin: auto !important;
    transform: translateX(-50%) !important;
}
td.select-checkbox.hidecheck::before {
	display: none !important;
} 
.bloque-select {
	position: relative;
}
.bloque-select select {
	padding-right: 30px;
	border-radius: 8px;
}
td.bloque-select select {
    max-width: initial;
}
.bloque-select:after {
	content: '\F282';
    font-family: 'bootstrap-icons';
    color: var(--primario);
    font-size: 13px;
    position: absolute;
    top: 35%;
    right: 10px;
    pointer-events: none;
}
.items-rendir-detalle {
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-around;
	margin-bottom: 25px;
}
.items-rendir-detalle .item-rendicion p{
	font-weight: 400;
	font-size: 1.4em;
	/* text-align: right; */
	color: #333333;
	margin-bottom: 5px;
}
.items-rendir-detalle .item-rendicion span{
	font-weight: 400;
	font-size: 1.4em;
	color: #666666;
}
.opciones_desplegables.rendir-detalle {
	min-width: 900px;
}
.opciones_desplegables.reprogramar {
	min-width: 1180px;
}
.opciones_desplegables.item-rendicion {
    max-width: 39%;
}
/******************************/

/* MENU */
.menu-principal {
	background: var(--primario);
	height: calc(100vh - var(--header));
	width: var(--menuAncho);
	position: fixed;
	left: 0;
	z-index: 10;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}
.menu-principal ul .bi {
	font-size: 20px;
	color: #fff;
	transition: all ease .3s;
}
.menu-principal .nivel-uno ul li {
	background: var(--primario);
	border-radius: 8px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all ease .3s;
	margin: 5px 0;
}
.menu-principal .nivel-uno ul li.tooltip .tooltiptext {
    left: 100%;
    top: 30%;
    bottom: inherit;
	width: max-content;
}
.menu-principal .nivel-uno ul li.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 30%;
	left: -5px;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent #333 transparent transparent;
}
.menu-principal .nivel-uno ul li:hover,
.menu-principal .nivel-uno ul li.activo {
	background: #fff;
}
.menu-principal .nivel-uno ul li:hover .bi,
.menu-principal .nivel-uno ul li.activo .bi  {
	color:var(--primario);
}
.main {
    margin-left: var(--menuAncho);
    margin-top: var(--header);
	overflow-x: hidden;
    overflow-y: auto;
    height: calc(100vh - var(--header) - var(--footer));
	padding: 0 30px 20px 60px;
}
.main section {
    max-width: 1100px;
    margin: 0 auto;
}
.main h1 {
    font-weight: 500;
    font-size: 1.8em;
    color: var(--primario);
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}
.main h2 {
	font-weight: 400;
	font-size: 1.5em;
	color: var(--primario);
}
.main h3 {
	font-weight: 500;
	font-size: 1.2em;
	color: var(--primario);
}
.menu-principal-interno {
	position: relative;
	height: 100%;
}
.menu-principal .nivel-uno {
    height: 100%;
	padding: 5px;
	padding-top: 55px;
    position: relative;
	background: var(--primario);
    z-index: 5;
}
.menu-principal .nivel-dos {
    background: var(--primario);
    width: 197px;
    height: 100%;
    position: absolute;
	top: 0;
	right: 0;
    z-index: 3;
	transition: all ease .3s;
	padding: 12px;
	padding-top: 120px;
}
.menu-principal .nivel-dos.activo {
	right: -197px;
}
.menu-principal .nivel-dos li a{
	min-height: 30px;
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	color: #fff;
	font-size: 1.4em;
	font-weight: 700;
	border-radius: 8px;
	padding: 10px;
	transition: all ease .3s;
}
.menu-principal .nivel-dos li a:hover{
	background: rgba(255,255,255,0.2);
}
.nivel-dos .bi-arrow-left-short {
	font-size: 30px;
	color: #fff;
	position: absolute;
	top: 20px;
	right: 10px;
	cursor: pointer;
	transition: all ease .3s;
	transform: translateX(0);
}
.nivel-dos .bi-arrow-left-short:hover {
	opacity: .75;
	transform: translateX(-5px);
}
.menu-principal h3 {
	min-height: 30px;
	margin-bottom: 5px;
	font-weight: 700;
	font-size: 1.4em;
	color: #FFFFFF;
	text-transform: uppercase;
	position: fixed;
    transform: translateY(-30px);
}
.lista-items-menu {
	height: 460px;
	overflow: auto;
}
.lista-items-menu.scrollbar::-webkit-scrollbar-track {
	background: rgba(245,245,245,0.2);
}
.lista-items-menu.scrollbar::-webkit-scrollbar-thumb {
	background: #fff;
}
section.footer {
    margin-left: calc(var(--menuAncho) * 2);
	padding: 15px 0;
	background: #fff;
	font-weight: 400;
	font-size: 1.1em;
	color: #333333;
}
section.footer.interior {
	max-width: var(--anchoMarco);
	margin: auto;
	padding-left: 15px;
	padding-right: 15px;;
}	
section.footer a {
    color: var(--primario);
	text-decoration: underline;
}
.text.disabled, select.disabled{
	background: whitesmoke;
    pointer-events: none;
}
.opciones_desplegables table input,
.opciones_desplegables table select,
.opciones_desplegables input.paginate_input {
    min-width: unset;
}
.opciones_desplegables .first.paginate_button,
.opciones_desplegables .last.paginate_button {
	display: none !important;
}
.opciones_desplegables .dataTables_wrapper .dataTables_paginate {
    /* left: 0;
    transform: translateY(0);
    padding-top: 5px; */
}
/*************************/

/* DATEPICKER */

ui-datepicker-unselectable.ui-state-disabled span{
    opacity: .3;
}
table.ui-datepicker-calendar thead th span {
    color: var(--primario);
    font-size: 12px;
}
a.ui-state-default,
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    font-family: var(--fontFamily);
    font-weight: 400;
}
.ui-datepicker-prev span:before,
.ui-datepicker-next span:before {
    color: var(--primario)
}
.ui-datepicker td span, .ui-datepicker td a {
    font-family: var(--fontFamily);
}
div#ui-datepicker-div {
    width: 200px;
    box-shadow: 0 0 4px rgba(0,0,0,.2);
    border: transparent;
    padding: 5px;
}
.ui-datepicker th {
    font-weight: 400;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    background: transparent;
    border: none;
    color: #666;
    font-size: 11px;
    font-family: var(--fontFamily);
}
.ui-widget-header {
    background: transparent;
    border: none;
    font-family: var(--fontFamily);
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
}
.ui-widget-header .ui-icon {
    background-image: unset;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	text-indent: unset;
	margin-left: -5px;
}
.ui-datepicker .ui-datepicker-prev span::before,
.ui-datepicker .ui-datepicker-next span::before {
	display: inline-block;
	font-display: block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.ui-datepicker-prev span:before, .ui-datepicker-next span:before {
    color: var(--primario);
}
.ui-datepicker-next span:before {
    content: "\F285";
}
.ui-datepicker-prev span:before {
    content: "\F284";
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    width: auto;
    max-width: unset;
    min-width: auto;
    margin: 3px;
    margin-top: 0;
    height: 23px;
    padding: 0 11px 0 5px;
    border-radius: 0;
}
.ui-datepicker-title select {
	-moz-appearance: auto;
	-webkit-appearance: auto;
	appearance: auto;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 1em;
}
.ui-datepicker-calendar tbody tr:hover,
table.ui-datepicker-calendar tbody tr:hover>* {
    background: unset !important;
}
.ui-state-default {
	transition: all ease .3s;
}
.ui-state-default.ui-state-hover {
	opacity: .7;
}
td.ui-datepicker-week-end:last-of-type a{
	color: var(--primario);
	font-weight: 700;
}
/*************************/

/* ALERTAS */
.alertas-contenedor {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primario20);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.alerta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
	border-radius: 8px;
	padding: 15px 30px 30px 30px;
	min-width: 450px;
	margin-bottom: 100px;
}
.alerta-box.aviso-msj {
	background: var(--avisoMsj);
}
.alerta-box.exito-msj {
	background: var(--exitoMsj);
}
.alerta-box.error-msj {
	background: var(--errorMsj);
}
.alerta-box .bi {
	font-size: 5.8em;
}
.alerta-box h3 {
	font-weight: 600;
	font-size: 1.8em;
	color: #333333;
	text-transform: uppercase;
	text-align: center;
}
.alerta-box p {
	font-weight: 400;
	font-size: 1.4em;
	text-align: center;
	color: #333333;
}
.alerta-box .boton {
	margin: 0 10px;
}

/* ******************* */

/* DATATABLES */
table.dataTable {
	margin: 0;
	min-width: 100% !important;
}
/* table.dataTable.display {
	border: 1px solid #E5E5E5;
} */
.dataTables_wrapper .dataTables_filter {
    float: left;
    text-align: left;
}
.bottom.wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.dataTables_wrapper .dataTables_paginate,
.tabPaginas .dataTables_paginate {
    float: none;
    text-align: center;
    padding-top: .25em;
	margin-left: auto;
}
.dataTables_wrapper .dataTables_info,
.tabPaginas .dataTables_info {
    float: unset;
    padding-top: 0;
	font-size: 1.3em;
	font-weight: 300;
	color: #333;
	margin-top: auto;
}
.dataTables_wrapper .dataTables_length,
.tabPaginas .dataTables_length {
    float: unset;
    font-size: 1.4em;
    font-weight: 300;
	margin-left: 10px;
	position: relative;
}
.dataTables_wrapper .dataTables_paginate,
.tabPaginas .dataTables_paginate {
    float: none;
    text-align: center;
    padding-top: 1em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.dataTables_wrapper .dataTables_length select, .tabPaginas .dataTables_length select {
    width: 75px;
    min-width: auto;
    border: none;
    color: var(--primario);
    font-weight: 700;
    text-align: right;
    font-size: 1rem;
    padding-bottom: 0;
    padding-top: 10px;
    padding-right: 28px;
    height: fit-content;
    transform: translateY(1px);
}
.dataTables_length::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    color: var(--primario);
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 55px;
	pointer-events: none;
}

.previous.paginate_button,
.next.paginate_button {
	position: relative;
}
.previous.paginate_button:before {
    content: '\F284';
    font-family: 'bootstrap-icons';
    color: #ccc;
    font-size: 13px;
    position: absolute;
    left: -5px;
    top: 33%;
	transition: all ease .3s;
}
.next.paginate_button:after {
    content: '\F285';
    font-family: 'bootstrap-icons';
    color: #ccc;
    font-size: 13px;
    position: absolute;
    right: -5px;
    top: 33%;
	transition: all ease .3s;
}
.previous.paginate_button.disabled:hover:before {
	left: -5px;
}
.previous.paginate_button:hover:before {
	left: -10px;
}
.next.paginate_button:hover:after {
	right: -10px;
}
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid var(--bordeInput);
	padding: 10px 30px 10px 13px;
	border-radius: 8px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB2ZXJzaW9uPSIxLjEiICAgaWQ9InN2ZzQ0ODUiICAgdmlld0JveD0iMCAwIDIxLjk5OTk5OSAyMS45OTk5OTkiICAgaGVpZ2h0PSIyMiIgICB3aWR0aD0iMjIiPiAgPGRlZnMgICAgIGlkPSJkZWZzNDQ4NyIgLz4gIDxtZXRhZGF0YSAgICAgaWQ9Im1ldGFkYXRhNDQ5MCI+ICAgIDxyZGY6UkRGPiAgICAgIDxjYzpXb3JrICAgICAgICAgcmRmOmFib3V0PSIiPiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+ICAgICAgICA8ZGM6dHlwZSAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4gICAgICAgIDxkYzp0aXRsZT48L2RjOnRpdGxlPiAgICAgIDwvY2M6V29yaz4gICAgPC9yZGY6UkRGPiAgPC9tZXRhZGF0YT4gIDxnICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLC0xMDMwLjM2MjIpIiAgICAgaWQ9ImxheWVyMSI+ICAgIDxnICAgICAgIHN0eWxlPSJvcGFjaXR5OjAuNSIgICAgICAgaWQ9ImcxNyIgICAgICAgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjAuNCw4NjYuMjQxMzQpIj4gICAgICA8cGF0aCAgICAgICAgIGlkPSJwYXRoMTkiICAgICAgICAgZD0ibSAtNTAuNSwxNzkuMSBjIC0yLjcsMCAtNC45LC0yLjIgLTQuOSwtNC45IDAsLTIuNyAyLjIsLTQuOSA0LjksLTQuOSAyLjcsMCA0LjksMi4yIDQuOSw0LjkgMCwyLjcgLTIuMiw0LjkgLTQuOSw0LjkgeiBtIDAsLTguOCBjIC0yLjIsMCAtMy45LDEuNyAtMy45LDMuOSAwLDIuMiAxLjcsMy45IDMuOSwzLjkgMi4yLDAgMy45LC0xLjcgMy45LC0zLjkgMCwtMi4yIC0xLjcsLTMuOSAtMy45LC0zLjkgeiIgICAgICAgICBjbGFzcz0ic3Q0IiAvPiAgICAgIDxyZWN0ICAgICAgICAgaWQ9InJlY3QyMSIgICAgICAgICBoZWlnaHQ9IjUiICAgICAgICAgd2lkdGg9IjAuODk5OTk5OTgiICAgICAgICAgY2xhc3M9InN0NCIgICAgICAgICB0cmFuc2Zvcm09Im1hdHJpeCgwLjY5NjQsLTAuNzE3NiwwLjcxNzYsMC42OTY0LC0xNDIuMzkzOCwyMS41MDE1KSIgICAgICAgICB5PSIxNzYuNjAwMDEiICAgICAgICAgeD0iLTQ2LjIwMDAwMSIgLz4gICAgPC9nPiAgPC9nPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: calc(100% - 2px) 45% !important;
    background-size: 30px;
	margin-left:0;
	margin-bottom: 10px;
	margin-right: 20px;
	min-width: 325px;
}
table.dataTable thead th, table.dataTable thead td {
    white-space: nowrap;
	background: #E5E5E5;
	font-weight: 400;
	font-size: 1.3em;
	border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
	color: #333;
}
table.dataTable.display>tbody>tr.even>.sorting_1 {
	box-shadow: none;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
	border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
    border-left: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
	/* min-height: 426px; */
}
table.dataTable.display tbody td {
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
/* table.dataTable.display>tbody>tr.odd>.sorting_1 {
	box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
} */
table.dataTable.stripe>tbody>tr.odd>*, table.dataTable.display>tbody>tr.odd>* {
    box-shadow: none !important;
    background: #F5F5F5;
}
table tbody tr:hover>* {
    box-shadow: none !important;
    background: #E7E7E7 !important;
}
table.dataTable tbody tr.selected>*,
table.dataTable.hover>tbody>tr.selected:hover>*, table.dataTable.display>tbody>tr.selected:hover>* {
    box-shadow: none !important;
    background: rgba(22, 113, 103, .2) !important;
}
table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_desc:before,
table.dataTable thead>tr>th.sorting_asc_disabled:before,
table.dataTable thead>tr>th.sorting_desc_disabled:before,
table.dataTable thead>tr>td.sorting:before,
table.dataTable thead>tr>td.sorting_asc:before,
table.dataTable thead>tr>td.sorting_desc:before,
table.dataTable thead>tr>td.sorting_asc_disabled:before,
table.dataTable thead>tr>td.sorting_desc_disabled:before {
    bottom: 50%;
    font-family: 'bootstrap-icons';
    content: '\F286';
	color:#666;
}
table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting_asc:after,
table.dataTable thead>tr>th.sorting_desc:after,
table.dataTable thead>tr>th.sorting_asc_disabled:after,
table.dataTable thead>tr>th.sorting_desc_disabled:after,
table.dataTable thead>tr>td.sorting:after,
table.dataTable thead>tr>td.sorting_asc:after,
table.dataTable thead>tr>td.sorting_desc:after,
table.dataTable thead>tr>td.sorting_asc_disabled:after,
table.dataTable thead>tr>td.sorting_desc_disabled:after {
    top: 50%;
    font-family: 'bootstrap-icons';
	content: '\F282';
	color:#666;
}
table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:after {
	opacity: .6;
}
table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_desc:after {
    opacity: 1;
}
table tbody td,
table.dataTable.stripe>tbody>tr.odd.selected>*, table.dataTable.display>tbody>tr.odd.selected>*,
table.dataTable.stripe>tbody>tr.even.selected>*, table.dataTable.display>tbody>tr.even.selected>* {
	font-size: 1.3em;
	color: #666;
}
table.dataTable.display tbody td {
	border-bottom: none;
	position:relative;
}
table.dataTable>tbody>tr>td.select-checkbox:before, table.dataTable>tbody>tr>th.select-checkbox:before {
	width: 15px;
    height: 15px;
    border-radius: 0;
	border: 1px solid #CFCFCF;
}
table.dataTable>tbody>tr.selected>td.select-checkbox:before, table.dataTable>tbody>tr.selected>th.select-checkbox:before {
    border: 1px solid var(--primario) !important;
    background: #fff;
}
table.dataTable>tbody>tr>td.select-checkbox:before, table.dataTable>tbody>tr>th.select-checkbox:before {
	margin-top: -7px;
	width: 16px;	
    margin-left: 0;
    transform: translateX(-50%);
}
table.dataTable>tbody>tr.selected>td.select-checkbox:after, table.dataTable>tbody>tr.selected>th.select-checkbox:before {
    content: '\F26C';
    font-family: 'bootstrap-icons';
    color: var(--primario);
    font-size: 15px;
    text-shadow: rgb(255, 255, 255) 0px 0px !important;
    outline: 2px solid var(--primario);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(2px, 90%);
}
/* table.tabla-principal.dataTable>tbody>tr.selected>td.select-checkbox:after, table.tabla-principal.dataTable>tbody>tr.selected>th.select-checkbox:before {
	transform: translate(3px, 150%);
}
table.tabla-principal.dataTable>tbody>tr>td.select-checkbox:before, table.tabla-principal.dataTable>tbody>tr>th.select-checkbox:before {
	transform: translate(1px, 50%);
} */
table.dataTable>tbody>tr.selected>td.select-checkbox:before, table.dataTable>tbody>tr.selected>th.select-checkbox:after {
    display: none;
}
table.dataTable>thead>tr>th.select-checkbox:before {
    content: " ";
    width: 16px;
    height: 15px;
    border-radius: 0;
    border: 1px solid #CFCFCF;
    margin-top: -7px;
    margin-left: -6px;
    display: block;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
table.dataTable>thead>tr>th.select-checkbox.selected:after,
.dataTables_scrollBody table.dataTable>thead>tr>th.select-checkbox.selected:before  {
	display: none;
}
table.dataTable>thead>tr>th.select-checkbox.selected:before {
    content: '\F26C';
    font-family: 'bootstrap-icons';
    color: var(--primario);
    font-size: 15px;
    text-shadow: rgb(255, 255, 255) 0px 0px !important;
    outline: 2px solid var(--primario);
    outline-offset: -2px;
    transform: translate(-34%, 30%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 14px;
    height: 14px;
    position: relative;
    left:24px;
	top:2px;
	margin: 0;
}
table.dataTable>thead>tr>th.select-checkbox:before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    margin: 0;
    width: 15px;
}
span#tabla-consulta-ordenes_first, span#tabla-consulta-ordenes_last {
    display: none;
}
table.dataTable a {
    font-weight: 600;
    font-size: 13px;
    color: var(--primario) !important;
    font-family: var(--fontFamily);
    text-decoration: underline;
    cursor: pointer;
}
table.dataTable .estado-td {
    white-space: nowrap;
}
table.dataTable .estado-td .bi {
    margin-right: 8px;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td {
    white-space: nowrap;
}
th.select-checkbox {
    min-width: 50px;
}
input.paginate_input {
    width: 29px;
    height: 29px;
    border: none;
    text-align: center;
	background: var(--primario20);
	color: var(--primario);
	border-radius: 4px;
	margin-right: 6px;
}
.dataTables_wrapper .dataTables_info span {
    color: var(--primario);
    font-weight: 400;
    text-align: right;
	margin-right: 5px;
}
.dataTables_paginate {
    font-size: 1.4em;
    font-weight: 300;
    color: #333;
}
.previous.paginate_button + span {
    display: none;
}
.paginate_input + span {
    visibility: hidden;
    position: relative;
}
.paginate_input + span::after {
    content: "de";
	visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
}
.dashboard .dataTables_scrollHeadInner,
.dashboard table{
	width: 100% !important;
}
.tabPaginas .dataTables_paginate .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: .5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    color: inherit !important;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent;
}
.dataTables_wrapper .dataTables_paginate .paginate_button ,
.tabPaginas .dataTables_paginate .paginate_button {
	outline: none !important;
	transition: all ease .3s;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover,
.tabPaginas .dataTables_paginate .paginate_button:hover {
	border: 1px solid transparent;
	background: none;
	color: #333 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active ,
.tabPaginas .dataTables_paginate .paginate_button:active {
	box-shadow:none;
	background: none;
	opacity: .7;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.first,
.dataTables_wrapper .dataTables_paginate .paginate_button.last ,
.tabPaginas .dataTables_paginate .paginate_button.first,
.tabPaginas .dataTables_paginate .paginate_button.last {
	display: none !important;
}
.select-info {
	display: none;
}
span.paginate_total {
    font-weight: 400;
    margin-left: 5px;
}
div.dt-buttons {
	clear: both;
}
.dataTables_wrapper .top {
    display: flex;
    align-items: center;
}
.boton-tabla {
	cursor: pointer;
	margin: 0 10px;
}
.boton-tabla:last-of-type {
	margin-right: 6px;
}
.boton-tabla i:before {
	font-size: 20px;
	transform: translate(6px, -3px);
}
.boton-tabla.tooltip .tooltiptext {
    margin-left: 48%;
	bottom:155%;
    transform: translateX(-45%);
	white-space: nowrap;
}
.wrapper.top-tabla {
    display: flex;
    align-items: center;
	flex: 1;
	margin-bottom: 5px;
}
.wrapper.top-tabla .contenedor-filtros {
    display: flex;
    align-items: center;
	margin-left: 15px;
	margin-right: auto;
	height: 45px;
}
.wrapper.top-tabla .contenedor-filtros > div {
    display: flex;
    align-items: center;
	flex: 1;
	margin-right: 20px;
	max-width: 450px;
	height: 100%;
	overflow: auto;
}
.wrapper.top-tabla .contenedor-filtros .eliminar-todo {
	font-weight: 400;
	font-size: 1.2em;
	color: var(--primario);
	text-decoration: underline;
	margin-right: auto;
	transition: all ease .3s;
}
.wrapper.top-tabla .contenedor-filtros + .eliminar-todo:hover {
	opacity: .7;
}
.form_box form {
    max-height: calc(100vh/1.35);
    overflow: hidden;
    overflow-y: auto;
    margin-bottom: 0;
	padding-right: 20px;
}
.filtroTag {
    padding: 8px 10px;
    background: rgb(204, 204, 204,.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-right: 10px;
	margin-bottom: 1px;
}
.filtroTag span {
    font-weight: 500;
    font-size: 12px;
    color: var(--primario);
    text-transform: capitalize;
    white-space: nowrap;
}
.filtroTag i {
    display: flex;
    font-size: 15px;
    margin-left: 10px;
    transform: translateY(1px);
    cursor: pointer;
}
td.dataTables_empty {
    height: 30vh;
}
.lista-columnas {
    max-width: 460px;
    max-height: 70vh;
    overflow: hidden;
    overflow-y: auto;
    padding: 10px;
}
.lista-columnas .bloque {
	width: calc(50% - 15px);
}
.opciones_desplegables input[type="checkbox"] {
	position: relative;
	box-shadow: none;
	cursor: pointer;
}
.opciones_desplegables input[type="checkbox"] + label {
	text-align: left;
	font-weight: 300;
	font-size: 1.4em;
	color: #333333;
	margin: 0;
}
.bloque-checkbox input[type="checkbox"]:before {
    content: '';
    border: 1px solid #cfcfcf;
    background: #fff;
    width: 17px;
    height: 18px;
    position: absolute;
    top: -6px;
    left: -5px;
    border-radius: 3px;
}
/* .select2-results__option[aria-selected=false]:before  {
    content: '';
    border: 1px solid #cfcfcf;
    background: #fff;
    width: 17px;
    height: 18px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
	vertical-align: middle;
	margin-right: 20px;
} */
.bloque-checkbox input[type="checkbox"].checked:before {
    content: '\F26C';
    font-family: 'bootstrap-icons';
    color: var(--primario);
    font-size: 19px;
    position: absolute;
    top: -7px;
    left: -5px;
	box-shadow: none;
	border: 1px solid transparent;
}
/* .select2-results__option[aria-selected=true]:before {
    content: '\F26C';
    font-family: 'bootstrap-icons';
    color: var(--primario);
    font-size: 19px;
	display: inline-block;
    position: relative;
	vertical-align: middle;
	margin-right: 20px;
} */
.opciones_desplegables .form-rutas .bloque {
    display: block;
}
.opciones_desplegables .form-rutas .bloque label {
    text-align: left;
}
.opciones_desplegables .form-rutas .bloque input {
    text-align: left;
}
.form-rutas .bloque-select:after {
    top: initial;
    bottom: 15%;
}
.form-rutas td.bloque-select:after {
		top: 37%;
    bottom: inherit;
    right: 5%;
}
.opciones_desplegables .form-rutas input,
.opciones_desplegables .form-rutas select {
    min-width: auto;
    max-width: unset;
}
form input[disabled] {
	background-color: #F5F5F5;
	color: #888888;
	cursor: not-allowed;
}
.dataTables_wrapper .dataTables_filter input {
    min-width: 325px;
}
section#despachar {
    max-width: 840px;
}
.tab-opciones-headers {
	display: flex;
}
.tab-opciones-headers a {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #CCCCCC;
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    padding: 8px 10px 0;
    border-radius: 0 4px 0;
}
.tab-opciones-headers a.activo {
	color: var(--primario);
}
.tab-body-item {
	display: none;
}
.tab-body-item:first-child {
	display: block;
}
/*************************/

/* DASHBOARD */
#tag-dashboard i {
	display: none;
}
.dashboard h1 {
	font-weight: 400;
	font-size: 2.8em;
	color: #333333;
	margin-bottom: 10px;
}
.dashboard h2 {
	font-weight: 400;
	font-size: 2.4em;
	color: #333333;
}
.dashboard h3 {
	font-weight: 400;
	font-size: 1.5em;
	color: var(--primario);
	text-transform: uppercase;
	margin-bottom: 30px;
}
.items-datos {
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
	display: flex;
	padding: 15px;
	max-width: 15%;
	min-height: 130px;
}
.items-datos:nth-child(1){
	background: #43ABEC;
}
.items-datos:nth-child(2){
	background: #FBAE32;
}
.items-datos:nth-child(3){
	background: #EF5D22;
}
.items-datos:nth-child(4){
	background: #E27E5C;
}
.items-datos:nth-child(5){
	background: #F05757;
}
.items-datos:nth-child(6){
	background: #167167;
}
.items-datos:last-child{
	margin-right: 0;
}
.items-datos .datos-cifra {
	font-weight: 400;
	font-size: 3.2em;
	color: #FFFFFF;
	margin-bottom: 14px;
}
.items-datos .datos-texto {
	font-weight: 400;
	font-size: 1.4em;
	color: #FFFFFF;
	width: 90px;
}
.item-datos-box {
	flex-wrap: wrap;
}
.disponibilidad-stock {
	padding: 0 30px;
}
.conversion-de-venta {
	padding: 30px;
	background: #FFFFFF;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
	border-radius: 8px;
}
.progresos-venta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    width: 30%;
	margin-right: 5%;
}
.progresos-venta:nth-child(3n) {
	margin-right: 0;
}
.progresos-venta:last-child {
	margin-right: auto;
}
.progresos-venta .barra-box {
    width: 63%;
    display: flex;
}
.fecha-progreso {
    font-weight: 400;
    font-size: 1.4em;
    color: #333333;
    /* white-space: nowrap; */
    display: inline-block;	
    flex-grow: 1;
}
.barra-progreso {
    background: rgba(133, 160, 182, 0.2);
    box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    height: 15px;
    width: 100%;
    margin-right:6px;
    display: flex;
}
.marca-progreso {
    color: #fff;
    background-color: var(--primario);
	border-radius: 8px;
	transition: all ease .5s;
	width: 0;
}
.progresos-venta.desactivado .marca-progreso {
    width: 0 !important;
}
.porcentaje-progreso {
	font-weight: 600;
	font-size: 1.4em;
	color: var(--primario);
}
.progresos-box {
    display: flex;
	flex-wrap: wrap;
	/* justify-content: space-between; */
}
.progresos-interior {
	display: flex;
    justify-content: flex-end;
    width: -webkit-fill-available;
}
/***********************/

/* HIGHCHARTS */
.highcharts-figure,
.highcharts-data-table table {
	margin: 1em auto;
}

.highcharts-data-table table {
	font-family: var(--fontFamily);
	border-collapse: collapse;
	border: 1px solid #ebebeb;
	margin: 10px auto;
	text-align: center;
	width: 100%;
	max-width: 500px;
}

.highcharts-data-table caption {
	padding: 1em 0;
	font-size: 1.2em;
	color: #555;
}

.highcharts-data-table th {
	font-weight: 600;
	padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
	padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
	background: #f8f8f8;
}

.highcharts-data-table tr:hover {
	background: #f1f7ff;
}
.disponibilidad-stock .highcharts-figure,
.disponibilidad-stock .highcharts-data-table table,
.lines-chart .highcharts-figure,
.lines-chart .highcharts-data-table table {
    min-width: 700px;
    max-width: 80%;
    margin: 1em auto;
}

.highcharts-figure .odometro-container {
    width: 100%;
	aspect-ratio: 2/1;
	transform: translateX(-16px);
}
.highcharts-figure .odometro-container path.highcharts-pane {
    stroke: none;
}
g.highcharts-label,
g.highcharts-no-tooltip,
g.highcharts-axis-labels {
    font-family: var(--fontFamily);
}
.estadisticas .tiempo-tags {
	padding: 10px;
	border-radius: 4px;
	background: #fff;
	border: 1px solid #f3f3f3;
	margin-left: 10px;
	font-size: 14px;
	font-weight: 300;
	transition: all ease .3s;
}
.estadisticas .tiempo-tags:hover {
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.estadisticas .cuadros-tiempo {
	flex-wrap: wrap;
	justify-content: space-between;
}
.estadisticas .item-cuadros-tiempo {
    margin-top: 20px;
    width: calc(50% - 15px);
    /* aspect-ratio: 1/1; */
    border: 1px solid #f3f3f3;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 20px;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.item-cuadros-tiempo p {
    font-weight: 400;
    color: #333;
    font-size: 1.3em;
}
.item-cuadros-tiempo .bi {
    font-size: 30px;
    color: var(--primario);
}
.tiempo-cifras {
    font-size: 2.6em;
    color: #666;
    font-weight: 300;
    margin: 10px 0;
}
.item-cuadros-tiempo .item-cambio {
    font-size: 1.4em;
    color: #333;
	position: relative;
	margin-right: 10px;
}
.item-cuadros-tiempo .item-cambio.positivo::after {
    content: '\F235';
	font-family: 'bootstrap-icons';
    color: var(--exitoColor);
    font-size: 13px;
    position: absolute;
    top: 0;
}
.item-cuadros-tiempo .item-cambio.negativo::after {
    content: '\F229';
	font-family: 'bootstrap-icons';
    color: var(--errorColor);
    font-size: 13px;
    position: absolute;
    top: 0;
}
a.tiempo-tags.activo {
    color: var(--primario);
    font-weight: 300;
    box-shadow: 0 0 5px rgba(0,0,0,.1);
}
/* Progeso Radial  */
@property --progress-value {
	syntax: '<integer>';
	inherits: false;
	initial-value: 0;
}

@keyframes html-progress {
	to { --progress-value: var(--valorProgreso); }
}

section.progreso-radial {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.progress-bar {
    width: 25%;
    max-width: 220px;
    aspect-ratio: 1/1;
    border-radius: 50%;
	margin: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.progress-bar::before {
	counter-reset: percentage var(--progress-value);
	content: counter(percentage) '%';
}
.dato-progreso {
	animation: html-progress 2s 1 forwards;
}
.dato-progreso:nth-child(1) {
	background: 
		radial-gradient(closest-side, white 79%, transparent 80% 100%),
		conic-gradient(#43ABEC calc(var(--progress-value) * 1%), #43ABEC30 0);
}
.dato-progreso:nth-child(2) {
	background: 
		radial-gradient(closest-side, white 79%, transparent 80% 100%),
		conic-gradient(#FBAE32 calc(var(--progress-value) * 1%), #FBAE3230 0);
}
.dato-progreso:nth-child(3) {
	background: 
		radial-gradient(closest-side, white 79%, transparent 80% 100%),
		conic-gradient(#EF5D22 calc(var(--progress-value) * 1%), #EF5D2230 0);
}
.dato-progreso:nth-child(4) {
	background: 
		radial-gradient(closest-side, white 79%, transparent 80% 100%),
		conic-gradient(#E27E5C calc(var(--progress-value) * 1%), #E27E5C30 0);
}
.dato-progreso::before {
    animation: html-progress 2s 1 forwards;
    font-size: 2em;
}
.progress-bar progress {
	visibility: hidden;
	width: 0;
	height: 0;
}
.datos-legenda {
    font-size: 1.4em;
    color: #333;
    font-weight: 500;
    margin-right: 20px;
    margin-left: 15px;
    margin-bottom: 30px;
    position: relative;
}
.datos-legenda:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: -15px;
    top: 3px;
}
.datos-legenda:nth-child(1):before {
    background: #43ABEC;
}
.datos-legenda:nth-child(2):before {
    background: #FBAE32;
}
.datos-legenda:nth-child(3):before {
    background: #EF5D22;
}
.datos-legenda:nth-child(4):before {
    background: #E27E5C;
}
section.indicadores {
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.item-indicador {
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: calc(33% - 7px);
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    min-width: 165px;
    margin-bottom: 30px;
}
p.titulo-indicador {
    font-size: 1.6em;
    font-weight: 500;
}
p.cantidad-indicador {
    font-size: 3em;
    font-weight: 300;
    margin: 10px 0;
    color: var(--primario);
}
p.subtitulo-indicador {
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 10px;
}
.w3-light-grey {
    color: #000!important;
    background-color: #f1f1f1!important;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
}
.w3-blue {
    color: #fff!important;
    background-color: var(--primario)!important;
	border-radius: 8px;
	transition: all ease .5s;
}
/**************************/

/* CORPORATIVO */
.main-corporativo,
.main-admin {
	padding: 30px 15px 20px 15px;
	margin: var(--header) auto 0;
	max-width: var(--anchoMarco);
	overflow: initial;
	min-height: calc(100vh - var(--header) - var(--footer));
	height: auto;
}
.main-corporativo h2,
.main-admin h2 {
	font-weight: 400;
	font-size: 1.5em;
	color: var(--primario);
	text-transform: uppercase;
	margin-bottom: 30px;
}
.input_color input {
	width: 50px;
	height: 50px;
	cursor: pointer;
	transition: all ease .3s;
}
.input_color input:hover {
	border: 1px solid transparent;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.input_color label {
	margin-right: 10px;
	/* white-space: nowrap; */
}
.modulo-tipografia label {
	margin-right: 10px;
	white-space: nowrap;
}
.seccion-corp {
    padding: 30px;
    background: #FFFFFF;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
	margin-bottom: 30px;
	height: calc(100% - 30px);
}
.seccion-corp.modulo-colores form {
    display: flex;
    flex-direction: column;
	justify-content: space-between;
    height: calc(100% - 50px);
}
.box-preview-text h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.modulo-tipografia .bloque-select {
	width: 100%;
	margin-bottom: 30px;
}
.modulo-tipografia select {
	max-width: initial;
}
.modulo-tipografia label {
	margin-right: 20px;
	margin-bottom: 0;
}
.prev-color-primario {
	background: var(--primario);
}
.prev-color-secundario {
	background: var(--secundario);
}
.prev-color-terciario {
	background: var(--terciario);
}
.prev-color-primario, .prev-color-secundario, .prev-color-terciario {
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 6px; */
    width: 100%;
	margin-bottom: 10px;
}
.bloque.input_color {
    min-width: 30%;
	margin: 0 10px;
}
.area-upload-logo {
	padding: 15px;
	height: 200px;
	width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	border: 1px solid var(--bordeInput);
	position: relative;
	transition: all ease .3s;
}
.area-upload-logo:hover{
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	border: 1px solid transparent;
}
.area-upload-logo input[type='file']{
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	cursor: pointer;
}
.corp-preview-logo {
	height: 100%;
	width: 100%;
	background-image: var(--logoRuta);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.area-upload-favicon {
	padding: 10px;
	height: 50px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	border: 1px solid var(--bordeInput);
	position: relative;
	box-sizing: initial;
	transition: all ease .3s;
}
.area-upload-favicon:hover{
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	border: 1px solid transparent;
}
.area-upload-favicon input[type='file']{
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	cursor: pointer;
}
.corp-preview-favicon {
	height: 100%;
	width: 100%;
	background-image: var(--faviconRuta);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.columnas-mod-logo {
	width: 50%;
}
/* *************** */

/* ADMIN */
body.bodyAdmin {
	overflow-x: hidden;
	overflow-y: auto;
	min-height: initial;
}
.cabera-opciones {
    background: var(--primario);
    padding: 15px;
    color: #fff;
    font-size: 1.5em;
    border: 1px solid  var(--bordeInput);
    margin-bottom: 9px;
	display: flex;
	align-items: center;
}
.cabera-opciones .bi {
	margin-right: 8px;
	font-size: 30px;
}
.fila-opciones {
	background: #fff;
    padding: 15px;
    color: var(--primario);
    font-size: 1.3em;
	font-weight: 600;
    border: 1px solid  var(--bordeInput);
	display: flex;
	justify-content: space-between;
}
.fila-opciones:nth-child(2n) {
	background: #f4f4f4;
}
.fila-opciones .bi {
	font-size: 20px;
	color: #333;
	margin-left: 10px;
	transition: all ease .3s;
}
.fila-opciones .bi:hover {
	opacity: .8;
}
.botones-opciones .tooltiptext{
	left: -50%;
}
.titulo_header {
	font-weight: 500;
	font-size: 2.8em;
	color: var(--primario);
	margin-left: 45px;
	margin-right: auto;
}
.admin-utilidad {
	padding: 0 15px;
}
.admin-utilidad .bi {
	font-size: 3em;
	color: var(--primario);
	transition: all ease .3s;
}
.admin-utilidad .bi .tooltiptext {
	bottom: 100%;
}
.tabla-admin-modulo .bi {
	font-size: 1.4em;
}
table.tabla-admin-modulo {
	border: 1px solid var(--bordeInput);
}
.tabla-admin-modulo tbody tr:nth-child(2n) td {
	background: #f4f4f4;
}
.tabla-admin-modulo tbody td:last-child,
.tabla-admin-modulo tbody td:first-child {
	text-align: center;
}
.tabla-admin .first.paginate_button, 
.tabla-admin .last.paginate_button {
	display: none;
}	
.tabla-admin .boton-tabla.boton-filtrar {
    margin-right: auto;
}
.main-admin {
	padding-top: 50px;
}
.main-admin .opciones_desplegables h4 {
	font-weight: 400;
	font-size: 15px;
	color: #333333;
	margin-bottom: 20px;
}
.tabla-admin .bi-check-square {
	color:var(--exitoColor);
	font-size: 1.4em;
}
.tabla-admin .bi-x-square {
	color:var(--errorColor);
	font-size: 1.4em;
}
.tabla-admin .estado-td {
	text-align: center;
}
.modulo_usuarios .bloque-checkbox input {
	min-width: initial;
}
/* ******************** */


/* RESPONSIVE */
@media(max-width:1680px){
	.progresos-venta .barra-box {
		width: 50%;
	}
}
@media(max-width: 1366px){
	.cooporativo {
		margin-top: 6vh;
		margin-bottom: 50px;
	}
	.logo-home {
		margin-bottom: 30px;
	}
	.highcharts-figure .odometro-container .highcharts-data-labels.highcharts-gauge-series {
		transform: translate(10px, 15px) !important;
	}
}

@media(max-width:1200px){
	.item-datos-box {
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.item-datos-box .items-datos {
		margin-right: 15px;
		margin-bottom: 15px;
		min-width: 115px;
	}
	.disponibilidad-stock .highcharts-figure,
	.disponibilidad-stock .highcharts-data-table table {
		min-width: 320px;
		max-width: 100%;
		margin: 1em auto;
	}
}
@media(max-width:991px){
	.video-columna {
		height: 50vh;
	}
	.formulario_login {
		padding: 20px;
	}
	.modulo-colores-interior {
		flex-direction: column;
	}
	.bloque.input_color {
		margin-bottom: 30px !important;
	}
	.modulo-logo form {
		flex-direction: column;
	}
	.columnas-mod-logo {
		margin-bottom: 30px;
		width: 100%;
	}
}
/***********************/

.hide {
	display: none !important;
}
.show {
	display: block !important;
}

section.tabla-box {
	overflow-x:hidden;
}
 .contenidoPrincipal > .dataTables_wrapper .bottom {
    position: sticky;
    bottom: -35px;
    right: 0;
    left: 0;
    background: white;
    padding: 10px 0 30px;
}
.contenidoPrincipal > .dataTables_wrapper .top {
    position: sticky;
    top: 0;
    z-index: 1;
    background: white;
}
.contenidoPrincipal > .dataTables_wrapper .dataTables_scrollHead {
    position: sticky !important;
    top: 0;
    z-index: 1;
}

.contenidoPrincipal > .dataTables_wrapper .dataTables_scrollHead,
.contenidoPrincipal > .dataTables_wrapper .dataTables_scrollBody{
    overflow: initial !important;
    width: -webkit-fill-available !important;
    border: none;
}
.contenidoPrincipal > .dataTables_wrapper .dataTables_scroll {
    overflow: auto !important;
    width: 100% !important;
    height: calc(85vh - var(--header) - var(--footer));
}
.dataTables_scrollHeadInner {
	padding-right: 0 !important;
}
.tabPaginas > .bottom.wrapper {
    position: fixed;
    bottom: 0;
    right: 30px;
	background: transparent;
    padding: 15px 0;
	width: 100%;
}
.msj-copiar {
    position: absolute;
    background: #999;
    padding: 8px 15px;
    left: -50%;
    bottom: -80%;
    z-index: 1;
    border-radius: 8px;
    color: white;
}
form ~ .bloque {
    position: sticky;
    bottom: -50px;
    background: #fff;
    padding: 20px 0px 20px;
    background: #fff;
    margin-bottom: 0;
}
.form_box {
    position: relative;
}