@font-face {
    font-family: 'Montserrat';
    src: url('../fuentes/Montserrat-ExtraBold.ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fuentes/Montserrat-Bold.ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fuentes/Montserrat-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fuentes/Montserrat-Light.ttf');
    font-weight: 300;
    font-style: normal;
}

:root {

    --bg-gray-1: #F4F4F4;
    --bg-gray-2: #E8E8E8;
    --bg-gray-3: #AFAFAF;
    --bg-gray-4: #6C6C6C;
    --bg-gray-5: #343a40;

    --bg-1: #00A3CD;
    --bg-1-hover: #1082a3;
    --bg-2: #383838;
	--bg-3: #FB9583;

    --color-gray-1: #5D5D5D;
    --color-gray-2: #adadad;
    --color-gray-3: #E8E8E8;

    --color-1: #383838;
    --color-2: #6c757d;
}

.bg-gray-1 {
	background-color: var(--bg-gray-1);
}

.bg-gray-2 {
	background-color: var(--bg-gray-2);
}

.bg-gray-3 {
	background-color: var(--bg-gray-3);
}

.bg-gray-4 {
	background-color: var(--bg-gray-4);
}

.bg-gray-5 {
	background-color: var(--bg-gray-5)!important;/*se coloco important para los horarios consultorios*/
}

.bg-1 {
	background-color: var(--bg-1)!important;/*se coloco important para los horarios consultorios*/
}

.bg-2 {
	background-color: var(--bg-2);
}

.bg-3 {
	background-color: var(--bg-3);
}

.color-gray-1 {
	color: var(--color-gray-1);
}

.color-gray-2 {
	color: var(--color-gray-2);
}

.color-gray-3 {
	color: var(--color-gray-3);
}

.color-1 {
	color: var(--color-1)!important;
}

.color-2 {
	color: var(--color-2);
}

* {
	box-sizing: border-box;
	font-optical-sizing: auto;
	font-style: normal;
	outline: none!important;
	font-family: 'Montserrat';
	color: var(--color-1);
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
*::-webkit-scrollbar-thumb {
    background: rgba(50, 50, 50, 0.5);
}
*::-webkit-scrollbar-thumb:hover {
    background: rgba(50, 50, 50, 0.8);
}
*::-webkit-scrollbar-track {
    background: rgba(50, 50, 50, 0.1);
}

textarea {
	resize: none;
}

a {
	text-decoration: none!important;
	color: inherit;
} a:hover{
	color:inherit;
}

select {
	color: inherit;
}

.form-check-input {
	margin-top: 0px;
	vertical-align: middle;
	overflow: hidden;
	box-shadow: none!important;
	cursor: pointer;
	background-position: unset;
	width: 1.2em;
	height: 1.2em;
    background-color: transparent!important;
    /*transition: 0.3s;*/
}

.form-check-input:checked {
    border: 0px!important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2327a8ce' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked:hover {
	border: 1px solid #DEE2E6!important;
}

.form-check-input:focus {
    border-color: var(--bg-2)!important;
}

.form-check-input:focus:not(:checked) {
    border-color: #DEE2E6!important;
}

.form-check-input:not(:checked):hover {
    border: 1px solid var(--bg-2)!important;
}

/*:::::::::::::::::::::::::::::::::::::::::::MENU::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

#menu {
	width: 250px;
	background-color: var(--bg-1);
	height: 100vh;
	position: absolute;
	z-index: 10;
	animation-duration: 0.20s;
	overflow-y: auto;
	/*border: 2px solid red;*/
}

.modulo-menu {
    background-color: transparent;
    color: #f0f0f0;
}

.modulo-menu.active {
	background-color: rgba(241, 246, 251, 0.2);
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 20px 20px 0px 0px!important;
}

.modulo-menu.active.collapsed {
	border-radius: 20px!important;
}

.modulo-menu::after {
    transform: scale(0.7);
    transition: transform 0.3s;
}

