.loadingPanel {
    display: block;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
}

.blocked {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    cursor: pointer;
}

body {
    font-family: "Montserrat", Helvetica, Arial, sans-serif !important;
}

body.loading {
    overflow: hidden;
}

body.loading .loadingPanel {
    display: block;
}

