@charset "utf-8";
@font-face {
  font-family: "Gotham";
  src: url("font/Gotham.woff") format('woff');
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-style: italic;
  src: url("font/Gotham-i.woff") format('woff');
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-weight: bold;
  src: url("font/Gotham-b.woff") format('woff');
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  font-style: italic;
  font-weight: bold;
  src: url("font/Gotham-bi.woff") format('woff');
  font-display: swap;
}
:root {
  --manpro-primary-color: #e8500e;
  --manpro-text-primary-color: #555;
  --manpro-highlight-color: #fbddbc;
  --manpro-tertiary-color: #f39c3b;
  --manpro-secondary-color: #78797a;
  --manpro-light-scheme-primary: white;
  --manpro-light-scheme-primary-pale: #ECECEC;
  --manpro-light-scheme-secondary: #8A8BA0;

  --manpro-status-green: #23b269;
  --manpro-status-yellow: #e2a40e;
  --manpro-status-red: #FE6383;
};
hr {border:1px solid #ececec;}
html,
body {
  min-height: 100%;
  font-size: 14px;
  accent-color: var(--manpro-primary-color);
}
.layout-boxed html,
.layout-boxed body {
  height: 100%;
}
.main-header {
  background-color: white;
  border-bottom: solid rgb(221, 221, 221) 2px;
}
.top-buffer {margin-top:20px;}
.col-center{margin:15px auto; float:none;}
.full-width{display: block; width: 100%;}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: auto;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link, .nav-pills .nav-link {
  border-radius: 25px;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background-color: var(--manpro-primary-color);
}
.nav-tabs > li > a.active, .nav-tabs > li > a.active:focus, .nav-tabs > li > a.active:hover {
  cursor: default;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}
.nav-tabs > li > a.active {background-color: white; margin-bottom: -1px;}
.nav-tabs > li {
  float: left;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  padding: 10px 15px;
  position: relative;
  display: block;
}
a,
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
  color: #e8500e;
}
body, .right-side {
  background-color: #fff;
}
/* Layout */
.wrapper {
  min-height: 100%;
  position: static;
  overflow: hidden;
}
.wrapper:before,
.wrapper:after {
  content: " ";
  display: table;
}
.wrapper:after {
  clear: both;
}
.layout-boxed .wrapper {
  max-width: 1250px;
  margin: 0 auto;
  min-height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  position: relative;
}
.content-wrapper,
.right-side,
.main-footer {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  -moz-transition: -moz-transform 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  -o-transition: -o-transform 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  transition: transform 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  -webkit-transition: margin-left 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  -o-transition: margin-left 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  transition: margin-left 0.3s cubic-bezier(0.32, 1.25, 0.375, 1.15);
  margin-left: 0px;
  z-index: 820;
}
.modal-dialog {
  max-width: 1200px;
}
.layout-top-nav .content-wrapper,
.layout-top-nav .right-side,
.layout-top-nav .main-footer {
  margin-left: 0;
}
@media (max-width: 767px) {
  .content-wrapper,
  .right-side,
  .main-footer {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .notif-bell {
    font-size: 15px;
    display: inline-block; 
    width: 48%;
  }
}
.content-wrapper,
.right-side {
  min-height: 100%;
  z-index: 800;
}
.main-footer {
  background: #fff;
  padding: 15px;
  color: #444;
  border-top: 1px solid #eee;
}
/* Content */
.content {
  min-height: 250px;
  padding-top: 20px;
  padding-bottom: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) and (max-width: 930px) {
  .content {
    padding-top: 30px;
  }
  .modal-custom-dialog {
    width: 50%;
    margin: 1.75rem auto;
  }
}

/* H1 - H6 font */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Gotham', sans-serif;
}
/* Page Header */
.page-header {
  margin: 10px 0 20px 0;
  font-size: 22px;
}
.page-header > small {
  color: #666;
  display: block;
  margin-top: 5px;
}
/*
 * Component: Main Header
 * ----------------------
 */
.main-header {
  position: fixed;
  max-height: 100px;
  z-index: 1030;
  width: 100%;
}
.main-header > .navbar {
  margin-bottom: 0;
  margin-left: 230px;
  border: none;
  min-height: 30px;
  border-radius: 0;
}
.layout-top-nav .main-header > .navbar {
  margin-left: 0!important;
}
.main-header #navbar-search-input {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.main-header #navbar-search-input:focus,
.main-header #navbar-search-input:active {
  border-color: rgba(0, 0, 0, 0.1) !important;
  background: rgba(255, 255, 255, 0.9);
}
.main-header #navbar-search-input::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
.main-header #navbar-search-input::-webkit-input-placeholder {
  color: #ccc;
}
.main-header .navbar-custom-menu,
.main-header .navbar-right {
  margin-right: 5px;
  float: right;
}
@media (max-width: 991px) {
  .main-header .navbar-custom-menu a,
  .main-header .navbar-right a {
    background: transparent;
  }
}
@media (max-width: 767px) {
  .main-header .navbar-right {
    float: none;
  }
  .navbar-collapse .main-header .navbar-right {
    margin: 7.5px -15px;
  }
  .main-header .navbar-right > li {
    color: inherit;
    border: 0;
  }
}
.main-header .sidebar-toggle {
    display: none;
    float: left;
    background-color: transparent;
    background-image: none;
    padding: 15px 15px 14px;
    font-family: fontAwesome;
}
.main-header .navbar .nav > li.user > a > .fa,
.main-header .navbar .nav > li.user > a > .glyphicon,
.main-header .navbar .nav > li.user > a > .ion {
  margin-right: 5px;
}
.main-header .navbar .nav > li > a > .label {
  position: absolute;
  top: 9px;
  right: 7px;
  text-align: center;
  font-size: 9px;
  padding: 2px 3px;
  line-height: .9;
}
.main-header .logo {
  display: block;
  float: left;
  height: 45px;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  width: 230px;
  font-family: "Gotham", Helvetica, Arial, sans-serif;
  padding: 0 15px;
  font-weight: 300;
}
.main-header .navbar-brand {
  color: #fff;
}
.content-header {
  position: relative;
  padding: 1px 0px 0 0px;
}
.content-header > h1 {
  margin: 0;
  font-size: 24px;
}
.content-header > h1 > small {
  font-size: 15px;
  display: inline-block;
  padding-left: 4px;
  font-weight: 300;
}
@media (max-width: 991px) {
  .content-header > .breadcrumb {
    position: relative;
    margin-top: 5px;
    top: 0;
    right: 0;
    float: none;
    background: #AAA;
    padding-left: 10px;
  }
  .content-header > .breadcrumb li:before {
    color: #97a0b3;
  }
}
.navbar-toggle {
  color: #fff;
  border: 0;
  margin: 0;
  padding: 15px 15px;
}
@media (max-width: 991px) {
  .navbar-custom-menu .navbar-nav > li {
    float: left;
  }
  .navbar-custom-menu .navbar-nav {
    margin: 0;
    float: left;
  }
  .navbar-custom-menu .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 6px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .main-header {
    position: fixed;
  }
  .main-header .logo,
  .main-header .navbar {
    width: 100%;
    float: none;
    position: relative!important;
  }
  .main-header .navbar {
    margin: 0;
    padding-top: 5px;
  }
  .main-header .navbar-custom-menu {
    float: right;
  }
}
.user-menu a, .user-menu a:hover {color:inherit;}
/*
  EVENTS
*/
#add-new-event {
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.external-event:hover {
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
}
/*
 * Component: Dropdown menus
 * -------------------------
 */
/*Dropdowns in general*/
.dropdown-menu > li > a {
  color: var(--manpro-text-primary-color);
  display: block;
  width: 100%;
}
.dropdown-menu {color: var(--manpro-text-primary-color)}
.dropdown-menu > a:hover > li:not(li.ellipsis-web) {background-color: #e1e3e9;color: #333;}
.dropdown-menu > a > .ellipsis-web {color: #333;}
.dropdown-menu > .divider {background-color: #eee;}
.dropdown-menu > li > a > .glyphicon,
.dropdown-menu > li > a > .fa {
  margin-right: 10px;
}
.caret-off::before,.caret-off::after {
    display: none;
}
/*
    Navbar custom dropdown menu
------------------------------------
*/
.navbar-nav > .user-menu > .dropdown-menu {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 1px 0 0 0;
  border-top-width: 0;
  width: 280px;
}
.navbar-nav > .user-menu > .dropdown-menu,
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  height: 175px;
  padding: 10px;
  text-align: center;
  line-height: 1.5;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  z-index: 5;
  height: 60px;
  width: 60px;
  border-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  z-index: 5;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-top: 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  display: block;
  font-size: 12px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body {
  padding: 15px;
  border-bottom: 1px solid #BBB;
  border-top: 1px solid #dddddd;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
.navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  content: " ";
  display: table;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  clear: both;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  color: #444 !important;
}
@media (max-width: 991px) {
  .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
    background: #fff !important;
    color: #444 !important;
  }
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  background-color: #f9f9f9;
  padding: 0px 10px;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  content: " ";
  display: table;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  clear: both;
}
.navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  color: #666666;
}
.navbar-nav > .user-menu .user-image {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 10px;
  margin-top: -3px;
}
@media (max-width: 767px) {
  .navbar-nav > .user-menu .user-image {
    float: none;
    margin-right: 0;
    margin-top: 0px;
    line-height: 10px;
  }
}
/* Fix dropdown menu in navbars */
.navbar-custom-menu > .navbar-nav > li {
  position: relative;
}
.navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
}
@media (max-width: 991px) {
  .navbar-custom-menu > .navbar-nav {
    float: right;
  }
  .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
    position: absolute;
    right: 5%;
    left: auto;
    border: 1px solid #ddd;
    background: #fff;
  }
}
/*
 * Component: Form
 * ---------------
*/
.form-control:not(select) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group.has-success label {
  color: #00a65a;
}
.form-group.has-success .form-control {
  border-color: #00a65a !important;
  box-shadow: none;
}
.form-group.has-warning label {
  color: #f39c12;
}
.form-group.has-warning .form-control {
  border-color: #f39c12 !important;
  box-shadow: none;
}
.form-group.has-error label {
  color: #dd4b39;
}
.form-group.has-error .form-control {
  border-color: #dd4b39 !important;
  box-shadow: none;
}
/* Input group */
.input-group .input-group-addon {
  border-radius: 0px;
  border-color: #AAA;
  background-color: #fff;
}
/* button groups */
.btn-group-vertical .btn.btn-flat:first-of-type,
.btn-group-vertical .btn.btn-flat:last-of-type {
  border-radius: 0;
}
label {
  font-weight: bold;
  font-size: 1.1rem;
}
.mpo-radio label {font-weight: normal;}
[contentEditable=true]:empty:before {
  content:attr(placeholder);
  color:gray;
}
/*
 * Component: Small Box
 * --------------------
 */
.small-box {
  border-radius: 2px;
  position: relative;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.small-box > .inner {
  padding: 10px;
}
.small-box > .small-box-footer {
  position: relative;
  text-align: center;
  padding: 3px 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  z-index: 10;
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.small-box > .small-box-footer:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.15);
}
.small-box h3 {
  font-size: 38px;
  font-weight: bold;
  margin: 0 0 10px 0;
  white-space: nowrap;
  padding: 0;
}
.small-box p {
  font-size: 15px;
}
.small-box p > small {
  display: block;
  color: #f9f9f9;
  font-size: 13px;
  margin-top: 5px;
}
.small-box h3,
.small-box p {
  z-index: 5px;
}
.small-box .icon {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  top: -10px;
  right: 10px;
  z-index: 0;
  font-size: 90px;
  color: rgba(0, 0, 0, 0.15);
}
.small-box:hover {
  text-decoration: none;
  color: #f9f9f9;
}
.small-box:hover .icon {
  font-size: 95px;
}
@media (max-width: 767px) {
  .small-box {
    text-align: center;
  }
  .small-box .icon {
    display: none;
  }
  .small-box p {
    font-size: 12px;
  }
}
/*
 * Component: Box
 * --------------
 */
