.loading_wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader_logo {
  height: 80px;
  width: 80px;
  position: relative;
  /* Centering handled by flex in .loading_wrap */
}

.loader_logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  animation: logo-spin 2s linear infinite;
}

/* Remove the old ring loader */
.loading {
  display: none;
}

@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}