html {
	scroll-behavior: smooth;
}

:root {
	--form-line-color: #92c0b7;
	--color-danger: #ed5565;
	--primary-color: #1ab394;
	--blue-dbc-primary: #293846;
	--blue-dbc-secondary: #2f4050;
	--color-lightgrey: rgb(218, 216, 216);
	--color-light: #eee;
	--color-bluelight: #55d7f8;
}

input[type='number'].form-data {
	text-align: right;
}

textarea.form-data {
	resize: vertical;
}

body::-webkit-scrollbar {
	-webkit-appearance: none;
}

body::-webkit-scrollbar:vertical {
	width: 5px;
	background: #f3f3f4;
}

body::-webkit-scrollbar-button:increment,
body::-webkit-scrollbar-button {
	display: none;
}

body::-webkit-scrollbar:horizontal {
	height: 10px;
}

body::-webkit-scrollbar-thumb {
	background-color: #a7a7a7;
	border-radius: 20px;
	/* border: 1px solid #f1f2f3; */
}

body::-webkit-scrollbar-track {
	border-radius: 10px;
}

.border-none {
	border: none !important;
}

/* MODAL PERSONALIZADO */
.content-modal {
	background: rgba(0, 0, 0, 0.2);
	position: absolute;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3000;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.content-modal .modal-container {
	position: relative;
	background: white;
	width: 40%;
	height: 90%;
	border-radius: 15px;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	transition: 0.3s all;
}

.content-modal .modal-container.modal-container-sm {
	height: 60%;
}

.content-modal .modal-container.modal-container-md {
	width: 55%;
}

.content-modal .modal-container .modal-header {
	position: relative;
	min-height: 9.5%;
	background: #16987e;
	border-top-left-radius: inherit;
	border-top-right-radius: inherit;
	display: flex;
	align-items: center;
}

.content-modal .modal-container .modal-header .dismiss-modal {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	color: rgb(194, 191, 191);
}

.content-modal .modal-container .modal-header .dismiss-modal:hover {
	color: #eee;
}

.content-modal .modal-container .modal-body {
	position: absolute;
	height: 80.5%; /*79%;*/
	width: 100%;
	overflow-y: auto;
}

.content-modal .modal-container .modal-body .title {
	border-bottom: solid 1px #c4c4c4;
}

.content-modal .modal-container .modal-body::-webkit-scrollbar {
	-webkit-appearance: none;
}

.content-modal .modal-container .modal-body::-webkit-scrollbar:vertical {
	width: 5px;
	background: #eee;
}

.content-modal .modal-container .modal-body::-webkit-scrollbar-button:increment,
.content-modal .modal-container .modal-body::-webkit-scrollbar-button {
	display: none;
}

.content-modal .modal-container .modal-body::-webkit-scrollbar:horizontal {
	height: 10px;
}

.content-modal .modal-container .modal-body::-webkit-scrollbar-thumb {
	background-color: #a7a7a7;
	border-radius: 20px;
}

.content-modal .modal-container .modal-body::-webkit-scrollbar-track {
	border-radius: 10px;
}

.content-modal .modal-container .modal-footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	/* max-height: 10%; */
	background: #16987e;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

@media (max-width: 1200px) {
	.content-modal .modal-container {
		width: 50%;
	}

	.content-modal .modal-container.modal-container-md {
		width: 70%;
	}
}

@media (max-width: 1050px) {
	.content-modal .modal-container {
		width: 60%;
	}

	.content-modal .modal-container.modal-container-md {
		width: 80%;
	}
}

@media (max-width: 900px) {
	.content-modal .modal-container {
		width: 70%;
	}

	.content-modal .modal-container.modal-container-md {
		width: 90%;
	}
}

@media (max-width: 762px) {
	.content-modal .modal-container {
		width: 80%;
	}

	.content-modal .modal-container.modal-container-md {
		width: 100%;
		height: 100%;
		border-radius: 0
	}

	.content-modal .modal-container.modal-container-md .modal-header {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.content-modal .modal-container {
		width: 90%;
	}
}

@media (max-width: 540px) {
	.content-modal .modal-container {
		width: 100%;
		height: 100%;
		border-radius: 0;
	}

	.content-modal .modal-container .modal-header {
		justify-content: center;
	}
}

/* :: PADDING :: */
.p-0 {
	padding: 0;
}

.p-1 {
	padding: 1rem !important;
}

.p-2 {
	padding: 2rem !important;
}

.p-4 {
	padding: 4rem !important;
}

.pt-1 {
	padding-top: 1rem !important;
}

.pt-2 {
	padding-top: 2rem !important;
}

.pl-0 {
	padding-left: 0;
}

.pl-1 {
	padding-left: 1.4rem;
}

.pr-0 {
	padding-right: 0;
}

.pr-1 {
	padding-right: 1.4rem;
}

.pb-1 {
	padding-bottom: 1rem !important;
}

/* :: MARGIN :: */
.m-0 {
	margin: 0;
}

.m-1 {
	margin: 1rem !important;
}

.m-2 {
	margin: 2rem !important;
}

.mt-1 {
	margin-top: 1rem !important;
}

.mb-1 {
	margin-bottom: 1rem !important;
}

.mt-2 {
	margin-top: 2rem;
}

.mb-2 {
	margin-bottom: 2rem;
}

.mb-4 {
	margin-bottom: 4rem;
}

.text-light {
	color: #eee;
}

.d-none {
    display: none !important;
}

#menu-options .btn-float-action span {
	display: none;
}

#menu-options .btn-float-action:hover span {
	display: inline-block;
}

