.logo-inner {
    border-radius: 50%;
    width: 150px;
    height: 150px !important;
    top: 30px;
    left: 76px;
}

#loadingLogo{
  -webkit-animation: rotation 8s infinite linear;
  width: 210px;
}

@-webkit-keyframes rotation {
  from {
      -webkit-transform: rotate(0deg);
  }
  to {
      -webkit-transform: rotate(359deg);
  }
}

.loader {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader > img {
  width: 100px;
}



.loader.hidden {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}


@keyframes fadeOut {
  100% {
      opacity: 0;
      visibility: hidden;
  }
}




