html{
	height: 100%;
	font-family: 'Roboto',sans-serif;
	font-size: 15px;
}
body{
	min-height: 90%;
	margin-top: 0px;
	background-color: #F3F4F6;
}
h3{
	margin-bottom: 5px;
}
*, ::before, ::after {
	
	box-sizing: border-box;
}
a{
	text-decoration: none;
	color: inherit;
}
hr {
	border-top: 1px solid #8c8b8b;
	border-bottom: 1px solid #fff;
}
hr.header{
	background-image: linear-gradient(90deg, blue, green);
	height: 1px;
	border: 0;
}
input {
	border-radius: 5px;
	border: 1px solid #8eace9;
	padding: 6px 8px;
	color: #3f4951 ;
}
input:focus {
	color: black ;
	border-color: #0054ff;
}
textarea {
	border-radius: 5px;
	border: 1px solid #d5d5d5;
	padding: 6px 8px;
	color: #838383 ;
}
textarea:focus {
	color: black ;
	border-color: #808080;
}
.input100{
	width: 100%;
}
.inputForm{
	padding: 0.5em;
	border: 1px solid #cccccc;
	box-shadow: inset 0 1px 3px #dddddd;
	border-radius: 5px;
}

.form-space{
	margin-bottom: 10px
}

.checkContainer {
	display: inline-block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: 4px;
}
.checkContainer input{
	/*position: absolute;*/
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkContainer .checkmark {
	position: absolute;
	top: -0.2em;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #f2f2f2;
	border-radius: 6px;
	box-shadow: inset 0px 1px 2px #444d5b;
	border: 1px solid #b0b0b0;
}
.checkContainer:hover input ~ .checkmark {
	background-color: #ccc;
}
.checkContainer input:checked ~ .checkmark {
	background-color: #3559B7;
}
.checkContainer .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.checkContainer input:checked ~ .checkmark:after {
	display: block;
}
.checkContainer .checkmark:after {
	left: 8px;
	top: 5px;
	width: 7px;
	height: 13px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.radioContainer {
	display: inline-block;
	position: relative;
	padding-left: 35px;
	padding-top: 4px;
	margin: 0px 10px 12px 10px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.radioContainer input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
}
.radioContainer .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border: 1px solid black;
	border-radius: 50%;
	box-shadow: inset 0px 1px 2px #444d5b;
}
.radioContainer:hover input ~ .checkmark {
	background-color: #ccc;
}
.radioContainer input:checked ~ .checkmark {
	background-color: #3559B7;
}
.radioContainer .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
.radioContainer input:checked ~ .checkmark:after {
	display: block;
}
.radioContainer .checkmark:after {
	top: 10px;
	left: 10px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: white;
}

label{
	display: flex;
	align-items: center;
}
.title{
	color: #005570 ;
}
.table{
	border-collapse: collapse;
	margin: 5px 0px;
	width: 100%;
	padding: 5px;
}
.table tr{
	border-bottom: 1px solid #f2f2f2;
}
.table thead tr{
	background-color: #bbb ;
}
.table tbody tr:nth-child(even) {
	background-color: #f2f2f2 ;
}
.table tbody tr:nth-child(odd) {
	background-color: #ffffff ;
}
.table tbody tr:hover{
	background-color: #efefef ;
}
.table th{
	font-family: Lato-Bold;
	font-size: 18px;
	color: #120988;
	line-height: 1.4;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: left;
	padding-left: 20px;
	background-color: #bbb ;
}
.table td{
	font-family: Lato-Regular, serif;
	font-size: 15px;
	color: #4b4b4b;
	line-height: 1.4;
	padding-top: 10px;
	padding-bottom: 10px;
}
.table tr td:not(:last-child){
	border-right: 1px solid #e3e3e3 ;
}


.IgeaTable {
	margin: 0 0 1em 0;
	padding: 0;
	font-family: Lato-Regular, serif;
	font-size: 14px;
	color: #3d3d3d;
	line-height: 1.4;
}
.IgeaTable-line{
	display: flex;
	flex-wrap: wrap;
}
.IgeaTable-line:nth-child(even) > .IgeaTable-cell {
	background-color: #efefef;
}
.IgeaTable-line:hover .IgeaTable-cell{
	background-color: #d3d3d3 ; 
}
.IgeaTable-cell-header {
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  padding: 0.3em 0.5em;
  overflow: hidden;
  list-style: none;
  background: rgb(196, 204, 213) ;
  font-size: 1em;
  font-weight: bolder;
}
.IgeaTable-cell {
  box-sizing: border-box;
  flex-grow: 1;
  width: 100%;
  padding: 0.3em .6em;
/*   overflow: hidden; */
  list-style: none;
  /*background: rgb(255, 255, 255) ;*/
  display: flex;
  align-items: center;
}
.IgeaTable-cell-header-first {
	border-radius: 10px 0px 0px 0px ;
}
.IgeaTable-cell-header-last {
	border-radius: 0px 10px 0px 0px ;
}







.sortAsc{
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 0 3px;
    background: transparent;
    border-bottom: solid 10px #ff0000;
    border-top-width: 0;
}

.sortDesc{
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 0 3px;
    background: transparent;
    border-top: solid 10px #ff0000;
    border-bottom-width: 0;
}


.nextTo {
	
	display: inline-block;
}

.init {
	margin-left: 10px;
}
.selContainer {
	display: inline-block;
	vertical-align: middle;
	
}
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #093f9c;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin: auto;
  border-bottom: 16px solid #04720c;
  display: none;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.nav-link{
	color: black !important; 
}



#header{
	background-color: #ededed;
	height: 50px;
	font-family:"Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif;
	display: flex;
	justify-content: right;
	align-items: center;
}
#userHeaderText{
/* 	float: right; */
	color: white;