@media (max-width: 860px) {
	.d-none-md {
		display: none;
	}

	.btn-option:hover span {
		display: inline-block;
	}
}

/* :: TABLE RESULTS :: */
#table-results .title-th {
	position: absolute;
	z-index: 2;
}

#table-results .title-th span {
	position: relative;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(2, auto);
}

#table-results .title-th button {
	/* position: absolute; */
	/* top: 0;
    right: 0; */
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: end;
	align-items: center;
	background: transparent;
	border: none;
	font-size: 1.5rem;
	/* background: blue; */
	margin: 0;
}

#table-results .order-by {
	transition: 0.3s all;
	position: relative;
}

#table-results .active {
	background: rgb(230, 230, 230);
}

#table-results .title-th.active button {
	color: #1ab394;
}

#table-results .order-by:hover {
	background: rgb(230, 230, 230);
	cursor: pointer;
}

#table-results .order-by-null {
	cursor: not-allowed;
	position: relative;
	transition: 0.5s;
}

#table-results .order-by-null:hover:after {
	transition: 0.5s;
	font-family: 'FontAwesome';
	font: normal normal normal 14px/1 FontAwesome;
	font-weight: 900;
	content: '\f071\ Campo Inactivo';
	font-size: 12px;
	position: absolute;
	top: 0;
	left: -100px;
	width: 110px;
	padding: 5px;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.3);
	background: rgb(253, 253, 253);
	color: rgb(80, 80, 80);
	border-radius: 10px;
}

#table-results .btn-order {
	font-size: 1.5rem;
	margin-top: 2px;
	color: inherit;
	opacity: 1;
}

#table-results .input-table {
	border-radius: 1rem;
	height: 2rem;
	font-size: 1.3rem !important;
	color: grey;
	padding-left: 3px;
}

.wrapper #content-view-more {
	/* border: solid 1px; */
	min-height: 35px;
}

.btn-options {
	padding: 0 3px;
}

#content-btn-fixed {
	min-height: 35px;
}

.content-menu-options .menu-options {
	/* border: solid 1px; */
	min-width: 10rem;
	min-height: 4rem;
	border-radius: 3px;
	box-shadow: 0px 0px 10px 0px rgba(33, 33, 33, 0.3);
	background: #fff;
	padding: 1rem;
}

/* :: TABLE SCROLL :: */
.table-scroll {
	position: relative;
	width: 100%;
	z-index: 1;
	margin: auto;
	overflow: auto;
	max-height: 80vh;
  	scrollbar-color: #a7a7a7; /* Firefox */
}

.table-scroll::-webkit-scrollbar {
	-webkit-appearance: none;
}

.table-scroll::-webkit-scrollbar:vertical {
	width: 5px;
	height: 5px;
	background: #eee;
}

.table-scroll::-webkit-scrollbar-button:increment,
.table-scroll::-webkit-scrollbar-button {
	display: none;
}

