﻿
#loading {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(255,255,255,0.8);*/
    background: rgba(0, 0, 0, 0);
    /*background: #ff0000;*/
    z-index: 1000;
}

#loadingcontent {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#loadingspinner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    font-size: larger;
    padding-top: 80px;
}
#loading {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
}

#loadingcontent {
    text-align: center;
}

#loadingspinner img {
    width: 100px; /* adjust size as needed */
    height: 100px; /* adjust size as needed */
}

#loadingmessage {
    font-size: 18px;
    margin-top: 20px;
}



