/* make all element is poppins */
* {
    font-family: 'Poppins', sans-serif;
}

.main {
    background-color: #F1F1F1;
    min-height: 100vh;
}

.row {
    margin: 0;
}

.sidebar {
    background-color: #F8F8F8;
    width: 250px;
    height: 100vh;
    padding: 12px 10px;
    position: fixed;
    top: 0;
    left: 0;
}

.sidebar .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar .logo img {
    width: 230px;
}

.sidebar .logo span {
    margin-left: 10px;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.sidebar .nav .nav-item {
    margin: 4px 0;
}

.sidebar .nav .nav-item a {
    color: #000;
    text-decoration: none;
    background-color: #FFF;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.sidebar .nav .nav-item a:hover, .sidebar .nav .nav-item a.active {
    background-color: #ebf74260;
    font-weight: 700;
}

.sidebar .nav-bar-config {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.sidebar .nav-bar-config a {
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
    margin: 4px 0;
    padding: 0px 15px;
}

.main-content {
    width: calc(100% - 250px);
    padding: 20px;
    margin-left: 250px;
}

.card-summary-icon {
    position: absolute;
    /* make center vertical and left 0 */
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.nav-tabs .nav-link {
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.nav-tabs .nav-link.active {
    color: #000;
    font-weight: 700;
}

.nav-tabs .nav-link, .nav-tabs .nav-link.active {
    border: none !important;
}

.nav-tabs {
    border-bottom: none !important;
}

.no-border {
    border: none !important;
}

.bg-dark-green {
    background-color: #8D8D8D !important;
}

.btn-success {
    background-color: #30E475;
    border: none;
}

a {
    text-decoration: none;
}

.text-soft-green {
    color: #9DF6BF;
}

.text-soft-red {
  color: #f69d9d;
}

.text-soft-blue {
  color: #9dd7f6;
}

.text-soft-yellow {
  color: #f6f59d;
}

/* datatables */

/* pagination */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 8px 12px;
    margin-left: 2px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0.25em;
    background-color: #F1F1F1;
    color: #000;
    margin-right: 4px;
    text-decoration: none;
    font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #f8f9fa;
    color: #0056b3;
    border-color: #0056b3;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #007bff;
    color: white;
    border: 1px solid transparent;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background-color: #007bff;
    color: white;
    border: 1px solid transparent;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin-top: 20px;
}

table.table-bordered.dataTable tbody th, table.table-bordered.dataTable tbody td, table.table-bordered.dataTable thead th, table.table-bordered.dataTable thead td {
    border-bottom-width: 1px;
    border-top-width: 1px;
}

table.table-bordered.dataTable th, table.table-bordered.dataTable td {
    border-left-width: 1px;
}

/* search */

.modal-xl {
    max-width: 90%;
}

ul, li {
  list-style: none;
  padding: 0;
}

.timeline .container {
  display: flex;
  padding: 0 0;
  padding: 0 0;
}

.timeline .wrapper {
  padding: 2rem;
  border-radius: 15px;
}

.timeline h1 {
  font-size: 1.1rem;
  font-family: sans-serif;
}

.timeline .sessions {
  margin-top: 2rem;
  border-radius: 12px;
  position: relative;
}

.timeline li {
  padding-bottom: 1.5rem;
  border-left: 1px solid #abaaed;
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
}
.timeline li:last-child {
  border: 0px;
  padding-bottom: 0;
}
.timeline li:before {
  content: "";
  width: 15px;
  height: 15px;
  background: white;
  border: 1px solid #4e5ed3;
  box-shadow: 3px 3px 0px #bab5f8;
  box-shadow: 3px 3px 0px #bab5f8;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 0px;
}

.timeline .time {
  color: #2a2839;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 601px) {
  .timeline .time {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 600px) {
  .timeline .time {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
  }
}

.timeline p {
  color: #4f4f4f;
  font-family: sans-serif;
  line-height: 1.5;
  margin-top: 0.4rem;
}
@media screen and (max-width: 600px) {
  .timeline p {
    font-size: 0.9rem;
  }
}

.banner-img {
  width: 100%;
  background-image: url('/assets/images/banner-user-dashboard.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px;
  border-radius: 8px;
}

.card-glass {
  background: #D8D8D84D;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px #00000040;
  padding: 20px;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.img-banner-login {
  width: 100%;
  object-fit: cover;
  height: 100vh;
}

.login-footer-container {
  position: absolute;
  bottom: 20px;
  width: 96%;
}

.form-container {
  /* make center */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.form-container form {
  width: 400px;
}

.login-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  bottom: 0;
  color: #FFF;
}

.login-form {
  height: 100vh;
  overflow: hidden;
}

#message {
  display:none;
  background: #c6dcf1;
  color: #000;
  position: relative;
  padding: 10px;
  margin-top: 1px;
  margin-bottom: 10px
}

#message p {
  padding: 5px 20px;
  font-size: 12px;
  margin-bottom: 2px;
}