/* First-paint loader styles — linked (not inlined) so the skeleton is styled before body elements paint, without violating the CSP style-src policy */

.firstPaint {
  height: 100dvh;
  width: 100dvw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 53px;
}

.progressBar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 4px;
  width: 100dvw;
  background: rgba(118, 132, 152, 0.1);
}

.progressBar > div {
  height: 100%;
  animation: progress;
  animation-duration: 5s;
  background: #0357EE;
}

.moniepointLogo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.moniepointLogo > p {
  color: #768498;
  font-size: 14px;
  font-weight: 500;
}

.loaderIconWrapper {
  width: 264px;
  height: 240px;
}

.loaderIconSvg {
  width: 100%;
  height: 100%;
  transform: translate3d(0px, 0px, 0px);
  content-visibility: visible;
}

.loaderIconGroup {
  display: block;
}

@keyframes progress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}
