body.de-splash #app {
    display: none;
}

body.de-splash {
    width: 100vw !important;
    height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(circle farthest-corner at -4% -12.9%,
            #0d56e2 0.3%,
            #042460 90.2%);
}

body.de-splash .de-splash__content{
    display: block;
}

.de-splash__content {
    display: none;
    text-align: center;
}

.de-splash__content .line {
    position: relative;
    background-color: #ffffff65;
    display: inline-block;
    height: 0px;
    border-radius: 5px;
    width: 10px;
    margin: 10px;
    animation: splash-line linear infinite 0.9s;
}

.de-splash__content .line.line--3 {
    animation-delay: 0.3s;
}

.de-splash__content .line.line--3 {
    animation-delay: 0.3s;
}

.de-splash__content .line.line--6 {
    animation-delay: 0.6s;
}

.de-splash__content .line.line--15 {
    animation-delay: 0.15s;
}

.de-splash__content .line.line--45 {
    animation-delay: 0.45s;
}

.de-splash__content .line.line--75 {
    animation-delay: 0.75s;
}

.de-splash__inner {
    color: #ffffff85;
    font-size: 16px;
}

.de-splash__inner .dot {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    animation: splash-dot 1s infinite linear;
    margin-left: 2px;
    font-size: 26px;
}

.de-splash__inner .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.de-splash__inner .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes splash-line {
    0% {
        height: 0px;
        margin-top: 60px;
    }

    50% {
        height: 50px;
        margin-top: 10px;
    }

    100% {
        height: 0px;
        margin-top: 60px;
    }
}

@keyframes splash-dot {
    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}