/* 	position: relative; */
/* 	right: 1.5em; */
	background-color: #595959;
	height: 50px;
	font-size: 1.2rem;
	padding-top: 12px; 
	padding-left: 16px;
	margin-left: 12px; 
}
#userHeaderText:hover{
	background-color: #7e7e7e;
	cursor: pointer; 
}
#headerUserOptions{
	float: right;
	color: white;
	background-color: grey;
	position: absolute;
	right: 28px;
	top: 50px;
	z-index: 2;
	display: none;
}
#headerUserOptions ul{
	list-style:none;
	padding:0.5em 0;
	margin:0;
	font-size: 1rem;
	background-color: #595959;
}
#headerUserOptions li{
	padding:0.5em 1em 0.5em 0.5em;
	font-weight:regular;
	transition:all 0.15s linear;
	cursor:pointer;
}
#headerUserOptions li:hover{
	background-color: #7e7e7e;
}
#menuCompactText{
	display: none;
}
#menuBackground{
	background-color: #ededed;
	position: fixed;
	height: 100vh;
	width:180px;
	left: 0 ;
	top: 0 ;
}
#menu{
	background: #ededed;
/* 	height:100% ; */
	width:180px;
	position: absolute;
	top:0;
	left:0;
	z-index:5;
	outline:none;
	color: #020462 ;
	font-family:"Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif;
}
#menu ul{
	list-style:none;
	padding:0.5em 0;
	margin:0;
	margin-left: 10px;
}
#menu li{
/* 	padding:0.5em 0.5em 0.5em 0.2em; */
	font-weight:regular;
/* 	background-repeat:no-repeat; */
/* 	background-position:left 15px center; */
/* 	background-size:auto 20px; */
	transition:all 0.15s linear;
	cursor:pointer;
}
#menu li img{
	width: 25px;
	height: 25px;
	top: 5px;
	position: relative;
}
#menu li span{
	display: inline;
	margin-left: 0.5em;
}
#menu li:hover{
	background-color: #454545;
}
#menu li a{
	display: block;
	white-space: pre;
	white-space: -moz-pre-space ;
	padding:0.5em 0.5em 0.5em 0.2em;
}
#menu .submenu{
	position: absolute;
	background-color: #cbcbcb;
	display: none;
}
#menu .submenu li a{
	padding: 10px 20px;
}
#menuAvatar{
	padding: 1em 0em;
	text-align:center;
}
#menuAvatar img{
	width:170px;
