﻿/*
    While most of the styling rules used by these pages are from bootstrap, this CSS file contains custom classes that are used sporadically throughout the solution.
    Please be sure to add a date to all newly added classes or styling rules. If the author is different for any rules, please be sure to add initials or some form of 
    identifying information so the class can be attributed to someone
    CSS Orignal Author: Stanley Munson (SKM)
    CSS Creation Date: 2019-10-25
*/

@charset "UTF-8";

.req_element {
    color: red;
    font-weight:bold;
}

/*Added for overlay functionality SKM 2019-12-18 */
#overlay {
         display: none;
         position: absolute;
         left: 0;
         top: 0;
         width: 100%;
         height: 100%;
         cursor:wait;
         background: #041128;
         z-index:50;
         opacity: 0.5;
         -ms-filter: "alpha (opacity=50)";
         filter: alpha (opacity=50);
}

#overlay img {
    position:relative;    
    left:50%; 
    top:50%;
    z-index:100;    
}