#loading {
    position: fixed;
    inset: 0;
    background-color: var(--shade-6);
    z-index: 1000;
    transition: opacity 250ms ease;
}

#loading.hidden {
    opacity: 0;
}

#loading::after {
    content: "";
    position: absolute;
    inset: 40%;
}

#loading2 {
    position: fixed;
    height: 80px;
    width: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1003;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    transition: opacity 250ms ease;
    background: url(../images/vectors/logo.svg) no-repeat center / contain;
}