body {
  margin: 0;
}
.wrapper {
  width: 100vw;
  height: 100vh;
  background-color: white;
}
.loader {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #3059fe;
  border-left-color: #3059fe;
  border-bottom-color: #efefef;
  border-right-color: #efefef;
  border-radius: 50%;
  -webkit-animation: loader 400ms linear infinite;
  animation: loader 400ms linear infinite;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loader {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.noscript-container {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  color: #192828;
  text-align: center;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
  font-weight: bold;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-sizing: border-box;
}

.noscript-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

.noscript-logo {
  height: 80px;
}

.noscript-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.noscript-cta {
  margin-top: 30px;
  padding: 15px;
  background-color: #e8eaf6;
  border-radius: 4px;
}

.noscript-cta-text {
  margin: 0;
  font-size: 14px;
}
