.app-loading {
  position: relative;
  display: flex;
  height: 100vh;
}

.app-loading .loader {
  position: relative;
  margin: auto;
  width: 100px !important;
  height: 100px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}


.app-loading .loader:after {
  content: " ";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 15px solid;
  border-color: #febd59 transparent #febd59 transparent;
  animation: animationLoading 1.2s linear infinite;
}

/**
.app-loading .loader .img-logo {
  position: absolute;
  width: 90px;
  height: 90px;
  background: url('../images/logo.svg') no-repeat center center;
  background-size: contain;
}
**/

@keyframes animationLoading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
