/*
* It is advised not to edit the smartadmin_production.css
* as this will override any changes you make in the
* later versions of this theme.
*
* We advise that you use use this CSS to override
* SmartAdmin styles.
*
* Rename the stylesheet to whatever your liking so it will stay
* unique to you with each update of SmartAdmin.
*/

/*
* INDEX
*
* - HTML
* - BODY
* - CUSTOM STYLES
*/

/* Mensajes flotantes de validación de campos */
small.help-block {
	position: absolute;
	top: 0.5em;
	right: 1.3em;
	color: #EA640F;
	z-index: 2;
}
.input-group small.help-block {
	top: -1.5em;
	right: 0.25em;
}
.form-group {
	margin-bottom: 0px;
}

/* Botón de cerrar en las advertencias estilo SmartAdmin */
.ui-widget .close {
	font-size: 19.5px;
}

/* Switches sí/no en formularios */
.onoffswitch.formulario {
	display: block;   /* Que salgan bajo su etiqueta de nombre de campo */
	min-height: 2em;  /* Que el campo no-switch siguiente salga donde toque, no debajo de este */
}
.onoffswitch-label.formulario {
	float: left;  /* Que el campo no-switch siguiente al siguiente pueda salir debajo de este */
}
.formulario .onoffswitch-inner::after {
	padding-left: 1.2em;  /* Corrige lo que se estropeaba por poner el float: left anterior */
}

/* Mensajes del plugin Select2, que se crean en el body, deberían ser invisibles */
.select2-hidden-accessible {
	display: none !important;
	visibility: hidden !important;
}

/* Sparks */
#sparks li.sparks-info h5 {
	margin: 0;
}

.dataTables_wrapper .dt-toolbar {
	position: absolute;
	max-width: 98%;
}
.dataTables_wrapper .dt-toolbar-footer {
	position: absolute;
	bottom: 2.5em;
	width: 98%;
}
/* Mensaje de feedback de procesado server-side */
div.dataTables_processing {
	margin-top: 40px;
	padding-top: 0;
}

/* Permitimos que el menú de acciones pueda dibujarse más allá de este div */
.dataTables_wrapper {
	overflow-x: scroll;
}

/* Barras de progreso en listados */
.dataTables_wrapper .progress::after {
	content: "";
}
.dataTables_wrapper .progress::before {
	content: attr(data-progressbar-value) " %";
}
.dataTables_wrapper .progress.deducido {
	color: gray;
}
.dataTables_wrapper .progress.deducido .progress-bar {
	background: #afafaf;
}

/* Imágenes de los usuarios en los listados */
img.usuario {
	border-radius: 90%;
	width: 30px;
}

/* Iniciales de los usuarios en los listados */
.iniciales {
	background-image: url('/img/user-default.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	color: black;
	font-weight: bold;
	font-size: 18px;
}

/* Imágenes de los usuarios en los comentarios */
.chat-body li.message img {
	height: 36px;  /* Equivalente a width 40 px */
}

/* Anchura y posicionamiento adecuado para los mensajes de los comentarios y su fecha */
.chat-body li.message .message-text {
	min-height: 36px;  /* Mantener con el mismo valor que el de la imagen del usuario */
	padding-right: 2em;
	width: 95%;
}
.chat-body li.message .message-text .pull-right {
	margin-right: 3em;
}

/* Separación entre los comentarios y los textarea para añadir nuevo comentario */
.chat-body {
	margin-bottom: 10px;
}
li.message-reply {
	display: block;
	margin: 3px 0 0 85px;
}

/* Mensajes flotantes de validación de comentarios (válido para rows="1") */
textarea.form-control.comentario + small.help-block {
	margin-top: -3.8em;
	top: initial;
}
textarea.form-control.comentario + small.help-block, x:-moz-any-link {
	margin-top: -4.9em;  /* Sólo para Firefox */
}

/* Calendario */
.fc-day-grid-event .fc-content {
	text-overflow: ellipsis;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.fc-time-grid .fc-slats tr td {
	height: 3em;
}


i.form-control-feedback {
	top: 2.5em !important;
	right: 1em !important;
}
#widget-grid-graphs {
	margin-bottom: 2em;
	background: white;
	border: none;
	-webkit-box-shadow: 6px 7px 5px -1px rgba(63,76,107,0.5);
	-moz-box-shadow: 6px 7px 5px -1px rgba(63,76,107,0.5);
	box-shadow: 6px 7px 5px -1px rgba(63,76,107,0.5);
}
.graph-row .jarviswidget {
	margin-bottom: 0 !important;
}
.jarviswidget>div {
	border: none!important;
}
#widget-grid-graphs {
	margin-bottom: 2em;
}
header.graph-title {
	background: #0ca7c6 !important;
}
header.graph-title h2 {
	color: white !important;
	text-align: center !important;
	font-weight: bold !important;
	width: 100%;
}
.buttonChangeGraph {
	z-index: 999;
	position: absolute;
}
ul.legend-labels {
	text-align: center !important;
	height: 4em;
}
table.dataTable thead th {
	background: none;
}
table.dataTable span.glyphicon {
	color: #0ca7c6;
	cursor: pointer;
}

/* Fila que indica que no hay resultados al filtrar por texto */
table.dataTable td.dataTables_empty {
	cursor: inherit;  /* En esta fila no se hace click */
	padding-bottom: 3em !important;
}

