/* hide default loader */
#id-loader span {
  display: none;
}

#id-loader {
  background-color: #1a1a1a;
  padding-bottom: 0;
}

#id-loader::before {
  content: '';
  width: 48px;
  height: 48px;
  border: 4px solid #333333;
  border-top-color: #ff5722;
  border-radius: 50%;
  animation: id-loader-override-spin 0.8s linear infinite;
}

@keyframes id-loader-override-spin {
  to { transform: rotate(360deg); }
}

/* Hide the boot loader once Angular has rendered anything into <app-root>. */
body:has(app-root *) #id-loader {
  display: none;
}
