.loadmask {
    z-index: 5000;
    position: fixed;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    -moz-opacity: 0.5;
    opacity: .50;
    filter: alpha(opacity=50);
    background-color: #CCC;
    width: 100%;
    height: 100%;
    zoom: 1;
    cursor: wait;
}
.loadmask-msg {
    z-index: 20001;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: wait;
    justify-content: center;
}
.loadmask-msg div {
    background: rgba(251, 251, 251, 0) url('../../static/images/loading.svg') no-repeat;
    color: transparent;
    cursor: wait;
    width: 160px;
    height: 160px;
}
.masked {
    overflow: hidden !important;
}
.masked-relative {
    position: relative !important;
}
.masked-hidden {
    visibility: hidden !important;
}