#loading-bg {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  z-index: 100000000000;
  background: rgba(255, 255, 255, 0.85);
  transition: all .3s ease-in;
}

#loading-bg.in-active {
  background: rgba(255, 255, 255, 0);
  opacity: 0;
  transition: all .3s ease-in;
}

#loading-bg.active {
  background: rgba(255, 255, 255, 0.85);
  opacity: 1;
  transition: all .3s ease-in;
}

.loading-logo {
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-logo img {
  width: 100%;
  object-fit: contain;
}

.loading {
  position: absolute;
  left: calc(50% - 55px);
  top: calc(50% - 55px);
  width: 110px;
  height: 110px;
  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(244, 121, 34, 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(88, 87, 87, 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;
  }
}