/* Filas pares de las tablas con degradados de color */
table.dataTable tbody tr:nth-child(even), .tableGraph tr:nth-child(even) {
	background: rgb(220,230,240); /* Old browsers */
	background: -moz-linear-gradient(top,rgba(220,230,240,1) 0%,rgba(240,240,240,1) 50%,rgba(220,230,240,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(220,230,240,1)), color-stop(50%,rgba(240,240,240,1)), color-stop(100%,rgba(220,230,240,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,rgba(220,230,240,1) 0%,rgba(240,240,240,1) 50%,rgba(220,230,240,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,rgba(220,230,240,1) 0%,rgba(240,240,240,1) 50%,rgba(220,230,240,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,rgba(220,230,240,1) 0%,rgba(240,240,240,1) 50%,rgba(220,230,240,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,rgba(220,230,240,1) 0%,rgba(240,240,240,1) 50%,rgba(220,230,240,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dce6f0', endColorstr='#dce6f0', GradientType=0); /* IE6-9 */
}

/* Filas seleccionadas de las tablas con un color que destaque */
.table > tbody > tr.active > td {
	background: rgb(163, 224, 255);
}

.daterangepicker td.in-range {
	background: rgb(199,221,237) !important;
}
.daterangepicker td:hover {
	background: rgb(53, 126, 189) !important;
	color: white !important;
}

.bootstrap-timepicker-widget.dropdown-menu {
	z-index: 3000;
}


html, body, #header, .ui-dialog {
	background: #fff;
	/*background: rgb(199,221,237); /* Old browsers */
	/*background: -moz-linear-gradient(top,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%); /* FF3.6+ */
	/*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(199,221,237,1)), color-stop(50%,rgba(212,228,239,1)), color-stop(100%,rgba(199,221,237,1)));*/ /* Chrome,Safari4+ */
	/*background: -webkit-linear-gradient(top,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%);*/ /* Chrome10+,Safari5.1+ */
	/*background: -o-linear-gradient(top,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%);*/ /* Opera 11.10+ */
	/*background: -ms-linear-gradient(top,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%);*/ /* IE10+ */
	/*background: linear-gradient(to bottom,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%);*/ /* W3C */
	/*filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c7dded', endColorstr='#c7dded', GradientType=0);*/ /* IE6-9 */
}
.dataTables_wrapper thead tr, table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .selectAll {
	background-color: rgb(199,221,237); /* Old browsers */
	background-color: -moz-linear-gradient(top,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%); /* FF3.6+ */
	background-color: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(199,221,237,1)), color-stop(50%,rgba(212,228,239,1)), color-stop(100%,rgba(199,221,237,1))); /* Chrome,Safari4+ */
	background-color: -webkit-linear-gradient(top,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%); /* Chrome10+,Safari5.1+ */
	background-color: -o-linear-gradient(top,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%); /* Opera 11.10+ */
	background-color: -ms-linear-gradient(top,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%); /* IE10+ */
	background-color: linear-gradient(to bottom,rgba(199,221,237,1) 0%,rgba(212,228,239,1) 50%,rgba(199,221,237,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c7dded', endColorstr='#c7dded', GradientType=0); /* IE6-9 */
}
#shortcut {
	background: rgba(233,103,115,0.92);
}
#shortcut ul li a {
	background: rgba(233,103,115,0.9);
	text-align: center;
	border: 2px solid white !important;
	background: transparent !important;
	margin: 0 !important;
}
#shortcut ul li a span {
	text-align: center;
}
.custom-blue-button {
	text-align: center;
	text-transform: uppercase;
	color: white;
	font-size: 1em;
	padding: 0.5em 1em;
	background: #0ca7c6;
	margin-top: 2em;
	margin-bottom: 2em;
	cursor: pointer;
}
.custom-blue-button:hover {
	color: white;
	text-decoration: none;
	opacity: 0.9;
}
.dt-toolbar {
	padding: 0.2em 0;
}
.dataTables_wrapper .input-group-addon, .dataTables_wrapper .btn-group .btn-default, #header .btn-header a, button.ColVis_Button {
	color: #0ca7c6;

	background: rgb(210,210,210); /* Old browsers */
	background: -moz-linear-gradient(top,rgba(210,210,210,1) 0%,rgba(240,240,240,1) 50%,rgba(210,210,210,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(210,210,210,1)), color-stop(50%,rgba(240,240,240,1)), color-stop(100%,rgba(210,210,210,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,rgba(210,210,210,1) 0%,rgba(240,240,240,1) 50%,rgba(210,210,210,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,rgba(210,210,210,1) 0%,rgba(240,240,240,1) 50%,rgba(210,210,210,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,rgba(210,210,210,1) 0%,rgba(240,240,240,1) 50%,rgba(210,210,210,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,rgba(210,210,210,1) 0%,rgba(240,240,240,1) 50%,rgba(210,210,210,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bebebe', endColorstr='#bebebe', GradientType=0); /* IE6-9 */

	cursor: pointer;
}
.customappend .custom-blue-button {
	width: 100% !important;
	margin: 0 !important;
}
.dataTables_wrapper .paginate_button.active a {
	background: #0ca7c6;
}
.dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_length label {
	color: #0ca7c6 !important;
	font-style: normal;
}
.custom-orange-button {
	background: #9ed4f6 !important;
}
.custom-clear {
	clear: both;
}
.no-padding {
	padding: 0;
}

.dataTables_wrapper td, .dataTables_wrapper th, .dataTables_wrapper tr, .tableGraph td, .tableGraph tr {
	vertical-align: middle !important;
	text-align: center;
	color: #0ca7c6 !important;
}
.dataTables_wrapper tr:first-child {
}

#header {
	height: 6em;
}

#header .pull-right {
	margin-top: 0.5em;
}

#logo-group {
	margin-top: -1em;
}
@media only screen and (max-width: 600px) {
	#logo-group {
		margin-top: 0;
	}
}
.table .bar-holder {
	padding: 0px;
}
#header .bar-holder {
	overflow: auto;
	padding: 0.5em;
}
#header .progress {
	position: relative;
	background: #3F4C6B;
}

#header .progress-bar {
	padding-top: 0.7em;
	padding-bottom: 0.7em;
	cursor: pointer;
	max-width: 100% !important;
	padding: 0.2em;
}
#header #progress-bar h1 {
	text-align: center;
	margin-bottom: 0.2em;
	color: #0ca7c6;
	font-weight: bold;
}
#header .progress .progress-number {
	position: absolute;
	top: 10%;
	width: 100%;
	text-align: center;
	color: white;
	font-weight: bold;
	z-index: 9999;
}
#left-panel .login-info, #left-panel .login-info span {
	border: none;
	text-align: right;
}
#left-panel nav {
	z-index: 10000 !important;
}
#top-filter-bar .date-filter input, #top-filter-bar .compare-date-filter input {
	margin-top: 0.5em;
	padding: 0.3em 1em;
	height: auto;
}
.login-info a {
	color: white;
}
.minifyme {
	background: #E96773;
}
.minifyme i {
	color: white;
}
#ribbon {
	background: #0ca7c6;
	overflow: auto;
	padding: 0.6em 0;
	width: 100%;
}

