.global-loading {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.global-loading.is-active {
    display: block;
}

.global-loading__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
}

.global-loading__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.global-loading__content img {
  width: 66px;
  height: auto;
  animation: spin 1s ease-in-out infinite;

}

.global-loading__text {
  margin-top: 12px;
  font-weight: 600;
  font-size: 24px;
  color: #EF9000
}

@keyframes spin { to { transform: rotate(360deg); } }
