/*-------------- Genericos --------------*/
/*--- Modifican los checkbox de los modales de evento adverso ---*/
.checkbox--modal--eventos--adversos {
	padding: 0;

	.checkbox__modal {
		display: block;
		height: 20px;
		width: 100%;
		margin-top: 17px !important;
	}
}
/*Tamaños*/
.w-100 {
	width: 100% !important;
}
.w-80 {
	width: 80% !important;
}
.w-100px {
	width: 100px;
}
.w-1-5 {
	width: 1.5em;
}
.w-4 {
	width: 4em !important;
}
.w-16p {
	width: 16px;
}
.h-5 {
	height: 5em;
}
.h-16p {
	height: 16px;
}
.h-600 {
	height: 600px;
}
/*Estilos textarea*/
textarea {
	resize: none;
}
/*Overflow*/
.oxa {
	overflow-x: auto;
}
.ow-hdn {
	overflow: hidden;
}
/*Float*/
.float-right {
	float: right !important;
}
/*Display*/
.d-block {
	display: block !important;
}
.d-none {
	display: none !important;
}
.d-no {
	display: none;
}
.d-flex {
	display: flex !important;
}
.input-hidden {
	display: none !important;
}
/*Margenes*/
.m-0 {
	margin: 0;
}
.ml-1 {
	margin-left: 1em;
}
.mt-1 {
	margin-top: 1em;
}
.mt-2 {
	margin-top: 2em;
}
.mt-3 {
	margin-top: 3em;
}
.mt-5 {
	margin-top: 5em;
}
.mb-1 {
	margin-bottom: 1em;
}
.mb-2 {
	margin-bottom: 2em !important;
}
.margin-auto {
	margin: auto !important;
}
.ml-05 {
	margin-left: 0.5em;
}
.ml-2 {
	margin-left: 2em;
}
.mr-1 {
	margin-right: 1em;
}
.mr-2 {
	margin-right: 2em;
}
.mt-n-2 {
	margin-top: -2em;
}
/*Padding*/
.p-0 {
	padding: 0 !important;
}
.pt-1 {
	padding-top: 1em;
}
.pt-05 {
	padding-top: 0.5em;
}
.pb-1 {
	padding-bottom: 1em !important;
}
.pb-05 {
	padding-bottom: 0.5em;
}
.pl-1 {
	padding-left: 1em;
}
.pr-1 {
	padding-right: 1em;
}
.px-1 {
	padding-left: 1em;
	padding-right: 1em;
}
/*Alineaciones*/
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.left {
	text-align: left !important;
}
.va-sub {
	vertical-align: sub;
}
.va-mid {
	vertical-align: middle !important;
}
.va-top {
	vertical-align: top;
}
/*Flex*/
.fx {
	display: flex;
}
.fx-column {
	flex-direction: column;
}
.fx-1 {
	flex: 1;
}
.fx-2 {
	flex: 2;
}
.fx-3 {
	flex: 3;
}
.fx-4 {
	flex: 4;
}
.fx-5 {
	flex: 5;
}
.fx-6 {
	flex: 6;
}
.fx-7 {
	flex: 7;
}
.fx-8 {
	flex: 8;
}
/*Fuente*/
.fs-1-2 {
	font-size: 1.2em !important;
}
.fs-2 {
	font-size: 2em;
}
/*Puntos suspensivos al cortar texto*/
.puntos {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.text-truncate {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	max-width: 100%; /* Asegura que no se desborde el contenedor */
	vertical-align: middle;
}
.text-truncate:hover::after {
	content: attr(title);
	position: absolute;
	background-color: #000;
	color: #fff;
	padding: 5px;
	border-radius: 3px;
	white-space: nowrap;
	z-index: 1000;
	top: -5px;
	left: 105%; /* Posiciona el tooltip a la derecha del texto truncado */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
/*Cursor*/
.pointer {
	cursor: pointer;
}
.move {
	cursor: move;
}
.se-resize {
	cursor: se-resize;
}
/*Bordes*/
.b-dotted {
	border: 1px dotted gray;
}
/*Textos*/
.italic {
	font-style: italic;
}
.bold {
	font-weight: bold;
}
.custom-file-input::-webkit-file-upload-button {
	visibility: hidden;
}
.custom-file-input::before {
	content: 'Cargar';
	display: inline-block;
	background: #0a2472 !important;
	border-radius: 3px;
	padding: 5px 8px;
	outline: none;
	white-space: nowrap;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	color: #fff;
	font-weight: 700;
	font-size: 10pt;
}
.custom-file-input:hover::before {
	border-color: black;
}
.custom-file-input:active::before {
	background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}
.text-two-line {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.loading-animate {
	position: relative;
	min-height: 50px; /* Ajusta según el contenido */
}

.loading-animate::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-top-color: #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	pointer-events: none; /* Permite que los clics pasen al contenido debajo */
	z-index: 10;
}

.loading-animate-big {
	position: relative;
	min-height: 80px;
}

.loading-animate-big::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	border: 6px solid rgba(0, 0, 0, 0.1);
	border-top-color: #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	transform: translate(-50%, -50%);
	z-index: 10;
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/*-------------- Especificos --------------*/
#app-name {
	font-size: 17px;
	color: #fff;
	font-weight: 300;
	margin-top: 12px;
	margin-left: 1em;
}

/*Mensajes*/
.msg-error {
	display: block;
	margin-top: 5px;
	padding: 5px;
	color: #383838;
	background-color: #f2dede;
}
/*Menus*/
.menuDinamico ul li {
	text-align: justify;
}
/*Alineacion y colores breadcrumb boton actualizar y ruta*/
div#ribbon {
	border-bottom: 1px solid #cfcfcf;
	border-top: 1px solid #e6e6e6;
	background: #c7c7c7;
	min-height: 35px;
}
ol.breadcrumb {
	display: inline !important;
	vertical-align: super !important;
}
ol.breadcrumb li {
	color: #000 !important;
}
.breadcrumb > li + li:before {
	color: #000;
}
/*Botones*/
.btn-white {
	background-color: white;
	color: black;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-width: 1.4px;
	transition: All 0.5s ease;
	-webkit-transition: All 0.5s ease;
	-moz-transition: All 1s ease;
	-o-transition: All 1s ease;
}

