body.body-loading {
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

#loader {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 25;
    background: #333;
}

#loader .loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

#loader span {
    color: rgba(0,0,0,0.1);
    border-top: 2px solid rgba(0,0,0,0.1);
    border-bottom: 2px solid rgba(0,0,0,0.1);
    font-family: cursive;
    letter-spacing: 30px;
    font-weight: bold;
    font-size: 80px;
    animation: animate 3s infinite;
}

#loader span:nth-child(1){
    /*animation: one 3s infinite;*/
    animation-delay: 0.2s;
}

#loader span:nth-child(2){
    /*animation: two 3s infinite;*/
    animation-delay: 0.4s;
}

#loader span:nth-child(3){
    /*animation: thre 3s infinite;*/
    animation-delay: 0.6s;
}

#loader span:nth-child(4){
    /*animation: four 3s infinite;*/
    animation-delay: 0.8s;
}

#loader span:nth-child(5){
    /*animation: five 3s infinite;*/
    animation-delay: 1s;
}

#loader span:nth-child(6){
    /*animation: six 3s infinite;*/
    animation-delay: 1.2s;
}

#loader span:nth-child(7){
    /*animation: seven 3s infinite;*/
    animation-delay: 1.4s;
}

#loader ::selection {
    color: none;
    background: none;
}

@keyframes animate{
	0%{
		color: #00FFCD;
		border-color: #00FFCD;
		text-shadow: 0px 0px 50px #00FFCD;
	}

	80%{
		border-color: #fff;
		color: #fff;
		text-shadow: 0px 0px 50px #fff;
	}
}