.table-scroll::-webkit-scrollbar:horizontal {
	width: 5px;
	height: 5px;
	background: #eee;
}

.table-scroll::-webkit-scrollbar-thumb {
	background-color: #a7a7a7;
	border-radius: 20px;
}

.table-scroll::-webkit-scrollbar-track {
	border-radius: 20px;
}

.table-scroll table {
	width: 100%;
	min-width: 80%;
	margin: auto;
}

.table-scroll thead {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 2;
}

.table-scroll .tr-search {
	background: #fff;
}

.table-scroll .table-head {
	text-wrap: nowrap;
	white-space: nowrap;
}

.table-scroll thead .table-head th:nth-child(-n+2),
.table-scroll thead .tr-search td:nth-child(-n+1),
.table-scroll tbody .item-tr td:nth-child(-n+2) {
	position: -webkit-sticky;
	position: sticky;
	z-index: 3;
	background: inherit;
}

.table-scroll thead .table-head th:nth-child(1),
.table-scroll thead .tr-search td:nth-child(1),
.table-scroll tbody .item-tr td:nth-child(1) {
	left: 0;
}

.table-scroll thead .table-head th:nth-child(2),
.table-scroll tbody .item-tr td:nth-child(2) {
	left: 73px;
}

.table-scroll tfoot tr {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 4;
}

/* :: RESULTS :: */
.results {
	color: rgb(126, 126, 126);
	font-weight: 500;
}

/* MENU CONTEXTUAL */
.contex-menu {
	position: absolute;
	width: 250px;
	min-height: 100px;
	border-radius: 3px;
	background-color: #fff;
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
	z-index: 2002;
}

.contex-menu .contex-header,
.contex-menu .contex-footer {
	padding: 1em;
}

.contex-menu .contex-header {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: var(--color-lightgrey);
}

.contex-menu .contex-body {
	padding: 0.5em;
}

.contex-menu .contex-footer {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	color: var(--color-lightgrey);
}

.contex-menu .contex-header {
	border-bottom: solid 1px #b8b7b7;
}

.contex-menu .contex-body {
	display: flex;
	justify-content: space-between;
	overflow: auto;
	min-height: 150px;
	max-height: 350px;
}

.contex-menu .contex-body .content-btn {
	width: 49%;
}

.contex-menu .contex-body .content-btn .col-title {
	margin-bottom: 10px;
	border-bottom: solid 1px var(--color-lightgrey);
	font-size: 0.9em;
}

.contex-menu .contex-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.contex-menu .contex-body ul li button {
	width: 100%;
	text-align: left;
	min-height: 25px;
	position: relative;
	background-color: #fff;
	border: solid 1px #fff;
	/* border-radius: 3px; */
	/* box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1); */
	transition: 0.3s;
	font-size: 0.9em;
	/* margin-bottom: 5px; */
}

.contex-menu .contex-body .content-btn ul li:first-of-type button {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.contex-menu .contex-body .content-btn ul li:last-of-type button {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.contex-menu .contex-body ul li button:hover {
	border: solid 1px var(--primary-color);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
}

.contex-menu .contex-body ul li button.active {
	border: solid 1px var(--primary-color);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
}

.contex-menu .contex-body ul li button i {
	position: absolute;
	top: 0;
	right: 5px;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 1.3em;
}

.contex-menu .contex-body ul li button.active i {
	color: var(--primary-color);
}

.hide-contex-menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 0px;
	height: 0px;
	/* background-color: #919191; */
}

.hide-contex-menu.show {
	width: 100%;
	height: 100%;
	/* background-color: #9191918f; */
	z-index: 2001;
}

.contex-menu .contex-footer {
	border-top: solid 1px #b8b7b7;
}

/* Buttons Exportar */
.content-btn-tools {
	display: flex;
	justify-content: end;
	align-items: flex-end;
}

.dropdown-menu li a {
	transition: 0.3s all;
	color: rgb(104, 104, 104);
}

.dropdown-menu li a:hover {
	background: var(--blue-dbc-secondary);
	color: var(--color-light);
	font-size: 1.1em;
}

/* Display */
.d-flex {
	position: relative;
	display: flex !important;
}

.fd-column {
	flex-direction: column !important;
}

.d-flex.justify-content-center {
	display: flex;
	justify-content: center !important;
}

.d-flex.align-items-center {
	align-items: center;
}

/* Content */
#page-content {
	position: relative;
	margin-top: 60px;
	/* min-width: 140px; */
}

