body {background-color: white;font-family: Times;}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: white;
	margin-left:1%;
	margin-right:1%;
}
.size{
	font-size:25px;
}


/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
	padding-left:10%;
	padding-right:10%;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

table, td, th ,tr{
    border: 1px ;
     
      height: 35px;
}
.textbox:focus
{
	border:2px solid #800080;
	background-color:none; 
    outline:2; 
    height:30px; 
    width: 340px; 
}
.textbox
{
	border:2px solid #800080;
	font-family: Times;
    outline:0; 
    height:30px; 
    width: 340px; 

}
.datetext
{
  border:2px solid #800080;
  font-family: Times;
    outline:0; 
    height:30px; 
    width: 200px; 

}
.datetext:focus
{
  border:2px solid #800080;
  background-color:none; 
    outline:2; 
    height:30px; 
    width: 200px; 
     
}



.textbox1:focus
{
	border:2px solid #117A65;
	background-color:none; 
    outline:2; 
    height:30px; 
    width: 340px; 
     
}
.textbox1
{
	border:1px solid #117A65;
	font-family: Times;
    outline:0; 
    height:30px; 
    width: 340px; 

}
.droplist:focus
{
  font-size: 25px;
   width:340px;
   height:30px; 
  background: #fff;
  border: 2px solid #800080;

  position: relative;
  
}
.droplist{
	border:2px solid #800080;
  font-size: 25px;
   width:340px;
   height:30px; 
  background: #fff;
 
  position: relative;
  
}
input[type="text"]
{
    font-family:Times;
	font-style:normal;
	font-size:25px;

}
input[type="number"]
{
    border:2px solid #800080;
	font-family: Times;
    outline:0; 
    height:30px; 
    width: 340px; 
	font-style:normal;
	font-size:25px;
}
label {
	font-family:Times;
	color: #000080;
	font-weight: bold;
	display: block;
	width: 230px;
	float: left;
	font-size:22px;
}

label.spl {
	/*color: #800000;*/
  color: #008000;
}


select {
  font-family: Times;
}
h4 {
	font-family: Times;
	font-weight:bold;
}
h3
{
	font-family:Times;
	font-weight:bold;
	text-align:center;
	color:#BF360C;
}

.submit{
    padding:10px 29px; 
    background: #FFCDD2  ; 
    border:2px solid #4A235A;
    cursor:pointer;
    -webkit-border-radius: 5px;
    border-radius: 0px; 
	font-size:20px;
	font-weight:bold;
}

.submit1{
	width : 70%;
	margin-top : 5px;
    padding:5px 60px; 
    background: #33c7ff  ; 
    border:2px solid #4A235A;
    cursor:pointer;
    /*-webkit-border-radius: 20px;*/
    border-radius: 10px; 
	font-size:20px;
	font-weight:bold;
}
.submit2{
    padding:10px 29px; 
    background: white  ; 
	color:green;
    border:2px solid #4A235A;
    cursor:pointer;
    -webkit-border-radius: 5px;
    border-radius: 0px; 
	font-size:20px;
	font-weight:bold;
}

.image{
   /*border-radius: 50%;*/
    border: solid #585858;

	
}


/* mask loader starts */
/*
We set the element we are applying our loading mask to relative  
*/
.loading-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
}

/*
Because we set .loading-mask relative, we can span our ::before  
element over the whole parent element  
*/
.loading-mask::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

/*
Spin animation for .loading-mask::after  
*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/*
The loading throbber is a single spinning element with three  
visible borders and a border-radius of 50%.  
Instead of a border we could also use a font-icon or any  
image using the content attribute.  
*/
.loading-mask::after {
  content: "";
  position: absolute;
  border-width: 3px;
  border-style: solid;
  border-color: transparent rgb(255, 255, 255) rgb(255, 255, 255);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  animation: 2s linear 0s normal none infinite running spin;
  filter: drop-shadow(0 0 2 rgba(0, 0, 0, 0.33));
}
/* mask loader ends */