/* 	border-radius:50%; */
	overflow:hidden;
	box-shadow:2px 1px 5px 3px rgba(0, 0, 0, 0.1) ;
}
#menuAvatar h2{
	font-weight:normal;
	margin-bottom:0;
}


main{
	position:relative;
	padding-left: 200px;
	padding-right: 20px;
}
.container{
	position:relative;
	padding-left: 200px;
	padding-right: 20px;
	margin-bottom: 30px;
}
i.arrow{
	border: solid #b0b0b0;
	border-width: 0 4px 4px 0;
	display: inline-block;
	padding: 4px;
	margin: 0em 0.5em 0.1em 0.5em;
}
i.down{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
i.up{
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

.modal-header{
	border-bottom: 3px solid black;
	text-align: center;
}
.modal-body{
	padding: 10px;
}
.modal-footer{
	/*float: right;*/
	padding: 10px;
}

.centerH{
	align-items: center;
}
div.space{
	margin: 20px;
}
.row{
	display: -ms-flexbox;
	display: flex;
}
.row-center{
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
}
.tableRow{
	margin: 5px 0px 5px 0px;
	background: #fff;
	border: 1px solid #b3b3b3;
	padding: 6px;
	border-radius: 10px;
}
.headerRow{
	background-color: #53535a;
	color: white;
	padding: 0.8em 0em;
	font-weight: bold;
}
.flex-space{
	justify-content: space-evenly ;
}
.centered{
	text-align: center;
}
.panelTitle{
	margin-bottom: 6px;	
}
.panelContent{
	padding: 10px 5px;
	background-color: white;
	border-radius: 10px;
}

.col-1 {
    -ms-flex: 0 0 5%;
    flex: 0 0 5%;
    max-width: 5%;
}
.col-2 {
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
}
.col-3 {
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    max-width: 15%;
}
.col-4 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.col-5 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-6 {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}
.col-7 {
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    max-width: 35%;
}
.col-8 {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}
.col-9 {
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
}
.col-10 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-11 {
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
}
.col-12 {
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}
.col-13 {
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    max-width: 65%;
}
.col-14 {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
}
.col-15 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-16 {
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
}
.col-17 {
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
    max-width: 85%;
}
.col-18 {
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%;
}
.col-19 {
    -ms-flex: 0 0 95%;
    flex: 0 0 95%;
    max-width: 95%;
}
.col-20 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}


.btn{
	padding: 0.4rem 1rem;
	transition-duration: .25s;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	background-color: #d3d3d3 ;
	text-transform: uppercase;
}
.btn:hover{
	background-color: #b4b4b4 ;
}
.btn:disabled{
	color: #9f9f9f;
	background-color: #e1e1e1;
}
.btn-primary{
	background-color: #1e7924 ;
	color: white;
}
.btn-primary:hover{
	background-color: #145218 ;
}
.btn-secondary{
	background-color: #3559b7 ;
	color: white;
}
.btn-secondary:hover{
	background-color: #1e2073 ;
}
.btn-red{
	background-color: #d12c2c ;
	color: white;
}
.btn-red:hover{
	background-color: #841c1c ;
}
.btn-black{
	background-color: #000000 ;
	color: white;
}
.btn-black:hover{
	background-color: #350001 ;
}

.btn + .btn {
	margin-left: 10px;
}

.noselect {
  -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none;
            user-select: none; 
}
.clientModalLabels{
	width: 25%;
}
.clientModalInputs{
	width: 75%;
}
.clientModalInputs input{
	width: 100%;
}



.tooltip {
  position: relative;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 130px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 120%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
} 

.notificationContainer {
	position: fixed;
	z-index: 1000;
	display: flex;
	align-items: center;
	padding: 20px;
	color: #fff;
	line-height: 1.3;
	border-radius: 10px;
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.35);
	max-width: 360px;
	margin: 20px;
	bottom: 0;
	right: -400px;
	-webkit-transition: all 1s; /* For Safari 3.1 to 6.0 */
	transition: all 2s;
}

