body {
  background-color: #e9e9e9;
  /*background-image: url('/images/imageBackground.jpg');*/
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-family: 'Roboto', Arial, Tahoma, sans-serif;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 2px;
}

.bg-pink {
  background-color: #e91e63 !important;
  color: #fff;
}

table td a {
  color: #555;
}

.login-page {
  /*background-color: #00bcd4;*/
  background-color: #58b692;
  padding-left: 0;
  max-width: 450px;
  margin: 5% auto;
  overflow-x: hidden;
}

.login-page .login-box .header {
  margin-bottom: 20px;
  margin-top:280px;
}

.login-page .login-box .header h5 {
  width: 100%;
  width: 100%;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.login-page .login-box .content {
  min-height: 50px;
  position: relative;
  padding: 20px;
  background: #fff;
  margin-top:280px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
  border-radius: 2px;
}

.login-page .login-box .content .msg {
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

.login-page .login-box .content .input-group {
  margin-bottom: 20px;
}

.login-page .login-box .content .input-group span {
  padding: 6px;
}

.login-page .login-box .content .input-group span i {
  font-size: 18px;
  color: #555;
}

.login-page .login-box .content .input-group input {
  border-radius: 4px;
}

.login-page .login-box .content .footer {
  position: relative;
  padding-left: 6px;
}

[type="checkbox"]+label {
  font-size: 14px;
}

.login-page .login-box .content .footer button {
  position: absolute;
  top: 0;
  right: 0;
}

/* navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100%;
  color: #fff;
}

.navbar em {
  font-style: normal;
}

.navbar-brand {
  height: 50px;
  padding: 15px;
  font-size: 18px;
  line-height: 20px;
}

.navbar-option {
  padding: 15px;
}

.navbar-option .welcome-msg {
  display: inline-block;
  margin-right: 15px;
}

.navbar-option .dropdown-menu {
  min-width: unset;
}

.navbar-option>a {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

.navbar-option>a i {
  font-size: 20px;
  line-height: 24px;
}

/* sidebar */
.sidebar {
  width: 270px;
  font-family: "Roboto", sans-serif;
  background: #fdfdfd;
  overflow: hidden;
  display: inline-block;
  height: calc(100vh - 75px);
  position: fixed;
  top: 75px;
  left: 0;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .1);
  -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, .1);
  -ms-box-shadow: 2px 2px 5px rgba(0, 0, 0, .1);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .1);
  z-index: 11 !important;
}

.sidebar .menu {
  height: auto;
  position: relative;
  overflow-y: auto;
}

.sidebar .menu .list {
  list-style: none;
  padding-left: 0;
}

.sidebar .menu .list li.active> :first-child span {
  font-weight: bold;
  color: #f44336;
}

.sidebar .menu .list .header {
  background: #eee;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
}

.sidebar .menu .list i.material-icons {
  margin-top: 4px;
}

