:root{
 --contbgcolor:#D8F2FE;
 --alertmsgcolor:black;
 --footerHeightSize:100px;
 --headerHeightSize:100px;
 --navHeightSize:50px;
}

.contbgclr{
	background-color: var(--contbgcolor);
	}
    
 #lbResponse{
   color: var(--alertmsgcolor);
 } 
.Modal{
                display: none;  
                z-index: 10; 
                position: fixed; 
                width: 100%;
                height: 100%  ;
                left: 0;
                top: 0; 
                background-color: rgba(0,0,0,0.3); 
                align-items: center;
				justify-content: center;				
            }
.ModalContent
{	
     width:500px;
	 height:150px; 	
	 position:relative;
	 background-color:var(--contbgcolor);
	 border-radius: 10px;
     text-align: center;
     
}	
.button_bottom{
   
    bottom:0;
    width:100px; 
	left:200px;
    text-align: center;
	position:absolute;
}	

.ModalHeader{
    top:0px;
    width:100%; 
	height: 30px;
    background-color: green;
    text-align: center;
	position:relative;	
	left:0px;
    border-radius: 10px 10px 0px 0px;
    
	
}



.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin: 0 auto; /* center the loader horizontally*/
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}