body {
  margin: 0;
}
#loading-bg{
  z-index: 10000;
  width: 100%;
  min-height: 100vh;
  background: #000;
  display: block;
  position: absolute;
  top:0;
  left:0;
}
.loading-logo{
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 45%;
  display: flex;
  align-items: center;
  flex-flow: column;
}
.logo-image{
  max-width: 200px;
  display: block;
}
.loading-baseline{
  color: white;
  font-size: 16.1px;
  font-family: Arial;
  text-align: center;
}
.loading {
  position: absolute;
  left: calc(50% - 27px); /* 27px is half of width */
  top: calc(55% + 10px); /* 10px is space between logo and loading cirlce */
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid transparent;
}

.loading .effect-1,  .loading .effect-2{
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgba(77, 154, 88,1);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effect-1{
  animation: rotate 1s ease infinite;
}
.loading .effect-2{
  animation: rotateOpacity 1s ease infinite .1s;
}
.loading .effect-3{
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid rgba(255, 255, 255,1);
  -webkit-animation: rotateOpacity 1s ease infinite .2s;
  animation: rotateOpacity 1s ease infinite .2s;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.loading .effects{
  transition: all .3s ease;
}

@keyframes rotate{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes rotateOpacity{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: .1;
  }
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 1;
  }
}