.notificationContainer.success{
	background-color: #66BB6A ;
	color: white;
}
.notificationContainer.alert{
	background-color: #EF5350 ;
	color: white;
}
.notificationContainer.warning{
	background-color: #E3B62D ;
	color: white;
}
.notificationContainer.show{
	right: 0px;
	transition: all 0.75s;
}
.notificationContainer span{
	color: black;
	cursor: pointer;
}
.notificationContainer span{
	color: grey;
}


.clearfix::after, form::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}





















@media (min-width:481px) and (max-width:1024px){
	body{
		font-size: 12px;
	}
	#menuBackground{
		width:80px;
		transition: all 0.3s ease-in-out;
	}
	#menu{
		width:80px;
		transition: all 0.3s ease-in-out;
	}
	#menu li{
		text-align: center;
	}
	#menu li a{
		white-space: normal;
	}
	#menu li img{
		top: 0px;
	}
	#menu li span{
		display: inline-block ;
		margin-left: 0;
		width: 100%;
	}
	#menu ul{
		list-style:none;
		padding:0.5em 0;
		margin:0;
		font-size: 1em;
	}
	#menuAvatar img{
		width:100px;
		box-shadow:0 0 0 1px rgba(255,255,255,0.2);
	}
	#menuAvatar h2{
		font-size: 1rem;
	}
	main{
		padding-left: 120px;
	}
	.container{
		padding-left: 86px;
		padding-rigth: 10px;
	}
}





@media (max-width:480px){
	body{
		font-size: 10px;
	}
	#menuBackground {
		width:0px;
	}
	#menu{
		width:210px;
		box-shadow: 0 0 0 100em rgba(0, 0, 0, 0);
		transform: translate3d(-210px, 0, 0);
		transition: all 0.3s ease-in-out;
	}
	main{
		padding-left: 10px;
	}
	.container{
		padding-left: 2px;
		padding-right: 2px;
	}
	.table th{
		font-family: Lato-Bold;
		font-size: 0.9rem;
		color: #120988;
		line-height: 1.4;
		padding-top: 10px;
		padding-bottom: 10px;
		text-align: left;
		padding-left: 4px;
		background-color: #bbb ;
	}
	.table td{
		font-family: Lato-Regular, serif;
		font-size: 0.6rem;
		color: #4b4b4b;
		line-height: 1.4;
		padding-top: 10px;
		padding-bottom: 10px;
	}
	#menu #smartphone-menu-trigger {
		width: 50px;
		height: 50px;
		position: absolute;
		left: 100%;
		background: black;
	}
	#menu #smartphone-menu-trigger:before, #menu #smartphone-menu-trigger:after
	{
		content: '';
		width: 50%;
		height: 2px;
		background: #fff;
		border-radius: 10px;
		position: absolute;
		top: 45%;
		left: 50%;
		transform: translate3d(-50%, -50%, 0);
	}
	#menu #smartphone-menu-trigger:after {
		top: 55%;
		transform: translate3d(-50%, -50%, 0);
	}
	#menu:focus {
		transform: translate3d(0, 0, 0);
		box-shadow: 0 0 0 100em rgba(0, 0, 0, 0.6);
	}
	#menu:focus #smartphone-menu-trigger{
		pointer-events:none;
	}

	#headerText{
		color: white;
		position: absolute;
		left: 60px;
		top: 15px;
	}
	#userHeaderText{
		top: 0px;
	}
	.btn{
		padding: 0.2rem 0.5rem;
	}
}








