html,
body {
	all: unset;
	font-family: 'Muli', sans-serif;
	background: #EFF1F2;
	height: 100%;
}

a {
	all: unset;
	cursor: pointer;
}

	.section{
		background: white;
		padding: 30px;
		border-radius: 5px;
	}
	.customSection{
		padding: 0;
	}

	.sectionHeader{
		background: #03943F;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
		padding: 10px 10px 2px 30px;
		color: white;
	}

	.sectionBody{
		padding: 30px;
		-webkit-box-shadow: 0px 1px 10px -7px black;
		-moz-box-shadow: 0px 1px 10px -7px black;
		box-shadow: 0px 1px 10px -7px black;
	}

.wrapper {
	display: flex;
	flex-flow: row wrap;
	height: 100%;
	min-height: 100%;
}

.wrapper>* {
	flex: 1 100%;
}

.header {
	padding: 10px;
	background: white;
	-webkit-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	-moz-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	height: 10%;
}

.main {
	padding: 20px;
	text-align: left;
	background: white;
	margin: 1%;
	-webkit-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	-moz-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	min-height: 100%;
}

.aside-1 {
	background: #03943F;
	-webkit-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	-moz-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	/*height: 100%; GRAYAA*/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.aside-1 a {
	color: #FFFFFF;
}

.sideMenu {
	display: flex;
	flex-direction: column;
	height: auto;
	justify-content: space-between;
}

.aside-2 {
	background: #FFFFFF;
	-webkit-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	-moz-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	margin-right: 1%;
	margin-top: 1%;
	height: 96%;
	display: flex;
	flex-direction: column;
}

@media all and (min-width: 600px) {
	.aside {
		flex: 1 0 0;
	}

}

@media all and (min-width: 800px) {
	.main {
		flex: 3 0px;
	}
	.aside-1 {
		order: 1;
	}
	.main {
		order: 2;
	}
	.aside-2 {
		order: 3;
	}
}

thead tr th a {
	color: gray;
	text-decoration: none;
}

thead tr th.sorted {
	text-align: left;
}

thead tr th.sortable {
	text-align: left;
}

.fas {
	margin-right: 10px;
}

.active {
	background: white;
	color: #03943F!important;
	flex-grow: 1;
	display: flex;
	align-items: center;
	padding: 5%;
}

#menu .active {
	pointer-events: none;
}

.btn {
	background: #03943F;
	border-color: #03943F;
}

.btn:hover {
	background: rgba(3, 148, 63, 0.8);
	border-color: rgba(3, 148, 63, 0.8);
}

.btn:active {
	background: rgba(3, 148, 63, 0.3)!important;
	border-color: rgba(3, 148, 63, 0.3)!important;
}

.inactive {
	padding: 5%;
	flex-grow: 1;
	display: flex;
	align-items: center;
}

.aside-1 a:hover {
	background: rgba(255, 255, 255, 0.1);
}

.subMenu {
	display: flex;
	background: #03943F;
	color: white;
	margin: 0;
	justify-content: center;
	padding: 5%;
	margin-bottom: 2%;
}

ul,li{
    display: block;
	list-style-type: none;
	margin-top: 0;
	margin-bottom: 0
	margin-right: 0;
	padding-left: 0;
}

li {
	margin-left: 1%;
	margin-top: 2%;
	margin-bottom: 2%;
}

p {
	margin: unset;
}

.pagebanner {
	background: rgba(238, 238, 240, 0.5);
	display: flex;
	color: rgba(0, 0, 0, 0.4);
	justify-content: center;
	margin-top: 5%;
	margin-bottom: 5%;
}

.cfonb {
	color: #03943F;
}

@media (max-width: 767px) {
	.table-wrap table,
	.table-wrap thead,
	.table-wrap tbody,
	.table-wrap th,
	.table-wrap td,
	.table-wrap tr {
		display: block;
	}
	.table-wrap thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.table-wrap td {
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%!important;
		white-space: normal;
		text-align: left;
	}
	.table-wrap td:before {
		position: absolute;
		top: 8px;
		left: 15px;
		width: 45%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		text-align: left;
		font-weight: bold;
	}
	.table-wrap td:first-child {
		padding-top: 17px;
	}
	.table-wrap td:last-child {
		padding-bottom: 16px;
	}
	.table-wrap td:first-child:before {
		top: 17px;
	}
	.table-wrap td:before {
		content: attr(data-title);
	}
	.table tbody tr {
		border-top: 1px solid #ddd;
	}
	.table tbody tr td {
		border: none;
	}
	.main {
		flex: 3 0px;
	}
	.aside-1 {
		order: 1;
	}
	.main {
		order: 2;
	}
	.aside-2 {
		order: 3;
	}
}

.bg-light {
	background: white!important;
	-webkit-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	-moz-box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
	box-shadow: 0px 3px 6px 0px rgba(110, 107, 110, 0.39);
}

@media (min-width: 768px) {
	.collapse.dont-collapse-sm {
		display: block;
		height: auto !important;
		visibility: visible;
	}
}

.collapsedbtn {
	background: #03943F;
	border: 0;
	color: white;
	padding: 20px;
	margin: 1% 1% 0% 1%;
}

.sideMenu-mobile {
	background: #03943F;
	margin: 0% 1% 1% 1%;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	color: white;
	height: auto;
}

.sideMenu-mobile .active {
	padding: 10px 10px 10px 20px;
}

.sideMenu-mobile .inactive {
	padding: 10px 10px 10px 20px;
}

.sideMenu-mobile a:hover {
	color: white;
}

.sideMenu-mobile2 {
	background: white;
	margin: 0% 1% 1% 1%;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	color: #03943F;
}

.customSideMenu {
	margin-left: 5%;
}

.customSideMenu li a {
	color: white!important;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%239ea4a9'><polygon points='0,0 100,0 50,50'/></svg>");
	background-repeat: no-repeat, repeat;

	background-position: right .7em top 60%;
	background-size: .65em auto;
}

/* Hide arrow icon in IE browsers */
select::-ms-expand {
	display: none;
}


input[type="date"]::-webkit-inner-spin-button {
        opacity: 0
    }
    input[type="date"]::-webkit-calendar-picker-indicator {
        background: url(https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/calendar-16.png) center/80% no-repeat;
        color: rgba(0, 0, 0, 0);
        opacity: 0.5
    }
    input[type="date"]::-webkit-calendar-picker-indicator:hover {
        background: url(https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/calendar-16.png) center/80% no-repeat;
        opacity: 0.8
    }
