.eye-password-icon {
  position: absolute;
  top: 63%;
  left: 90%;
  transform: translate(-50%, -50%);
  color: #b2bec3;
}
.sidebar .active i {
  color: #4cd137;
}
.sidebar .dropdown-menu .active,
.sidebar .dropdown-menu .dropdown-item:active {
  color: black;
  background: #2ecc71;
}

.loader {
  text-align: center;
  padding: 0 !important;
  top: 30%;
}
.loader .modal-body {
  width: 100%;
  font-size: 50px;
  font-weight: 600;
  padding-top: 75px;
  padding-bottom: 75px;
  color: #39948b;
}
.loader span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  color: #39948b;
  background: #39948b;
}

.loader span:nth-child(1) {
  animation: bounce 1s ease-in-out infinite;
}

.loader span:nth-child(2) {
  animation: bounce 1s ease-in-out 0.33s infinite;
}

.loader span:nth-child(3) {
  animation: bounce 1s ease-in-out 0.66s infinite;
}
.loader span:nth-child(4) {
  animation: bounce 1s ease-in-out 0.99s infinite;
}

@keyframes bounce {
  0% {
    background-color: #39948b;
  }

  50% {
    background-color: #54e6c1;
  }

  100% {
    background-color: #39948b;
  }
}

