.progress {
    height: 10px;
}

.select2-container--open .select2-dropdown--below{
    border: 1px solid rgba(0,0,0,.15);
}

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

.btn-custom {
    font-size: 14px;
    margin-left: 10px;
}

#tree {
    width: 100%;
    overflow-x: auto;
}


/* CSS untuk loader */
.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999; /* Pastikan loader berada di atas konten lain */
}

.line-wobble {
    --uib-size: 80px;
    --uib-speed: 1.75s;
    --uib-color: black;
    --uib-line-weight: 5px;
  
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--uib-line-weight);
    width: var(--uib-size);
    border-radius: calc(var(--uib-line-weight) / 2);
    overflow: hidden;
    transform: translate3d(0, 0, 0);
  }
  
  .line-wobble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--uib-color);
    opacity: 0.1;
  }
  
  .line-wobble::after {
    content: '';
    height: 100%;
    width: 100%;
    border-radius: calc(var(--uib-line-weight) / 2);
    animation: wobble var(--uib-speed) ease-in-out infinite;
    transform: translateX(-95%);
    background-color: var(--uib-color);
  }
  
  @keyframes wobble {
    0%,
    100% {
      transform: translateX(-95%);
    }
    50% {
      transform: translateX(95%);
    }
  }

.overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-bar.complete {
    background-color: green;
  }


  
/* Password style  */
.password-input-container {
  position: relative;
}

.password-input-container input[type="password"] {
  padding-right: 35px; /* Untuk memberi ruang untuk ikon */
}

.show-password-btn {
  position: absolute;
  right: 10px; /* Atur posisi tombol "Show Password" di sisi kanan */
  top: 50%; /* Atur posisi tombol secara vertikal di tengah */
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.show-password-btn i {
  font-size: 1rem;
}


@media (min-width: 768px) {
  .u-card.card-sides-2 {
      display: flex;
      flex-direction: row;
  }

  .u-card.card-sides-2 .card-side {
      flex-basis: 50%;
  }
}

.u-card {
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  border: none;
}

#login .card-image {
  background-image: url('./../images/card-image-bg.jpg');
  background-size: cover;
  background-position: 50%;
}

.width-pct-65 {
  width: 45% !important;
}

.padding-70 {
  padding: 70px!important;
}



.verti-timeline{
  border-left: 3px dashed #eff2f7;
  margin: 0 10px;

  }
  .event-list{
      position: relative;
      padding: 0px 0px 40px 30px;
  }
      .event-timeline-dot{
          position: absolute;
          left: -9px;
          top: 0px;
          z-index: 9;
          font-size: 16px;
      }
      .event-content{
          position: relative;
          border: 2px solid #eff2f7;
          border-radius: 7px;
      }

 

      &:last-child{
          padding-bottom: 0px;
      }
  