html,
body {
    height: 100%;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

#app.loading-animation {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#app.loading-animation .splash-container {
    position: relative;
    width: 96px;
    height: 96px;
}

#app.loading-animation .splash-container .spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0%, #E5E7EB 35%, #9CA3AF 85%, transparent 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 3px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #fff calc(100% - 3px));
    animation: ds-spin 900ms linear infinite;
}

#app.loading-animation svg.splash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 53px;
    fill: #0A0610;
}

@keyframes ds-spin {
    to { transform: rotate(360deg); }
}