.box {
  position: relative;
  border-radius: 5px;
  width: 100%;
}
.box.box-primary {
  border-top-color: #3c8dbc;
}
.box.box-info {
  border-top-color: #00c0ef;
}
.box.box-danger {
  border-top-color: #dd4b39;
}
.box.box-warning {
  border-top-color: #f39c12;
}
.box.box-success {
  border-top-color: #00a65a;
}
.box.box-default {
  border-top-color: #AAA;
}
.box.collapsed-box .box-body,
.box.collapsed-box .box-footer {
  display: none;
}
.box .nav-stacked > li {
  border-bottom: 1px solid #BBB;
  margin: 0;
}
.box .nav-stacked > li:last-of-type {
  border-bottom: none;
}
.box.height-control .box-body {
  max-height: 300px;
  overflow: auto;
}
.box .border-right {
  border-right: 1px solid #BBB;
}
.box .border-left {
  border-left: 1px solid #BBB;
}
.box.box-solid {
  border-top: 0px;
}
.box.box-solid > .box-header .btn.btn-default {
  background: transparent;
}
.box.box-solid > .box-header .btn:hover,
.box.box-solid > .box-header a:hover {
  background: rgba(0, 0, 0, 0.1) !important;
}
.box.box-solid.box-default {
  border: 1px solid #AAA;
}
.box.box-solid.box-default > .box-header {
  color: #444444;
  background: #AAA;
  background-color: #AAA;
}
.box.box-solid.box-default > .box-header a,
.box.box-solid.box-default > .box-header .btn {
  color: #444444;
}
.box.box-solid.box-primary {
  border: 1px solid #3c8dbc;
}
.box.box-solid.box-primary > .box-header {
  color: #ffffff;
  background: #3c8dbc;
  background-color: #3c8dbc;
}
.box.box-solid.box-primary > .box-header a,
.box.box-solid.box-primary > .box-header .btn {
  color: #ffffff;
}
.box.box-solid.box-info {
  border: 1px solid #00c0ef;
}
.box.box-solid.box-info > .box-header {
  color: #ffffff;
  background: #00c0ef;
  background-color: #00c0ef;
}
.box.box-solid.box-info > .box-header a,
.box.box-solid.box-info > .box-header .btn {
  color: #ffffff;
}
.box.box-solid.box-danger {
  border: 1px solid #dd4b39;
}
.box.box-solid.box-danger > .box-header {
  color: #ffffff;
  background: #dd4b39;
  background-color: #dd4b39;
}
.box.box-solid.box-danger > .box-header a,
.box.box-solid.box-danger > .box-header .btn {
  color: #ffffff;
}
.box.box-solid.box-warning {
  border: 1px solid #f39c12;
}
.box.box-solid.box-warning > .box-header {
  color: #ffffff;
  background: #f39c12;
  background-color: #f39c12;
}
.box.box-solid.box-warning > .box-header a,
.box.box-solid.box-warning > .box-header .btn {
  color: #ffffff;
}
.box.box-solid.box-success {
  border: 1px solid #00a65a;
}
.box.box-solid.box-success > .box-header {
  color: #ffffff;
  background: #00a65a;
  background-color: #00a65a;
}
.box.box-solid.box-success > .box-header a,
.box.box-solid.box-success > .box-header .btn {
  color: #ffffff;
}
.box.box-solid > .box-header > .box-tools .btn {
  border: 0;
  box-shadow: none;
}
.box.box-solid[class*='bg'] > .box-header {
  color: #fff;
}
.box .box-group > .box {
  margin-bottom: 5px;
}
.box .knob-label {
  text-align: center;
  color: #5b6171;
  font-weight: 100;
  font-size: 12px;
  margin-bottom: 0.3em;
}
.box > .overlay,
.box > .loading-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.box .overlay {
  z-index: 1010;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
}
.box .overlay > .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -15px;
  margin-top: -15px;
  color: #000;
  font-size: 30px;
}
.box .overlay.dark {
  background: rgba(0, 0, 0, 0.5);
}
.box-header {
  display: block;
  padding: 10px;
  position: relative;
}
.manpro-box .box-header {
  padding: 5px 0;
}
.box-header:before,
.box-header:after {
  content: " ";
  display: table;
}
.box-header:after {
  clear: both;
}
.box-header.with-border {
  border-bottom: 1px solid #BBB;
}
.collapsed-box .box-header.with-border {
  border-bottom: none;
}
.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion,
.box-header .box-title {
  display: inline-block;
  font-size: 16px;
  margin: 0;
  line-height: 1;
}
.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion {
  margin-right: 5px;
}
.box-header > .box-tools {
  position: absolute;
  right: 10px;
  top: 5px;
}
.box-header > .box-tools [data-toggle="tooltip"] {
  position: relative;
}
.box-header > .box-tools.pull-right .dropdown-menu {
  right: 0;
  left: auto;
}
.box-header > .sub-judul {
  margin-top: 20px;
}
.btn-box-tool {
  padding: 5px;
  font-size: 12px;
  background: transparent;
  box-shadow: none!important;
  color: #97a0b3;
}
.open .btn-box-tool,
.btn-box-tool:hover {
  color: #606c84;
}
.btn-box-tool:active {
  outline: none!important;
}
.box-body {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  padding: 10px;
  margin-bottom: 1rem;
}
.no-header .box-body {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.box-body > .table {
  margin-bottom: 0;
}
.box-body .fc {
  margin-top: 5px;
}
.box-body .full-width-chart {
  margin: -19px;
}
.box-body.no-padding .full-width-chart {
  margin: -9px;
}
.box-body .box-pane {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 3px;
}
.box-body .box-pane-right {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 0;
}
.box-footer {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top: 1px solid #BBB;
  padding: 10px;
  background-color: #ffffff;
}

.box.manpro-box {
  border: none;
  box-shadow: none;
}

.box.dashboard-box {
  box-shadow: none;
  border: 1px #ccc solid;
}

.manpro-box .box-body {
  padding: 10px 0px;
}

.chart-legend {
  margin: 10px 0;
}
@media (max-width: 991px) {
  .chart-legend > li {
    float: left;
    margin-right: 10px;
  }
}
.box-input {
  max-width: 200px;
}
.manpro-box .manpro-title {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  padding-left: 0px;
  margin-bottom: 10px;
  color: #e8500e;
  font-weight: bold;
}
/*
 * Component: Button
 * -----------------
 */
.btn {
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
  border-radius: 25px;
  padding: 4px 25px;
}
.btn.uppercase {
  text-transform: uppercase;
}
.btn.btn-flat {
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-width: 1px;
}
.btn:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:focus {
  outline: none;
}
.btn.btn-file {
  position: relative;
  overflow: hidden;
}
.btn.btn-file > input[type='file'] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}
.btn-primary, .btn-success {
  background-color: #e8500e;
  border-color: #e8500e;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary.hover {
  background-color: #fc5700;
  border-color: #fc5700;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:active,
.btn-success.hover {
  background-color: #fc5700;
  border-color: #fc5700;
}
.btn-success:focus {
  color: #fff;
  background-color: #e8500e;
  border-color: #e8500e;
  box-shadow: none;
}
.btn-success:active:focus {
  box-shadow: none;
  background-color: #e8500e;
  border-color: #e8500e;
}
.btn-info {
  background-color: #00c0ef;
  border-color: #00acd6;
}
.btn-info:hover,
.btn-info:active,
.btn-info.hover {
  background-color: #00acd6;
}
.btn-danger {
  background-color: #FE6383;
  border-color: #FE6383;
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.hover {
  background-color: #D41E00;
  border-color: #D41E00;
}
.btn-warning {
  background-color: #f39c12;
  border-color: #e08e0b;
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.hover {
  background-color: #e08e0b;
}
.btn-outline {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn[class*='bg-']:hover {
  -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}
.btn-app {
  border-radius: 3px;
  position: relative;
  padding: 15px 5px;
  margin: 0 0 10px 10px;
  min-width: 80px;
  height: 60px;
  text-align: center;
  color: #666;
  border: 1px solid #ddd;
  background-color: #BBB;
  font-size: 12px;
}
.btn-app > .fa {
  font-size: 20px;
  display: block;
}
.btn-app:hover {
  background: #BBB;
  color: #444;
  border-color: #aaa;
}
.btn-app:active,
.btn-app:focus {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-app > .badge {
  position: absolute;
  top: -3px;
  right: -10px;
  font-size: 10px;
  font-weight: 400;
}
/*
 * Component: Nav
 * --------------
 */
/* NAV PILLS */
.nav-pills > li > a {
  border-radius: 0;
  border-top: 3px solid transparent;
  color: #444;
}
.nav-pills > li > a > .fa {
  margin-right: 5px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover {
  background-color: #BBB;
  border-top-color: #3c8dbc;
  color: #444;
}
.nav-pills > li.active > a {
  font-weight: 600;
}
.nav-pills > li > a:hover {
  background-color: #f6f6f6;
}
/* NAV STACKED */
.nav-stacked > li > a {
  border-radius: 0;
  border-top: 0;
  border-left: 3px solid transparent;
  color: #444;
}
.nav-stacked > li.active > a,
.nav-stacked > li.active > a:hover {
  background-color: #BBB;
  border-top: 0;
  border-left-color: #3c8dbc;
  color: #444;
}
.nav-stacked > li.header {
  border-bottom: 1px solid #ddd;
  color: #777;
  margin-bottom: 10px;
  padding: 5px 10px;
  text-transform: uppercase;
}
/* NAV TABS */
.nav-tabs-custom {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.nav-tabs-custom > .nav-tabs {
  margin: 0;
  border-bottom-color: #BBB;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.nav-tabs-custom > .nav-tabs > li {
  border-top: 3px solid transparent;
  margin-bottom: -2px;
  margin-right: 5px;
}
.nav-tabs-custom > .nav-tabs > li > a {
  border-radius: 0 !important;
}
.nav-tabs-custom > .nav-tabs > li > a,
.nav-tabs-custom > .nav-tabs > li > a:hover {
  background: transparent;
  margin: 0;
}
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
.nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  border-color: transparent;
}
.nav-tabs-custom > .nav-tabs > li.active {
  border-top-color: #3c8dbc;
}
.nav-tabs-custom > .nav-tabs > li.active > a,
.nav-tabs-custom > .nav-tabs > li.active:hover > a {
  background-color: #fff;
}
.nav-tabs-custom > .nav-tabs > li.active > a {
  border-top: 0;
  border-left-color: #BBB;
  border-right-color: #BBB;
}
.nav-tabs-custom > .nav-tabs > li:first-of-type {
  margin-left: 0;
}
.nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  border-left-width: 0;
}
.nav-tabs-custom > .nav-tabs.pull-right {
  float: none!important;
}
.nav-tabs-custom > .nav-tabs.pull-right > li {
  float: right;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  margin-right: 0;
}
.nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  border-left-width: 1px;
  border-right-width: 0;
}
.nav-tabs-custom > .nav-tabs > li.header {
  line-height: 35px;
  padding: 0 10px;
  font-size: 20px;
  color: #444;
}
.nav-tabs-custom > .nav-tabs > li.header > .fa,
.nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
.nav-tabs-custom > .nav-tabs > li.header > .ion {
  margin-right: 5px;
}
.nav-tabs-custom > .tab-content {
  background: #fff;
  padding: 10px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
/* Nav tabs bottom */
.tabs-bottom.nav-3 li a {
  width: 3333.33333333% !important;
}
.tabs-bottom li a {
  border: 0;
}
/* PAGINATION */
.pagination > li > a {
  background: #fafafa;
  color: #666;
}
.pagination > li:first-of-type a,
.pagination > li:last-of-type a {
  border-radius: 0;
}
/*
 * Component: Table
 * ----------------
 */
.table > thead > tr > th {
  border-bottom: 1px solid #CCC;
}
.table tr td .progress {
  margin-top: 5px;
}
.table-bordered {
  border: 1px solid #BBB;
  border-left: 0px;
  border-right: 0px;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 0px;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table.no-border,
.table.no-border td,
.table.no-border th {
  border: 0;
}
/* .text-center in tables */
table.text-center,
table.text-center td,
table.text-center th {
  text-align: center;
}
.table.align th {
  text-align: left;
}
.table.align td {
  text-align: right;
}
/*
 * Component: modal
 * ----------------
 */
.modal {
  background: rgba(0, 0, 0, 0.3);
}
.modal-content {
  border-radius: 12px;
  border: 0;
}
.modal-header {
  display: block;
  text-align: center;
  border-bottom-color: #BBB;
}
.modal-header .btn-close {
  font-size: 14px;
  position: absolute;
  top: .5rem;
  right: .5rem;
  padding: 20px;
}
.modal-footer {
  border-top-color: #BBB;
  font-size: 14px;
}
/*
 * General: Miscellaneous
 * ----------------------
 */
/* 10px padding and margins */
.pad {
  padding: 10px;
}
.margin {
  margin: 10px;
}
.margin-bottom {
  margin-bottom: 20px;
}
/* Display inline */
[class^="bg-"].disabled {
  opacity: 0.65;
}
/*Hide elements by display none only*/
.hide {
  display: none !important;
}
/* Remove borders */
.no-border {
  border: 0px !important;
}
/* Remove padding */
.no-padding {
  padding: 0px !important;
}
/* Remove margins */
.no-margin {
  margin: 0px !important;
}
/* Remove box shadow */
.no-shadow {
  box-shadow: none!important;
}
/* Unstyled List */
.list-unstyled,
.chart-legend,
.contacts-list,
.users-list,
.mailbox-attachments {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Remove border radius */
.flat {
  border-radius: 0 !important;
}
.text-bold,
.text-bold.table td,
.text-bold.table th {
  font-weight: 700;
}
.connectedSortable {
  min-height: 100px;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sort-highlight {
  background: #BBB;
  border: 1px dashed #ddd;
  margin-bottom: 10px;
}
/*
 * Misc: print
 * -----------
 */
@media print {
  .no-print,
  .main-sidebar,
  .left-side,
  .main-header,
  .content-header {
    display: none!important;
  }
  .content-wrapper,
  .right-side,
  .main-footer {
    margin-left: 0!important;
    min-height: 0!important;
    -webkit-transform: translate(0, 0) !important;
    -ms-transform: translate(0, 0) !important;
    -o-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
  }
  .fixed .content-wrapper,
  .fixed .right-side {
    padding-top: 0!important;
  }
  .table-responsive {
    overflow: auto;
  }
  .table-responsive > .table tr th,
  .table-responsive > .table tr td {
    white-space: normal!important;
  }
}

.mainmenu {
  position:relative;
  height:0px;
  color:#FFF;
}

.mainmenu > ul {
  list-style:none;
  padding-left:0;
  font-size:14px;
  margin-bottom:0;
}

.mainmenu > ul > li > a, .submenu-group {
  color: var(--manpro-text-primary-color);
  cursor:pointer;
  transition: all 0.1s;
  float:left;
  text-align:center;
  padding: 12px 15px;
}

.mainmenu > ul > li:hover > a {
  background: white;
  color: var(--manpro-primary-color);
}

.menu > ul > li.aktif-p > a {
  color: var(--manpro-primary-color);
}

.mainmenu > ul > li:hover > ul {
  display:block;
}

.large-inl {
  display:block !important; 
}

.small-inl {
  display:none !important;  
}

@media (max-width: 540px) {
  .position-android {
    padding-left: 5px;
  }

  .project-home {
    display: none;
  }

  .small-inl {
    display:block !important; 
  }
  
  .large-inl {
    display:none !important;
  }

  .navbar-custom-menu, .navbar-custom-menu > .nav {
    margin-right: 0px !important;
  } 
  .mainmenu > ul > li > a {
    cursor:pointer;
    transition: all 0.1s;
    float:left;
    text-align:center;
    border-right:#CCC thin solid;
    text-transform:uppercase;
  }
}

.menu {
  overflow: visible;
  width: 100%;
  padding-right: 60px;
}

.menu > ul {
  list-style: none;
  margin: 0 0 0px;
  padding-left: 0;
  padding-top: 0;
  position: relative;
  height: 30px;
}

.menu > ul a, .mega-menu-item a {
  color: #333;
}

.menu > ul > li {
  margin-top: 0px;
  transition: all 0.3s;
  margin-right:0px;
  float:left;
}

@media screen and (min-width : 1000px){
  .aktif-p {
    background-color: #eee;
    border-radius: 6px;
    position: relative;
  }

  .aktif-p:after {
    position: absolute;
    left:0;
    top:0;
    content: " ";
    width: 100%;
    height: 100%;
  }

  .submenu {
    visibility:hidden;
    opacity :0;
    transform: translate(0px,50px);
    list-style:none;
    position: absolute;
    padding-left:0;
    z-index:999;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    background: white; /* Old browsers */
    border:#CCC thin solid;
  }
}

.submenu {
  display: inline;
  visibility:hidden;
  opacity :0;
  transform: translate(0px,50px);
  list-style:none;
  position: absolute;
  padding-left:0;
  z-index:999;
  max-height: 300px;
  background: white; /* Old browsers */
  border:#CCC thin solid;
}

.submenu > li {
  float:none;
  position:relative;
  width:200px;
}

.submenu > li {
  float:none;
  position:relative;
  width:200px;
}

.submenu > li > a {
  display:block;
  position:relative;
  padding: 5px 10px;
  transition: all 0.1s
}
.submenu > li.aktif > a, .submenu > li > a:hover {
  color: #b3b6b7;
}

.submenu-group {font-weight: bold; background-color: var(--manpro-light-scheme-primary-pale); padding: 0.4rem 12px; text-align: start; user-select: none; cursor: default}

#mega-menu {
  padding: 20px;
  background: white;
}

.mega-menu-parent, .mega-menu-child {
  max-height: 70vh;
  overflow: auto;
  min-width: 340px;
}

.mega-menu-child {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  align-content: flex-start;
}

.mega-menu-item {
  position: relative;
  padding: 6px 8px;
  padding-left: 32px;
  margin: 0 8px;
  border-radius: 10px;
  max-width: 320px;
}

.mega-menu-item.menu-active {
  background-color: #ECECEC;
}

.mega-menu-item-child {
  display: none;
}

.mega-menu-item-child-label, .mega-menu-item-child-label a {font-weight: bold; cursor: default;}
.mega-menu-item.mega-menu-item-child-label a:hover {color: inherit;}

.mega-menu-icon {
  padding-right: 10px;
}

.menu-toolbar-button, .fav-menu-name {
  border-radius: 50px;
  padding: 4px 20px;
  border: solid thin #e8500e;
}

.fav-menu-name {
  background-color: #EEE;
  border-color: #F4F4F4;
  color: inherit;
}

.menu-favorite {
  position: absolute;
  left: 8px;
  top: 10px;
}

#favorite-template {
  display: none;
}

@media screen and (min-width : 1000px){
  .menu > ul > li:hover > ul {
    visibility:visible;
    display:block;
    opacity :1;
      transform: translate(0px,0px);
    transition: all 0.2s;
  }
}

.mainmenu > ul > li:hover > ul {
  visibility:visible;
  display:block;
  opacity :1;
  -webkit-transform: translate(0px,42px); /* Safari */
  transform: translate(0px,42px);
  transition: all 0.2s;
}

.menu > ul > li > a {
  transition: all 0.1s;
  display: block;
  cursor:pointer;
  display: block;
  padding: 4px 12px;
  font-size: 105%;
  height: 30px;
  color: var(--manpro-text-primary-color);
}

.nav-link, .nav-link:hover, .menu > ul > li > a.aktif-p, .menu > ul > li > a:hover, .mega-menu-item a:hover {
  color: #e8500e;
}

.submenu-p {
  visibility:hidden;
  opacity :0;
  -ms-transform: translate(0px,60px); /* IE 9 */
  -webkit-transform: translate(0px,60px); /* Safari */
  transform: translate(0px,60px);
  list-style:none;
  position: absolute;
  padding-left:0;
  z-index:999;
  max-height:300px;
  overflow-y:auto;
  overflow-x:hidden;
  background-color: #FFF;
  border: thin solid #CCC;
}

.submenu-p .form-search {
    display: block;
    width: 100%;
    background-color: #fff;
    color: #7F7F7F;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: var(--manpro-text-primary-color);
    background-image: none;
    border: none;
}

.submenu-p > li {
  float:none;
  position:relative;
  width:200px;
}

.submenu-p > li > a {
  display:block;
  position:relative;
  padding: 5px 10px;
  transition: all 0.1s
}

.submenu-p > li:hover > a {
    color: #CCC;
}

.menu > ul a {
  text-decoration: none;
}

.menu:after {
  clear:both;
}

.ln {
  line-height:30px; 
}

.top-buffer2 {
  margin-top:10px;  
}

.top-buffer3 {
  margin-top:3px; 
}

.btn-file {
  position: relative;
  overflow: hidden;
}

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

#drop, #drope, .drop-file {
  width:100%;
  height:90px;
  font-size:14px;
  text-align:center;
  line-height:90px;
}

#btn-upload input[type="file"] {
  opacity: 0;
}

#uploads input {
  opacity: 0;
  height: 3px;
}

.table-view {
  overflow-x:hidden;
  overflow-y:hidden;
  max-height:550px;
  padding-right:1px;
  width: 100%;
}

.table-view table {
  border-top:#CCC thin solid;
  border-bottom:#CCC thin solid;
}

.table-view-st {
  overflow-x:hidden;
  overflow-y:hidden;
  height:250px;
  padding-left:11px;
  padding-right:10px;
}

table.dataTable {
  border-collapse:collapse !important;  
}
table.dataTable thead th, table.dataTable thead td {
  padding: 6px 8px;
  border-bottom: none !important;
}
table.dataTable .dtfc-fixed-left {
  background: var(--manpro-light-scheme-primary);
}
#table-1_length {margin-left: 10px;}
.medium {width : 35%;}
.short {width : 40%;}
.sejajar {float:left; }
.sejajar:after {clear:both; }
#mobile-menu {
  display:none; 
  font-size: 18px;
  margin-top: -3px;
}
.project-home {
  width:100%;
  height:100%;
  position:relative;
}
.img-logo {padding:30px;}
.bg-white {background-color:#FFF;}
.center {text-align:center;}
.right {text-align:right;}
.left {text-align: left;}
.desktop-menu-hide {display: none;}
@media screen and (max-width : 1000px){
  .desktop-menu-hide {
    display: block;
  }

  #more-menu, #mega-menu {display: none !important;}

  #mobile-menu {
    padding:8px;
    color: #999;
    display:inline-block;
    position: absolute;
    z-index: 9999;
  }

  .menu {
    display:none;
    z-index: 9999;
    border-bottom:thin #999 solid;
    overflow:auto;
    width: 100%;
    position:fixed;
    top: 36px;
    height: calc(100% - 36px);
    padding-bottom: 1.15rem;
    background-color: #FFF;
  }
  
  .menu > ul {
    list-style:none;
    margin: 0 0 10px;
    padding-left:0;
    padding-top:0;
    position:relative;
  }
  
  .menu > ul > li {
    position: relative;
    width:100%;
    margin: 0px;
    transition: all 0.3s;
    float:none;
    border-radius: 0px;
  }
  
  .menu > ul > li > a {
    transition: all 0.1s;
    display: block;
    padding: 5px 25px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 120%;
  }
  
  .submenu {
    width:100%;
    display:none;
    visibility:visible;
    background: rgb(255,255,255);
    opacity :0;
    transform: translate(0px,0px);
    list-style:none;
    padding-left:0;
    z-index:999;
    border-left:#CCC thin solid;
    border-right:#CCC thin solid;
    position:relative;
    border: none;
  }
  
  .submenu > li {
    width:100%;
    float:none;
    border: none;
    position:relative;
  }
  
  .submenu > li:first-child {
    border-top:#fff thin solid;
  }
  
  .submenu > li > a {
    display:block;
    position:relative;
    padding: 8px 10px 10px 60px;
    transition: all 0.1s;
    font-size: 110%;
  }

  .parent-menu {
    position: relative;
  }

  .parent-menu > a:after {
    content:"\f0d9";
    font-family: "FontAwesome";
    position: absolute;
    font-size: 120%;
    right:35px;
  }

  .parent-menu > a.changed:after {
    content:"\f0d7";
    font-family: "FontAwesome";
    position: absolute;
    right:35px;
    font-size: 120%;
  }
  
  .submenu > li > a:hover {
    color: #b3b6b7;
  }
  
  .menu > ul  a {
    color: #000;
    text-decoration: none;
  }
  
  .menu:after {
    clear:both;
  }
}

.xs {
  font-size:13px; 
  line-height:14px;
}

.legenda {
  width:11px; 
  height:11px;
  margin-right:5px;
  margin-top:9px;
  border:#CCC thin solid;
  border-radius: 25px;
}

.div-center {
  margin: 5px auto; 
}
.btn img{max-width:30px;}
.btn-file {margin:0;}
#weather {
  width: 100%;
  margin: 0px auto;
  text-align: center;
  text-transform: uppercase;
}

.icon-header {
  max-height:25px;  
}

#slide {
  display:none;
  background-color:#FFF;
  position:absolute;
  z-index:9999;
  top:71px;
  left:32%;
  min-width: 420px;
  border:#999 medium solid;
  box-shadow: 0px 0px 10px #666666;
}