/* Navbar */
.navbar-static-side {
	background: var(--blue-dbc-secondary);
}

body.body-small.pace-done .content-navbar {
	width: 100%;
}

body.body-small.pace-done.mini-navbar .content-navbar {
	width: calc(100% - 70px);
}

.content-navbar {
	background-color: var(--blue-dbc-secondary);
	position: absolute;
	position: fixed;
	top: 0;
	width: 100%;
	right: 0;
	z-index: 2003;
	transition: 0.4s all;
	padding: 0 10px;
}

body.pace-done .content-navbar {
	width: calc(100% - 220px);
}

body.mini-navbar .content-navbar {
	width: calc(100% - 70px);
}

@media (orientation: landscape) {
	.content-navbar {
		width: calc(100% - 220px);
	}
}

@media (orientation: portrait) {
	.content-navbar {
		width: 100%;
	}
}

.navbar-header {
	display: flex;
	float: left;
	/* border: solid 1px red; */
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 40px;
}

.navbar-static-side {
	background: var(--blue-dbc-secondary);
}

body.body-small.pace-done .content-navbar {
	width: 100%;
}

body.body-small.pace-done.mini-navbar .content-navbar {
	width: calc(100% - 70px);
}

.content-navbar {
	background-color: var(--blue-dbc-secondary);
	position: absolute;
	position: fixed;
	top: 0;
	width: 100%;
	right: 0;
	z-index: 2003;
	transition: 0.4s all;
	padding: 0 10px;
}

body.pace-done .content-navbar {
	width: calc(100% - 220px);
}

body.mini-navbar .content-navbar {
	width: calc(100% - 70px);
}

@media (orientation: landscape) {
	.content-navbar {
		width: calc(100% - 220px);
	}
}

@media (orientation: portrait) {
	.content-navbar {
		width: 100%;
	}
}

.navbar-header {
	display: flex;
	float: left;
	/* border: solid 1px red; */
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 40px;
}

.minimalize-styl-2 {
	/* position: relative; */
	display: flex;
	font-size: 1.8em;
	color: var(--color-lightgrey);
	justify-content: center;
	align-items: center;
}
.minimalize-styl-2:hover {
	color: var(--color-light) !important;
}
.minimalize-styl-2:focus {
	color: var(--color-lightgrey);
}

.navbar-static-top .exit {
	position: relative;
	display: inline-block;
}

.navbar-static-top .exit a {
	height: 60px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	background: transparent;
	border: none;
	box-shadow: none;
	color: var(--color-lightgrey);
}

.navbar-static-top .exit a:hover {
	color: var(--color-light);
}

.navbar-static-top .notifications .btn-notifications {
	position: relative;
}

.navbar-static-top .notifications .btn-notifications .count-notifications {
	position: absolute;
	top: 10px;
	left: 5px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 1rem;
	z-index: 1;
}

.navbar-static-top .notifications .dropdown-menu {
	/* min-width: 250px; */
	width: 350px;
	left: -80px;
	overflow: auto;
	margin-top: auto;
}

.navbar-static-top .notifications .notification-active {
	font-weight: bold;
}

.navbar-static-top .notifications .dropdown-menu .title-notifications {
	padding: 1rem;
}

.navbar-static-top .notifications .dropdown-menu .subtitle-notifications {
	padding: 1rem;
	padding-bottom: 0;
}

.navbar-static-top .notifications .dropdown-menu > li > a {
	white-space: normal !important;
}

.navbar-static-top .notifications .dropdown-menu > li > a i {
	font-size: 2rem;
	width: 25px;
}

.navbar-static-top .notifications .dropdown-menu .item-footer a:hover {
	background: tomato;
	color: #fff;
}

.navbar-static-top .details {
	position: relative;
	display: inline-block;
}

.navbar-static-top .details span {
	/* border: solid 1px red; */
	height: 60px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
}

.navbar-static-top .details .language {
	padding: 10px;
}

.navbar-static-top .details .language button {
	border: none;
	width: 100%;
	transition: 0.3s;
}

.navbar-static-top .details .language button:hover,
.navbar-static-top .details .language button.active {
	background: var(--blue-dbc-secondary);
	color: #fff;
}