#left-panel {
	padding-top: 6.2em;
	background: #0ca7c6;
}
#left-panel nav ul li a {
	color: white;
}
#left-panel nav > ul > li:hover, #left-panel nav > ul > li.open {
	background: #E96773;
}

h2.custom-center {
	text-align: center !important;
	border-bottom: none !important;
	font-size: 1.8em !important;
}
.custom-breadcrumb {
	padding-left: 1em;
}
.custom-breadcrumb a {
	color: #0ca7c6;
}
.custom-breadcrumb a:hover {
	color: rgba(20,20,20,1);
}
.custom-breadcrumb a + a i {
	font-size: 0.8em;
	padding: 0 0.3em;
}
.custom-breadcrumb a + a {
	font-size: 0.7em;
}
.custom-widget {
	border: none;
	-webkit-box-shadow: 6px 7px 5px -1px rgba(63,76,107,0.5);
	-moz-box-shadow: 6px 7px 5px -1px rgba(63,76,107,0.5);
	box-shadow: 6px 7px 5px -1px rgba(63,76,107,0.5);
}
.custom-widget header {
	border: none;
	background: white;/*rgb(250, 245, 233);*/
}
.ui-dialog {
	max-width: 100% !important;
	overflow: visible;
}
.custom-widget .widget-body {
	border: none;
	background: white!important;/*rgb(250, 245, 233) !important;*/
}
.custom-widget header h2 {
	color: rgb(6, 86, 143);
	font-weight: 500;
	width: 95%;
	font-size: 1.5em;
	padding-right: 1em;
	border-bottom: 1px solid rgb(6, 86, 143);
}

.page-footer {
	text-align: center;
	background: #0ca7c6;
	color: white;
	overflow: auto;
}
.page-footer a {
	color: rgb(210,210,210);
}
.page-footer a:hover {
	text-decoration: underline;
}

/* leyenda gráficas */
.my-legend {
	margin-left: -3em;
	margin-top: 1.5em;
}
.my-legend .legend-scale ul li {
	display: inline-block;
	font-size: 80%;
	list-style: none;
	line-height: 18px;
	vertical-align: text-top;
}
.my-legend ul.legend-labels li span {
	display: inline-block;
	height: 16px;
	width: 20px;
	margin-right: 5px;
	margin-left: 10px;
	border: 1px solid #999;
}

/* speedometer */
section#widget-grid-speedometers {
	overflow: auto;
}
.envelope {
	background: #0F0F0F;
	position: relative;

	box-shadow: inset 0 0 5px 5px #000;
	-webkit-box-shadow: inset 0 0 5px 5px #000;
	-o-box-shadow: inset 0 0 5px 5px #000;
	-moz-box-shadow: inset 0 0 5px 5px #000;

	border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
}
.speedNobe {
	position: absolute;
	width: 100%;
	z-index: 10;
	transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	-moz-transition: all 1s;
}
.speedPosition {
	position: absolute;
	color: #FFF;
	text-align: center;
	line-height: 80px;
	font-family: arial;
	font-size: 30px;
	font-weight: bold;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	background: #191919;
	box-shadow: 0 0 3px 3px black;
	-webkit-box-shadow: 0 0 3px 3px black;
	-moz-box-shadow: 0 0 3px 3px black;
	-o-box-shadow: 0 0 3px 3px black;
}
.fonts {
	font-family: arial;
	font-weight: bold;
	width: 100%;
	text-align: center;
}

