/* ========================================================================= \\
    $Dashboard
\\ ========================================================================= */

.dashboard-container .service-html-header {
    width: 100%;
    text-align: center;
}
.dashboard-container {
    position: relative;
}
.dc-demo {
    height: 100%;
    background-image: -webkit-radial-gradient(
        circle,
        rgba(0, 0, 5, 1),
        rgba(0, 0, 0, 1)
    );
    overflow: hidden;
    color: #fff;
}

.dashboard-container .space {
    position: absolute;
    top: 0;
    left: 0;
    background-image: radial-gradient(
            white,
            rgba(255, 255, 255, 0.2) 2px,
            transparent 10px
        ),
        radial-gradient(white, rgba(255, 255, 255, 0.15) 1px, transparent 10px),
        radial-gradient(white, rgba(255, 255, 255, 0.1) 2px, transparent 10px),
        radial-gradient(
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0.1) 2px,
            transparent 10px
        );
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    background-position: 0 0, 40px 30px, 130px 270px, 70px 100px;
    -webkit-animation: spin 25s linear infinite;
            animation: spin 25s linear infinite;
    width: 200%;
    height: 400%;
    margin: -100% 0 0 -50%;
    opacity: 0.6;
}

.dashboard-container .container {
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

.dashboard-container .container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.dashboard-container .wrapper {
    position: relative;
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin: 0 auto;
    text-align: center;
}

.dashboard-container .blackhole {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border: 4px solid rgba(0, 0, 0, 1);
    border-radius: 50%;
    -webkit-animation: spin 3s infinite linear;
            animation: spin 3s infinite linear;
    background: #000;
    -webkit-box-shadow: 0 0 50px 50px rgba(0, 0, 0, 1);
            box-shadow: 0 0 50px 50px rgba(0, 0, 0, 1);
    top: 10em;
}

.dashboard-container .debris {
    position: absolute;
    top: 160%;
    left: 100%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    -webkit-animation: drain 5s infinite ease-in;
            animation: drain 5s infinite ease-in;
}

.dashboard-container .debris + .debris {
    left: 100%;
    -webkit-animation-delay: 1200ms;
            animation-delay: 1200ms;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    animation-speed: 7s;
}

.dashboard-container .debris + .debris + .debris {
    top: 0%;
    left: 185%;
    -webkit-animation-delay: 500ms;
            animation-delay: 500ms;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    animation-speed: 4s;
}

.dashboard-container .debris + .debris + .debris + .debris {
    top: 200%;
    left: 250%;
    -webkit-animation-delay: 700ms;
            animation-delay: 700ms;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    animation-speed: 2s;
}

.dashboard-container .debris + .debris + .debris + .debris + .debris {
    top: 150%;
    left: 330%;
    -webkit-animation-delay: 200ms;
            animation-delay: 200ms;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
}
.dashboard-container .debris + .debris + .debris + .debris + .debris + .debris {
    top: -380%;
    left: -300%;
    -webkit-animation-delay: 2000ms;
            animation-delay: 2000ms;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    animation-speed: 6s;
}

.dashboard-container
    .dashboard-container
    .debris
    + .debris
    + .debris
    + .debris
    + .debris
    + .debris
    + .debris {
    top: 400%;
    left: 200%;
    -webkit-animation-delay: 3000ms;
            animation-delay: 3000ms;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
}

.dashboard-container
    .debris
    + .debris
    + .debris
    + .debris
    + .debris
    + .debris
    + .debris
    + .debris {
    top: 500%;
    left: 180%;
    -webkit-animation-delay: 400ms;
            animation-delay: 400ms;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

@-webkit-keyframes drain {
    95% {
        opacity: 1;
    }
    to {
        top: 50%;
        left: 50%;
        opacity: 0;
    }
}

@keyframes drain {
    95% {
        opacity: 1;
    }
    to {
        top: 50%;
        left: 50%;
        opacity: 0;
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
