body nice-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00363A;
    color: #00363A;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0ms cubic-bezier(0.4, 0, 0.2, 1);
}

body nice-loading img {
    width: 80px;
    max-width: 120px;
    transform: scale(1);
    animation: pulse-black 1.8s infinite;
}

@keyframes pulse-black {
    0% {
        transform: scale(0.85);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.85);
    }
}

body:not(.nice-loading-hidden) {
    overflow: hidden;
}

body.nice-loading-hidden nice-loading {
    opacity: 0;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
