html, body, #app, #content {
    min-height: 100vh;
}

body {
    font-family: 'Nunito', sans-serif;
}

.super-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
}

.basic-overlay {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.spinning-icon {
    animation: spinning-icon 2s infinite linear;
}

.super-overlay .spinning-icon {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.paragraph {
    padding-top: 0pt;
    text-indent: 36pt;
    padding-bottom: 0pt;
    margin-bottom: 0 !important;
    line-height: 2.0;
    orphans: 2;
    widows: 2;
    text-align: justify
}

@keyframes spinning-icon {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}