html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0px;
  padding: 0px;
}

hr {
	border-top: 1px solid lightgrey;
}

.grey-white-background {
	background: #f5f6f6; /* Old browsers */
	background: -moz-linear-gradient(top,  #f5f6f6 0%, #dbdce2 0%, #b8bac6 0%, #dddfe3 65%, #f5f6f6 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #f5f6f6 0%,#dbdce2 0%,#b8bac6 0%,#dddfe3 65%,#f5f6f6 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #f5f6f6 0%,#dbdce2 0%,#b8bac6 0%,#dddfe3 65%,#f5f6f6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f6f6', endColorstr='#f5f6f6',GradientType=0 ); /* IE6-9 */
}

.nav-side-menu {
  overflow: auto;
  font-family: verdana;
  font-size: 12px;
  font-weight: 200;
  background-color: #2e353d;
  position: fixed;
  top: 0px;
  width: 300px;
  height: 100%;
  color: #e1ffff;
}
.nav-side-menu .brand {
  background-color: #23282e;
  line-height: 50px;
  display: block;
  text-align: center;
  font-size: 14px;
}
.nav-side-menu .toggle-btn {
  display: none;
}
.nav-side-menu ul,
.nav-side-menu li {
  list-style: none;
  padding: 0px;
  margin: 0px;
  line-height: 35px;
  cursor: pointer;
  /*
    .collapsed{
       .arrow:before{
                 font-family: FontAwesome;
                 content: "\f053";
                 display: inline-block;
                 padding-left:10px;
                 padding-right: 10px;
                 vertical-align: middle;
                 float:right;
            }
     }
*/
}
.nav-side-menu ul :not(collapsed) .arrow:before,
.nav-side-menu li :not(collapsed) .arrow:before {
  font-family: FontAwesome;
  content: "\f078";
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
  float: right;
}
.nav-side-menu ul .active,
.nav-side-menu li .active {
  border-left: 3px solid #d19b3d;
  background-color: #4f5b69;
}
.nav-side-menu ul .sub-menu li.active,
.nav-side-menu li .sub-menu li.active {
  color: #d19b3d;
}
.nav-side-menu ul .sub-menu li.active a,
.nav-side-menu li .sub-menu li.active a {
  color: #d19b3d;
}
.nav-side-menu ul .sub-menu li,
.nav-side-menu li .sub-menu li {
  background-color: #181c20;
  border: none;
  line-height: 28px;
  border-bottom: 1px solid #23282e;
  margin-left: 0px;
}
.nav-side-menu ul .sub-menu li:hover,
.nav-side-menu li .sub-menu li:hover {
  background-color: #020203;
}
.nav-side-menu ul .sub-menu li:before,
.nav-side-menu li .sub-menu li:before {
  font-family: FontAwesome;
  content: "\f105";
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.nav-side-menu li {
  padding-left: 0px;
  border-left: 3px solid #2e353d;
  border-bottom: 1px solid #23282e;
}
.nav-side-menu li a {
  text-decoration: none;
  color: #e1ffff;
}
.nav-side-menu li a i {
  padding-left: 10px;
  width: 20px;
  padding-right: 20px;
}
.nav-side-menu li:hover {
  border-left: 3px solid #d19b3d;
  background-color: #4f5b69;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
@media (max-width: 1199.98px) {
  .nav-side-menu {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
  }
  .nav-side-menu .toggle-btn {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10 !important;
    padding: 3px;
    background-color: #23282e;
    color: #e1ffff;
    width: 40px;
    text-align: center;
  }
  .brand {
    text-align: left !important;
    font-size: 22px;
    line-height: 50px !important;
  }
  .nav-side-content {
	margin-left: 0;
	padding-top: 30px;
	padding-bottom: 30px;
  }
}
@media (min-width: 1199.99px) {
  .nav-side-menu .menu-list .menu-content {
    display: block;
  }
  .nav-side-content {
	margin-left: 300px;
	padding-top: 30px;
	padding-bottom: 30px;
  }
}

.footer {
  position: absolute;
  bottom: 0;
  left: 300px;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  background-color: #dddfe3;
}
.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

.toolbar {
	margin-bottom: 15px;
}

/* button */
.btn {
	box-shadow: 2px 3px 4px #999999;
	-webkit-box-shadow: 2px 3px 4px #999999;
	-moz-box-shadow: 2px 3px 4px #999999;
}
.btn-link {
	box-shadow: 0 0 0 #999999;
	-webkit-box-shadow: 0 0 0 #999999;
	-moz-box-shadow: 0 0 0 #999999;
}
.btn-noshadow {
	box-shadow: 0 0 0 #999999;
	-webkit-box-shadow: 0 0 0 #999999;
	-moz-box-shadow: 0 0 0 #999999;
}
.btn-inline {
	margin-top: 3px;
	margin-bottom: 3px;
}

/* datatables */
.dt-buttons {
	margin-top: 5px;
	margin-bottom: 20px;
}
.btn-excel {
	color: #00592d;
}
.no-spin::-webkit-inner-spin-button, .no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance:textfield !important;
}

/* panel */
.panel {
	box-shadow: 2px 3px 4px #999999;
	-webkit-box-shadow: 2px 3px 4px #999999;
	-moz-box-shadow: 2px 3px 4px #999999;
}
.panel-heading {
	box-shadow: 0 2px 3px #eeeeee;
	-webkit-box-shadow: 0 2px 3px #eeeeee;
	-moz-box-shadow: 0 2px 3px #eeeeee;
}
.panel-heading-link {
	padding: 10px;
	border-right: 1px solid #aaa;
	text-decoration: none !important;
}
.bg-grey {
	background-color: #e3e3e3;
}

/* tables */
table th {
	color: #fff;
	background-color: #666;
  font-size: 0.85em;
}
table td {
  font-size: 0.85em;
}
table.table-borderless td {
	border-top: none !important;
}
table.table-smallrows td {
	padding-top: 1px !important;
	padding-bottom: 1px !important;
}
.tablescroll {
	width: 100%;
	overflow-x: auto;
}
table.google-visualization-orgchart-table {
	border-collapse: separate !important;
}

/* forms */
.form-small {
  margin-bottom: 5px;
}

/* text */
.text-green {
	color: #009933;
}
.text-red {
	color: red;
}
.text-yellow {
	color: #ff9900;
}
.text-grey {
	color: #a0a0a0;
}
.text-bold {
    font-weight: bold;
}
.text-italic {
    font-style: italic;
}

input.empty {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}

.tooltip div {
  text-align: left !important;
}

.form-horizontal .control-label.text-left {
  text-align: left !important;
}
