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

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

.super-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    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%);
}

#content {
    width: 100%;
}

@media print {
    #content {
        width: 100%;
        margin-left: 0px;
    }
}

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

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

.ql-toolbar.ql-snow {
    background-color: #FFFFFF !important;
    position: sticky;
    top: 0;
    z-index: 100;
}