html.loading {
    overflow-y: hidden;
}
html.loading .loading-content {
    display: table;
}
.loading-content {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 99999999999999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: wait;
}

.loading-content > .loading-box {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

.loading-content > .loading-box > .loading-img {
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.loading-content > .loading-box > .loading-img > svg {
    height: 250px !important;
}

.loading-content > .loading-box > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 22px;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 7px;
}

.loading-content > .loading-box > label {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    text-align: center;
    font-size: 12px;
}