html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fafafa;
  background-size: 100% 100%;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.container {
  width: 145px;
  height: 145px;
  background-color: rgba(96, 59, 229, 0.05);
  border-radius: 8px;
  border: 0.1px solid rgba(96, 59, 229, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(96, 59, 229, 0.15);
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .container {
    width: 172px;
    height: 172px;
  }
}

#linear-activity {
  overflow: hidden;
  margin: -20px 12px;
  height: 4px;
  border-radius: 50px;
  border: 1px solid rgba(96, 59, 229, 0.15);
  background-color: rgba(96, 59, 229, 0.15);
}
@media screen and (min-width: 600px) {
  #linear-activity {
    margin: -26px 12px;
    height: 4px;
  }
}

#indeterminate {
  position: relative;
  width: 100%;
  height: 100%;
}

#indeterminate:before {
  content: "";
  position: absolute;
  height: 100%;
  background-color: rgba(96, 59, 229, 1);
  animation: indeterminate_first 1.8s infinite ease-out;
  border-radius: 16px;
}

@keyframes indeterminate_first {
  0% {
    left: -200%;
    width: 200%;
  }
  100% {
    left: 100%;
    width: 100%;
  }
}

#loading {
  height: 100%;
  width: 100%;
}

#loading img {
  transition: opacity 0.5s;
  height: 100%;
  width: 100%;
  opacity: 0.4;
}

#loading.main_done img {
  opacity: 1;
}
