.navbar {
  background-color: #fff;
  border: none;
  min-height: 60px;
  /* -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); */
}

.navbar-nav > li > a {
  min-height: 60px;
  color: #000;
  display: flex;
  align-items: center;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: #fff;
  color: #1890ff;
}

.navbar-header,
.navbar-collapse {
  height: 60px;
}

/* .navbar-brand {
} */

.navbar-brand > img {
  margin-top: unset;
  width: 30px;
  height: auto;
}

.navigation,
.navigation > li ul {
  background-color: #fff;
}

.navigation li a {
  color: #595959;
}

.navigation li a:hover,
.navigation li a:focus {
  color: #1890ff;
  background: #e6f7ff;
}

.navigation > li.active > a,
.navigation > li.active > a:hover,
.navigation > li.active > a:focus {
  color: #1890ff;
  background: #e6f7ff;
}

.navigation > li > a > i {
  min-width: 15px;
}

.navigation > li > ul li:first-child {
  padding: 0;
}

.navigation > li > ul li.active > a,
.navigation > li > ul li.active > a:hover,
.navigation > li > ul li.active > a:focus {
  background-color: #e6f7ff;
  color: #1890ff;
  border-right: 3px solid #1890ff;
}

.sidebar {
  background: #fff;
}

.content > .panel > .panel-body {
  border-radius: 10px;
  border: none;
  -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}

.panel {
  background-color: #FCFDFD;
  padding: 20px;
}

.panel > .panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 0;
}

.panel > .panel-heading > .panel-breadcrumb {
  flex: 0 0 100%;
}

.panel > .panel-heading > .panel-breadcrumb > span {
  font-weight: 600;
}

.panel > .panel-heading > .panel-title {
  height: unset;
  font-size: 24px;
  font-weight: 500;
}

.panel > .panel-heading > .panel-actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  width: 50%;
}

.panel > .panel-heading > .panel-actions > * {
  margin-left: 20px;
}

.panel > .panel-heading > .panel-actions button {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.panel > .panel-heading > .panel-actions button > i {
  margin-right: 10px;
}

.dashboard-panel > .panel-body {
  background: none !important;
  box-shadow: none !important;
}

.datagrid-row-selected {
  background: #77cfed !important;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #efefef;
  opacity: 1;
}

.badge {
  border-radius: 5px;
}

.badge-light-primary {
  color: #009ef7;
  background-color: #f1faff;
}

.badge-light-success {
  color: #50cd89;
  background-color: #e8fff3;
}

.badge-light-info {
  color: #7239ea;
  background-color: #f8f5ff;
}

.badge-light-warning {
  color: #ffc700;
  background-color: #fff8dd;
}

.badge-light-danger {
  color: #f1416c;
  background-color: #fff5f8;
}

/* .panel > .panel-heading > .panel-actions > a,
.panel > .panel-heading > .panel-actions > button,
.panel > .panel-heading > .panel-actions > input[type="submit"] {
  flex: 1 1 0;
  width: 0;
} */

.btn-light-warning {
  color: #f7d600;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-light-warning:is(:hover, :focus, :active) {
  color: #f7d600;
  background-color: #f1faff;
}

.btn-light-primary {
  color: #009ef7;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-light-primary:is(:hover, :focus, :active) {
  color: #009ef7;
  background-color: #f1faff;
}

.btn-light-success {
  color: #50cd89;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-light-success:is(:hover, :focus, :active) {
  color: #50cd89;
  background-color: #e8fff3;
}

.btn-light-info {
  color: #7239ea;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-light-info:is(:hover, :focus, :active) {
  color: #7239ea;
  background-color: #f8f5ff;
}

.btn-light-danger {
  color: #f1416c;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-light-danger:is(:hover, :focus, :active) {
  color: #f1416c;
  background-color: #fff5f8;
}

.mfp-content .modal-header,
.mfp-content .modal-body {
  background-color: #fff;
}

.mfp-content .modal-header > h5 {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.mfp-content .modal-header > h5 > i {
  font-size: 23px;
  margin-right: 10px;
}

.mfp-content .modal-header .close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  color: #000;
}

.file-input {
  display: flex;
  width: 100%;
  align-items: center;
}

.file-input > [type="file"] {
  width: 100%;
  cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
  display: none;
}

.file-input > label {
  margin-right: 10px;
}

.btn-nutech-primary {
  background-color: #1890ff;
  color: #fff;
  border-radius: 8px;
  padding: 8px 15px;
  line-height: 1.2;
}

[type="submit"].btn-nutech-primary {
  margin-top: 10px;
}

.btn-nutech-info {
  background-color: #1890ff;
  color: #fff;
  border-radius: 8px;
  padding: 8px 15px;
  line-height: 1.2;
}

.btn-nutech-secondary {
  background-color: #595959;
  color: #fff;
  border-radius: 8px;
  padding: 8px 15px;
  line-height: 1.2;
}

.btn-nutech-secondary:hover {
  color: #fff;
}

.btn-nutech-link {
  background-color: transparent;
  color: #1890ff;
  border-radius: 8px;
  padding: 8px 15px;
  line-height: 1.2;
}

.btn-nutech-primary:is(:hover, :focus, :active) {
  color: white;
}

.btn-nutech-delete {
  color: #d92550;
  background-color: transparent;
  transition: color 0.15s, background-color 0.15s, border-color 0.15s,
    box-shadow 0.15s;
}

.btn-nutech-delete:is(:hover, :focus, :active) {
  color: #ffffff;
  background-color: #d92550;
}

.btn-nutech-edit,
.btn-nutech-detail {
  color: #3f6ad8;
  background-color: transparent;
  transition: color 0.15s, background-color 0.15s, border-color 0.15s,
    box-shadow 0.15s;
}

.btn-nutech-edit:is(:hover, :focus, :active),
.btn-nutech-detail:is(:hover, :focus, :active) {
  color: #ffffff;
  background-color: #3f6ad8;
}

.btn-nutech-preview {
  background-color: #e6c60d;
  color: white;
  font-weight: bold;
}

/* .btn-xs {    
	background-color:blue;
    color:white;
    font-weight:bold;
} */

.dashboard-card {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 5px;
  /* background: #17a2b8 !important;
  color: #fff; */
  background: #fff !important;
  color: #000;
  margin-bottom: 15px;
}

.dashboard-card > i {
  font-size: 40px;
  color: #949494;
}

.dashboard-card > .card-detail {
  margin-left: 30px;
}

.dashboard-card > .card-detail > * {
  margin: 0;
}

.dashboard-card > .card-detail > p {
  color: #949494;
}

.dashboard-card > .card-detail > h5 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.btn-forgot {
  border: none;
  background: none;
  font-weight: bold;
}

.datepicker table tr td span {
  padding: 0;
}

.col-btn-add {
  display: flex;
  justify-content: flex-end;
}

.col-btn-add > .btn.bg-primary.btn-xs {
  width: 100%;
}

.btn-verify {
  background: #ffc107;
  color: #000;
  border-color: #ffc107;
}

.btn-verify:hover {
  background: #ffca2c;
  color: #000;
  border-color: #ffca2c;
}

/* CLIENT */
.client-color {
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-color > .color {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 5px;
}

.client-detail-color {
  justify-content: flex-end;
}

.img-logo-preview {
  max-width: 100px;
  display: block;
  margin: auto;
}

/* REF. DOC. */
form#form_upload {
  display: flex;
  align-items: center;
}

form#form_upload > label,
form#form_upload > input[type="file"] {
  margin-right: 10px;
}