@media screen and (max-width : 991px) { 
  .hide-android {
    display: none;
  }
}

.web-topbar-menu {display: block;}
.web-topbar-mobile {display: none;}
@media screen and (max-width: 768px){
  .display-android {
    display: none;
  }
  .web-topbar-menu {display: none;}
  .web-topbar-mobile {display: inline-block; position: relative;}
  .web-topbar-mobile .btn::after {display: none;}
  .mainmenu > ul > li > a, .web-topbar-mobile > .btn {
    padding: 10px 12px;
  }

  #mobile-menu {
    left: 0px;
  }
  .menu {padding-right: 0}

  #slide {
    left:0%;
    top:112px;
    min-width: 360px;
  }

  .content .dropdown.dropdown-status {
    margin-left: 0px;
    padding: 7px 0px 7px 0px;
  }

  .dropdown-menu .ellipsis-mob:active .sub-menu-ellipsis {
    background-color: #e8500e;
    color: #fff;
  }
}

#sys-admin{
  display:none; 
}

.chosen-container { width: 100% !important; }

.chosen-choices .search-field input {
  width: 136px !important;
}

.chosen-container .chosen-results li.highlighted {background: var(--manpro-primary-color)}

.system {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
   
  max-width : 20px;
  max-height : 20px;
  margin: 0 auto;
  text-align:center;
  display:block;
  border:#999 thin solid;
  cursor:pointer;
  color: transparent !important;
}

