/* spinner-div and loading-img CSS property is used for displaying waiting image(image/loading-spinner.gif). after clicking on send button in contactus.html page */
.spinner-div
{
    background-color: rgba(0,0,0,0.5);
}

#loading-img
{
    display: none;
    z-index: 100;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -135px;
    margin-top: -126px;
}