.modulo-menu:not(.collapsed)::after {
    transform: scale(0.7) rotate(-180deg);
}

.modulo-menu::after {
    filter: brightness(0) invert(1);
    transform: scale(0.7);
}

.submodulo-menu.active, .submodulo-menu:hover {
	background-color: rgba(241, 246, 251, 0.1);
	border-radius: 15px!important;
}

.accordion-submodulo-menu {
    background-color: transparent;
    color: #f0f0f0;
}

.accordion-submodulo-menu.active {
    background-color: rgba(241, 246, 251, 0.1);
    border-radius: 0px 0px 20px 20px!important;
}

.accordion-submodulo-menu a::before {
    content: "•";
    color: white;
    font-size: 1.2em;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}

#menu-modulos .accordion-collapse.show {
	border-radius: 0px 0px 20px 20px!important;
}
















#aplicacion {
	/*border: 2px solid blue;*/
	width: calc(100% - 250px);
	overflow: hidden;
}

#header {
	/*border: 2px solid green;*/
	height: 45px;
}

#contenedor-app {
	height: calc(100vh - 45px);
	overflow-y: auto;
}
#contenedor-app::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
#contenedor-app::-webkit-scrollbar-thumb {
    background: rgba(125,125,125,0.4);
}
#contenedor-app::-webkit-scrollbar-thumb:hover {
    background: rgba(125,125,125,0.6);
}
#contenedor-app::-webkit-scrollbar-track {
    background: rgba(0,0,0,0);
}

#body-app {
	min-height: calc(100vh - 95px);
}

.pestanas {
	overflow-x: auto;
}

.pestanas .nav {
	border-bottom: 0px!important;
}

.pestanas .nav-link {
	padding: 12px 20px 0px 20px;
	cursor: pointer;
	color: white;
	transition: none;
	font-weight: bold;
}

.pestanas .nav-link:not(.active):hover {
	background-color: var(--bg-gray-2);
	border-radius: 16px 16px 0px 0px;
	color : var(--color-1);
}

.pestanas .nav-link.active {
	background-color: var(--bg-gray-1);
	padding: 14px 30px 0px 30px;
	border-radius: 16px 16px 0px 0px;
	color : var(--color-1);
	border-bottom: 1px solid var(--bg-gray-1);
}

footer {
	height: 50px;
	font-size: 8px;
}

footer > .row {
	width: calc(100% + 3.5rem);
	margin: 0px -1.75rem 0px -1.75rem;
	border: 1px solid #E8E8E8;
	border-bottom: 0px;
}

.loader {
	position: absolute;
	width: 100%;
	height: 100vh;
	z-index: 11;
}