.photo-profile {
  margin:10px auto;
  width: 56px;
  height: 56px;
  background-color: transparent;
  background-image: url("issue profile.png");
  background-size:cover;
  background-position: 50% 50%;
}

.photo-profile-style {
  margin:10px auto;
  width: 150px;
  height: 150px;
  border:#666 medium solid;
  border-radius:100px;
  background-color:#CCC;
  background-size:cover;
  background-position: 50% 50%;
}

.photo-project {
  margin:10px auto;
  width: 130px;
  height: 130px;
  background-size:cover;
  background-position: 50% 50%;
}

.xs td {
  padding: 2px; 
}

ul.details {
  list-style:none;
  padding-left:0px;
  display:none;
}

.mce-btn button {
    padding: 2px 4px !important;
    font-size: 12px !important;
}

.forum-ket {
  /* font-size:.9rem; */
  font-size:0.95rem;
  margin-bottom:0.5rem;
  /* color:#999; */
  color:var(--manpro-secondary-color)
}

.photo-container {
  position:relative;
}

.photo-container img {
  max-height:100%;
  display:block;
  margin: 5px auto;
  max-width: 100%;
}

.photo-button {
  position:absolute;
  z-index:99;
  top:50%;
  cursor:pointer;
  opacity: 1;
  -webkit-transition:all 0.3s;
  -moz-transition:all 0.3s;
  transition:all 0.3s;
}

.photo-button:hover {
  opacity: 1;
}

.photo-button i{
  color:#fff;
  padding:10px;
}

.prev {
  left:0px;
}

.next {
  right:0px;
  vertical-align:middle;
}

#btn-delete.delete-top, #selected-printPdf ,#btn-email, .approved, .hiding {
  display:none; 
}

.nowrap {
  white-space:nowrap; 
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: none !important;
}

.table-view .data-b {
  border-bottom: 1px solid #CCC;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover{
  background: #FFF !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  background: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  border: none;
}

.dataTables_paginate{
  padding-bottom: 10px;
}

.bar-check {
  color: #000;
  width:100%;
  height:100%;
}

.bar-check:hover {
  color: #000;
}

.status-table {
  height: 360px;
  overflow-x:hidden;
  overflow-y:auto;  
}

.status-table .dataTables_scrollBody {
  overflow-x:hidden !important;
}

.main-mobile {
  font-size: 1rem;
}

td.child ul {
  width: 100%;  
}

.latar-box {
  border-bottom-left-radius : 10px;
  border-bottom-right-radius : 10px;
  border: #E8E8E8 thin solid;
  box-shadow: rgb(221, 221, 221) 0px 1px 2px;
}

.chart-box {
  border:0px solid #888;
  background-color: rgba(251,251,251);
  box-shadow: #DDD 0px 2px 4px;
}

.page-sub {
  font-size:16px; 
}

.dasbor-box-h {
color: white;
background: hsla(21, 100%, 45%, 1);
background: -webkit-linear-gradient(0deg, hsla(21, 100%, 45%, 1) 0%, hsla(21, 100%, 68%, 1) 100%);
background: linear-gradient(0deg, hsla(21, 100%, 45%, 1) 0%, hsla(21, 100%, 68%, 1) 100%);
padding: 8px 10px;
}

.dasbor-box-h .box-title{
  font-weight:bold;
}

.latar-box tr {
  background-color:transparent !important;
}

.table > thead > tr > th {
  text-align:center;
  vertical-align:middle;
}

.table > tbody > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td {
  vertical-align:top;
}

.table > tbody > tr > td:first-child > button {
  border:none;
  background: none;
  padding: 0px;
  font-size: 18px;
}

.table > tbody > tr > td:first-child > button:hover {
  background: transparent;
  color: var(--manpro-text-primary-color);
}

textarea {
  overflow-x : hidden;
  overflow-y : auto;
  resize:none;
}

.mpo-choices {
  min-width: 60px;
  padding-right: 1.42rem;
}

input[type="submit"]:hover {
  color:white !important;
}

input[type="submit"]:active {
  background: #e8500e; /* Old browsers */
  background: -moz-linear-gradient(top,  #e8500e 0%, #e8500e 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  #e8500e 0%,#e8500e 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  #e8500e 0%,#e8500e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8500e', endColorstr='#e8500e',GradientType=0 ); /* IE6-9 */
  color:white;
}

hr {
  margin-bottom:10px; 
}

.sempit-kanan {
  padding-right: 5px !important;  
}

.sempit-kiri {
  padding-left: 5px !important; 
}

@media (max-width: 768px) {
  .sempit-kanan {
    padding-right: 15px !important;  
  }

  .sempit-kiri {
    padding-left: 15px !important; 
  }
}

p.page-sub {
  display: none;
}

.dataTables_scrollBody {
  padding-right: 1px;
}

.chosen-container-single .chosen-single {
  display: block;
  width: 100%;
  height: 32px;
  padding: 4px 0px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--manpro-text-primary-color);
  background-color: #fff;
  background: transparent;
  border: none;
  border-radius: 0px;
  box-shadow: none;
}

.chosen-single, .chosen-choices {
  border-bottom: 2px #ccc solid !important;
}

.chosen-container-multi .chosen-choices {
  height: auto;
  min-height: 32px;
  border: none;
  padding-left: 0;
  border-bottom: 2px #ccc solid;
  background-image: none;
}

.chosen-container-single .chosen-choices {
  height: 32px;
  border: none;
  background-image: none;
}

.chosen-container-multi .chosen-choices li.search-choice {
  padding: 2px 6px;
  padding-right: 24px;
  line-height: 1.4;
  font-size: 1rem;
  background: #EDEDED;
  margin: 0;
  margin-right: 8px;
  margin-bottom: 6px;
  border: none;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  top: 0; right: 0;
  padding: 4px;
  background: none;
}


.chosen-container-multi .chosen-choices li.search-choice .search-choice-close::after {
    content: '\00D7';
    top: 0;
    position: absolute;
    right: 0;
    width: 24px;
    height: 24px;
    font-size: 24px;
    text-align: center;
    line-height: 24px;
}

.chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  background-image: none !important;
}
.chosen-container-single .chosen-single:focus, .chosen-container-active .chosen-choices, .chosen-container-active.chosen-with-drop .chosen-single {
  border: none;
  border-bottom: 3px #429fff solid;
  outline: 0;
  box-shadow: none;
  background: white;
  padding-left: 0;
}

.alert {
  padding: 5px !important;
}

li.active-result.main {
  padding-left: 0px;
  font-weight: bold;
}

li.active-result {
  padding-left: 10px;
}

.glyphicon {
  color: #808080 !important;
}

table.dataTable tbody th {
    padding: 6px 13px !important;
}

.list-group-item {
  border: none !important;
  background-color: transparent !important;
}

.ui-autocomplete {
  z-index: 9999;
}

.list-group-item .input-group-addon {
  padding: 3px 7px !important;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border: none;
  display: inline !important;
  vertical-align: inherit !important;
}

.input-group-append-manpro {
  display: table-cell;
  vertical-align: top;
}

.input-group-append-manpro > .btn {
  margin:5px;
}

#search-project-top {
  color: var(--manpro-text-primary-color);
}

.chosen-scroll {
    min-height: 250px;
    overflow-y: auto !important;
}

nav .list-group-item {
  padding: 6px 15px;
}

.ui-autocomplete {
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}

.chosen-container .chosen-results {
  max-height:190px !important;
}

table.dataTable tbody td {
  padding: 6px 8px !important;
}

table#table-responsive tbody tr td {
  padding: 0px 8px 8px 8px !important;
}

table#table-responsive.table-mobile-default tbody tr td {
  padding: 6px 8px !important;
}

.counter {
  padding: 8px 10px;
  border: 1px solid #AAA;
}

.form-important {
  color: red;
  font-weight: bold;
}

.create-box {
  width:11px; 
  height:11px;
  margin-right:5px;
  margin-top:5px;
  display: inline-block;
  vertical-align: top;
  border-radius: 25px;
}

.box-merah {
  background-color: #F33;
}

.box-kuning {
  background-color: #F93;
}

.box-hijau {
  background-color: #3F3;
}

.box p #counter, .box p #counter-m {
  border-radius:5px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0.2em 0.7em !important;
}

.dataTables_wrapper .dataTables_paginate .next {
  vertical-align: initial;
}

.dataTables_wrapper .dataTables_paginate {
  padding-bottom: 0.25em;
}

.manpro-swatch1 {
  background-color: #1c87f4;
  color: white;
}
.manpro-swatch2 {
  background-color: #fcc67b;
  color: black;
}
.manpro-swatch3 {
  background-color: #E46C0A;
  color: white;
}
.manpro-swatch4 {
  background-color: #6599c2;
  color: white;
}
.manpro-swatch5 {
  background-color: #8fa5af;
  color: white;
}

/*yellow*/
.manpro-status1 {background-color: rgb(255, 192, 0);}
/*green*/
.manpro-status2 {background-color: rgb(112, 173, 71);}
/*blue*/
.manpro-status3 {background-color: rgb(0, 112, 192);}
/*red*/
.manpro-status4 {background-color: rgb(212, 50, 0);}
/*dark blue*/
.manpro-status5 {background-color: rgb(0, 32, 96);}
.manpro-status-green {background-color: var(--manpro-status-green)}
.manpro-status-yellow {background-color: var(--manpro-status-yellow)}

.manpro-font-color{color: var(--manpro-primary-color)}
.manpro-bg-color{background-color: var(--manpro-primary-color)}

/*index.php*/
.project_iss {
  height: 20px;
  padding: 1px 3px;
  left: calc(50% + 55px);
  display: none;
  font-size: 90%;
}

.project_iss_def {
  background: #e8500e;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  color: white;
  top: 0px;
  border-radius: 10%;
}

.project_iss_list {
  height: 16px;
  padding: 0px 5px;
  left: 90px;
  display: none;
  font-size: 80%;
}

.load-colour {
  color: #535960;
}

.dataTables_info{
  margin-bottom: 10px; 
}

.data-t{
  font-size: 90%;
}

table.dataTable tbody tr.even {
  background-color: transparent !important;
}

table.dataTable tbody tr.odd {
  background-color: transparent !important;
}