form#form_upload > button[type="submit"] {
  margin: 0;
}


.datagrid-cell {
  font-size: 13px !important;
}

.datagrid-cell > .btn {
  padding-bottom:0px;
  padding-top: 0px;
  padding-right: 6px;
  padding-left: 6px;
}

.overlay-chart {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 9999;
}


.overlay {
    position: absolute;
    top: 0;
    left: 14px;
    width: 93%;
    height: 88%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.spinner {
  position: absolute;
  top: 31%;
  left: 46%;
  transform: translate(-50%, -50%);
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

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


/* migration from my_grapry.css */
.bg-angkasa2{
  background: #FC383B!important;
  color: white;
}
.navbar-nutech-color {
  /* background-image: url("../images/bg2.png")!important; */
  background: -webkit-linear-gradient(red, orange);;  
}

.nutech-panel-heading{
  background: #FF0000!important;
  color: white!important;
}

/* duplicate */
/* .navbar-brand > img {
  margin-top: -10px;
  height: 40px;
} */

@media (min-width: 769px){
  .sidebar-ap2 {
      border-bottom: 0;
      border-right: 1px solid #ddd;
  }
}

.sidebar-ap2 {
  background-image: linear-gradient(to left, #0277BD , #039BE5);
  color: #333333;
  border-bottom: 1px solid #ddd;
}

.dropdown-toggle {
  color: #ffffff;
}

.dropdown-toggle > a:hover, a:focus {
  color: #ffffff;
  text-decoration: none;
}

/* duplicate */
/* .datagrid-cell, .datagrid-cell-group {
  padding: 10px 4px!important;
} */

.datagrid-cell-group {
  padding: 10px 4px!important;
}

.ribbon-1 {
  position: fixed;
  line-height: 1.3em;
  color: #fff;
  font-family: sans-serif;
  font-size: 20px;
  background: #08769b;
  z-index: 999999;
}

.center {
  top: 0;
  padding: 1px 10px;
  border-radius: 0 0 10px 10px;
}

.navbar-top {
  .center {
    left: 50%;
    translate: -45%;
  }
}