/* Custom sidebar */
.ts-sidebar{
  background-color: #343A40;
  padding: 0.5rem 0.75rem;
  position: fixed;
  width: 200px;
  overflow-y: scroll;
  height: 100vh;
}

.ts-sidebar::-webkit-scrollbar-track {
  background-color: unset;
}
.ts-sidebar::-webkit-scrollbar {
 width: 4px;
  background-color: unset;
}
.ts-sidebar::-webkit-scrollbar-thumb {
  background-color: unset;
  border-radius: 25px;
}

.ts-sidebar-mobile {
  position: absolute;
  z-index: 9999;
  height: 100%;
}

.ts-sidebar-title {
  color: white;;
}

.ts-item-sidebar{
  margin: 0.2rem 0;
}

.ts-item-sidebar a, .ts-item-sidebar a:hover{
  color: white
}

.ts-item-sidebar:hover, .ts-item-sidebar-active{
  background-color: #494E53;
  border-radius: 10px
}

/* Custom input select */
.bootstrap-select button{
  border: 1px solid #ced4da;
  background: unset;
}

/* Custom input date picker */
.date input{
  background-color: unset !important;
}

/* Form login */
.ts-form--login{
  position: relative;
}

.ts-toggle--password{
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.3rem 0.5rem;
}

/* Custom table */
.ts-table{
  width: 100% !important;
  overflow: scroll;
}

.ts-table::-webkit-scrollbar-track {
  background-color: unset;
}

.ts-table::-webkit-scrollbar {
  height: 6px;
  background-color: unset;
}

.ts-table::-webkit-scrollbar-thumb {
  background-color: #ced4da;
  border-radius: 25px;
}