.global-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 99999;
}

.global-loading-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #2c3e50;
    font-size: 18px;
}

.global-loading-box .fa {
    display: block;
    font-size: 36px;
    margin-bottom: 12px;
}

body.global-loading-active {
    cursor: progress;
}

body.global-loading-active a,
body.global-loading-active button,
body.global-loading-active input[type="submit"] {
    pointer-events: none;
}
