body.launching::before {
    background-image: none;
    background-position: center;
    margin-top: -30px;
    margin-left: -30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '';
    position: absolute;
    z-index: 1000;
}

body.launching:has(.x-viewport .x-viewport-body-el > div)::before {
    display: none;
}

body.launching::before,
.njm-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f9f9f9;
    border-bottom-color: #0079c2;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.njm-spinner.small {
    border-width: 3px;
    width: 20px;
    height: 20px;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.njm-mask-inner {
    text-align: center;
}

.njm-mask-inner .message {
    color: #444 !important;
    text-align: center;
    font-size: 16px;
    position: static;
}