.imagen-perfil {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
	background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.imagen-perfil > .default-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


/*::::::::::::::::::::::::::::::::::::::::::CAMPOS:::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/


.form-control, .form-control-sm {
	width: 100%;
	font-size: 13px!important;
	outline: none!important;
	box-shadow: none!important;
	color: inherit;
	border-radius: 18px!important;
	transition: 0.3s;
	height: 32px!important;
}

.form-control-sm {
	font-size: 11px!important;
	border-radius: 13px!important;
	height: 26px!important;
}

.form-control:focus, .form-control-sm:focus {
	border: 1px solid var(--color-1)!important;
	color: var(--color-1)!important;
}

.form-control::-webkit-input-placeholder, .form-control-sm::-webkit-input-placeholder {
	color: rgba(100,100,100,0.3) !important;
}

.form-control-transparent {
	background-color: transparent!important;
	border: 1px solid transparent!important;
}

.input-filtro {
	border: 1px solid #efefef!important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

.form-label {
	position: relative;
	font-size: 12px;
	padding-bottom: 13px;
	margin-bottom: 9px;
}

.form-label > label.error {
	width: 100%;
	color: rgb(220, 53, 69);
	font-size: 9px;
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: absolute;
    bottom: 0;
}

.form-label > .select2~label.error {
	left: 10px;
	margin-bottom: 1px;
}

.label {
	line-height: 13px;
	display: block;
	cursor: pointer;
}

.label > p {
	display: inline;
	margin-bottom: 0px;
	padding-top: 5px;
}

/*:::::::::::::::::::::::::::::::::::::::::COLORES:::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/




/*:::::::::::::::::::::::::::::::::::::::::BOTONES:::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.btn {
	height: 32px;
	font-size: 13px;
	border-radius: 16px;
	padding: 1px 15px 0px 15px;
	min-width: 32px;
}

.btn-primary {
	color: white!important;
	background-color: var(--bg-1)!important;
	border: 1px solid var(--bg-1)!important;
}

.btn-primary:active {
	background-color: var(--bg-1-hover)!important;
	border: 1px solid var(--bg-1-hover)!important;
}

.btn-primary:hover {
	background-color: var(--bg-1-hover)!important;
	border: 1px solid var(--bg-1-hover)!important;
}

.btn-info {
	color: white!important;
	background-color: #FB9583!important;
	border: 1px solid #FB9583!important;
}

.btn-info:hover {
	background-color: #fe8975!important;
	border: 1px solid #fe8975!important;
}

.btn-info:active {
	background-color: #fe7760!important;
	border: 1px solid #fe7760!important;
}

.btn-dark {
	color: white!important;
	background-color: #436080!important;
	border: 1px solid #436080!important;
}

.btn-dark:active {
	background-color: #375a81!important;
	border: 1px solid #375a81!important;
}

.btn-dark:hover {
	background-color: #285381!important;
	border: 1px solid #285381!important;
}

.btn-light {
	color: white!important;
	background-color: transparent!important;
	border: 1px solid white!important;
}

.btn-light:active, .btn-light.active {
	color: #436080!important;
	background-color: white!important;
	border: 1px solid white!important;
}

.btn-light:hover {
	color: #436080!important;
	background-color:  white!important;
	border: 1px solid white!important;
}

.btn-sm {
	height: 26px;
	font-size: 11px;
	border-radius: 13px;
	padding: 1px 15px 0px 15px;
}






/*::::::::::::::::::::::::::::::::::::::::::MODALS:::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.modal-backdrop {
	background-color: transparent;
}

.modal {
	background-color: rgba(0,0,0,0.5);
}

.modal::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
/*.modal::-webkit-scrollbar-thumb {
    background: rgba(50, 50, 50, 0.5);
}
.modal::-webkit-scrollbar-thumb:hover {
    background: rgba(50, 50, 50, 0.8);
}
.modal::-webkit-scrollbar-track {
    background: rgba(0,0,0,0);
}*/

.modal-dialog {
	width: none;
	max-width: none;
	animation-duration: 0.35s;
}

.modal-header {
	height: 50px;
	border-radius: 25px 25px 0px 0px;
}

.modal-content {
	background-color: transparent;
	/*max-height: calc(100vh - 50px);*/
}

.modal-footer {
	border-radius: 0px 0px 25px 25px;
}

.modal-body {
	overflow-y: auto;
	/*border: 1px solid red!important;*/
	max-height: calc(100vh - 165px);
}

.cerrar-modal {
	width: 50px;
	height: 50px;
	color: rgb(220, 53, 69);
	text-align: center;
	font-size: 16px;
	cursor: pointer;
	padding-top: 17px;
}

.cerrar-modal:hover {
	color: white;
	border-radius: 0px 25px 0px 0px;
	background-color: rgba(220, 53, 6, 0.7);
}

.col-section {
	overflow-y: auto;
	max-height: calc(100vh - 165px);
}





























/*:::::::::::::::::::::::::::::::::::::::DATATABLES::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

	table.dataTable.no-footer {
		border-top: 0px;
		border-bottom: 1px solid var(--bg-2);
	}

	.thead-datatables tr th {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .table thead {
    	font-size: 14px;
    }

    .table th {
    	text-align: left;
    	padding-left: 10px!important;
    	padding-right: 10px!important;
    	font-weight: 600!important;
    	white-space: nowrap;
	    text-overflow: ellipsis;
	    overflow: hidden;
	    font-size: 12px;
    }

    .dataTable thead tr th{
		border-bottom: 1px solid var(--bg-2);
		border-top: 0px!important;
	}

	.dataTable tbody tr td{
		border-top:0px;
	}

    .dataTables_scrollBody {
    	min-height: calc(100vh - 209px - 2rem);
    	border: 0px!important;
    }

    .dataTables_scrollBody::-webkit-scrollbar {
	    width: 6px;
	    height: 6px;
	}
	.dataTables_scrollBody::-webkit-scrollbar-thumb {
	    background: rgba(125,125,125,0.3);
	}
	.dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
	    background: rgba(125,125,125,0.5);
	}
	.dataTables_scrollBody::-webkit-scrollbar-track {
	    background: rgba(0,0,0,0);
	}

    .dataTables_filter {
    	float: right;
    }

    .dataTables_filter label input {
    	width: 200px;
    	outline: none!important;
    }

    #contenedor-filtrado {
    	width: 50px;
    }

    .dataTables_filter label i {
    	cursor: pointer;
    	margin-left: 5px;
    }

    .dataTables_filter label input::-webkit-input-placeholder{
    	font-weight: 400;
    	color: #E8E8E8!important;
    }

    .dataTables_length{
    	font-size: 10px;
    	font-weight: 500;
    	width: 50px;
    }

    .mostrar-datatables {

		font-size: 10px;
		font-weight: 500;
    }

    .dataTables_length label select{
    	background-color: rgba(0,0,0,0);
    	border: 0px;
    	cursor: pointer;
    	outline: none;
    }

    .dataTables_length label select option{
    	color: rgba(30,30,30,1);
    }

    td, th {
    	line-height: 14px;
    	font-size: 12px;
    	font-weight: 500!important;
    	vertical-align: middle!important;
    	border: 0px!important;
    	border-left: 1px solid #E8E8E8!important
    }

    .icono-tabla{
    	width: 15px;
    	display: inline-block!important;
    	margin-right: 5px;
    }

    .odd{
		background-color: rgba(150,150,140,0.2)!important;
    }.odd:hover{
    	background-color: rgba(150,150,140,0.3)!important;
    }

    .even{
    	background-color: rgba(0,0,0,0)!important;
    }.even:hover{
    	background-color: rgba(150,150,140,0.3)!important;
    }

    .reportes-datatables i{
    	cursor: pointer;
    	padding:0px 8px 0px 8px;
    }

/*::::::::::::::::Paginador datatables::::::::::::::*/

	.dataTables_info {
		font-size: 12px;
		padding-top: 14px!important;
	}

	.dataTables_paginate {
		font-size: 14px;
		padding: 5px 0px 5px 0px!important;
	}

	.paginate_button.previous, .paginate_button.next {
		border-radius: 18px!important;
		text-align: center;
		height: 36px;
	}

	.paginate_button:not(.previous, .next) {
		width: 36px;
		height: 36px;
		border-radius: 18px!important;
		padding-left: 0px!important;
		padding-right: 0px!important;
		text-align: center;
	}

	.dataTables_paginate span .current {
		background: linear-gradient(to bottom, var(--bg-1) 0%, var(--bg-1) 100%)!important;
		border: 1px solid rgba(0,0,0,0)!important;
		color: white!important;
		font-weight: bold;
		outline: none!important;
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
		color: white!important;
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button.current {
		color: white!important;
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
		background: linear-gradient(to bottom, var(--bg-1) 0%,var(--bg-1) 100%)!important;
		border: 1px solid rgba(0,0,0,0)!important;
		color: white!important;
		outline: none!important;
	}

	.paginate_button.disabled {
		background-color: #E8E8E8!important;
	}

	.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover{
		background: linear-gradient(to bottom, #dcdcdc 0%, #dcdcdc 100%)!important;
	}

	.dataTables_scrollHead {
		border: 1px solid #E8E8E8!important;
		background: white!important;
		border-radius: 20px 20px 0px 0px !important;
	}

	.dataTables_scrollBody {
		border: 1px solid #E8E8E8!important;
		border-top: 0px!important;
		border-radius: 0px 0px 20px 20px!important;
	}

	.dataTables_scrollHeadInner > .table > thead > tr > th {
		font-weight: bold!important;
	}

	.dataTables_scroll {
		overflow: hidden;
		border-radius: 20px;
	}

	.dt-buttons {
		display: none;
	}

	tr.selected > td {
		background-color: var(--bg-2)!important;
		color: white;
	}

	.table tr th:first-child, .table tr td:first-child {
	    border-left: 0px!important;
	}

	.select-info {
		display: none;
	}

	/*TABLAS NORMALES*/

	.no-datatables {
		border-radius: 20px!important;
		/*overflow: hidden;*/
	}

	.no-datatables th {
		padding: 10px 10px!important;
	}

	.no-datatables td {
		padding: 8px 10px!important;
	}

	.no-datatables-sm td {
		padding: 0px 5px!important;
		font-size: 10px!important;
	}

	.table.no-datatables th {
	}

	.table.no-datatables th:first-child {
		border-radius: 20px 0px 0px 0px!important;
		border: 1px solid #E8E8E8!important;
	}

	.table.no-datatables th:last-child {
		border-radius: 0px 20px 0px 0px!important;
	}

	.contenedor-table-responsive {
		overflow: hidden;
		border-radius: 20px!important;
	}

	/*TABLAS FIJAS*/

	.fixed-header-table {
		position: relative;
		overflow: auto;
		max-height: calc(100vh - 140px)
	}

	.fixed-header-table-md {
		max-height: calc(100vh - 300px)
	}

	.fixed-header-table-sm {
		max-height: calc(100vh - 400px)
	}
	
	.fixed-header-table thead th {
		position: sticky;
		top: 0;
		background-color: white;
		z-index: 8;
	}
	
	.fixed-column {
		position: sticky;
		left: 0;
		background-color: white;
		z-index: 5;
	}
	
	.fixed-header-table .fixed-column:first-child {
		z-index: 7;
	}

	.fixed-header-table thead .fixed-column:first-child {
		z-index: 9!important;
	}


/*::::::::::::::::::::::::::::::::::::::::SELECT 2:::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

	.select2, .select2-container, .select2-container--default, .select2-container--below, .select2-container--open {
		border-radius: 0px 0px 5px 0px;
		display: block!important;
	}

	.select2-selection__rendered {
	    background-color: rgba(220,220,180,0);
	    border:0px;
	    height: 32px;
	    padding: 0px;
	}
	.select2-container--default, .select2-selection--single{
		background-color: white !important;
		border-radius: 18px !important;
		border: 1px solid var(--bs-border-color)!important;
		box-sizing: border-box !important;
		box-shadow: 0px 0px 8px rgba(200, 200, 200, 0.1) !important;
	    height: 32px;
	    padding: 0px;
	}

	.select2-multiple ~ .select2-container.select2-container--default {
		height: auto!important;
		
	}

	.select2-multiple ~ .select2-container.select2-container--default .select2-selection.select2-selection--multiple {
		padding-bottom: 10px;
    	padding-right: 7px;
	}

	.select2-container--disabled {
		background-color: #e9ecef!important;
	}

	.select2-container--open {
		border-radius: 18px 18px 0px 0px !important;
	}
	.label-campo-filtro > .select2-container--default, .label-campo-filtro > .campo {
		height: 30px!important;
		margin-top: -4px;
	}
	.select2-selection, .select2-selection--single, .select2-selection__rendered{
	    border: 0px!important;
	    background-color: transparent!important;
	    height: 33px!important;
	    line-height: 25px!important;
	    font-weight: 500!important;
	    font-size: 13px!important;
	    color: var(--color-1)!important;
	    padding-top: 2px;
	}

	.select2-selection__choice {
		background-color: var(--bg-gray-5)!important;
		border-color: var(--bg-gray-5)!important;
		border-radius: 16px!important;
		/* height: 32px!important; */
		margin-left: 10px!important;
    	margin-top: 11px!important;
    	padding-left: 15px!important;
    	padding-right: 15px!important;
		white-space: normal!important;
		font-size: 10px!important;
	}

	.select2-selection__choice__remove {
		background-color: rgb(220, 53, 69)!important;
		border-right: 0px!important;
		height: 32px!important;
		top: -1px!important;
		padding: 0px 6px 0px 4px!important;
		left: auto!important;
		right: 0px!important;
		border-radius: 0px!important;
		display: none;
	}

	.select2-selection__choice:hover .select2-selection__choice__remove {
		display: block;
	}


	.select2-multiple ~ .select2-container.select2-container--default .select2-search__field {
		border: 1px solid var(--bs-border-color)!important;
		width: calc(100% - 13px)!important;
		height: 32px!important;
		margin-top: 10px!important;
    	margin-left: 10px!important;
    	padding-top: 3px!important;
	}

	.select2-multiple ~ .select2-container.select2-container--default .select2-search__field:focus {
		border: 1px solid var(--color-1)!important;
	}

	.select2-selection__choice__remove span {
		color: white!important;
		font-size: 16px;
	}

	.select2-selection__choice__display {
		height: 31px!important;
		padding-top: 3px!important;
		display: inline-block!important;
    	color: white!important;
    	margin-left: 13px!important;
	}

	.select2-container--default .select2-selection--multiple .select2-selection__choice::before {
	    content: '';
	    position: absolute;
	    left: 16px;
	    top: 13px;
	    transform: translateY(-50%) rotate(45deg);
	    width: 5px;
	    height: 7.5px;
	    border-right: 2.3px solid white;
	    border-bottom: 2.3px solid white;
	}

	.select2-selection__arrow {
	    height: 30px!important;
	}
	.select2-selection__arrow b {
	    border-color: var(--color-1) transparent!important;
	}
	.select2-dropdown, .select2-dropdown--below {
		overflow: hidden;
	}
	.select2-results__option, .select2-results__option--selectable {
	    background-color: white!important;
	    color: var(--color-1)!important;
	}
	.select2-search__field, .select2-search__field:focus {
	    font-size: 12px;
	    border-color: var(--color-1)!important;
	    border-radius: 15px;
	    padding-left: 8px!important;
	    padding-top: 5px!important;
	    height: 32px;
	}

	.select2-results__option, .select2-results__message{
	    color: var(--color-1)!important;
	    font-weight: 500!important;
	    font-size: 12px!important;
	}
	.select2-results__option--selected{
	    background-color: var(--bg-gray-5)!important;
	    color: white!important;
	}
	.select2-dropdown, .select2-dropdown--below{
		border-top:0px!important;
		margin-left: -1px!important;
		margin-top: -1px!important;
		background-color: white!important;
	    border: 1px solid var(--bs-border-color)!important;
		border-radius: 0px 0px 18px 18px !important;
	    box-shadow: 0px 0px 8px rgba(200, 200, 200, 0.2) !important;
	}

	.select2-dropdown--above {
		border-radius: 18px 18px 0px 0px !important;
	}

	.select2-container--above.select2-container--open {
		border-radius: 0px 0px 18px 18px !important;
	}

	.select2-results__options::-webkit-scrollbar {
	    width: 6px;
	    height: 6px;
	}

	.select2-results__options::-webkit-scrollbar-thumb {
	    background: rgba(125,125,125,0.3);
	}

	.select2-results__options::-webkit-scrollbar-thumb:hover {
	    background: rgba(125,125,125,0.5);
	}

	.select2-results__options::-webkit-scrollbar-track {
	    background: rgba(0,0,0,0);
	}

	.select2-results__option:hover, .select2-results__option--selectable:hover, .select2-results__option--selected:hover{
	    background-color: var(--bg-gray-5)!important;
	    color: white!important;
	}

	.label-campo-select2-multiple > .select2-container--default {
		height: auto!important;
	}

	.select2-selection--multiple {
		height: auto!important;
	}

	.form-control-sm + .select2-container {
		height: 26px!important;
		font-size: 11px!important;
	}

	.form-control-sm + .select2-container .select2-selection--single,
	.form-control-sm + .select2-container .select2-selection__rendered,
	.form-control-sm + .select2-container .select2-selection__arrow {
		height: 24px!important;
		font-size: 11px!important;
		padding-top: 0px!important;
	}

	th >.form-control-sm + .select2-container .select2-selection__rendered {
		color: rgba(100,100,100,0.4) !important;
	}

	th >.form-control-sm.select-filtro + .select2-container {
		border: 1px solid #efefef!important;
	}

	.select2.rounded-end-0 + .select2-container {
		border-top-right-radius: 0 !important;
		border-bottom-right-radius: 0 !important;
	}

	.select2.rounded-start-0 + .select2-container {
		border-top-left-radius: 0 !important;
		border-bottom-left-radius: 0 !important;
	}


/*:::::::::::::::::::::::::::::::::CLASES PERSONALIZADAS:::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.imagen-tabla {
	height: 50px;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.pointer {
	cursor: pointer;
}

.nowrap {
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.text-break {
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: break-word;
    overflow: hidden;
}

.h7 {
	font-size: 0.75rem;
	line-height: 1.2;
}

.h8 {
	font-size: 0.6rem!important;
	line-height: 1.2;
}

.h9 {
	font-size: 0.45rem!important;
	line-height: 1;
}

.h10 {
	font-size: 0.3rem!important;
	line-height: 1;
}

.w-220px {
	width: 220px!important;
	max-width: 220px!important;
	min-width: 220px!important;
}

.w-120px {
	width: 120px!important;
	max-width: 120px!important;
	min-width: 120px!important;
}

.w-110px {
	width: 110px!important;
	max-width: 110px!important;
	min-width: 110px!important;
}

.w-100px {
	width: 100px!important;
	max-width: 100px!important;
	min-width: 100px!important;
}

.w-90px {
	width: 90px!important;
	max-width: 90px!important;
	min-width: 90px!important;
}

.w-80px {
	width: 80px!important;
	max-width: 80px!important;
	min-width: 80px!important;
}

.w-70px {
	width: 70px!important;
	max-width: 70px!important;
	min-width: 70px!important;
}

.w-60px {
	width: 60!important;
	max-width: 60!important;
	min-width: 60!important;
}

.w-50px {
	width: 50px!important;
	max-width: 50px!important;
	min-width: 50px!important;
}

.h-60px {
	height: 60px!important;
	max-height: 60px!important;
	min-height: 60px!important;
}

.tooltip, .tooltip-inner {
	border-radius: 20px!important;
}

.border-dashed {
	border-style: dashed!important;
}


/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::RESPONSIVE:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::  SM  ::::::::::::::::::::::::::::::::::::::::::*/


	@media (min-width: 576px) {
		.dataTables_filter label input {
			width: 150px;
		}
	}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::  MD  ::::::::::::::::::::::::::::::::::::::::::*/


	@media (min-width: 768px) {
		
	}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::  LG  ::::::::::::::::::::::::::::::::::::::::::*/


	@media (min-width: 992px) {
		#menu {
			position: relative;
		}
	}


/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::  XL  ::::::::::::::::::::::::::::::::::::::::::*/


	@media (min-width: 1200px) {
		
	}









/*LOGIN*/

#login-section {
	position: relative;
	width: 100vw;
	height: 100vh;
	z-index: 3;
	background-color: #00A3CD;
}