.speedNobe div {
	background: #48a3cb;
	position: absolute;
	height: 100%;
	top: 0;
}
.numb, .nob {
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
	-o-transition: opacity 1s;
	-moz-transition: opacity 1s;
	position: absolute;
	opacity: 0.5;
}
.nob {
	background: #eee;
	box-shadow: 0 0 2px 1px #eee;
	-webkit-box-shadow: 0 0 2px 1px #eee;
	-moz-box-shadow: 0 0 2px 1px #eee;
	-o-box-shadow: 0 0 2px 1px #eee;
}
.numb {
	color: #eee;
	text-align: left;
	overflow: hidden;
	opacity: 0.5;
	font-family: arial;
	font-size: 16px;
	font-weight: bold;
}
.nob.bright {
	opacity: 1;
}
.nob.danger {
	background: #3495D1;
	box-shadow: 0 0 2px 1px #3495D1;
	-webkit-box-shadow: 0 0 2px 1px #3495D1;
	-moz-box-shadow: 0 0 2px 1px #3495D1;
	-o-box-shadow: 0 0 2px 1px #3495D1;
}
.numb.bright {
	opacity: 1;
}
.numb.danger {
	color: #3495D1;
}
#gauge {
	position: relative;
	width: 360px;
	height: 250px;
	text-align: center;
}
.widget-grid-speedometers header h1 {
	color: #0ca7c6;
	background: none !important;
	border-bottom: 1px solid #0ca7c6;
}
div.speedometers {
	height: 15em;
}
div.speedometer {
	background: none !important;
}
div.speedometer h1 {
	text-align: center;
	font-size: 1.5em;
	color: #0ca7c6;
	font-weight: bold;
}
.graficasContenedorDoctores p {
	font-size: 1.1em;
	color: #0ca7c6;
}
.compare-check p {
	color: white;
	font-size: 1.3em;
	cursor: pointer;
}
.compare-check i {
	margin-right: 5px;
}
div.speedometers h1 + canvas + canvas + h1 {
	margin-top: 8em;
}
#gauge h1 {
	color: black!important;
	margin-left: 290px;
	text-decoration: underline;
}
canvas[id^="speedometerBehind-"] {
	position: absolute;
	z-index: 1;
}
canvas[id^="barChartForm-"] {
	margin-top: 4em;
}
canvas[id^="speedometerFront-"] {
	position: absolute;
	z-index: 2;
}
div[id^="tableGraph-"] {
	display: none;
}
div[id^="tableGraph-"] table {
	margin-top: 4em;
	overflow: scroll;
	max-height: 70%;
}
.tableGraph table {
	font-size: 1.2em !important;
}
#calBorder {
	z-index: 1052!important;
}