.sidebar .menu .list .menu-toggle:after, .sidebar .menu .list .menu-toggle:before {
  position: absolute;
  top: calc(50% - 14px);
  right: 17px;
  font-size: 19px;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sidebar .menu .list .menu-toggle:before {
  content: '+';
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sidebar .menu .list .menu-toggle:after {
  content: '\2013';
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}

.sidebar .menu .list .menu-toggle.toggled:before {
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}

.sidebar .menu .list .menu-toggle.toggled:after {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sidebar .menu .list a {
  color: #747474;
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: 100%;
  padding: 10px 13px;
}

.sidebar .menu .list a:hover, .sidebar .menu .list a:active, .sidebar .menu .list a:focus {
  text-decoration: none !important;
}

.sidebar .menu .list a small {
  position: absolute;
  top: calc(50% - 7.5px);
  right: 15px;
}

.sidebar .menu .list a span {
  margin: 7px 0 7px 12px;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  overflow: hidden;
}

.sidebar .menu .list .ml-menu {
  list-style: none;
  display: none;
  padding-left: 0;
}

.sidebar .menu .list .ml-menu span {
  font-weight: normal;
  font-size: 14px;
  margin: 3px 0 1px 6px;
}

.sidebar .menu .list .ml-menu li a {
  padding-left: 55px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.sidebar .menu .list .ml-menu li.active a.toggled:not(.menu-toggle) {
  font-weight: 600;
  margin-left: 5px;
}

.sidebar .menu .list .ml-menu li.active a.toggled:not(.menu-toggle):before {
  content: '\E315';
  font-family: 'Material Icons';
  position: relative;
  font-size: 21px;
  height: 20px;
  top: -5px;
  right: 0px;
}

.sidebar .menu .list .ml-menu li .ml-menu li a {
  padding-left: 80px;
}

.sidebar .menu .list .ml-menu li .ml-menu .ml-menu li a {
  padding-left: 95px;
}

section.content-wrap {
  margin: 100px 15px 0 285px;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
}

section.content-wrap .content {
  width: 100%;
}

section.content-wrap .content .header-group {
  position: relative;
  padding: 15px 35px !important;
  border-bottom: 1px solid #ddd;
}

section.content-wrap .content .header-group h2 {
  display: inline;
  font-size: 18px;
  font-weight: normal;
  line-height: 40px;
  color: #111;
}

section.content-wrap .content .header-group::after {
  content: "";
  height: 1px;
  display: block;
  clear: both;
}

section.content-wrap .content .header-group .header-option {
  float: right;
}

section.content-wrap .content .contnt-body {
  padding: 20px;
  font-size: 14px;
  color: #555;
}

.card .card-body {
  font-size: 14px;
  color: #555;
}

.card-deck .card {
  max-width: 378px;
}

.tbl-header-group::after {
  content: "";
  height: 1px;
  display: block;
  clear: both;
}

.tbl-view table {
  border: 1px solid #ddd;
}

.tbl-view table thead th {
  background: #ddd;
}

.tbl-view table tbody td div {
  min-height: 400px;
  padding: 10px;
}

.bs-deselect-all {
  display: block;
}

.table-row {
  cursor: pointer;
}

.input-group .dropdown .selectpicker+.dropdown-toggle {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-text {
  border: none;
  background: none;
}

.material-icons.uncheck {
  opacity: 0;
}

.btn-sm {
  height: calc(1.5em + 0.5rem + 2px);
}

.table th,
.table td {
  vertical-align: middle;
}

.breadcrumb {
  padding: 0.5rem;
  background: #ddd;
}

input {
  outline: none !important;
  box-shadow: none !important;
}

.w-140 {
  width: 140px !important;
}

.col-fix th, .col-fix td {
  min-width: 125px !important;
  max-width: 125px !important;
}

.col-fix th:first-child, .col-fix td:first-child {
  min-width: auto !important;
  max-width: auto !important;
}

.color-rgb .form-control {
  width: 50px;
  max-width: 50px;
}
.form-control.w-120 {
  width: 110px !important;
  max-width: 110px !important;
}
.form-control.w-160 {
  width: 160px !important;
  max-width: 160px !important;
}

.form-control.w-90 {
  width: 90px;
  max-width: 90px;
}

.form-control.w-80 {
  width: 80px;
  max-width: 80px;
}
.form-control.w-55 {
  width: 50px;
  max-width: 50px;
}

.table-center th, .table-center td {
  text-align: center;
}

.planner {
  overflow-x: auto;
}

.planner .list-group-item {
  padding: 0;
}

.planner .table-row {
  height: 58px;
  padding: 0.75rem;
  box-sizing: border-box;
}

.planner .list-group-item .table-row:first-child {
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.05);
}

.planner .table-row .form-control {
  width: 72px;
}

.tr-focus tbody tr:focus-within {
  background: #c3e6cb;
}
.sidebar .legal {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #eee;
    padding: 10px;
    overflow: hidden;
        background: white;
}
.sidebar .legal .copyright {
    font-size: 13px;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
}
#leftsidebar {
	width: 175px;
}
section.content-wrap {
	margin:75px 10px 0 0px
}
.logo-login {
	text-align: center;
    margin-bottom: 20px;
} 
.header-group {
	text-transform: uppercase;
}
#menuList li a span{
	text-transform: uppercase;
}

table thead tr th,table tbody tr td  {
	text-align: center!important;
}
.sidebar.mini {
	display: none;
}

section.content-wrap.mini {
    margin: 75px 10px 0 180px;
}

.mr-30 {
	margin-right: 30px;
} 