/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/

.vertical-nav {
  min-width: 13rem;
  width: 13rem;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.page-content {
  width: calc(100% - 13rem);
  margin-left: 13rem;
  transition: all 0.4s;
}

/* for toggle behavior */

#sidebar.active {
  margin-left: -17rem;
}

#content.active {
  width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  #sidebar {
    margin-left: -17rem;
  }
  #sidebar.active {
    margin-left: 0;
  }
  #content {
    width: 100%;
    margin: 0;
  }
  #content.active {
    margin-left: 17rem;
    width: calc(100% - 17rem);
  }
}

.separator {
  margin: 3rem 0;
  border-bottom: 1px dashed #fff;
}

.text-uppercase {
  letter-spacing: 0.1em;
}

.text-gray {
  color: #aaa;
}

.table {
  background-color: #fff;
}

label {
  padding-top: 15px;
}

input, select, textarea {
  margin-top: 5px;
  margin-bottom: 5px;
}

#mainTableData {
  width: 99%!important;
}

.badge {
  border-radius: 255px;
}

.badge-success {
  background-color: #267448;
}

.badge-warning {
  background-color: #facb32;
}

.lightbox-back {
  position:fixed;
  background-color: rgba(0,0,0,0.8);
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.lightbox {
  position: fixed;
  top: 60px;
  left: 10px;
  width: 98%;
  min-height: 45%;
  height: 85%;
  max-height: 95%;
  z-index: 11;
  display: block;
}

.closeBtn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 12;
}

.w-100 {
  min-width: 100%;
}