.trVerde {
	background: #42a500 !important; /* Old browsers */
	background: -moz-linear-gradient(top, #42a500 0%, #8fc400 18%, #9dc13a 35%, #9dc13a 35%, #9dc13a 62%, #8fc400 69%, #8fc400 69%, #8fc400 77%, #8fc400 77%, #5ca32d 100%) !important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#42a500), color-stop(18%,#8fc400), color-stop(35%,#9dc13a), color-stop(35%,#9dc13a), color-stop(62%,#9dc13a), color-stop(69%,#8fc400), color-stop(69%,#8fc400), color-stop(77%,#8fc400), color-stop(77%,#8fc400), color-stop(100%,#5ca32d)) !important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #42a500 0%,#8fc400 18%,#9dc13a 35%,#9dc13a 35%,#9dc13a 62%,#8fc400 69%,#8fc400 69%,#8fc400 77%,#8fc400 77%,#5ca32d 100%) !important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #42a500 0%,#8fc400 18%,#9dc13a 35%,#9dc13a 35%,#9dc13a 62%,#8fc400 69%,#8fc400 69%,#8fc400 77%,#8fc400 77%,#5ca32d 100%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #42a500 0%,#8fc400 18%,#9dc13a 35%,#9dc13a 35%,#9dc13a 62%,#8fc400 69%,#8fc400 69%,#8fc400 77%,#8fc400 77%,#5ca32d 100%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #42a500 0%,#8fc400 18%,#9dc13a 35%,#9dc13a 35%,#9dc13a 62%,#8fc400 69%,#8fc400 69%,#8fc400 77%,#8fc400 77%,#5ca32d 100%) !important; /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#42a500', endColorstr='#5ca32d', GradientType=0) !important; /* IE6-9 */
}

.trAmarillo {
	background: #ffaf4b !important; /* Old browsers */
	background: -moz-linear-gradient(top, #ffaf4b 0%, #ff920a 100%) !important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffaf4b), color-stop(100%,#ff920a)) !important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffaf4b 0%,#ff920a 100%) !important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffaf4b 0%,#ff920a 100%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ffaf4b 0%,#ff920a 100%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #ffaf4b 0%,#ff920a 100%) !important; /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffaf4b', endColorstr='#ff920a', GradientType=0) !important; /* IE6-9 */
}

.trAmarillo td span, .trVerde td span {
	color: rgb(60,60,60) !important;
}

.trRojo {
	background: #a50000 !important; /* Old browsers */
	background: -moz-linear-gradient(top, #a50000 0%, #cc0000 49%, #af0000 100%, #cc0000 100%) !important; /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a50000), color-stop(49%,#cc0000), color-stop(100%,#af0000), color-stop(100%,#cc0000)) !important; /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #a50000 0%,#cc0000 49%,#af0000 100%,#cc0000 100%) !important; /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #a50000 0%,#cc0000 49%,#af0000 100%,#cc0000 100%) !important; /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #a50000 0%,#cc0000 49%,#af0000 100%,#cc0000 100%) !important; /* IE10+ */
	background: linear-gradient(to bottom, #a50000 0%,#cc0000 49%,#af0000 100%,#cc0000 100%) !important; /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a50000', endColorstr='#cc0000', GradientType=0) !important; /* IE6-9 */
}
.trRojo td span {
	color: #C0E2ED !important;
}

.ui-dialog .ui-dialog-titlebar {
	background: #0ca7c6;
	color: #EEE;
}
.ui-dialog .ui-dialog-titlebar span, .ui-dialog .ui-dialog-titlebar button {
	color: #EEE;
}
.ui-dialog .ui-dialog-buttonpane {
	background: #0ca7c6;
	margin-top: 0px;
}
.ui-dialog .ui-dialog-buttonpane button {
	background: transparent;
	color: #FFF;
	font-size: 1.5em;
	font-weight: bold;
}
.bootstrap-select button {
	height: 100% !important;
	margin-left: 0;
	font-size: 14px !important;
	max-width: 100% !important;
}
.ui-dialog fieldset .input-group span.input-group-addon {
	color: #0ca7c6;
}
.ui-dialog fieldset label.control-label {
	padding: 0.4em 0 0;
	color: #0ca7c6;
	font-size: 1.1em;
}
.modificarEmpleado, .modificarAgenda, #checkbox-confirmada, .modificarFinanciera, .modificarEmpresa, .modificarCentro, .modificarUsuario, .modificarVisita, .modificarPagoCentro,
.modificarTipoEmpleado, .modificarTipoVisita, .modificarTipoCliente, .modificarEspecialidad, .modificarPais, .modificarProvincia, .modificarPoblacion, td[class^=modificar], .trVisita, .trRojo,
.trAmarillo, .trVerde {
	cursor: pointer !important;
}
#dialog-confirm {
	min-height: 50px;
	max-width: 100%;
}
#dialog-confirm p {
	font-size: 1.2em;
	color: #0ca7c6 !important;
	text-align: justify;
}
#custom-dialog td span, #custom-dialog > p {
	font-size: 1.2em !important;
	color: #0ca7c6 !important;
	margin: 0.5em 0 !important;
}
#custom-dialog > p + input {
	margin-bottom: 1em;
}
#custom-dialog .control-label i {
	margin-right: 1em;
}
.ui-dialog #tabs .ui-tabs-panel {
	background: #0ca7c6;
	border: 2px solid #0ca7c6;
	padding-bottom: 2em;
}
.ui-dialog #tabs {
	background: none;
}
.ui-dialog #tabs ul.ui-tabs-nav {
	border: none;
}
.ui-dialog #tabs ul.ui-tabs-nav > li {
	background: none !important;
	margin: 0 !important;
}
.ui-dialog #tabs .ui-tabs-panel label.control-label {
	color: #EEE !important;
}
.ui-dialog #tabs ul.ui-tabs-nav > li a {
	margin-top: 0 !important;
	box-shadow: none !important;
	background: none !important;
	border-top: 2px solid #0ca7c6;
	border-left: 0;
	border-right: 2px solid #0ca7c6;
	border-bottom: 0 !important;
}
.ui-dialog #tabs ul.ui-tabs-nav > li:first-child {
	border-right: 0;
	border-left: 2px solid #0ca7c6;
}
.ui-dialog #tabs ul.ui-tabs-nav li.ui-tabs-active a, .ui-dialog #tabs ul.ui-tabs-nav > li:hover a {
	box-shadow: none !important;
	background: #0ca7c6 !important;
	color: #EEE;
	border-top: 2px #EEE;
	border-left: 2px #EEE;
	border-right: 2px #EEE;
	border-bottom: 0 !important;
}

/*
label {
	cursor: pointer !important;
}
*/

.widget-body.noData p {
	color: #0ca7c6 !important;
	font-size: 1.5em;
	text-align: center;
}
canvas[id^=speedometer] {
	width: 90%;
	margin: auto;
}
.mainGraphWidget {
	background: white;
}
.speedometer-title {
	color: #0ca7c6 !important;
}

.displayNone {
	display: none !important;
}

.modificarFinanciacion * {
	cursor: auto !important;
}

/** ROBERTO'S WASY-LIKE TOOLTIPS **/
.tooltip > .tooltip-inner {
	border-radius: 5%;
	border: 1px solid rgb(115,115,115);
}
.tooltip.right {
	padding: 0.1em 0;
	margin-top: 5.5em;
	margin-left: -2em !important;
}
.tooltip.bottom {
	margin-top: 2em;
	margin-left: 4em;
	padding: 0.1em 0;
}
.tooltip-arrow {
	display: none;
	border: none;
}
.tooltip table td {
	text-align: left;
	background: white !important;
}
.tooltip table {
	width: 100%;
}
.tooltip table tbody {
	background: white !important;
}
.tooltip .img-responsive {
	float: none;
	display: inline-block;
	padding: 0.5em;
}
.triangulo-equilatero-bottom-left {
	position: absolute;
	top: -19px;
	left: 16px;
	width: 0;
	height: 0;
	border-right: 5px solid transparent;
	border-top: 18px solid transparent;
	border-left: 15px solid white;
	border-bottom: 3px solid white;
}
.triangulo-equilatero-bottom-left-back {
	position: absolute;
	top: -22px;
	left: 15px;
	width: 0;
	height: 0;
	border-right: 5px solid transparent;
	border-top: 19px solid transparent;
	border-left: 16px solid rgb(115,115,115);
	border-bottom: 4px solid rgb(115,115,115);
}