.navbar-static-top .glyphicon {
	color: var(--color-lightgrey);
}

.navbar-static-top .glyphicon:hover {
	color: var(--color-light);
	cursor: pointer;
}

.navbar-static-top .logo {
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	display: flex;
	padding-right: 12px;
	justify-content: end;
	align-items: center;
}

.navbar-static-top .logo img {
	width: 150px;
}

.navbar-static-top .logo .copyright {
	position: absolute;
	top: 10px;
	right: 0;
	font-size: 1em;
	color: var(--color-light);
}

.navbar-static-top .logo .info-version {
	position: absolute;
	display: flex;
	bottom: 6px;
	right: 13px;
	font-size: 10px;
	font-weight: 600;
	color: var(--color-lightgrey);
}

.navbar-static-top .logo .version {
	margin-left: 2px;
}

#module-info {
	padding: 0;
	width: 30px;
	height: 60px;
}

#module-info a.dropdown-toggle {
	font-size: 1.8em;
	padding: 0;
	background: none;
	width: 30px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-lightgrey);
}

#module-info a.dropdown-toggle i:hover {
	color: var(--color-light);
}

#module-info .menu-info a:hover {
	background: #2f4050;
	color: #eee;
}

body .navbar-static-side {
	position: fixed;
}

body.mini-navbar .navbar-static-side {
	position: absolute;
}

body.fixed-nav #wrapper .navbar-static-side {
	margin-top: 60px;
}

/* Button */
.btn-darkblue.btn-outline {
	color: #1ab394;
}

button.btn-isoadmin {
	background-color: var(--blue-dbc-secondary);
	color: #eee;
	transition: 0.3s all;
}

.btn-isoadmin:hover,
.btn-isoadmin:focus,
.btn-isoadmin:active,
.btn-isoadmin.active,
.open .dropdown-toggle.btn-isoadmin,
.btn-isoadmin:active:focus,
.btn-isoadmin:active:hover,
.btn-isoadmin.active:hover,
.btn-isoadmin.active:focus {
	background-color: #0e2336;
	border-color: #0e2336;
	color: #ffffff;
}

/* FORMS */
.input-group-form:focus-visible {
	outline: none;
}

.input-group-form, 
/* .form-control, */
.form-data,
.input-table,
.chosen-single {
	border-radius: 1rem !important;
	border: solid 1px var(--form-line-color) !important;
}

.chosen-container-active > .chosen-single,
.chosen-container-active > .chosen-choices {
	border-radius: 1rem !important;
	border: solid 1px var(--primary-color) !important;
}

/* note-editor note-frame panel panel-default */

.form-required {
	/* border: solid 1px var(--color-danger) !important; */
	color: var(--color-danger);
}

/* Chose */
.chosen-single {
	border: solid 1px var(--form-line-color) !important;
	height: 30px;
	padding: 2px 5px !important;
}

.chosen-choices {
	border: solid 1px var(--form-line-color) !important;
}

.chosen-choices.form-required {
	/* border: solid 1px var(--color-danger) !important; */
}

.chosen-choices,
.chosen-drop,
.active-result {
	border-radius: 1rem;
}

/* Inputs */
input[type='date'] {
	text-align: center;
}

