body, html {
    height: 100%;
    background: #f7f7ff;
    font-family: Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0;
}
#appLoader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#appLoader .loader {
    position: absolute;
    content: '';
    margin: 0;
    width: 30px;
    height: 30px;
    font-size: 20px;
    -webkit-animation: form-spin .6s linear;
    animation: form-spin .6s linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border-radius: 100%;
    border-color: #3e2288 rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1);
    border-style: solid;
    border-width: 5px;
    box-shadow: 0 0 0 1px transparent;
    visibility: visible;
    z-index: 101;
}
@keyframes form-spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.noJsMessage {
    position: absolute;
    top: calc(50vh - 4rem);
    left: calc(50vw - 13rem);
    width: 22rem;
    background: #FFF;
    padding: 2rem 1rem;
    z-index: 9999;
    text-align: center;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    border-radius: 5px;
}
.noJsMessage img {
    display: block;
    width: 8rem;
    height: 3rem;
    margin: 0 auto 1rem;
}