.global-loading {
  background: linear-gradient(to top, #3d64e5 0%, #24cb9f 100%);
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 240%;
  color: #ffffff;
  box-sizing: border-box;
}

.global-loading p {
  margin: 0;
  padding: 5px 0;
}

.global-loading .loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.global-loading .loading-inner {
  animation: spinner-loading 1s linear infinite;
  border: solid 4px transparent;
  border-top: solid 4px #fff;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
}

@keyframes spinner-loading {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(120deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.global-loading.fade-out {
  animation: fadeOut 1s 1;
  -webkit-animation: fadeOut 1s 1;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}