button#bot2-Msg1 {
	background-color: #a6e1fa;
	color: #0a2472;
}
button.btn.btn-default.dropdown-toggle {
	min-width: 112px;
	z-index: 0;
}
.btn-shadow-orange {
	box-shadow: 0px 0px 7px 2px rgba(255, 152, 0, 0.79);
	-webkit-box-shadow: 0px 0px 7px 2px rgba(255, 152, 0, 0.79);
	-moz-box-shadow: 0px 0px 7px 2px rgba(255, 152, 0, 0.79);
}
/*Popover*/
h3.popover-title {
	color: #b94a48;
}
/* Centrar tablas */
.table-center {
	margin: auto;
}

.table-no-padding tbody tr td {
	padding: 0px !important;
	margin: 0px !important;
}

.hr-bottom {
	margin-top: 22px !important;
	margin-bottom: 0px !important;
}

.text-muted .hr {
	margin-top: 22px !important;
	margin-bottom: 0px !important;
	border: 0;
	color: #eee !important;
}

/*Data Tables*/
div.dataTables_length label {
	float: right !important;
}
div.dataTables_filter label {
	display: inline-flex !important;
}
div.dataTables_filter input {
	width: 100% !important;
}
ul.ColVis_collection {
	max-width: 100%;
}
.dataTable tbody tr {
	cursor: pointer;
}
/*Form Group*/
.form-group > .row > div {
	margin-bottom: 1em;
}
/*Opacidad elementos con disabled*/
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	opacity: 0.75;
	background-color: lightgray;
}
.page-footer {
	z-index: 10;
}
.btn[disabled].black {
	color: #000;
}
/*Estilos de la vista del icono*/
.icon-big h1 {
	font-size: 25px;
	display: block;
	text-align: center;
}
/*Estilos de la opción ver mas iconos*/
.optionBlue {
	color: mediumblue;
	float: right;
	cursor: pointer;
}
/*Estilos de la opción generica para ver mas registros*/
.optionBlue2 {
	color: mediumblue;
	cursor: pointer;
	margin-bottom: 0px;
}
/*Estilos de la vista de iconos*/
.icon-medium {
	font-size: 20px;
	display: block;
	text-align: center;
}
.input-icon {
	display: block;
	margin: auto !important;
}
.bb {
	border: 1px solid #dbdbdb;
	border-right: none !important;
	border-bottom: none !important;
}
.bb .col-md-1 {
	border-right: 0.1px solid #dbdbdb;
	border-bottom: 0.1px solid #dbdbdb;
	padding-top: 10px;
}
.break-word {
	white-space: pre-wrap;
	height: auto !important;
}
.border-danger {
	border-color: red !important;
}
.logo {
	width: 10em;
}
/*Estilos logo sede*/
#preview-logo-sede {
	width: 300px;
	height: 150px;
	overflow: hidden;
	margin: 15px auto;
	box-shadow: 0px 0px 2px gray;
}
/*Estilos foto tercero*/
#preview-foto-tercero {
	width: 85px;
	height: 113px;
	overflow: hidden;
	margin: 30px auto;
	box-shadow: 0px 0px 2px gray;
}
/*Estilos de los asteriscos de los label*/
.asterisk {
	color: #a9042a;
}
/*Estilos de los botones para subir imagenes*/
.btn-image-upload {
	margin-top: 23px;
}
.form-actions {
	margin-top: 0;
}

.dataTables_scrollBody::-webkit-scrollbar-track {
	border: 1px solid #bdbdbd;
	padding: 2px 0;
	background-color: #bdbdbd;
	cursor: pointer !important;
}

.dataTables_scrollBody::-webkit-scrollbar {
	width: 10px;
}

