#app-init-loading {
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#app-init-loading .loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(farthest-side, #4f46e5 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #3348bb);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: initLoader 1s infinite linear;
}
input[type="number"] {
  -moz-appearance: textfield;
}

@keyframes initLoader {
  100% {
    transform: rotate(1turn)
  }
}
#no-connection {
  position: absolute;
  z-index: 3000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f5f8fa;
}

.d-none {
  display: none !important;
}

#no-connection .alert-icon::before {
  font-size: 70px !important;
}