.tooltip > .tooltip-arrow, .tooltip > .tooltip-inner {
	background: white !important;
}
.tooltip img + h3 {
	width: 75%;
}
.tooltip h3 {
	vertical-align: middle;
	display: inline-block;
	margin: 0.3em 0;
	padding: 0 0.5em;
	font-size: 1.3em;
	color: rgb(0,130,203);
	font-weight: 600;
}
.tooltip p {
	padding: 0 0.2em;
	color: rgb(115,115,115);
	margin-bottom: 0.3em;
	text-align: left;
}
/** END OF ROBERTO'S WASY-LIKE TOOLTIPS **/


/** ROBERTO'S BOTONES DESPLEGABLES TABLA **/

.customappend > div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.customappend {
	position: relative;
}
.customappend .custom-blue-button {
	display: none;
}
.customappend .custom-blue-button:first-child, .customappend:hover .custom-blue-button {
	display: block;
	z-index: 3;  /* Para que ni los switches ni los números de página se dibujen sobre los botones */
}

/** END OF ROBERTO'S BOTONES DESPLEGABLES TABLA **/


.limpiar-barra {
	font-size: 1.5em;
	color: white;
	text-align: center;
	cursor: pointer;
}
.columna-ancha, table.dataTable thead>tr>th.columna-ancha {
	padding: 1em 20em !important;
	padding-left: 20em !important;
}
.adminShortcut i {
	display: block;
	margin: auto;
	width: 1em;
	font-size: 4em;
}
.adminShortcut a {
	text-align: center;
	text-transform: uppercase;
	font-size: 2em;
	color: white;
    height: 9em;
	font-weight: bold;
	padding: 1em;
	background: #E96773;
	border-radius: 15px;
	width: 100%;
	display: block;
}
.adminShortcut a:hover {
	background: #0ca7c6 !important;
	color: white !important;
}
.adminShortcut {
	padding: 1em;
}

/* Botones para imprimir y exportar */
.btnTablesTemplate > span {
	padding: 0.3em;
}
div.DTTT .btn {
	padding: 0.75em 0.4em;
}

.dataTables_filter > label > span.input-group-addon, .dataTables_filter > label > span.input-group-addon i {
	background: none !important;
	color: rgb(115,115,115) !important;
	border: none !important;
}
.dataTables_filter > label .input-group-addon+.form-control, .dataTables_filter > label .input-group-addon+.form-control:focus {
	border: none !important;
	outline: none !important;
	box-shadow: 0 0 10px #0ca7c6;
	background: none !important;
}
div.dataTables_filter label {
	border-bottom: 1px solid #0ca7c6 !important;
}
.ColVis_Button:hover, ul.ColVis_collection li:hover, button.ColVis_Button {
	background: none !important;
	box-shadow: none !important;
	color: rgb(115,115,115) !important;
	border: none !important;
}
.dt-toolbar {
	background: none !important;
	margin: 2em 0;
}
ul.ColVis_collection {
	width: auto;
}
tbody, .dt-toolbar-footer {
	background: white !important;
	border: none !important;
}
table.dataTable {
	border: none !important;
}
td span.detail + span {
	font-size: 0.95em;
}
table.dataTable img.img-responsive {
	/*max-width: 22px;*/
	display: inline;
}
table.dataTable thead .sorting, table.dataTable thead .sorting_asc,table.dataTable thead th, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_desc_disabled {
	color: rgb(0,130,203) !important;
	background-color: white !important;
	border: none !important;
	border-bottom: 1px solid #0ca7c6 !important;
	text-transform: uppercase;
	font-weight: 400;
}
.pagination>li>a, .pagination>li>span, .pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus {
	background: white !important;
	color: rgb(115,115,115) !important;
}
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
	background: white !important;
	color: rgb(115,115,115) !important;
}
table.dataTable thead th {
	text-align: center;
}
table.dataTable tbody td {
	border: none !important;
}
table.dataTable tbody tr, .table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th,table.dataTable tbody tr, .table-striped>tbody>tr>td, .table-striped>tbody>tr>th {
	background: white !important;
	border: none !important;
	border-bottom: 1px solid #0ca7c6 !important;
	vertical-align: middle;
	font-size: 1em;
}
table.dataTable tbody tr.trFinSemana td {
	background: #ccccfb !important;
}
.dataTables_filter > label > span.input-group-addon i {
	color: white;
}

.bigBox a, .bigBox a:hover, .bigBox a:visited, .bigBox a:active {
	color: white !important;
}