.dataTables_scrollBody::-webkit-scrollbar-thumb {
	border-radius: 7px;
	/*box-shadow: inset 0 0 6px rgba(0,0,0,.3); */
	background-color: #888;
	border: 1px solid #666;
}

.mayuscula {
	text-transform: uppercase;
}

/*----------------- select2 -----------------*/
.select2-results__options {
	max-height: 200px;
	overflow-y: auto;
}

.select2-results__option {
	cursor: pointer;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 1 !important;
	line-clamp: 1 !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.select2-selection__choice {
	max-width: 100%;
}

.select2-selection__choice__remove {
	background-color: #3276b1;
}

.text-placeholder {
	color: #eee;
}

.select2-results__option.select2-results__option--load-more,
.select2-results__option.loading-results {
	font-weight: bold;
}

.select2-container--disabled span.select2-selection.select2-selection--single {
	background-color: #f3f3f3;
}

.has-error span.select2-selection.select2-selection--single {
	border-color: #b94a48;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.select2 span.select2-selection.select2-selection--single {
	border-top: 0;
	border-left: 0;
	border-right: 0;
}

.select2 span.select2-selection__arrow {
	border-left: 0;
	width: auto;
	background-color: white;
}

.select2-dropdown.select2-dropdown--below {
	border-top: 1px solid #5d98cc;
}

.select2-search.select2-search--dropdown {
	margin-top: 5px;
}

.select2-results__option[aria-selected='true'] {
	display: none !important;
}
/*-------------- Media Queries --------------*/
/*Extra Small devices (portrait phones)*/
@media (max-width: 359.98px) {
	.botoneria div button {
		font-size: 10px;
		width: 80px;
	}
}
/*Small devices (portrait phones)*/
@media (max-width: 575.98px) {
	.dataTables_length select {
		display: inline-flex !important;
	}
	.dataTables_length select {
		width: 60px !important;
	}
}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {
	.dataTables_length select {
		display: inline-flex !important;
	}
}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
}
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
	.form-group > .row {
		margin-bottom: 1em;
	}
	.botoneria div {
		display: contents;
	}
}
/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
	.form-group > .row {
		margin-bottom: 1em;
	}
	.botoneria div {
		display: contents;
	}
	/*Estilos del modal generico*/
	#genericModal > .modal-dialog {
		min-width: 1200px !important;
	}
}

@media print {
	/* Clase para no imprimir cuando se imprime una hoja */
	.noMediaPrint {
		display: none;
	}

	.text-placeholder {
		color: #eee;
	}
}

/* Absolute Center Spinner */
.loading {
	position: fixed;
	z-index: 999;
	height: 2em;
	width: 2em;
	overflow: visible;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

/* Transparent Overlay */
.loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.15);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
	/* hide "loading..." text */
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.loading:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	-webkit-animation: spinner 1500ms infinite linear;
	-moz-animation: spinner 1500ms infinite linear;
	-ms-animation: spinner 1500ms infinite linear;
	-o-animation: spinner 1500ms infinite linear;
	animation: spinner 1500ms infinite linear;
	border-radius: 0.5em;
	-webkit-box-shadow: rgba(50, 190, 150, 0.75) 1.5em 0 0 0, rgba(50, 190, 150, 0.75) 1.1em 1.1em 0 0,
		rgba(50, 190, 150, 0.75) 0 1.5em 0 0, rgba(50, 190, 150, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0,
		rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(50, 190, 150, 0.75) 0 -1.5em 0 0, rgba(50, 190, 150, 0.75) 1.1em -1.1em 0 0;
	box-shadow: rgba(50, 190, 150, 0.75) 1.5em 0 0 0, rgba(50, 190, 150, 0.75) 1.1em 1.1em 0 0,
		rgba(50, 190, 150, 0.75) 0 1.5em 0 0, rgba(50, 190, 150, 0.75) -1.1em 1.1em 0 0, rgba(50, 190, 150, 0.75) -1.5em 0 0 0,
		rgba(50, 190, 150, 0.75) -1.1em -1.1em 0 0, rgba(50, 190, 150, 0.75) 0 -1.5em 0 0,
		rgba(50, 190, 150, 0.75) 1.1em -1.1em 0 0;
}

/*----------- Colores -----------**/

.text-black {
	color: #000 !important;
}

.text-white {
	color: #ffffff !important;
}

.text-blue-dark {
	color: #0a2472 !important;
}

.text-blue-light {
	color: #a6e1fa !important;
}

/* Animation */

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.glyphicon:hover {
	color: #4c6e4c;
}

/* boxModal */
#divSmallBoxes {
	z-index: 100001;
}
#divSmallBoxes .SmallBox .textoFull span i {
	color: #ad1111;
}

#divSmallBoxes .SmallBox .miniIcono {
	font-size: 14px;
}

#divSmallBoxes .SmallBox .miniIcono i {
	bottom: auto;
}

.well .form-actions {
	margin-left: -13px !important;
	margin-right: -13px !important;
	margin-bottom: -13px !important;
}