input[type='number'] {
	-moz-appearance: textfield;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Badge */
.badge-block {
	width: 100%;
}

/* Input Group */
/* .input-group, */
.input-group-content {
	width: 100%;
	display: grid;
	grid-template-columns: auto auto auto;
}

.input-group-content.d-2 {
	width: 100%;
	display: grid;
	grid-template-columns: auto 70px;
}

.input-group-content .input-group-form {
	color: inherit;
	padding: 6px 12px;
	transition: border-color 0.15s ease-in-out 0s,
		box-shadow 0.15s ease-in-out 0s;
	font-size: 14px;
	width: 100%;
	background-color: #fff;
}

.input-group-content .input-group-form.btn-danger {
	background-color: var(--color-danger);
	color: #fff;
}

.input-group-content .input-group-form:disabled {
	background-color: #eee;
}

.input-group-content .input-group-form:nth-child(2) {
	border-radius: 0px !important;
}

.input-group-content.d-2 .input-group-form:nth-child(2) {
	border-radius: 10px !important;
}

.input-group-content .input-group-form:first-child {
	border-top-right-radius: 0px !important;
	border-bottom-right-radius: 0px !important;
}

.input-group-content .input-group-form:not(.hidden):last-child {
	border-top-left-radius: 0px !important;
	border-bottom-left-radius: 0px !important;
}

@media (max-width: 540px) {
	.input-group-content {
		grid-template-rows: repeat(3, 1fr);
		grid-template-columns: 1fr;
	}

	.input-group-content .input-group-form:first-child {
		border-radius: 1rem 1rem 0 0 !important;
	}

	.input-group-content .input-group-form:not(.hidden):last-child {
		border-radius: 0 0 1rem 1rem !important;
	}
}

/* TABLES */
.table-primary {
	background-color: #1ab394 !important;
	color: #eee !important;
}

.table-head,
.table-foot {
	background-color: #eee;
	color: rgb(82, 82, 82);
}

/* Background */
.bg-darkblue {
	background-color: var(--blue-dbc-secondary) !important;
}

.bg-danger {
	background-color: var(--color-danger) !important;
}

/* HEADER */
.page-heading {
	border-top: 0;
	padding: 0 15px;
	/* display: flex;
    align-items: center; */
	min-height: 55px;
	position: relative;
}

.page-heading .content-back,
.page-heading .content-title {
	height: 54px;
}

.page-heading h2 {
	margin: 0 15px;
	font-weight: 500;
	height: 100%;
	display: flex;
	align-items: center;
}

.content-back {
	position: absolute;
	z-index: 1;
	display: flex;
	align-items: center;
}

.content-back button {
	height: 100%;
	background: transparent;
	border: none;
	font-size: 1.5rem;
	color: lightgrey;
	transition: 0.3s;
}

.content-back button:hover {
	color: grey;
}

.content-search {
	display: flex;
	padding: 10px;
	/* border: solid; */
	justify-content: end;
}

.content-search input {
	width: 60% !important;
	border-radius: 0 !important;
	border: solid 1px #1ab394 !important;
}

.content-search .btn-avanzada {
	border-radius: 1rem 0 0 1rem !important;
}

.content-search .btn-search {
	border-radius: 0 1rem 1rem 0 !important;
}

@media (max-width: 760px) {
	.page-heading .content-title {
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.page-heading .content-search {
		display: flex;
		justify-content: center;
	}
}

@media print {
	.page-heading {
		display: none;
	}
}

/* Navigation */
body .metismenu {
	overflow-y: scroll;
	height: 100vh;
}

body.mini-navbar .metismenu {
	overflow: initial;
	height: 100%;
}

.metismenu::-webkit-scrollbar {
	-webkit-appearance: none;
}

.metismenu::-webkit-scrollbar:vertical {
	width: 5px;
}

.metismenu::-webkit-scrollbar-button:increment,
.metismenu::-webkit-scrollbar-button {
	display: none;
}

.metismenu::-webkit-scrollbar:horizontal {
	height: 10px;
}

.metismenu::-webkit-scrollbar-thumb {
	background-color: #2f4050;
	border-radius: 20px;
}

.metismenu::-webkit-scrollbar-track {
	border-radius: 10px;
}

/* DROP ZONE */
.drop-zone {
    padding: 0;
    border: 0;
    width: 100%;
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.drop-info {
    background: rgba(243, 243, 243, 0.3);
    border: solid 1px rgb(228, 227, 227);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.drop-info .content-info {
    display: flex;
    gap: 3px;
    align-items: flex-start;
}

.drop-info small {
    font-size: 1.1rem;
    color: #838282;
    width: calc(100% - 20px);
}

.drop-area {
    border: 5px dashed rgb(228, 227, 227);
    border-radius: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
    gap: 10px;
    background: rgba(243, 243, 243, 0.3);
}

.drop-area.active {
    background: rgba(243, 243, 243, 0.9);
}

.drop-description h3 {
    color: #979696;
    font-size: 1.4rem;
    transition: 0.3s;
}

.drop-area.active .drop-description h3 {
    color: #575757;
}

.drop-button button {
    border: none;
    border-radius: 5px;
    padding: 5px 15px;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
    background: rgb(58, 80, 104);
    transition: 0.3s all;
    cursor: pointer;
    color: #eee;
}

.drop-button button:hover {
    background: rgb(31, 52, 75);
    box-shadow: 0 0 4px 2px rgba(31, 52, 75, 0.4);
}

.preview {
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding: 10px 15px;
    background: rgba(243, 243, 243, 0.3);
    border-radius: 5px;
    border: solid 1px rgb(228, 227, 227);
    transition: 0.3s all;
}

.preview .content-items {
    display: flex;
    gap: 10px;
    flex-direction: column;
    transition: 0.3s all;
}

.preview .item-file {
    position: relative;
	overflow: hidden;
}

.preview .item-file .item-details {
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 2px 1px rgba(87, 87, 87, 0.1);
    border-radius: 3px;
    padding: 5px;
	position: relative;
	z-index: 2;
}

/* .preview .item-file.active .item-details {
    background: rgba(58, 80, 104, 0.5);
} */

.preview .item-file .item-details:hover {
    box-shadow: 0 0 2px 1px rgb(26, 188, 156, 0.5);
}

.preview .item-file .item-details span {
    display: flex;
    align-items: center;
}

.preview .item-file .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #1ABC9C;
    z-index: 1;
    border-radius: 3px 0 0 3px;
    transition: 0.3s;
}

.preview .item-file .progress-item {
    position: absolute;
    top: 11px;
    right: 5px;
    color: rgb(139, 139, 139);
    font-size: 1rem;
}

.preview .item-file button {
    position: absolute;
    top: 7px;
    right: 5px;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    background: rgb(236, 92, 92);
    color: #eee;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.1);
    transition: 0.3s all;
	z-index: 3;
}

.preview .item-file button:hover {
    background: rgb(235, 82, 82);
    box-shadow: 0 0 4px 2px rgba(236, 92, 92, 0.6);
}

.preview .item-file img {
    width: 25px;
}

.preview .item-file span {
    color: #7a7a7a;
    font-size: 1.2rem;
}

.preview .item-file.active span {
    color: #5c5c5c;
}

.preview .delete {
    border: none;
    background: rgb(236, 92, 92);
    color: #eee;
    padding: 5px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.preview .delete:hover {
    background: rgb(235, 82, 82);
    box-shadow: 0 0 4px 2px rgba(236, 92, 92, 0.6);
}

/* Archivos Adjuntos */
.item-image {
	margin-top: 5px;
}

.content-file {
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
	/* padding: 10px; */
	height: 100%;
	position: relative;
}

.content-file:hover {
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.3);
}

.content-file .content-details img {
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.content-file button {
	position: absolute;
	top: 5px;
	right: 5px;
}

/* DETAILS FILES */
.item-details-file {
	position: relative;
	border: none;
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
	outline: none;
	width: 100%;
	background: #fff;
	padding: 5px;
	margin-bottom: 5px;
	text-align: left;
	display: flex;
	gap: 5px;
	border-radius: 3px;
	align-items: center;
	transition: 0.3s;
}

.item-details-file:hover {
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.4);
}

.content-item-list {
	position: relative;
}

.content-item-list button {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20px;
	width: 20px;
	z-index: 2;
}

.content-item-list button i {
	position: block !important;
	top: auto !important;
	right: auto !important;
}

.item-details-file img {
	width: 30px;
}

.item-details-file p {
	color: var(--color-grey) !important;
	margin: 0;
	width: calc(100% - 50px);
}

.item-details-file i {
	position: absolute;
	top: calc(50% - 5px);
	right: 10px;
}


/* EVALUACIONEs */
.form-item-response {
	border-radius: 5px;
	box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.329);
	padding: 1rem;
	width: 100%;
	transition: 0.3s all;
	display: flex;
	align-items: center;
	margin: 1rem;
}

.form-item-response.active {
	background: var(--blue-dbc-secondary);
	color: #fff;
}

.form-item-response:hover {
	box-shadow: 0 0px 4px 2px rgba(0, 0, 0, 0.404);
}

/* Show Currency Format */
span.show-currency-format {
	border-radius: 1rem !important;
	padding: 6px 12px !important;
	border: solid 1px var(--form-line-color) !important;
	text-align: right;
	cursor: text;

	/* BOTH of the following are required for text-overflow */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

span.show-currency-format:empty::before {
	content: attr(data-placeholder);
	color: #999;
}