/**** Login ****/
.smart-form footer {
	border: none;
	padding: 0px 10px 15px;
	background: none;
}
.smart-form footer .btn {
	height: 2em;
	width: 98%;
	background-color: #0ca7c6;
	font-size: 2em;
}
.fieldLogin input#email, input#password {
	height: 3em;
	margin: 10px 0 0 5px;
	padding: 0 22px;
}
.fa-arrow-circle-o-right:before {
	font-size: 40px;
}
p.textoBtn {
	margin-top: 5px;
}
p.error {
	margin-left: 5px;
}
.smart-form .state-error+em {
	margin-left: 5px;
}
/***************/
/*
DATATABLES NUEVO Y SERVERSIDE
*/
button.dt-button,
div.dt-button,
a.dt-button {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin-right: 0.333em;
  margin-bottom: 0.333em;
  padding: 0.5em 1em;
  border: 1px solid #999;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.88em;
  line-height: 1.6em;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  background-color: #e9e9e9;
  /* Fallback */
  background-image: -webkit-linear-gradient(top, white 0%, #e9e9e9 100%);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, white 0%, #e9e9e9 100%);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, white 0%, #e9e9e9 100%);
  /* IE10 */
  background-image: -o-linear-gradient(top, white 0%, #e9e9e9 100%);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, white 0%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#e9e9e9');
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  outline: none;
}
button.dt-button.disabled,
div.dt-button.disabled,
a.dt-button.disabled {
  color: #999;
  border: 1px solid #d0d0d0;
  cursor: default;
  background-color: #f9f9f9;
  /* Fallback */
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
  /* IE10 */
  background-image: -o-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#ffffff', EndColorStr='#f9f9f9');
}
button.dt-button:active:not(.disabled), button.dt-button.active:not(.disabled),
div.dt-button:active:not(.disabled),
div.dt-button.active:not(.disabled),
a.dt-button:active:not(.disabled),
a.dt-button.active:not(.disabled) {
  background-color: #e2e2e2;
  /* Fallback */
  background-image: -webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  /* IE10 */
  background-image: -o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #f3f3f3 0%, #e2e2e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#e2e2e2');
  box-shadow: inset 1px 1px 3px #999999;
}
button.dt-button:active:not(.disabled):hover:not(.disabled), button.dt-button.active:not(.disabled):hover:not(.disabled),
div.dt-button:active:not(.disabled):hover:not(.disabled),
div.dt-button.active:not(.disabled):hover:not(.disabled),
a.dt-button:active:not(.disabled):hover:not(.disabled),
a.dt-button.active:not(.disabled):hover:not(.disabled) {
  box-shadow: inset 1px 1px 3px #999999;
  background-color: #cccccc;
  /* Fallback */
  background-image: -webkit-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
  /* IE10 */
  background-image: -o-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #eaeaea 0%, #cccccc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#eaeaea', EndColorStr='#cccccc');
}
button.dt-button:hover,
div.dt-button:hover,
a.dt-button:hover {
  text-decoration: none;
}
button.dt-button:hover:not(.disabled),
div.dt-button:hover:not(.disabled),
a.dt-button:hover:not(.disabled) {
  background-color: #e0e0e0;
  /* Fallback */
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  /* IE10 */
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #e0e0e0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9f9f9', EndColorStr='#e0e0e0');
}
button.dt-button:focus:not(.disabled),
div.dt-button:focus:not(.disabled),
a.dt-button:focus:not(.disabled) {
  text-shadow: 0 1px 0 #c4def1;
  outline: none;
  background-color: #79ace9;
  /* Fallback */
  background-image: -webkit-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  /* IE10 */
  background-image: -o-linear-gradient(top, #bddef4 0%, #79ace9 100%);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #bddef4 0%, #79ace9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#bddef4', EndColorStr='#79ace9');
}

.dt-button embed {
  outline: none;
}

div.dt-buttons {
  position: relative;
  float: left;
}
div.dt-buttons.buttons-right {
  float: right;
}

div.dt-button-collection {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  margin-top: 3px;
  padding: 8px 8px 4px 8px;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: white;
  overflow: hidden;
  z-index: 2002;
  border-radius: 5px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  z-index: 2002;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  -ms-column-gap: 8px;
  -o-column-gap: 8px;
  column-gap: 8px;
}
div.dt-button-collection button.dt-button,
div.dt-button-collection div.dt-button,
div.dt-button-collection a.dt-button {
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  float: none;
  margin-bottom: 4px;
  margin-right: 0;
}
div.dt-button-collection button.dt-button:active:not(.disabled), div.dt-button-collection button.dt-button.active:not(.disabled),
div.dt-button-collection div.dt-button:active:not(.disabled),
div.dt-button-collection div.dt-button.active:not(.disabled),
div.dt-button-collection a.dt-button:active:not(.disabled),
div.dt-button-collection a.dt-button.active:not(.disabled) {
  background-color: #dadada;
  /* Fallback */
  background-image: -webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  /* IE10 */
  background-image: -o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f0f0f0', EndColorStr='#dadada');
  box-shadow: inset 1px 1px 3px #666;
}
div.dt-button-collection.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  border-radius: 0;
}
div.dt-button-collection.fixed.two-column {
  margin-left: -150px;
}
div.dt-button-collection.fixed.three-column {
  margin-left: -225px;
}
div.dt-button-collection.fixed.four-column {
  margin-left: -300px;
}
div.dt-button-collection > * {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}
div.dt-button-collection.two-column {
  width: 300px;
  padding-bottom: 1px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
}
div.dt-button-collection.three-column {
  width: 450px;
  padding-bottom: 1px;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  -ms-column-count: 3;
  -o-column-count: 3;
  column-count: 3;
}
div.dt-button-collection.four-column {
  width: 600px;
  padding-bottom: 1px;
  -webkit-column-count: 4;
  -moz-column-count: 4;
  -ms-column-count: 4;
  -o-column-count: 4;
  column-count: 4;
}
div.dt-button-collection .dt-button {
  border-radius: 0;
}

div.dt-button-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Fallback */
  background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* IE10 Consumer Preview */
  background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* Firefox */
  background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* Opera */
  background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
  /* Webkit (Safari/Chrome 10) */
  background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* Webkit (Chrome 11+) */
  background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* W3C Markup, IE10 Release Preview */
  z-index: 2001;
}

@media screen and (max-width: 640px) {
  div.dt-buttons {
    float: none !important;
    text-align: center;
  }
}
button.dt-button.processing,
div.dt-button.processing,
a.dt-button.processing {
  color: rgba(0, 0, 0, 0.2);
}
button.dt-button.processing:after,
div.dt-button.processing:after,
a.dt-button.processing:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  box-sizing: border-box;
  display: block;
  content: ' ';
  border: 2px solid #282828;
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: dtb-spinner 1500ms infinite linear;
  -o-animation: dtb-spinner 1500ms infinite linear;
  -ms-animation: dtb-spinner 1500ms infinite linear;
  -webkit-animation: dtb-spinner 1500ms infinite linear;
  -moz-animation: dtb-spinner 1500ms infinite linear;
}
div.dt-buttons {
    position: relative;
    padding: 1em;
}

