@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}

@-moz-keyframes fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}

@-o-keyframes fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}

@keyframes fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes gradient-anim {
    0% {
        -webkit-background-size: 340% 340%;
        background-size: 340%;
    }
    100% {
        -webkit-background-size: 140% 140%;
        background-size: 140%;
    }
}

@-moz-keyframes gradient-anim {
    0% {
        -moz-background-size: 340%;
        background-size: 340%;
    }
    100% {
        -moz-background-size: 140%;
        background-size: 140%;
    }
}

@-o-keyframes gradient-anim {
    0% {
        background-size: 340%;
    }
    100% {
        background-size: 140%;
    }
}

@keyframes gradient-anim {
    0% {
        -webkit-background-size: 340% 340%;
        -moz-background-size: 340%;
        background-size: 340%;
    }
    100% {
        -webkit-background-size: 140% 140%;
        -moz-background-size: 140%;
        background-size: 140%;
    }
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow: hidden;
}

body .vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

body .vertical-centered-box:after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

body .vertical-centered-box .content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}

* {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

body, html {
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(45deg, #218cf3, #0E2A48 70%);
    background: -moz-linear-gradient(45deg, #218cf3, #0E2A48 70%);
    background: -o-linear-gradient(45deg, #218cf3, #0E2A48 70%);
    background: linear-gradient(45deg, #218cf3, #0E2A48 70%);
    -webkit-background-size: 140% 140%;
    -moz-background-size: 140%;
    background-size: 140%;
    -webkit-animation-name: gradient-anim;
    -moz-animation-name: gradient-anim;
    -o-animation-name: gradient-anim;
    animation-name: gradient-anim;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1.2s;
    -moz-animation-duration: 1.2s;
    -o-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -60px;
    margin-top: -60px;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    -webkit-transform-origin: 60px 60px;
    -moz-transform-origin: 60px 60px;
    -ms-transform-origin: 60px 60px;
    -o-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, black, rgba(0, 0, 0, 0));
    -webkit-animation: rotate 1.2s infinite linear;
    -moz-animation: rotate 1.2s infinite linear;
    -o-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
}

.loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 6px 1px rgba(255, 255, 255, 0.6);
    -moz-box-shadow: inset 0 0 6px 1px rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 0 6px 1px rgba(255, 255, 255, 0.6);
}

#particles-background, #particles-foreground {
    left: -51%;
    top: -51%;
    width: 202%;
    height: 202%;
    -webkit-transform: scale3d(0.5, 0.5, 1);
    -moz-transform: scale3d(0.5, 0.5, 1);
    transform: scale3d(0.5, 0.5, 1);
    -webkit-animation-name: fade-in;
    -moz-animation-name: fade-in;
    -o-animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1.2s;
    -moz-animation-duration: 1.2s;
    -o-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

#particles-background {
    -webkit-animation-name: gradient-anim;
    -moz-animation-name: gradient-anim;
    -o-animation-name: gradient-anim;
    animation-name: gradient-anim;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1.2s;
    -moz-animation-duration: 1.2s;
    -o-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.loader-bk {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.loader-bk .msg {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.loader-bk .btn.btn-radius.btn-shadow {
    border: 1px solid #ffffff;
    padding: 5px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.16);
    text-transform: uppercase;
    transition: all 0.6s;
    font-size: 0.8rem;
}

.loader-bk .btn.btn-radius.btn-shadow:hover{
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 1);
}

.loader-bk-logout {
    border: 1px solid #fff;
    width: 100px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    display: flex;
    width: 40px;
    justify-content: center;
    border-radius: 50%;
    height: 40px;
    background: transparent;
    line-height: 1.5;
    z-index: 999;
}

.loader-bk-logout a {
    color: #fff;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}