html,
body {
	height: 100%;
	width: 100%;
    background-color: #FFEEDB;
	background:url(images/bg.png);
    font-family: Calibri, sans-serif;
    font-size: 1em;
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;

}

.mainNavigation {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white !important;
    background-color: #2E3131;
}

.mainNavigation nav {
    width: 100%;
}

.mainNavigation .mobileMenu {
    display: none;
}

.mainNavigation ul.mobileListHidden {
    transition: 0.4s ease-in;
    display: flex;
}

.mainNavigation ul.mobileListHidden {
    transition: 0.4s ease-in;
    display: flex;
}
.mainNavigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.mainNavigation ul li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.4s ease-in-out;
}

.mainNavigation ul a {
    color: white !important;
    text-decoration: none;
    width: 100%;
    padding: 12px 16px;
}

.mainNavigation ul li:after {
    content: "";
    display: block;
    border-bottom: 2px solid rgba(193, 71, 49, 0.9);
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.4s ease-in-out;
}

.mainNavigation ul li:hover {
    background: rgb(0, 0, 0);
}

.logoutBtn {
	border: none;
	cursor: pointer;
    background: transparent;
}

.logoutBtn:hover {
	transition: 0.5s;
	background-color: rgba(246, 216, 174, 0.1);
}

.dashboard {
	display: flex;
    flex-direction: column;
    width: 100%;
}

.dashboardHeader {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background-color: #1853a1;
    color: #ffffff;
}

.dashboardHeader img {
    max-width: 347px;
    padding: 6px;
    height: 48px;
}

.dashboardTable {
	padding: 10px;
	margin-bottom: 10px;
}

.tableContainer {
	height: auto;
	box-sizing: border-box;
	background-color: #FFFFFF;
	padding: 4px 16px;
}

.tableTitle {
	width: 100%;
    line-height: 26px;
    font-weight: 700;
    font-size: 1.1em;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.tableBtns {
    display: flex;
    flex-direction: row;
}

.buttonIcon {
	display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 13px;
    line-height: 1.5;
    border-left: 1px solid #CDCDCD;
    border-right: 1px solid #CDCDCD;
    border-bottom: none;
    border-top: none;
    text-decoration: none;
    color: #494949;
    background-color: #ffffff;
    height: auto;
    cursor: pointer;
    padding-right: 4px;
}

.buttonIcon img {
    padding: 4px;
}

.buttonIcon:hover {
    color: white;
    background: #231903;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    opacity: 0.9;
}

.iconButtonText {
    padding-left: 2px;
}

.index_grid {
    padding: 16px;
    background-color: #ffffff;
    margin: 16px 8px;
}

.actionbtn {
    /* padding: 4px; */
    background-color: #ffffff;
    margin: 2px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.submitBtn {
    margin-top: 10px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* ----Spinner css---- */
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: #fff;
  font-size: 6px;
  margin: 10px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

.loader_message {
  text-align: center;
  color: #fff;
  font-size: 18px;
}

/* --------- Spin Modal ----------- */
.modal_spin {
  position: fixed;
  top: 0;
  left: 0;
  width:100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.54);
}

.modal_spin_main {
  position:fixed;
  width: 500px;
  height: auto;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  padding: 10px;
}

.display_block_spin {
  display: block;
}

.display_none_spin {
  display: none;
}

.bioTable {
    width: 50%;
    max-width: 400px;
}
#UsersMenuBtn, #SettingsMenuBtn{
	border: none;
	cursor: pointer;
    background: transparent;
	width:50px;
	height:50px;
	padding:0px;
}
#UsersMenuBtn:hover, #SettingsMenuBtn:hover{
	transition: 0.5s;
	background-color: rgba(246, 216, 174, 0.1);
}
#UserName{
	line-height: 50px;
    float: left;
    margin-right: 30px;
}

button[disabled], html input[disabled] {
    cursor: no-drop;
}

#userForm, #settingsForm{
	padding:10px;
}