﻿.loadingcover {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.75);
}

.snippet {
    position: relative;
    top:50%;
}

.stage {
    display: flex;
    justify-content: center;
    position: relative;
}

.dot-pulse {
    position: relative;
    left: -9999px;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #9880ff;
    color: #9880ff;
    box-shadow: 9999px 0 0 -5px #9880ff;
    animation: dotPulse 1.5s infinite linear;
    animation-delay: .25s;
}

.dot-pulse::before, .dot-pulse::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background-color: #9880ff;
    color: #9880ff;
}

.dot-pulse::before {
    box-shadow: 9984px 0 0 -10px #9880ff;
    animation: dotPulseBefore 1.5s infinite linear;
    animation-delay: 0s;
}

.dot-pulse::after {
    box-shadow: 10014px 0 0 -10px #9880ff;
    animation: dotPulseAfter 1.5s infinite linear;
    animation-delay: .5s;
}

@keyframes dotPulseBefore {
    0% {
        box-shadow: 9968px 0 0 -5px #505050;
    }

    30% {
        box-shadow: 9968px 0 0 2px #646464;
    }

    60%, 100% {
        box-shadow: 9968px 0 0 -5px #CCCCCC;
    }
}

@keyframes dotPulse {
    0% {
        box-shadow: 9999px 0 0 -5px #505050;
    }

    30% {
        box-shadow: 9999px 0 0 2px #646464;
    }

    60%, 100% {
        box-shadow: 9999px 0 0 -5px #CCCCCC;
    }
}

@keyframes dotPulseAfter {
    0% {
        box-shadow: 10030px 0 0 -5px #505050;
    }

    30% {
        box-shadow: 10030px 0 0 2px #646464;
    }

    60%, 100% {
        box-shadow: 10030px 0 0 -5px #CCCCCC;
    }
}
