html, bory {
    background: #16161d;
}

.splash-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -100px;
    margin-top: -100px;
    text-align: center;
    width: 200px;
    height: 200px;
}

.splash-screen .splash-loader {
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotateZ(45deg);
    margin: 0 auto;
}

.splash-screen .splash-loader > div {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1);
}

.splash-screen .splash-loader > div:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*Essa cor está no Preset da Trid.500*/
    background-color: rgb(119, 217, 213);
    animation: splash-loader-anim 2.4s infinite linear both;
    transform-origin: 100% 100%;
}

.splash-screen .splash-loader > div.splash-cube2 {
    transform: scale(1.1) rotateZ(90deg);
}

.splash-screen .splash-loader > div.splash-cube2:before {
    animation-delay: 0.3s;
}

.splash-screen .splash-loader > div.splash-cube3 {
    transform: scale(1.1) rotateZ(180deg);
}

.splash-screen .splash-loader > div.splash-cube3:before {
    animation-delay: 0.6s;
}

.splash-screen .splash-loader > div.splash-cube4 {
    transform: scale(1.1) rotateZ(270deg);
}

.splash-screen .splash-loader > div.splash-cube4:before {
    animation-delay: 0.9s;
}

@keyframes splash-loader-anim {
    0%, 10% {
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

.splash-screen .nome-sistema {
    font-size: 3rem;
    color: #ffffff;
    margin-top: 2rem
}
