@keyframes spinAround {
  from { transform: rotate(0deg) }
  to { transform: rotate(359deg) }
}

*,
*::before,
*::after {
  box-sizing: border-box; 
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(black, 0);
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.loading-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10000;
  flex-direction: column;
}

.loading-overlay.is-active {
  display: flex;
}

.loading-overlay .loading-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: white;
}

.loading-overlay .loading-content {
  position: relative;
  top: 2.5rem;
  color: #222F62;
}

.loading-overlay .loading-icon {
  position: relative;
}

.loading-overlay .loading-icon:after {
  animation: spinAround 0.75s infinite linear;
  border: 2px solid #222F62;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1rem;
  position: relative;
  width: 1rem;
  position: absolute;
  border-width: .25rem;
  top: calc(50% - 1.5em);
  left: calc(50% - 1.5em);
  width: 3em;
  height: 3em;
}

.loading-overlay .loading-content p {
  margin-top: 0;
  margin-bottom: 1rem;
}