body {
  margin: 0;
}
#loading-bg-mobile {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99999;
  position: absolute;
}
#loading-bg-mobile > .wrapper-loading-mobile {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading-bg-mobile > .wrapper-loading-mobile > .logo {
  /*position: absolute;*/
  /*left: calc(50% - 61px);*/
  /*top: calc(50% - 68px);*/
}
#loading-bg-mobile > .wrapper-loading-mobile > .logo > img {
  width: 100%;
}
#loading-bg {
  width: 100%;
  height: 100%;
  background: #fff;
  display: none;
  position: absolute;
  z-index: 999999;
}

.loading-logo {
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
}

.loading-logo img {
  width: 40px;
}

.loading {
  position: absolute;
  left: calc(50% - 45px);
  top: calc(50% - 45px);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid transparent;
}

.loading .effect-1 {
  /* position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid #20a850;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; */

  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid #342266;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  animation: corners 1s ease infinite;
}

.loading .effect-2 {
  /* position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid #20a850;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; */
}

.loading .effect-3 {
  /* position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-left: 3px solid #20a850;
  -webkit-animation: rotateOpacity 1s ease infinite 0.2s;
  animation: rotateOpacity 1s ease infinite 0.2s;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; */
}

.loading .effects {
  transition: all 0.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: 0.1;
  }

  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    opacity: 1;
  }
}

@keyframes radius {
  0% {
    -webkit-transform: rotate(0deg) scale(.1);
    transform: rotate(0deg) scale(.1);
    opacity: 1
  }

  60% {
    -webkit-transform: rotate(160deg) scale(1);
    transform: rotate(160deg) scale(1);
    opacity: 0
  }

  to {
    -webkit-transform: rotate(0deg) scale(.1);
    transform: rotate(0deg) scale(.1);
    opacity: 1
  }
}


@keyframes corners {
  0% {
    border-radius: 50%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  25% {
    border-radius: 50% 50% 50% 20%
  }

  50% {
    border-radius: 50% 50% 20% 30%
  }

  75% {
    border-radius: 50% 20% 30% 30%
  }

  to {
    border-radius: 50%;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg)
  }
}

.lds-ring {
  display: flex;
  position: relative;
  width: 80px; /* Adjusted width */
  height: 80px; /* Adjusted height */
  justify-content: center;
  width: 100%;

}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 32px; /* Adjusted width */
  height: 32px; /* Adjusted height */
  margin: 4px; /* Adjusted margin */
  border: 4px solid #fff; /* Adjusted border width */
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
