body, html {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.element {
  position: absolute;
  transform: translate(-50%, -50%);
}

#loading-message {
  font-size: 14px;
  color: #313F47;
  text-align: center;
  margin-top: 70px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.loader {
  width: 200px;
  height: 200px;
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  animation: animloader 3s ease-in-out infinite;
}
.loader2 {
  width: 200px;
  height: 200px;
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  animation: animloader 3s ease-in-out infinite;
  animation-delay: 1s;
}
.loader3 {
  width: 200px;
  height: 200px;
  display: inline-block;
  border-radius: 50%;
  box-sizing: border-box;
  animation: animloader 3s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes animloader {
  0% {
    transform: scale(.25);
    opacity: .15;
    background: #FECE10;
  }
  100% {
    transform: scale(1);
    opacity: 0;
    background: #FECE10;
  }
}
