﻿#ms-loading-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    background: white;
    gap: 8px;
    transition-property: all;
    transition-timing-function: ease-out;
}

#ms-loading-screen b.ms-loading-message {
    color: rgba(0, 0, 0, 0.6);
    font-weight: bold;
    font-size: 16px;
    height: 16px;
    line-height: 1.4;
    font-family: sans-serif !important;
    animation-name: blink;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}