#module-loading-horizontal{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    writing-mode: horizontal-tb;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
    padding: 0 16px;
}

#module-loading-message{ 
    margin-top: 20px;
    text-align: center;
    font-family: sans-serif;
    color: black !important;
    font-size: 20px;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed */
}

.bold_totals {
    font-weight: bold !important;
    font-size: large !important;
}

div#module-loading{
    z-index: 999999999;
    position: absolute;
    padding: 24px 8px;
    height: 100%;
    box-sizing: border-box;
    writing-mode: horizontal-tb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    -webkit-transition: opacity 2s;
    -moz-transition: opacity 2s;     
    transition: opacity 2s; 
    opacity: 1;
}

div#module-loading.fade {
    opacity: 0;
    visibility: hidden;
}

div#module-loading-mask{
    background-color: #EAF2F6;
    width: 100%;
    height: 100%;
    z-index: 888888888;
    position: absolute;
    top: 0;
    left: 0;
    zoom: 1;
    opacity: 0.75;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;     
    transition: opacity 1s; 
}

div#module-loading-mask.fade {
    opacity: 0;
    visibility: hidden;
}


