@media (max-width: 979px) {
    #loading.modal, 
    #loading.modal.container,
    #loading.modal.modal-overflow {
	top: 45%;
	right: 1%;
	left: 1%;
	bottom: auto;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
    }
    
    #loading .modal-backdrop {
	height: auto !important;
    }
}

.show-loading {
    position: relative;
    pointer-events: none;
}

.show-loading:after {
    content: "Loading...";
    content: attr(data-message);
    /*font-family: monospace;*/
    font-family: inherit;
    font-weight: 300;
    font-size: 75%;
    position: absolute;
    text-align: center;
    display: block;
    line-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.8) url("../images/loader.gif") center center no-repeat;
    background-position: center calc(50% - 50px);
    padding-top: 5px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1020;
    border-color: black;
}