table.dataTable tbody tr {
  background-color: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #e8500e !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  box-shadow: none !important; 
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #e8500e !important;
  color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: none;
}

/*PACK 1 Color Manpro*/
/*red dashboard*/
.manpro-color-red {
  background-color: #FE6383;
}

/*yellow dashboard*/
.manpro-color-yellow {
 background-color: #FFBE2A;
}

/*green dashboard*/
.manpro-color-green {
  background-color: #74CD95;
}

/*blue dashboard*/
.manpro-color-blue {
  background-color: #36A2EB; 
}

/*grey dashboard*/
.manpro-color-gray {
  background-color: #ECEDF1;
}

.manpro-bg-secondary {background-color: var(--manpro-light-scheme-secondary)}

.manpro-color-red-text {color: var(--manpro-status-red);}
.manpro-color-yellow-text {color: #FFBE2A;}
.manpro-color-green-text {color: #74CD95;}
.manpro-color-blue-text {color: #36A2EB; }
.manpro-color-gray-text {color: #ECEDF1;}

/*PACK 2 Color Manpro*/
.manpro-color-red2 {
  background-color: #D42800;
}

.manpro-color-yellow2 {
  background-color: #FFC257;
}

.manpro-color-green2 {
  background-color: #9adbb2;
}

.manpro-color-blue2 {
  background-color: #3698EB;
}

.manpro-color-gray2{
  background-color: #C1C1C1;
}

/*PACK 3 Color Manpro*/
.manpro-color-red3 {
  background-color: #D41E00;
}

.manpro-color-yellow3 {
  background-color: #FFB857;
}

.manpro-color-green3 {
  background-color: #4fbf78;
}

.manpro-color-blue3 {
  background-color: #368EEB;
}

.manpro-color-gray3 {
  background-color: #CBCBCB;
}

.manpro-color-orange {
  background-color: #e8500e;
}

.search-design, .manpro-search {
  padding: 4px 12px;
  padding-right: 60px;
  border-radius: 24px;
  border: 0px;
  font-size: 1rem;
  background-color: var(--manpro-light-scheme-primary-pale);
  width: min-content;
}
.manpro-search {padding-right: 12px; margin-left: 0.5rem}
.manpro-search input {
  margin-left: 20px;
  height: 20px;
  border: none; background: transparent;
}
.manpro-search-icon {
  left: 10px;
  top: 6px;
  cursor: pointer;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child::before, table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child::before {
  stroke: unset !important;
  box-shadow: none !important;
}

.progress {
  height: 34px;
}

.form-control {
  display: block;
  min-height: 32px;
  padding: 4px 0px;
  font-size: 14px;
  line-height: 1.4;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: inset none;
  border-bottom: 2px solid #ccc;
}

.form-control:hover, .form-control:focus{
  box-shadow: none;
  -webkit-box-shadow: none;
  border-bottom: 3px #e8500e solid;
}

/* pretty radio */
label.radio-container > input[type="radio"] {
  display: none;
}
label.radio-container > input[type="radio"] + *::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
  margin-right: 0.3rem;
  border-radius: 50%;
  border-style: solid;
  border-width: 0.1rem;
  border-color: #e8500e;
}
label.radio-container > input[type="radio"]:checked + * {
  color: #e8500e;
}
label.radio-container > input[type="radio"]:checked + *::before {
  background: radial-gradient(#e8500e 0%, #e8500e 40%, transparent 50%, transparent);
  border-color: #e8500e;
}

label.radio-container > input[type="radio"] + * {
  display: inline-block;
}

label.radio-container:hover {
  cursor: pointer;
}

label.radio-container {
  user-select: none;
}

label.radio-container .checkmark:not(:first) {
  margin-left: 15px;
}

.title-upload {
  margin-top: 10px;
}

select {
  appearance: none;
  -webkit-appearance: none;
}

select.status {
  border: none;
  border-bottom: 2px solid #ccc;
}

option {
  padding-left: 0px;
}

/*.input-area {padding: 0px !important;}*/
.input-area {padding: 0px !important;}

table.ui-datepicker-calendar > thead > tr {color: #fff !important;}
.ui-widget-header {border : 1px solid #fff; background: #fff;}
#ui-datepicker-div {background: #fff;}
.ui-datepicker td {padding: 0px;}
a.ui-state-default.ui-state-hover {background: #fff;color : #f6872c !important;border: 1px solid #fed22f;}
.ui-state-active {border: 1px solid #fff !important;color: #f6872c !important;}
.ui-state-default {border: none !important;background: none !important;text-align: center !important;}
.ui-state-highlight {border-radius: 40%;border: 2px solid #f6872c !important;}
.ui-state-default, .ui-widget-content .ui-state-default {color: #5b6171;}
.ui-datepicker-month {color: #5b6171 !important;}
.ui-datepicker-year {color: #5b6171 !important;}
.ui-datepicker-title select {border: none;}
.ui-datepicker select.ui-datepicker-month {width: auto;}
.ui-datepicker select.ui-datepicker-year {width: auto;}
.ui-datepicker-calendar th {color: #afaeae;}
.ui-state-hover.ui-datepicker-prev-hover .ui-icon {background-color: unset;}
.ui-widget-header .ui-icon {background-image: url('../../plugins/jquery-ui-1.11.4/images/ui-icons_ef8c08_256x240.png');}
.ui-datepicker-next {transform: scale(1.5,1.5);}
.ui-datepicker-prev {transform: scale(1.5,1.5);}
.ui-datepicker .ui-datepicker-next span {top: 60%;}
.ui-datepicker .ui-datepicker-prev span {top: 60%;}

/*daterangepicker*/
.daterangepicker .ranges .input-mini {background-color: #e9ecef; border: 1px solid #ccc;}
.daterangepicker td.active, .daterangepicker td.active:hover {border-radius: 0;background-color: #e8500e;color: #fff;}
.daterangepicker td.available:hover, .daterangepicker th.available:hover {color: #fff; background-color: #e8500e;}
.daterangepicker td.in-range {background: #e8500e; color: #fff}

select.form-control {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 0px),
    calc(100% - 16px) calc(1em + 0px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    0px 1em;
  background-repeat: no-repeat;
}

#button-forgot {
  border-radius: 25px;
}

#button-forgot:hover {
  background: #f6872c !important;
}

.topbar-button {
  position: relative;
}
.topbar-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  width: 300px;
  background-color: #ffffff;
  padding: 8px;
  border: thin #ccc solid;
}
.topbar-dropdown > li {
  list-style: none;
  padding-left: 0;
  font-size: 12px;
  width: 100%;
}
.notif-title {
  background-color: #f4f4f4;
  padding: 0px 8px;
}
.notif-content {
  padding: 6px 8px;
  border: thin #ededed solid;
  margin-bottom: 8px;
}
#notif-dropdown {
  display: none;
}

.form-table-loading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 100;
  left: 0;
  display: initial;
  background-color: #fff;
}

.form-table-loading h1 {
  text-align: center;
  display: block;
  vertical-align: middle;
  font-size: 2em;
  margin: auto;
  position: absolute;
  top: 35%;
  left: 0;
  bottom: 0;
  right: 0;
}

#fullfil-overview-container {
  background-color: white;
}

.modal.fade .modal-dialog {
  transition: transform .1s ease-out;
  transform: translate(0, 0) !important;
}
.modal.in .modal-dialog {
  transform: translate(0, 0) !important;
}
.modal-title {padding: 0 2rem;}
#bell {line-height: 1.5;}
.isu-table {
  height: 25px;
  border-radius: 30px;
  margin: 12px;
  background-color: rgb(250,250,250);
  box-shadow: #DDD 0px 2px 4px;
}
.notif-bottom-line {
  border-bottom: 2px solid #e8500e;
  font-weight:bold;
  padding-bottom: 10px;
}
.line-bell{
  margin-top: 5px;
  border: 0;
  height: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#table-bell, #table-scheduler {
  position: sticky; 
  overflow: auto; 
  height: 260px; 
  width: 100%;
}
.text-second {
  font-size:90%; color:var(--manpro-secondary-color);
}

.email-config-line {
  border-bottom: 2px solid #e8500e;
  font-weight :bold;
  margin-bottom: 10px;
  color: #e8500e;
  padding-bottom: 10px;
}

.canuse {
  outline: 0;
  width: 40px;
  border-width: 0 0 1px;
  border-color: black
}
.canuse:focus {
  border-color: grey;
}

.not-edit {
    cursor: not-allowed;
    background-color: rgb(241, 241, 241) ;
}

.user-log-table {
  font-size: 85%;
  color: #999;
}

.color-date {
  color: black;
}

.manpro-btn {
  outline: 0;
  box-shadow: none;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  background-image: none;
}

.mpo-btn-border {
  border: thin var(--manpro-primary-color) solid;
}

.input-group-btn .manpro-btn {
  margin-right: 1px;
}

.label-danger {background-color: #e8500e; color:white;}

.tooltiptext {
  color: #fff;
  font-size: 90%;
  background: tomato;
  border-radius: 6px;
  padding: 0 20px;
  position: absolute;
  top: 100%;
  display: inline-block;
}

.btn-add-grey {
  padding:4px 16px;
  background-color: #fff;
  border: thin solid #314042;
  color: #314042;
}

.btn-respond-orange {
  padding:4px 16px;
  background-color: #e8500e;
  border: thin solid #e8500e;
}

.btn-close-red {
  line-height: 26px;
  background-color: transparent;
  border: none;
  color: #FE6383;
}

.btn-transparent {
  background-color: transparent;
  border: none;
  color: #e8500e;
}

.btn-close-no-color {
  padding-left: 15px;
  padding-right: 15px;
  line-height: 26px;
  background-color: transparent;
  border: none;
  color: #e8500e;
}

.btn-add-orange,.btn-upload-orange {
  padding:4px 24px;
  background-color: #fff;
  border: thin solid #e8500e;
  color: #e8500e;
}

.document-details-header {
  border-bottom: 1px #DCE0DD solid;
  background-color: #F7F7F7;
}

button.document-existed[disabled] {
  border: thin solid #3f4042;
  cursor: not-allowed;
}

button.document-existed[disabled] span.mpo-icon {
  background-image: url('manpro-icon-grey-n.png?v=16');
  cursor: not-allowed;
}

.btn-add-orange-disable {
  padding:4px 25px 4px 25px;
  background-color: #fff;
  border: thin solid #f6b99f;
  color: #f6b99f;
}

.btn-add-addition {
  padding: 4px 18px;
  background-color: #fff;
  border: thin solid #e8500e;
  color: #e8500e;
}

a.btn-add-orange:hover {
  color: #e8500e;
}

.btn-close-red img {
  height: 18px;
}

.btn-respond-orange img {
  height: 18px;
}

.png-size {
  height: 14px;
  padding-right: 2px;
  margin-bottom: 3px;
}

a#excel-export-addition:hover, a#excel-export-addition:active, a#excel-export-addition:focus{
  color: #e8500e !important;
}

table.dataTable tfoot td.tfoot-table {
  background-color: rgb(241, 241, 241);
  text-align: right;
  padding: 6px 50px;
}

table.dataTable tfoot td.tfoot-total {
  text-align: right;
  padding: 6px 8px;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: none;
}

.btn-success[disabled], .btn-success:active:hover {
  background-color: #f2672b !important;
  border-color: #f2672b !important;
}

.addition-row {
  background-color: rgba(251,251,251);
  padding-bottom: 25px;
  border-radius: 15px;
}

a#excel-export-addition:hover, a#excel-export-addition:active a#excel-export-addition:focus {
  color: #e8500e !important;
}

#table-delete-confirmation {
  background-color: #fff;
}

.btn-default {
  border-color: #e8500e;
  background-color: #e8500e;
  color: #fff;
}
.comment-box .child-comment:nth-child(odd) {
  background-color: #eee;
}
.comment-box .child-comment:nth-child(even) {
  background-color: #fff;
}

#drop, #drope, .drop-file {
  border: thin #314042 dashed;
  color : #999;
}

.details, .details td {
  background-color:#F9F9F9; 
}

.project-name {font-size: 18px;}

.dropdown-menu {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  border-color: #eee;
}

.btn-default:hover,.btn-default:active {
  color: #fff;
}

.btn-default:focus {
  border-color: #e8500e;
  background-color: #e8500e;
  color: #fff;
}

.btn-default:hover,
.btn-default:active,
.btn-default.hover {
  background-color: #e8500e !important;
}

.btn-close:focus {
  box-shadow: none;
}

.sub-menu-ellipsis {
  padding: 10px 12px;
  text-align:initial;
  font-size: 14px;
  font-weight: normal;
}

.btn-primary:active:focus {
  box-shadow: none;
}

.btn-primary:disabled {
  background-color: #e8500e;
  border-color: #e8500e;
}

@media screen and (max-width : 1000px) {
  .submenu > li {
    background-color: #fff;
  }
}

#notif-updated-time {
  font-size:85%;
  color:#999
}

.total-photo-references {
  color: #e8500e;
}

#search-jagad-mobile {
  z-index: 999999;
}

.badge-padding {
  font-size: .9rem;
  border-radius: .5rem;
  line-height: 1;
  padding: 6px 10px;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  color: #fff;
  font-weight: bold;
}

.badge-font {
  font-size:85%;
}

.badge-cc {
  font-weight: bold;
  color: var(--manpro-light-scheme-secondary);
  font-size: 0.72rem;
  margin-left: 0.4rem;
  background-color: var(--manpro-light-scheme-primary-pale);
  padding: 1px 6px;
  border-radius: 4px;
  vertical-align: text-top;
  user-select: none;
  -webkit-user-select: none;
}

.border-radius-none {
  border-radius: 0;
}

#table-ref #table-popup td {
  vertical-align: top;
}

#table-ref input[type='search'] {
  height: 27px;
  padding: 5px 12px;
  padding-right: 60px;
  border-radius: 24px;
  border: 0px;
  font-size: 14px;
  background-color: #eee;
}

.cursor-default {
  cursor: default !important;
}

.middle-padding-badge {
  padding: 8px 14px;
  font-size: .9rem;
  border-radius: .35rem;
  line-height: 1;
}

.total-count {
  color: #000;
  background-color: #eee;
}

.remove-button {
  background-color: Transparent;
  background-repeat:no-repeat;
  border: none;
}

.photo-ref-thumb, .video-ref-thumb {cursor: pointer; transition: transform 0.2s}
.photo-ref-thumb:hover, .video-ref-thumb:hover {cursor: pointer; transform: scale(1.05)}

.span-text {color: #333;}
.dark-mode .text-span-color {color: #e8500e;}

.label-header {
  font-size: 1.25rem;
  font-weight: bold;
  padding-left: 1rem;
  border-left: solid var(--manpro-primary-color) 4px;
}

/*custom table mobile*/
table.dataTable > tbody > tr.child ul li {border-bottom: none;}
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child::before {top: 3px;left: 4px;display: block;position: absolute;border: none;box-sizing: content-box;font-family: 'Courier New', Courier, monospace;text-indent: 4px;line-height: 16px;content: "\f0da";font-family: "FontAwesome";background-color: transparent;color: #e8500e;font-size: 1.5rem;}
table.table-mobile-default.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child::before {left: 4px;display: block;position: absolute;border: none;box-sizing: content-box;font-family: 'Courier New', Courier, monospace;text-indent: 4px;line-height: 16px;content: "\f0da";font-family: "FontAwesome";background-color: transparent;color: #e8500e;font-size: 1.5rem;}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child::before {content: "\f0d7";background-color: transparent;}

.dropdown .ellipsis-web:hover a , .dropdown .ellipsis-web:hover {
  background-color: #e8500e;
  color: #fff;
}

.ellipsis-web:hover .icon-hover {
  background-image: url('manpro-icon-white-n.png?v=16');
}

.more-action-item {
  padding: 10px;
}

.more-action-item a {color: var(--manpro-text-primary-color)}

.more-action-separator {
  height: 2px;
  margin: 8px 0;
  background: var(--manpro-light-scheme-primary-pale);
}

.dropdown-status .middle-padding-badge {
  font-weight: bold;
}

@media (min-width: 576px) and (max-width: 768px) {
  .search-width {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .search-width {
    width: 50%;
  }

  .search-design {
    float: left !important;
  }
}

@media (min-width: 992px) {
  .search-width {
    width: 30%;
  }
  .modal-custom-dialog {
    width: 45%;
    margin: 1.75rem auto;
  }
  .modal-custom-comment {
    width: 70%;
    margin: 1.75rem auto;
  }
}

table.dataTable > tbody > tr.child ul li {
  padding: .3em 0;
}

.filter-multiple-model .chosen-choices {
  border: 0.5px solid #aaa;
  padding: 0 5px;
}

.filter-multiple-model .chosen-choices {
  border-bottom: 0.5px solid #aaa !important;
}

/* The Modal (background) */
.modal-img {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  padding-top: 35px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content-img {
  margin: auto;
  display: block;
  animation-name: zoom;
  animation-duration: 0.4s;
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

.tooltip-wrapper .btn[disabled] {
  pointer-events: none;
}

.disabled.tooltip-wrapper, .column-special-disable {
  cursor: not-allowed;
}

.close-modal {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  z-index: 9999;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media (max-width: 700px){
  .modal-content-img {
    width: 100%;
  }
}

.pull-right > .dropdown-menu {
  left: -90px;
}

.dropdown-menu {
  min-width: 63px;
  padding: 6px 0px;
}

.content .dropdown {
  position: relative;
  display: inline-block;
  margin-left: .5rem;
}

.content .dropdown.no-margin {
  margin-left: 0px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;} 

.pointer {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .dok_no_input {
    margin-top: 10px;
  }
}

#project-label {
  display: block;
  font-weight: bold;
  margin-bottom: 1em;
}
#project-icon {
  float: left;
  height: 32px;
  width: 32px;
}
#project-description {
  margin: 0;
  padding: 0;
}

.label_sp_label {
  padding-left: 0px;
  width: 100%;
  display: block;
  color: var(--manpro-text-primary-color);
  font-weight: bold;
  border:none;
}

.label_sp {
  background-color: transparent;
  padding: 0;
  padding-left: 10px;
  width: 100%;
  display: block;
  text-align: center;
  text-transform: uppercase;
  background-color: #e8500e;
  color: white;
  font-weight: bold;
  border:none;
}

.label_sp .plusde {
  padding-right: 10px;
  float:right;
}

.table-desktop-action-column {
  width: 50px;
  text-align: left !important;
}

.table-desktop-action-column-admin {
  width: 50px;
  text-align: center;
}

.modal {
  overflow:auto !important;
}

.manpro-alert-banner {
  display: flex;
  background-color: var(--manpro-light-scheme-primary-pale);
  border-left: 4px solid var(--manpro-primary-color);
  margin-bottom: 0.5rem;
}
.manpro-alert-banner .manpro-alert-banner-text {
  width: 100%;
  padding: 2px 8px;
  align-self: center;
}
.manpro-alert-banner .manpro-alert-banner-button {
  display: inline-block;
  margin-left: 1rem;
}
.manpro-alert-banner .manpro-alert-banner-button button {
  border-radius: 4px;
  background: var(--manpro-primary-color);
  color: white;
  border: none;
  font-size: 0.85rem;
  padding: 2px 6px;
}
.manpro-alert-banner .manpro-alert-banner-remove {
  display: flex;
  padding: 6px 12px;
  cursor: pointer;
  align-self: stretch;
  align-items: center;
  background-color: var(--manpro-primary-color);
  color: white;
}

.button-badge {
  background-color: #eee;
  color: var(--manpro-text-primary-color);
  border: 0px;
  font-size: 0.94rem;
  padding: 0px 16px;
  height: 30px;
  font-weight: normal;
  border-radius: 6px;
  vertical-align: middle;
  display: inline-block;
}

.select-ontable {
  background-color: #eee;
  color: #212529;
  border: none;
  border-radius: 6px;
  font: inherit;
  line-height: 30px;
  padding: 0em 2em 0em 0.5em;
  margin: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 11px) calc(1em), calc(100% - 7px) calc(1em), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

.mpo-pointer {
  cursor: pointer;
}

.mpo-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('manpro-icon-orange-n.png?v=16');
  background-repeat: no-repeat;
  background-size: 216px 272px;
  vertical-align: middle;
}
.mpo-icon-modal-close {
  background-image: url('manpro-icon-white-n.png?v=16');
}
.mpo-icon-sm {
  width: 16px;
  height: 16px;
  background-size: 144px 176px;
}
.mpo-icon-lg {
  width: 64px;
  height: 64px;
  background-size: 576px 704px;
}
.mpo-icon-black {background-image: url('manpro-icon-black-n.png?v=16');}
.mpo-icon-grey {background-image: url('manpro-icon-grey-n.png?v=16');}
.mpo-icon-white {background-image: url('manpro-icon-white-n.png?v=16');}
.mpo-icon-add {background-position: 0% 0%;}
.mpo-icon-plus {background-position: 0% 30%;}
.mpo-icon-minus {background-position: 75% 20%;}
.mpo-icon-times {background-position: 12% 10%;}
.mpo-icon-menu {background-position: 62.5% 0%;}
.mpo-icon-upload-alt {background-position: 12.5% 40%;}
.mpo-icon-home {background-position: 50% 20%;}
.mpo-icon-bell-add {background-position: 12.5% 0%;}
.mpo-icon-bell {background-position: 75% 0%;}
.mpo-icon-download {background-position: 87.5% 10%;}
.mpo-icon-remove {background-position: 50% 10%;}
.mpo-icon-upload {background-position: 75% 30%;}
.mpo-icon-excel {background-position: 25% 20%;}
.mpo-icon-csv {background-position: 12.5% 80%;}
.mpo-icon-copy {background-position: 37.5% 10%;}
.mpo-icon-edit {background-position: 0% 20%;}
.mpo-icon-pdf {background-position: 87.5% 20%;}
.mpo-icon-cog {background-position: 62.5% 30%;}
.mpo-icon-cog-fill {background-position: 25% 80%;}
.mpo-icon-reply {background-position: 37.5% 0%;}
.mpo-icon-document {background-position: 75% 10%;}
.mpo-icon-comment {background-position: 87.5% 0%;}
.mpo-icon-fill-comment {background-position: 25% 70%;}
.mpo-icon-sort-asc {background-position: 50% 0%;}
.mpo-icon-sort-desc {background-position: 62.5% 10%;}
.mpo-icon-undo {background-position: 0% 40%;}
.mpo-icon-redo {background-position: 25% 30%;}
.mpo-icon-expand {background-position: 12.5% 20%;}
.mpo-icon-collapse {background-position: 0% 10%;}
.mpo-icon-zoom {background-position: 50% 30%;}
.mpo-icon-full {background-position: 37.5% 20%;}
.mpo-icon-refresh {background-position: 37.5% 30%;}
.mpo-icon-shuffle {background-position: 25% 10%;}
.mpo-icon-recycle {background-position: 12.5% 30%;}
.mpo-icon-drag {background-position: 50% 40%;}
.mpo-icon-checkbox {background-position: 37.5% 40%;}
.mpo-icon-checkbox-checked {background-position: 62.5% 40%;}
.mpo-icon-form {background-position: 62.5% 20%;}
.mpo-icon-chevron-up {background-position: 25% 0%;}
.mpo-icon-chevron-down {background-position: 25.5% 40%;}
.mpo-icon-ellipsis {background-position: 75% 40%;}
.mpo-icon-images {background-position: 87.5% 40%;}
.mpo-icon-log {background-position: 0% 50%;}
.mpo-icon-user {background-position: 87.5% 30%;}
.mpo-icon-filter {background-position: 12.5% 50%;}
.mpo-icon-share {background-position: 100% 20%;}
.mpo-icon-grid {background-position: 25% 50%;}
.mpo-icon-magnifying-glass-zoom {background-position: 37.5% 50%;}
.mpo-icon-save {background-position: 50% 50%;}
.mpo-icon-checklist {background-position: 62.5% 50%;}
.mpo-icon-globe {background-position: 87.5% 50%;}
.mpo-icon-chart {background-position: 75% 50%;}
.mpo-icon-project-report {background-position: 100% 30%;}
.mpo-icon-map-marker {background-position: 100% 0%;}
.mpo-icon-left-arrow{background-position: 100% 50%;}
.mpo-icon-right-arrow{background-position: 100% 40%;}
.mpo-icon-play{background-position: 100% 10%;}
.mpo-icon-calendar{background-position: 0% 60%;}
.mpo-icon-action{background-position: 12.5% 60%;}
.mpo-icon-mail{background-position: 25% 60%;}
.mpo-icon-flag{background-position: 37.5% 60%;}
.mpo-icon-fill-filter{background-position: 50% 60%;}
.mpo-icon-fill-mail{background-position: 62.5% 60%;}
.mpo-icon-fill-flag{background-position: 75% 60%;}
.mpo-icon-attachment{background-position: 87.5% 60%;}
.mpo-icon-attachment-add{background-position: 0% 70%;}
.mpo-icon-scribble{background-position: 100% 60%;}
.mpo-icon-gift{background-position: 12.5% 70%;}
.mpo-icon-fill-comment{background-position: 25% 70%;}
.mpo-icon-calendar-user{background-position: 37.5% 70%;}
.mpo-icon-clock{background-position: 50% 70%;}
.mpo-icon-fill-clock{background-position: 62.5% 70%;}
.mpo-icon-moveto-folder{background-position: 75% 70%;}
.mpo-icon-qrcode{background-position: 87.5% 70%;}
.mpo-icon-flow{background-position: 100% 70%;}
.mpo-icon-chain{background-position: 0% 80%;}

#statuses .chip, .chip {
  font-size: 0.94rem;
  padding: 0px 16px;
  height: 30px;
  line-height: 30px;
  font-weight: normal;
  border-radius: 26px;
  margin-bottom: 0.4rem;
}
#statuses .chip.active, .chip.active {font-weight: bold;}
.chip-checklist {transform: scale(0.8); vertical-align: text-bottom; display: none}
.chip.active .chip-checklist {display: inline-block;}
.chip-more {background-color: var(--manpro-primary-color);}
#ast-dialog-bg {z-index: 9999}

/* DARK MODE */
.dark-mode {
  --manpro-text-primary-color: #DDD;
  --manpro-light-scheme-primary: #2C2D2E;
  --manpro-light-scheme-primary-pale: #3F4042;
  --manpro-light-scheme-secondary: #8A8BA0;
  --manpro-secondary-color: #98999A;
}
.dark-mode .mpo-icon {background-image: url('manpro-icon-orange-n.png?v=16');}
.dark-mode .mpo-icon-white {background-image: url('manpro-icon-white-n.png?v=16');}

.dark-mode, .dark-mode .navbar-custom-menu > .navbar-nav > li > .dropdown-menu, .dark-mode .content-wrapper, .dark-mode .right-side, .dark-mode .main-header,.dark-mode .form-table-loading, .dark-mode #fullfil-overview-container, .dark-mode #mega-menu {
  background-color: #2C2D2E;
}
.dark-mode,.dark-mode .dropdown-menu,.dark-mode input,.dark-mode .table,.dark-mode select,.dark-mode .menu > ul > li > a,.dark-mode .mainmenu > ul > li > a,.dark-mode .chosen-container .chosen-results,.dark-mode h1,.dark-mode h2,.dark-mode h3,.dark-mode h4,.dark-mode h5,.dark-mode h6,.dark-mode .h1,.dark-mode .h2,.dark-mode .h3,.dark-mode .h4,.dark-mode .h5,.dark-mode .h6,.dark-mode .project-name-parent {
  color: #DDD;
}

.dark-mode .manpro-box .manpro-title {
  color: #e8500e;
}
.dark-mode a {
  color: var(--manpro-primary-color);
}
.dark-mode a:hover,
.dark-mode a:active,
.dark-mode a:focus {
  color: var(--manpro-primary-color);
}
.dark-mode .aktif-p {background-color: #494A4C;}
.dark-mode .form-control {
  border-bottom: 2px solid #494A4C;
  background-color: #3F4042;
  color: #DDD;
}
.dark-mode span.form-control.detail-edit {
  background-color: #2C2D2E;
}
.dark-mode .mobile-notif a {color: white;}
.dark-mode .form-control::placeholder,.dark-mode .forum-ket {
  color: #BBB;
}
.dark-mode .mainmenu > ul > li:hover > a {
  background: #494A4C;
  color: #BBB;
}
.dark-mode .skin-blue .main-header li.user-header, .dark-mode .box-footer {
  background-color: var(--manpro-light-scheme-primary-pale) !important;
}
.dark-mode .main-header {
  border-bottom: solid #494A4C 2px;
}
.dark-mode .sapujagad, .dark-mode .fav-menu-name {
  border: 2px solid #494A4C;
  color: #DDD;
  background-color: #3F4042;
}
.dark-mode .search-jagad {
  border-color: #494A4C;
  background-color: #3F4042;
}
.dark-mode .sapujagad-mobile {color: #DDD;}
.dark-mode .btn-add-orange, .dark-mode .btn-upload-orange {
  background-color: #494A4C;
  border: thin solid #494A4C;
  color: #fff;
}
.dark-mode .latar-box {
  border: #494A4C thin solid;
}
.dark-mode .chart-box {
  background-color: #3F4042;
  box-shadow: none;
}
.dark-mode select.form-control {
  background-image:
    linear-gradient(45deg, transparent 50%, #ffffff 50%),
    linear-gradient(135deg, #ffffff 50%, transparent 50%),
    linear-gradient(to right, #494A4C, #494A4C);
}
.dark-mode .dasbor-box-h {
background: #3F4042;
background: linear-gradient(90deg, #3F4042 0%, #3F4042 100%);
background: -webkit-linear-gradient(90deg, #3F4042 0%, #3F4042 100%);
}
.dark-mode hr {
  border-color: #494A4C;
}
.dark-mode .tickLabel,.dark-mode .legendLabel {
  color: #DDD !important;
}
.dark-mode .chosen-single {
  color: #ECECEC !important;
  background-color: #494A4C !important;
}
.dark-mode .chosen-container-multi .chosen-choices {
 background-color: #494A4C;
}
.dark-mode #search-project-top {
  background-color: #494A4C;
  color: #DDD;
}
.dark-mode .search-design, .dark-mode .nav-tabs > li.active > a, .dark-mode .nav-tabs > li.active > a:focus, .dark-mode .nav-tabs > li.active > a:hover {
  background-color: #494A4C;
  color: #DDD;
}
.dark-mode .nav-tabs > li.active > a, .dark-mode .nav-tabs > li.active > a:focus, .dark-mode .nav-tabs > li.active > a:hover {
  border: 1px solid #e8500e;
  border-bottom-color: transparent;
}
@media screen and (min-width : 1000px){
  .dark-mode .menu > ul > li:hover > a {
      color: #BBB;
  }
  .dark-mode .submenu > li > a:hover {
    color: #BBB;
  }
  .dark-mode .menu > ul a {
    color: #DDD;
  }
  .dark-mode .menu > ul > li.aktif-p > a {
      color: #fff;
  }
}
@media screen and (max-width : 1000px) {
  .dark-mode .menu, .dark-mode .menu > ul > li, .dark-mode .submenu > li {
    background-color: #494A4C;
  }
  .dark-mode .menu > ul a {
    color: #DDD;
  }
  .dark-mode .submenu > li:first-child {
    border-top: #494A4C thin solid !important;
  }
  .dark-mode .submenu {
    border: none !important;
  }
}
.dark-mode .submenu {
  background: #494A4C;
  border: #494A4C thin solid;
  color: #DDD;
}
.dark-mode .submenu-p {
  background: #494A4C;
  border: thin solid #3F4042;
}
.dark-mode .submenu-p > li:hover > a {
  color: #EEE;
  background-color: #18709f;
}
.dark-mode .submenu-p .form-search {
  color: #EEE;
}
.dark-mode .table {
  background-color: transparent;
}
.dark-mode .table-view table {
  border-top:#494A4C thin solid;
  border-bottom:#494A4C thin solid;
}
.dark-mode .table > tbody > tr > td, .dark-mode .table > tbody > tr > th, .dark-mode .table > tfoot > tr > td, .dark-mode .table > tfoot > tr > th, .dark-mode .table > thead > tr > td,.dark-mode .table > thead > tr > th {
  border-top: 0;
}
.dark-mode .form-control[disabled], .dark-mode .form-control[readonly], .dark-mode fieldset[disabled] .form-control {
  background-color: #494A4C;
}
.dark-mode .chosen-single, .dark-mode .chosen-choices {
  border-bottom: 2px #494A4C solid !important;
}
.dark-mode .modal-header {
  border-bottom: 1px #494A4C solid;
}
.dark-mode .nav > li > a:focus, .dark-mode .modal-content, .dark-mode .panel, .dark-mode .gantt-kontener {
  background-color: #3F4042;
}

.dark-mode .nav > li > a.caret-off:focus {
  background-color: transparent;
}

.dark-mode .nav-tabs > li > a:hover {
  border-color: #e8500e #e8500e #e8500e;
}
.dark-mode .nav-tabs {
  border-color: #494A4C;
}
.dark-mode .nav-tabs > li > .active, .dark-mode .nav-tabs > li > .nav-link:hover {
  color: #e8500e;
  border: 1px solid #494A4C;
  border-bottom-color: transparent;
  background-color: #494A4C;
}
.dark-mode .nav-tabs > li > a.active {background-color: #494A4C;}
.dark-mode .nav-tabs > li > a.active, .dark-mode .nav-tabs > li > a:hover {
  border: 1px solid #494A4C;
  border-bottom-color: transparent;
}
.dark-mode .nav .open > a, .dark-mode .nav .open > a:focus, .dark-mode .nav .open > a:hover {
  background-color: #494A4C;
  border-color: #337ab7;
}
.dark-mode .dataTables_wrapper .dataTables_paginate .paginate_button {
  color: #DDD !important;
  background-color: #3F4042;
  border: 1px solid #494A4C !important;
}
.dark-mode .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dark-mode .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover{
  background: #494A4C !important;
  color: #DDD !important;  
}
.dark-mode .chosen-container .chosen-drop {
  color: #DDD;
  border: 1px solid #494A4C;
  box-shadow: none;
  background-color: #3F4042;
}
.dark-mode select.status {
  border: none;
  border-bottom: 2px solid #494A4C;
  background-color: #3F4042;
}
.dark-mode .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  background-color: #494A4C;
}
.dark-mode .dropdown-menu {
  background-color: #494A4C;
  border: solid #494A4C 2px;
  box-shadow: none;
}
.dark-mode .dropdown-menu > li > a {
  color: #DDD;
}
.dark-mode .dropdown-menu > li:not(li.ellipsis-web) > a:hover, .dark-mode .dropdown-menu > li:not(li.ellipsis-web) > a:focus, .dark-mode .dropdown-menu > li:not(li.ellipsis-web) > a:active {
  color: #FFF;
  background-color: #e8500e;
}
.dark-mode .dropdown-menu > .divider {
  background-color: #337ab7;
}
.dark-mode .dataTables_scroll {
  border-bottom: #494A4C thin solid;  
}
.dark-mode .table-hover > tbody > tr:hover {background-color: transparent;}
.dark-mode #drop, .dark-mode #drope, .dark-mode .drop-file {
  background-color:#494A4C;
  border:thin #494A4C dashed;
  color : #DDD;
}
.dark-mode .close {
  color: #DDD;
  text-shadow: none;
  opacity: 1;
}
.dark-mode .close:hover {
  color: #FFF;
  opacity: 1;
}
.dark-mode .details {background-color:#494A4C;}
.dark-mode .details td {background-color:#494A4C; }
.dark-mode #table-delete-confirmation {
  background-color: #494A4C !important;
}
.dark-mode table.ui-datepicker-calendar > thead > tr {color: #fff !important;}
.dark-mode .ui-widget-header {border : 1px solid #494A4C; background: #494A4C;}
.dark-mode #ui-datepicker-div {background: #494A4C;}
.dark-mode a.ui-state-default.ui-state-hover {background: #fff;color : #e8500e!important;border: 1px solid #fed22f;}
.dark-mode .ui-state-active {border: 1px solid #494A4C !important;color: #e8500e !important;}
.dark-mode .ui-state-highlight {border-radius: 40%;border: 2px solid #fff !important;}
.dark-mode .ui-state-default, .dark-mode .ui-widget-content .ui-state-default {color: #fff;}
.dark-mode .ui-datepicker-month {color: #fff !important; background: #494A4C;}
.dark-mode .ui-datepicker-year {color: #fff !important; background: #494A4C;}
.dark-mode .ui-datepicker-calendar th {color: #fff;}
.dark-mode .ui-widget-content {border: none;}
.dark-mode .ui-widget-header .ui-icon {background-image: url('../../plugins/jquery-ui-1.11.4/images/ui-icons_ffffff_256x240.png') !important;}
/*daterangepicker*/
.dark-mode .daterangepicker .calendar-date {background: none;border: none;color: #fff;}
.dark-mode .daterangepicker td.available:hover, .dark-mode .daterangepicker th.available:hover {background: none; color: #fff;}
.dark-mode .daterangepicker td.in-range {background-color: #e8500e;border-color: #3071a9;}
.dark-mode .daterangepicker .ranges label {color: #fff; text-shadow: none;}
.dark-mode .daterangepicker td.active, .dark-mode .daterangepicker td.active:hover {;background-color: #e8500e;}
.dark-mode .daterangepicker .ranges .input-mini {background-color: #494A4C; color: #fff; border: none;}

.dark-mode .chart-style {
  border: 0px solid #494A4C !important;
  background-color: #3F4042 !important;
}
.dark-mode .canuse {background-color: #494A4C;}
.dark-mode .not-edit {
  background-color: #11518B;
}
@media (min-width: 363px) and (max-width: 768px) {
  .dark-mode .not-edit{
    background-color: rgb(17, 81, 139);
  }
}
.dark-mode .user-log-table {
  font-size: 85%;
  color: #fff;
}
.dark-mode div.due-date {
  color: #fff;
}
.dark-mode .color-date {
  color: rgb(255, 255, 255);
}
.dark-mode .child-comment {
  background-color: #3F4042 !important;
}
.dark-mode .table-label-separator {
  background-color: #3F4042 !important;
}
.dark-mode .search-design-mobile {
  background-color: #3F4042 !important;
}
.dark-mode .project-list-topbar {
  color: #fff !important;
}
.dark-mode .btn-add-addition {
  background-color: #494A4C !important;
  color: #fff !important;
  border: thin solid #494A4C !important;
}
.dark-mode .btn-add-grey {
  background-color: #494A4C;
  border: thin solid #494A4C;
  color: #fff;
}
.dark-mode .btn-close-red {
  background-color: #3F4042;
  border: thin solid #3F4042;
  color: #fff;
}
.dark-mode table.dataTable tfoot td.tfoot-table {
  background-color: #3F4042;
  text-align: right;
  padding: 6px 50px;
}
.dark-mode .modal-footer {
  border-top : none;
}
.dark-mode .addition-row {
  background-color: #3F4042 !important;
  padding-bottom: 25px;
  border-radius: 15px;
}
.dark-mode .btn-respond-orange {background-color: #e8500e; border: none;}
.dark-mode .btn-close-no-color {
  background-color: transparent;
  color: #fff;
}
.dark-mode a.btn-add-orange:hover,.dark-mode a#excel-export-addition:hover, .dark-mode a#excel-export-addition:active .dark-mode a#excel-export-addition:focus {
  color: #fff !important;
}
.dark-mode .font-color-name, .dark-mode .manpro-font-color {
  color: var(--manpro-primary-color);
}
.dark-mode .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.dark-mode .btn-success, .dark-mode .btn-primary {background-color: #e8500e; border: none;}
.dark-mode .btn-success:hover, .dark-mode .btn-primary:hover,.dark-mode .btn-success:focus, .dark-mode .btn-primary:focus,
.dark-mode .btn-success:active, .dark-mode .btn-primary:active {background-color: #e8500e !important; border: none; box-shadow: none;}
.dark-mode label[for=dark-mode] {
  color: #fff;
}

.dark-mode .mega-menu-item a {color:#fff;}
.dark-mode .mega-menu-item a:hover {color:#b8b8b8;}

.dark-mode .mega-menu-item.menu-active {
  background-color: #3F4042;
}

.dark-mode .txt-color {
  color: #fff;
}

.dark-mode input[type="submit"]:active {
  background: none;
}

.dark-mode .btn-upload-orange[disabled] span.mpo-icon {
  background-image: url('manpro-icon-white-n.png');
}

.dark-mode .email-config-line {
  box-shadow: 0px 2px 0px #ffffff;
}

.dark-mode #notif-updated-time {
  color: #ffffff;
}

.dark-mode .card {
  background-color: #3F4042;
}

.dark-mode #table-ref label {
  color: #fff;
}

.dark-mode #table-ref input {
  border: none;
  background-color: #494A4C;
}

.dark-mode #table-ref input[type='search'] {
  background-color: #494A4C;
  color: #DDD;
}

.dark-mode .separator {
  background-color: #494A4C !important;
}

.dark-mode .total-count {
  color: #fff;
  background-color: #494A4C;
}

.dark-mode .project-list-topbar .manpro-font-color {
  color: #e8500e;
}

.dark-mode .isu-table {
  background-color: transparent;
  box-shadow: none;
}

.dark-mode .dataTables_wrapper .dataTables_info {
  color: #ffffff
}

.dark-mode a.badge {
  color: #ffffff;
}

.dark-mode a.btn-success {
  color: #fff;
}

@media (max-width: 991px) {
  .dark-mode .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
    border: 1px solid #494A4C;
  }
}

.dark-mode .mce-panel {background-color: #494A4C;}
.dark-mode .mce-menubar {border: 1px solid #fff;}
.dark-mode .mce-menubar .mce-menubtn, .dark-mode .mce-tabs + .mce-container-body, .dark-mode .mce-tab.mce-active, .dark-mode .mce-tab, .dark-mode .mce-tab:hover, .dark-mode .mce-textbox {background: #494A4C;}
.dark-mode .mce-path-item {color: #fff;}
.dark-mode #mceu_45 {color: #fff; text-shadow: none;}
.dark-mode .mce-menubar .mce-menubtn button {color: #fff;}
.dark-mode .mce-menubar .mce-menubtn:hover {background: none; border-color: #494A4C;}
.dark-mode .mce-btn {background-color: #494A4C;}
.dark-mode .mce-btn-group:not(:first-child) {border: none;}
.dark-mode .mce-btn:hover {background-color: #494A4C; border-color: #494A4C;}
.dark-mode .mce-splitbtn:hover .mce-open {border-left-color: #494A4C;}
.dark-mode .mce-ico {color: #fff;}
.dark-mode .mce-menubtn button {color: #fff;}
.dark-mode .mce-listbox .mce-caret {right: -10px;}
.dark-mode .mce-caret {border-top: 4px solid #fff;}
.dark-mode .mce-menu-item .mce-ico, .dark-mode .mce-menu-item .mce-text {color: #fff;}
.dark-mode .mce-menubar .mce-menubtn.mce-active {background-color: #494A4C; border-color: #494A4C;}
.dark-mode .mce-btn.mce-active {background-color: #494A4C; border-color: #494A4C;}
.dark-mode .mce-btn.mce-active, .dark-mode .mce-btn.mce-active:hover {background-color: #494A4C; border-color: #494A4C;}
.dark-mode .mce-btn:active {background-color: #494A4C; border-color:#494A4C;}
.dark-mode .mce-colorbutton:hover .mce-open {border-color: #494A4C;}
.dark-mode .mce-menubar .mce-caret {border-top-color: #fff;}
.dark-mode .mce-menu-item .mce-caret {border-left: 4px solid #fff;}
.dark-mode .mce-menu-item:hover {background-color: #fff;}
.dark-mode .mce-menu-item:hover .mce-text {color: #494A4C;}
.dark-mode .mce-menu-item:focus, .dark-mode .mce-menu-item.mce-selected {background-color: #fff; color: #494A4C;}
.dark-mode .mce-menu-item.mce-selected .mce-text {color: #494A4C;}
.dark-mode .mce-btn button {color: #fff;}
.dark-mode .mce-floatpanel.mce-popover {background: transparent;}
.dark-mode .mce-container * {color: #fff;}
.dark-mode .mce-tabs {background: #494A4C;}
.dark-mode .mce-label {text-shadow: none;}
.dark-mode .mce-menu-item-normal.mce-active {background-color: #494A4C;}
.dark-mode .mce-menu-item:hover .mce-ico {color: #494A4C;}
.dark-mode .mce-grid-border a.mce-active {border-color: #fff; background: #fff;}

.dark-mode .span-text, .dark-mode .text-span-color {color: #DDD;}

.dark-mode .dhx_cal_navline {background-color: #3F4042;}
.dark-mode .dhx_cal_navline .dhx_cal_date {color: #fff;}
.dark-mode .dhx_cal_header {background: #2c2d2e;}
.dark-mode .dhx_scale_bar {color: #fff; background-color: #3F4042;}
.dark-mode .dhx_before .dhx_month_head {background-color: #2c2d2e;}
.dark-mode .dhx_before .dhx_month_head {color: #fff;}
.dark-mode .dhx_before .dhx_month_body {background-color: #2c2d2e;}
.dark-mode .dhx_month_head {background-color: #3F4042; color: #fff;}
.dark-mode .dhx_month_body {background-color: #3F4042;}
.dark-mode .dhx_now .dhx_month_head, .dark-mode .dhx_now .dhx_month_body {background-color: #535558;}
.dark-mode .dhx_after .dhx_month_head, .dark-mode .dhx_after .dhx_month_body {background-color: #2c2d2e;}
.dark-mode .dhx_after > .dhx_month_head {color: #fff;}
.dark-mode .dhx_cal_prev_button, .dark-mode .dhx_cal_next_button {filter: brightness(1000) sepia(0) hue-rotate(140deg) saturate(0);}
.dark-mode .dhx_cal_today_button {color: #fff;}
.dark-mode .dhx_cal_container {background-color: #fff;}
.dark-mode .popover, .dark-mode .popover .popover-header {background-color: var(--manpro-light-scheme-primary-pale);}

.dark-mode .chosen-container-multi .chosen-choices li.search-choice {
  border: 1px solid #494A4C;
  background-image: linear-gradient(#494A4C 20%,#494A4C 50%,#494A4C 52%,#494A4C 100%);
  box-shadow: none;
  color: #fff
}

.dark-mode .chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #fff !important;
}

.dark-mode .filter-multiple-model .chosen-choices {
  border: none;
}

.dark-mode .button-badge {
  background-color: #494A4C;
  color: #fff;
}

.dark-mode .select-ontable {
  background-color: #494A4C;
  color: #DDD;
}

.dark-mode .table-view .data-b {
  border-bottom: 1px solid #494A4C;
}

/* MISC */
#ast-toast-el {z-index: 1070}

#mpo-flash-message {
  color: var(--manpro-text-primary-color);
  background-color: var(--manpro-light-scheme-primary);
  z-index: 9999;
  display: flex;
  position: fixed;
  top: 4rem;
  font-size: 1.2rem;
  left: 0;
  right: 0;
  width: 90%;
  margin: auto;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  align-items: center;
}
#mpo-flash-message > div {padding: 1rem}
#mpo-flash-message .sign-container {
  width: 20%;
  border-right: thin var(--manpro-light-scheme-primary-pale) solid;
}
#mpo-flash-message .sign-container.positive {color: var(--manpro-status-green)}
#mpo-flash-message .sign-container.negative {color: var(--manpro-status-red)}

.ui-autocomplete { height: 500px; overflow-y: auto; overflow-x: hidden; z-index: 800; padding-top : 20px; position: fixed;}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {color : #b3b6b7; background: none; border: none;}
#ui-id-1 {
  top:40px !important;
}
.chosen-container .chosen-results {
    max-height:160px !important;
}
.chosen-container .chosen-drop.dropup {
  border-bottom: 0;
  border-top: 1px solid #aaa;
  top: auto;
  bottom: 40px;
}

.chosen-container.chosen-with-drop .chosen-single.dropup {
  background-image: none;
}

.chosen-container.chosen-with-drop .chosen-drop.dropup {
  box-shadow: none;
  margin-bottom: -16px;
}

#mpo-floating-items {pointer-events: none}
.mpo-floating-items {pointer-events: initial}
.floating {pointer-events: initial;}
.mpo-floating-btn {
  background-color: var(--manpro-primary-color); padding: 0.6rem 0.6rem; color: white
}