/* Following must be set since the current gap between header and the body on most of data is empty due to spacing.*/

body {
	background-color: #e6e6e6;
	font-family: open sans;
	font-size: 12px;
}

.navList img {
	margin-bottom: 10px;
}

#divMainContainerWrapper {
	height: calc(100% - 114px);
	width: 100%;
	box-sizing: border-box;
	overflow-y: auto;
}

.wrapperMain{
    width: 1920px;
    margin: 0 auto;
}
/* end of modifying gap */

.navList {
	padding: 10px 10px;
	text-align: center;
	line-height: 100%;
	min-height: 76.5px;
}

.nav-txt{
	font-family: montserrat;
	margin-right: 15px;
	text-transform: uppercase;
}

.navIcon {
	opacity: 0.5;
	max-width: 48px;
}

.navIcon:hover {
	opacity: 1;
	background-color: #DA872B;
	border-radius: 4px;
}


#divSubmenu_2 {
	height: 40px;
	padding-top: 20px;
	padding-left: 40px;
	text-align: left;
	display: block;
	margin: 0, auto;
	background-color: font-weight: bold;
	background-color: #e6e6e6;
}

ul.submenu {
	margin: 0;
	padding: 0;
	list-style: none;
	margin: 10, 0, 0, 0;
	text-align: center;
	display: none;
	/* box-shadow: 0 0 10px #85929e; */
}

ul.submenu.selected {
	display: table-row !important;
}

ul.submenu li {
	font-family: Verdana, Helvetica, sans-serif !important;
	font-size: 12px !important;
	font-weight: bold !important;
	border-bottom: 0;
	margin: 0;
	float: left;
	color: white;
	text-decoration: none;
	display: none;
	min-width: 100px;
	cursor: pointer;
	padding: 12px;
	background-color: #006399;
}

ul.submenu.selected li {
	display: block;
}

ul.submenu li:hover {
	background-color: #005380;
	/* box-shadow: 0px 0px 10px #555555; */
}

ul.submenu li.submenu.selected {
	background-color: #005380;
	text-shadow: 0px 0px 3px #EEE;
}

.hideSubmenu {
	display: none !important;
}


/* loader */

.loading {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	border: 0.25rem solid rgba(255, 255, 255, 0.2);
	border-top-color: white;
	-webkit-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}