/* 
*
*/
:root {
  --main-color: #656565;
  --second-color: #22baa0;
  --theme-color:#291246;
  --theme-color-2:rgb(255, 194, 14);
}
html {
  font-size: 10px;
}
body {
  background-color: #f5f6f7;
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  color: var(--main-color);
}
.container {
  max-width: 100rem;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #000;
}
a {
  text-decoration: none;
}
.btn {
   font-size: 1.6rem;
}
.btn-primary, .btn-danger {
  /* padding: .5rem 3rem; */
  /* font-size: 2rem; */
  border: none;
  font-weight: 400;
}
.btn-primary {
  background-color: var(--theme-color-2);
  color: var(--theme-color);
}
.btn-primary:hover {
  background-color: var(--theme-color);
  color: var(--theme-color-2);
}
/**/
.panel-header-wrap {
  background-color: var(--theme-color);
  color: #FFF;
  padding: 1rem 1rem;
  border-radius: .5rem .5rem 0 0;
}
.panel-body-wrap {
  background-color: #FFF;
  padding: 1rem 10rem 3rem;
}
.panel-body-wrap h1 {
  font-weight: 700;
  margin: 0 0 3rem;
}
/**/
.panel-table-wrap {
  background-color: #FFF;
  padding: 1rem;
  font-size: 1.6rem;
}
.panel-table-wrap .button-action-wrap {
  padding: 1rem 0;
}
.panel-table-wrap table td, .panel-table-wrap table th {
  padding: 1rem 1rem;
}
/* DATA TABLE*/
div.dt-container div.dt-length select {
  font-size: 1.6rem;
}
div.dt-container div.dt-search input {
  font-size: 1.6rem;
  padding: .5rem 1rem;
}
div.dt-container div.dt-paging ul.pagination {
  margin-top: 3rem;
}
div.dt-container div.dt-paging ul.pagination .page-link {
  font-size: 1.6rem;
}
/* HEADER */
header {
  padding: 0;
  background-color: var(--theme-color);
  
}
header .row {
  width: 100%;
}
header .logo-wrap a {
  color: var(--theme-color-2);
  font-size: 2rem;
  font-style: italic;
  padding: .5rem 1rem;
  font-weight: 700;
  display: inline-block;
  min-width: 10rem;
  text-align: center;
  font-size: 2.8rem;
}
/**/
.navbar-avatar {
  text-align: right;
}
.navbar-avatar a {
  color: var(--theme-color-2)
}
.navbar-avatar .img-circle {
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.navbar-avatar .dropdown-menu{
  border-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  position: relative;
}
.navbar-avatar li .dropdown-item {
   padding: .3rem 2rem;
  color: var(--main-color);
  font-weight: 400;
  font-size: 1.3rem;
}
.navbar-avatar li .dropdown-item:focus, .navbar-avatar li .dropdown-item:hover {
  background-color: var(--second-color);
  color: #FFF;
}
/**/
.sidebar-wrap li.dropdown, .table-list-wrap li.dropdown {
  padding: .5rem 0;
}
.sidebar-wrap .dropdown-menu > li > a, .table-list-wrap .dropdown-menu > li > a {
  padding: .3rem 2rem;
  color: var(--main-color);
  font-weight: 400;
  font-size: 1.3rem;
}
.sidebar-wrap .dropdown-menu > li > a:hover, .sidebar-wrap .dropdown-menu > li.active > a, .table-list-wrap .dropdown-menu > li > a:hover, .table-list-wrap .dropdown-menu > li.active > a {
  background-color: var(--second-color);
  color: #FFF;
}
.sidebar-wrap .dropdown-menu .divider, .table-list-wrap .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.sidebar-wrap .dropdown-submenu, .table-list-wrap .dropdown-submenu {
  position: relative;
}
.sidebar-wrap .dropdown-submenu .dropdown-menu, .table-list-wrap .dropdown-submenu .dropdown-menu {
  left: 100%;
  position: absolute;
  left: 100%;
  top: 50%;
  width: 25rem;
}
.sidebar-wrap .dropdown-submenu .dropdown-menu a, .table-list-wrap .dropdown-submenu .dropdown-menu a {
  display: block;
}
.sidebar-wrap .dropdown-submenu:hover .dropdown-menu, .table-list-wrap .dropdown-submenu:hover .dropdown-menu {
  display: block;
  
}
/* 
SIDEBAR
*/
.sidebar-wrap {
  max-width: 10rem;
  border-right: .1rem solid #162636;
  background-color: #162636;
  height: 100%;
}
.sidebar-wrap > .nav > li > a {
  background-color: transparent;
  transition: color .3s ease-in-out 0s;
  -webkit-transition: color .3s ease-in-out 0s;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
  padding: 1rem;
  display: block;
  color: rgb(142, 158, 174);
}
.sidebar-wrap i {
  display: block;
  font-size: 2rem;
  margin: .5rem auto;
}
.sidebar-wrap > .nav > li.active > a {
  border-left: .1rem solid var(--theme-color-2);
  padding-left: .9rem;
  color: #e1e5e9;
}
.sidebar-wrap > .nav > li > a:hover {
  color: #FFF;
}
/*
LOGIN  SECTION
*/
.login-section {
  background-color: #291246;
  padding: 2rem 0;
  height: 100vh;
}
.login-section a {
  color: var(--theme-color);
}
.login-section a:hover {
  color: var(--theme-color-2); 
}
.login-section .image-wrap {
  text-align: center;
}
.login-section .image-wrap img {
  max-width: 30rem;
}
.login-section .login-form-wrap {
   max-width: 48.2rem;
   width: 100%;
   margin: 0 auto;
   border: .3rem solid var(--theme-color-2);
   border-radius: .3rem;
   -webkit-border-radius: .3rem;
}
.login-section .heading-wrap {
  padding: 1rem 10rem;
  text-align: center;
  border-color: var(--theme-color-2);
  background: #000;
  border-bottom: .3rem solid var(--theme-color-2);
}
.login-section .heading-wrap h1 {
  color: var(--theme-color-2);
  font-size: 3rem;
  font-weight: 600;
}
.login-section .in-wrap {
  padding: 1.5rem;
  background-color: #FFF;
}
.login-section .form-group {
  margin-bottom: 1rem;
}
.login-section .form-group label {
  font-weight: 700;
  margin: .5rem 0;
  font-size: 1.8rem;
}
.login-section .form-control {
  font-size:1.5rem;
  padding: .5rem 1rem;
}
.login-section .footer-section {
  text-align: center;
  color: var(--theme-color-2);
  padding: 1rem;
  margin-top: 3rem;
}
.login-section .button-wrap {
  text-align: center;
  padding: 2rem 0 1rem;
}
.login-section .button-wrap .btn {
  font-weight: 700;
}
/*
DASHBOARD ADMIN
*/
.admin-section, .admin-full-section {
  padding: 5rem 0;
  min-height: 100vh;
}
.admin-full-section .container {
  max-width: none ;
}
.home-admin-section .text-right {
  text-align: right;
}
/* USERS */
.users-list-section .container {
  max-width: 90%;
}
.table-list-wrap .btn {
  padding: .5rem;
  font-size: 1.3rem;
}
/*
FORM WRAP 
*/
.form-wrap {
  padding: 5rem;
}
.form-wrap label {
  font-weight: 700;
  display: block;
  line-height: 2;
}
.form-wrap .form-group {
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.form-wrap .form-group.error {
  background-color: #f8d7da;
}
.form-wrap .form-control {
  padding: 1rem 2rem;
  font-size: 1.5rem;
  margin: 0;
}
.form-wrap .chosen-container-single .chosen-single {
  padding: 1rem 2rem;
  height: auto;
}
/* PESERTA */
.peserta-list-section .container {
  max-width: none;
}
.peserta-list-section .panel-table-wrap {
  overflow: auto;
}
/* .peserta-list-section table td, .peserta-list-section th {
  text-align: center;
} */
.peserta-list-section table [type="text"] {
  padding: .5rem;
  font-size: 1.4rem;
  display: block;
}
.peserta-list-section .btn-group {
  position: relative;
}
.peserta-list-section .btn-group.open .dropdown-menu {
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 1000;
}
.peserta-list-section .btn-group.open .dropdown-menu.pull-left {
  left: auto;
  right: 100%;
}
.peserta-list-section .btn-group .dropdown-menu {
  width: 20rem;
}
.peserta-list-section .btn-group .dropdown-menu a {
  display: block;
}
.peserta-list-section .ok-elm {
  color: #468847;
  font-weight: 700;
}
.peserta-list-section .notok-elm {
  color: #ff5f5f;
  font-weight: 700;
}
/* 
VIEW PESERTA
*/
.peserta-view-section h3 {
  background-color: var(--main-color);
  color: #FFF;
  padding: .5rem;
}
.peserta-view-section .button-wrap {
  padding: 5rem 0;
}
/*
EDIT PESERTA
*/
.peserta-edit-section .form-wrap {
  padding: 0;
}
.datepicker.datepicker-dropdown {
  font-size: 1.5rem;
}
/* 
KEUANGAN
*/
.keuangan-list-section .panel-table-wrap {
  font-size: 1.4rem;
}
input#id-search{
  width: 5rem;
}
input#trans-search {
  width: 10rem;
}
input#for-search, input#status-search {
  width: 7rem;
}
.keuangan-aasociate .button-wrap {
  margin-bottom: 3rem;  
}
.keuangan-aasociate h2 {
  font-size: 4rem;
}
.keuangan-aasociate h3 {
  font-size: 3rem;
}
.keuangan-aasociate h4 {
  font-size: 2.5rem;
}
.keuangan-aasociate .select2-container {
  overflow: hidden;
}
.keuangan-list-section table.table.dataTable .for-other-kin td {
  background: rgb(255, 221, 221);
}
/* 
MODAL
*/
.tempus-dominus-widget {
  width: 30rem;
}
.modal .modal-header, .modal .modal-body, .modal .modal-footer {
  padding: 1.5rem;
}
.modal .modal-header {
  background-color: var(--theme-color);
  color: #FFF;
  font-size: 1.5rem;
}
.modal .modal-header .modal-title {
  color: #FFF;
}
.modal .btn-close {
  filter: invert(1); 
}
.modal .modal-header .modal-title {
  font-size: 2.5rem;
}
.modal, .modal .form-control {
  font-size: 1.5rem;
}
.modal .form-group {
  margin-bottom: 1.5rem;
}
.modal .form-group .req {
  color: red;
}
.modal .response-errors {
  padding: 1rem;
}
.jadwal-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jadwal-list ul li {
  padding: 1rem;
  border: .2rem solid #DDD;
  margin: 1.5rem 0;
}
.jadwal-list h2 {
  margin: 0 0 1.5rem;
}
.jadwal-list p {
  margin: 0;
}
.transportasi-list-section .new-elm {
  padding: .3rem 1rem;
  font-size: 1.1rem;
  background-color: var(--theme-color);
  color: #FFF;
}
.highlight-title {
  background-color: var(--theme-color);
  color: var(--theme-color-2);
  text-align: center;
  padding: 2rem .5rem;
  margin: 0 0 3rem;
}