.dt-buttons > button.dt-button, .widget-body > .custom-blue-button.open-sign-button {
    background: #0ca7c6!important;
    color: white !important;
    font-size: 1em !important;
    box-shadow: 0px 2px 4px rgba(0,0,0,.1);
    border: none;
    margin: 0.5em 0.2em !important;
    transition: all .3s ease-in;
    min-width: 5em;
    padding: 0.5em 1em;
    font-family: Arial;
}
button.dt-button:hover:not(.disabled), .widget-body > .custom-blue-button.open-sign-button:hover:not(.disabled), div.dt-button:hover:not(.disabled), a.dt-button:hover:not(.disabled) {
    opacity: 0.8;
    transition: all .3s ease-in;
}
.dt-buttons-container {
    overflow: visible;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap-reverse;
}

.dt-buttons-container .dt-buttons{
    flex-wrap:  wrap; 
    display: flex;
    margin: auto;
    justify-content: center;
}
.dt-buttons-container .dt-buttons .dt-button{
    min-width:initial;
}
div.dataTables_filter label {
    float: right;
    font-family: 'LatinaEssential';
    color: rgba(63, 76, 107, 1) !important;
}
.dt-buttons-container .dataTables_filter{
    max-width: 300px;
    min-width: 300px;
    display: flex;
    margin: auto;
    justify-content: center;
}
div.dataTables_filter label {
	border: none !important;
	font-size: 1.1em;
}
div.dataTables_filter input{
	margin-left: 1em;
	width: 14em;
}
div.dt-button-collection button.dt-button, div.dt-button-collection div.dt-button, div.dt-button-collection a.dt-button {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    float: none;
    margin-bottom: 4px;
    margin-right: 0;
}
div.dt-button-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
    background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2001;
}
div.dt-button-collection {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    margin-top: 3px;
    padding: 8px 8px 4px 8px;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.4);
    background-color: white;
    overflow: hidden;
    z-index: 2002;
    border-radius: 5px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    z-index: 2002;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    -ms-column-gap: 8px;
    -o-column-gap: 8px;
    column-gap: 8px;
}

.dataTables_wrapper .dataTables_info {
	clear: both;
	float: left;
	padding-top: 0.755em;
  }
  .dataTables_wrapper .dataTables_paginate {
	float: right;
	text-align: right;
	padding-top: 0.25em;
  }
  .dataTables_wrapper .dataTables_paginate .paginate_button {
	box-sizing: border-box;
	display: inline-block;
	min-width: 1.5em;
	padding: 0.5em 1em;
	margin-left: 2px;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	*cursor: hand;
	color: #333 !important;
	border: 1px solid transparent;
	border-radius: 2px;
  }
  .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: white !important;
	border: 1px solid #0ca7c6;
	background-color: #0ca7c6;
  }
  .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
	cursor: default;
    color: #333 !important;
    border: 1px solid transparent;
	background: transparent;
	box-shadow: none;
  }
  .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: white !important;
	border: 1px solid #0ca7c6;
	background-color: #0ca7c6;
  }
  .dataTables_wrapper .dataTables_paginate .paginate_button:active {
	outline: none;
	background-color: #0ca7c6;
  }
  .dataTables_wrapper .dataTables_paginate{
    padding: 1em 0;
  }
  .breadCum{
	  list-style: none;
  }
  ul.gn-menu{
	  padding: 0;
  }
  div.dataTables_processing{
		
    width: 100%;
    height: 100%;
    background: white;
    top: 100px;
		padding-top: 0;
		margin: 0;
		left: 0;
	}

	.dt-buttons >  .dt-button.buttons-colvis,.dt-buttons >  .dt-button.buttons-print,.dt-buttons >  .dt-button.buttons-pdf,.dt-buttons >  .dt-button.buttons-excel,.dt-buttons >  .dt-button.buttons-copy,.dt-buttons >  .dt-button.buttons-page-length{
    background: rgba(69,69,69,.6) !important;
	}