body {
    margin: 0;
}

.error-template {padding: 40px 15px;text-align: center;}
.error-actions {margin-top:15px;margin-bottom:15px;}
.error-actions .btn { margin-right:10px; }

.maintenance{
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%;
    left: 0%;
    top: 0%;
}

.spinner div {
    width: 5px;
    height: 5px;
    position: absolute;
    left: -20px;
    top: 10px;
    background-color: #fff;
    border-radius: 50%;
    animation: move 4s infinite cubic-bezier(.2,.64,.81,.23);
}
.spinner div:nth-child(2) {
    animation-delay: 150ms;
}
.spinner div:nth-child(3) {
    animation-delay: 300ms;
}
.spinner div:nth-child(4) {
    animation-delay: 450ms;
}
@keyframes move {
    0% {left: 0%;}
    75% {left:100%;}
    100% {left:100%;}
}