:root {
  --prm-color: #0b0b3c;
  --prm-gray: #9b8ecd;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.step-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: var(--prm-gray);
  transition: 0.4s;
}

.step-button[aria-expanded="true"] {
  width: 60px;
  height: 60px;
  background-color: var(--prm-color);
  color: #fff;
}

.done {
  background-color: var(--prm-color);
  color: #fff;
}

.step-item {
  z-index: 10;
  text-align: center;
}
.step-title {
  z-index: 10;
  text-align: center;
}

#stageprogress {
  -webkit-appearance: none;
  position: absolute;
  width: 97%;
  z-index: 5;
  height: 10px;
  margin-left: 18px;
  margin-bottom: 18px;
  background-color: var(--prm-color);
  border-radius: 8px;
}

.dark-mode #stageprogress {
  -webkit-appearance: none;
  position: absolute;
  width: 97%;
  z-index: 5;
  height: 10px;
  margin-left: 18px;
  margin-bottom: 18px;
  background-color: #b6c6e3;
  border-radius: 8px;
}
/* to customize stageprogress bar */
#stageprogress::-webkit-stageprogress-value {
  background-color: var(--prm-color);
  transition: 0.5s ease;
}

#stageprogress::-webkit-stageprogress-bar {
  background-color: var(--prm-color);
}

.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  display: block;
  position: fixed;
  top: calc(50% - (58px / 2));
  right: calc(50% - (58px / 2));
  z-index: 1000;
}

.spinner > div {
  background-color: #0b0b3c;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.dark-mode .spinner > div {
  background-color: #fff;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.smallSpinner {
  position: relative !important;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

.spinnerbackdrop {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #0b0b3c33;
}

.dark-mode .spinnerbackdrop {
  background-color: #1b1b3b9e;
}

.nk-wrap {
  background-color: #f5f6fa;
}

.y-tb-col {
  cursor: pointer;
}

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #f5f6fa;
  border-radius: 8px;
}

.dark-mode .profile-ud-value {
  background: #070735 !important;
  color: #fff;
  border: 1px solid #fff;
}

.profile-ud-value {
  border: 1px solid #c1c6e0;
}

.dropdown-limited {
  overflow: auto;
  height: auto;
  max-height: 348px;
}

.form-labelfly .form-group input {
  width: 100%;
  padding: 12px;
  font-size: inherit;
  line-height: 1.5;
  color: inherit;
  margin: 0;
  border-radius: 12px;
}

.form-labelfly .form-group label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: all 0.1s ease-in-out;
  width: 100%;
  padding: 12px;
  font-size: inherit;
  line-height: 1.5;
  color: inherit;
  pointer-events: none;
}

.form-labelfly .form-group input::placeholder {
  color: transparent;
}

.form-labelfly .form-group input:not(:placeholder-shown) {
  padding-top: 19px;
  padding-bottom: 5px;
}

.form-labelfly .form-group input:not(:placeholder-shown) ~ label {
  padding: 4px 12px;
  font-size: 12px;
  color: #777;
}

.flw {
  display: block;
  width: 100%;
  justify-content: center;
}

.loginlink {
  background-image: linear-gradient(
    to bottom,
    #0c0c3c,
    #0a0b35,
    #0a0a2f,
    #090928,
    #070721
  );
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  height: 100vh;
}
