#loading-image {
    /*display: none;*/
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999999999999999;
/*    background: url(images/pageLoader.gif) 50% 50% no-repeat rgb(249,249,249);*/
    background: #0d6efd;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loading-image img {
    display: block;
    margin: 0 auto;
    width: 235px;
    height: auto;
/*    margin-top: 350px;*/
}


/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    
}

/* Landscape tablets and ipad */
@media (min-width: 768px) and (max-width: 991px) {
    #loading-image img {
        width: 180px;
    }
}

/* Landscape phones and portrait tablets */
@media (min-width: 576px) and (max-width: 767px) {
    #loading-image img {
        width: 160px;
    }
}

/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 575px) {
    #loading-image img {
        width: 150px;
    }
}

/* Smaller phones */
@media (max-width: 360px) {
    #loading-image img {
        width: 150px;
    }
}