/*    ------  LOADING -------     */
.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #13294B;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
  overflow: hidden;
  color: white;
}

.loader {
  width: 80px;
  height: 80px;

  border-radius: 50%;  border: 1px yellow solid;
  background: 
    radial-gradient(farthest-side,#90E0EF 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#52b6fd);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}

.loader h1 {
  font-size: 1em;
  color: #ffffff;
  text-align: center;
}