:root {
    --displayLoad: flex;
}
#loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.873);
    z-index: 999999;
    display: var(--displayLoad);
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--page_Text_color);
  }