.middle-box{
    box-sizing: border-box;
    margin: 100px auto 0;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.to-fullscreen{position:absolute;top:50%;left:50%;margin-left:-165px;
    background:#001812;
    width:330px;
    z-index:10000;visibility:hidden;
    -webkit-transition: all .5s cubic-bezier(1, 0, .5, 1);transition: all .5s cubic-bezier(1, 0, .5, 1);
}
.to-fullscreen.launchY {
    visibility:visible;
    /*-webkit-transform: scale(50);transform: scale(50);*/
    -webkit-animation: launchy .5s linear;
}
.to-fullscreen.launchY.launchX {
    -webkit-transform: scale(1, 50);
    -webkit-animation: launchx .5s linear;
    background:#81B916;
}

.to-fullscreen.launchY.launchX.done {
    -webkit-transform: scale(10, 50);
}
.js-login{
    width:150px;
    -webkit-transition: all .8s cubic-bezier(1, 0, .5, 1);transition: all .8s cubic-bezier(1, 0, .5, 1);
}

.js-login.minimize{
    border-radius:50%;
    width:30px;
    transform: scale(0);
}
.to-scale{
    -webkit-transform: scale(50);transform: scale(50);
}
.bounce{
    -webkit-animation: bounce .35s ease infinite alternate;
    -moz-animation: bounce .35s ease infinite alternate;
    -o-animation: bounce .35s ease infinite alternate;
    animation: bounce .35s ease infinite alternate;
}

.cs-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.cs-loader-inner {
    color: #FFF;
    text-align: center;
}

.cs-loader-inner label {
    font-size: 20px;
    opacity: 0;
    display:inline-block;
}

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(0px);
    }
    33% {
        opacity: 1;
        transform: translateX(0px);
    }
    66% {
        opacity: 1;
        transform: translateX(0px);
    }
    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

@-webkit-keyframes lol {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-200px);
    }
    33% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }
    66% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}

@-webkit-keyframes launchy {
    0% {
        -webkit-transform: scaleY(1);
    }
    33% {
        -webkit-transform: scaleY(4);
    }
    66% {
        -webkit-transform: scaleY(6);
    }
    100% {
        -webkit-transform: scale(1, 50);
    }
}

@-webkit-keyframes launchx {
    0% {
        -webkit-transform: scale(1, 50);
    }
    33% {
        -webkit-transform: scale(3, 50);
    }
    66% {
        -webkit-transform: scale(5, 50);
    }
    100% {
        -webkit-transform: scale(10, 50);
    }
}

.cs-loader-inner label:nth-child(6) {
    -webkit-animation: lol 3s infinite ease-in-out;
    animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner label:nth-child(5) {
    -webkit-animation: lol 3s 100ms infinite ease-in-out;
    animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(4) {
    -webkit-animation: lol 3s 200ms infinite ease-in-out;
    animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(3) {
    -webkit-animation: lol 3s 300ms infinite ease-in-out;
    animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(2) {
    -webkit-animation: lol 3s 400ms infinite ease-in-out;
    animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner label:nth-child(1) {
    -webkit-animation: lol 3s 500ms infinite ease-in-out;
    animation: lol 3s 500ms infinite ease-in-out;
}