:root{
	--color-primary:  #013874;
	--color-primary-d:  #1962b3;
	--color-primary-dd: #082c54;

	--color-secundary:  #009fe3;
	--color-secundary-d:  #0278ab;
	--color-secundary-dd: #0e4c67;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: #fff;
	font-family: 'Nunito-Regular';
	min-width: 300px;
	overflow-x: hidden;
	overflow-y: auto;
}

input, select, textarea, button{
	outline: none;
	font-family: 'Nunito-Regular';
}

img, svg{
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}



/* LOADER */

.loader{
	display: none;
	position: fixed;
	background: rgba(255, 255, 255, 0.8);
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 2147483647;
}
.loader.mostView{ background: rgba(255, 255, 255, 0.1); }
.loader_element{
	display: flex;
	justify-content: center;
	align-items: center;
	animation-name: loading-right;
	animation-duration: 3000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	width: 100%;
	height: 100%;
}
.loader_svg{
	display: block;
	fill: var(--color-primary);
	width: 50px;
	height: 50px;
}
@-webkit-keyframes loading-right {
	to {
		-webkit-transform : rotate(360deg);
		transform : rotate(360deg);
	}
}
@-moz-keyframes loading-right {
	to {
		-webkit-transform : rotate(360deg);
		transform : rotate(360deg);
	}
}
@-o-keyframes loading-right {
	to {
		-webkit-transform : rotate(360deg);
		transform : rotate(360deg);
	}
}
@keyframes loading-right {
	to {
		-webkit-transform : rotate(360deg);
		transform : rotate(360deg);
	}
}



/* MESSAGES */

.ms-dialog-cont{
	display: block;
	position: fixed;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 8000;
	width: 1000px;
	height: auto;
	padding: 5px;
	background: transparent;
}
.ms-message{
	display: block;
	width: 100%;
	max-width: 500px;
	overflow: hidden;
	padding: 10px 15px;
	color: #444;
	background-color: #fff;
	border-color: #444;
	border-width: 1px;
	border-style: solid;
	font-size: 14px;
	border-radius: 5px;
	margin: 10px auto;
	cursor: pointer;
	list-style-position: inside;
	box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.4);
	-webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.4);
}
.ms-message.info{
	color: #084298;
	background-color: #b6d4fe;
	border-color: #084298;
}
.ms-message.success{
	color: #0f5132;
	background-color: #badbcc;
	border-color: #0f5132;
}
.ms-message.danger{
	color: #842029;
  background-color: #f5c2c7;
  border-color: #842029;
}
.ms-message.warning{
	color: #664d03;
  background-color: #ffecb5;
  border-color: #664d03;
}


/* CONTENT LOADER */

.content-loader{
	animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: placeHolderShimmer;
  background: #efefef;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  background-size: 180% 60%;
}
@keyframes placeHolderShimmer {
	0%{ background-position: 98% 0%; }
	100%{ background-position: -98% 0%; }
}
.c-l_text-200-30{
	width: 200px;
	height: 30px;
}
.c-l_text-150-20{
	width: 100px;
	height: 20px;
}


/*** MODAL ***/

.modal{
	display: none;
	width: 100%;
	min-width: 300px;
	height: 100vh;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
}
.back-modal{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.content-modal{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 10px;
	position: relative;
	z-index: 2;
	user-select: none;
	pointer-events: none;
	overflow-x: hidden;
	overflow-y: auto;
}
.human-modal{
	--modal-w: 800px;
	--modal-h: 500px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	pointer-events: all;
	width: 100%;
	max-width: var(--modal-w);
	height: var(--modal-h);
	background: #fff;
	box-shadow: 0 4px 20px 1px rgb(0 0 0 / 6%), 0 1px 4px rgb(0 0 0 / 8%);
}

.header-modal{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 40px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.header-modal_title{
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 100%;
	padding: 5px 5px 5px 15px;
	color: var(--color-primary);
	font-size: 16px;
	font-family: 'Nunito-SemiBold';
}
.header-modal_title p{
	display: block;
}
.header-modal_buttons{
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: auto;
	height: 100%;
	padding: 5px;
}
.header-modal_buttons button{
	width: 25px;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px 5px;
	border-radius: 3px;
	border-width: 1px;
	border-style: solid;
	cursor: pointer;
	font-size: 18px; 
	font-family: 'Nunito-SemiBold';
	line-height: 15px;
	outline: none;
}
.btn-close-modal{
	background: #cd1d1d;
	border-color: #cd1d1d;
	color: #fff;
}

.body-modal{
	--modal-body-h: calc(100% - 100px);
	--modal-body-ox: hidden;
	--modal-body-oy: auto;
	display: block;
	position: relative;
	padding: 10px;
	overflow-x: var(--modal-body-ox);
	overflow-y: var(--modal-body-oy);
	width: 100%;
	height: var(--modal-body-h);
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.footer-modal{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	padding: 5px 15px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.footer-modal_section{
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: 100%;
}
.footer-modal_section button, .footer-modal_section a{
	padding: 5px 10px;
	margin: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-family: 'Nunito-SemiBold';
	border-radius: 3px;
	border-width: 1px;
	border-style: solid;
	cursor: pointer;
	text-decoration: none;
}
.btn-success-modal{
	background: #449944;
	border-color: #449944;
	color: #fff;
}
.btn-default-modal{
	background: #fff;
	border-color: #000;
	color: #000;
}
.btn-danger-modal{
	background: #b51f1f;
	border-color: #b51f1f;
	color: #fff;
}


/*** MODAL ***/


/*** MODAL IDDLE ***/

.modal-iddle{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-width: 300px;
	height: 100vh;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	padding: 10px;
	background: rgba(0, 0, 0, .5);
	font-family: 'Nunito-Regular';
}
.modal-iddle_body{
	position: relative;
	display: block;
	flex-direction: column;
	pointer-events: all;
	width: 100%;
	max-width: 500px;
	height: auto;
	background: #fff;
	box-shadow: 0 4px 20px 1px rgb(0 0 0 / 6%), 0 1px 4px rgb(0 0 0 / 8%);
	padding: 20px;
}
.modal-iddle_body h3{
	display: block;
	width: 100%;
	color: #000;
	font-size: 18px;
	padding: 2px;
	text-align: center;
}
.modal-iddle_body p{
	display: block;
	width: 100%;
	color: #000;
	font-size: 16px;
	padding: 2px;
}
.modal-iddle_btnCont{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-top: 20px;
}
.modal-iddle_btnCont a, .modal-iddle_btnCont button{
	padding: 5px 15px;
	margin: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-family: 'Nunito-SemiBold';
	border-radius: 3px;
	border-width: 1px;
	border-style: solid;
	cursor: pointer;
	text-decoration: none;
}
.mo-idd-bo_cancel_btn{
	background: #fff;
	border-color: #000;
	color: #000;
	padding: 7px 15px!important;
}
.mo-idd-bo_logout_btn{
	background: #b51f1f;
	border-color: #b51f1f;
	color: #fff;
}
.mo-idd-bo_logout_btn span{
	width: 30px;
	text-align: center;
	margin-left: 5px;
	background: rgba(0, 0, 0, .5);
	padding: 2px;
	border-radius: 5px;
}

/*** MODAL IDDLE ***/


/*
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #888; 
}
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
*/
