body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
}

a {
  text-decoration: none;
}

#main {
  padding-top: 75px;
}

.main-loader {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}

.main-loader__icon-container,
.main-loader__icon-message {
  max-width: 50%;
}

.main-loader__icon {
  width: 50px;
  height: 50px;
  color: #0097a7;
  display: inline-block;
  animation: loader-circular-rotate 1.4s linear infinite;
}

.main-loader__icon-circle {
  animation: loader-circular-dash 1.4s ease-in-out infinite;
  stroke-dasharray: 80px, 200px;
  stroke-dashoffset: 0px;
  stroke: currentColor;
  stroke-linecap: round;
}

.main-loader__message {
  margin-top: 1rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.87);
  font-size: 1rem;
  font-weight: 400;
}

@-webkit-keyframes loader-circular-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-circular-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-circular-dash {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0px;
  }
  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -120px;
  }
}

@keyframes loader-circular-dash {
  0% {
    stroke-dasharray: 1px, 200px;
    stroke-dashoffset: 0px;
  }
  50% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -15px;
  }
  100% {
    stroke-dasharray: 100px, 200px;
    stroke-dashoffset: -120px;
  }
}
