 :root {
    --form-radius : 10px;
    --input-field-border-radius  : var(--form-radius);
    --input-form-wrapper-border-radius  : var(--form-radius);
    --input-form-button-normal : #004182;
    --input-form-button-hovered : #0063c6;
    --input-form-button-selected : #09c1ff;  
       
 }

.stndFormButton
{
	display : inline-block;
    background-color : var(--input-form-button-normal);
    color : white;
    padding : 10px; 
    text-align : center;
	border-radius : var(--form-radius);
}

.stndFormButton:hover
{
    background-color : var(--input-form-button-hovered);
    cursor : pointer;
}


.stndInputFormHeading
{
	display : inline-block;
	font-size : 1.5rem;
	font-weight : 600;
	color : #004182;
	padding : 20px 20px 20px 20px;
	border-radius : var(--form-radius);	
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
	border-radius : var(--form-radius);
}

.inputfile + label {
    font-size: 1.1rem;
    color: white;
    background-color : #00ae00;
    padding : 3px 8px 3px 8px;
    display: inline-block;
    border-radius : 3px;

    text-align : center;

}

.inputfile + label:hover {
	background-color : #008cbb;
}

.inputfile + label {
	cursor: pointer; /* "hand" cursor */
}


.stndInputFormMessageBoxBackgroundBlocker {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color : rgba(0,0,0, .5);
    z-index: 25001;
}
.stndInputFormMessageBox 
{
    display : none;
    position : fixed;
    top : 50%;
    left : 50%;
    -webkit-transform : translate(-50%, -50%);
    transform : translate(-50%, -50%);
    background : #ffffff;
    margin : 0 auto;
    padding : 30px 30px 30px 30px;
    text-align : center;
	border-radius : var(--form-radius);
    z-index : 25006;
    transition : all .6s;
}
.stndInputFormMessageBoxLine {
	width : 95%;
	text-align : center;
	font-size : 1rem;
	color : #000000;
	margin : 10px 10px 10px 10px;
}
.stndInputFormMessageBoxButtonLine {
	display : inline-block;
	width : 95%;
	text-align : center;
	margin : 10px 10px 10px 10px;
}



.stndFullInputLine
{
	display : block;
	text-align : left;
	color : #000000;
    background-color : #f8f8f8;
	padding : 4px 4px 4px 20px;
	font-size : 1rem;
	font-weight : 200;
	border-radius : var(--form-radius);
}


.stndInputFieldLegend {
	display : inline-block;
	width : 100%;
	text-align : right;
	height : 36px;
	font-size : 1rem;
    font-weight : 300;
	color : #004182;
	margin : 7px 0px 0px 4px;
	padding : 0px 8px 0px 20px;
}



.stndInputSelect 
{
	display : inline-block;
	width : 100%;
	height : 36px;
	background-color : #efefef;
	border : 2px solid #e6e6e6;
	outline : none;
	padding : 0px 0px 0px 12px;
	margin : 0px 0px 10px 0px;
	font-size : 14px;
	color : #787878;
	border-radius : var(--form-radius);
}



.stndInputTextSingleLine, .stndInputTextSingleLineUCASE 
{
	display : inline-block;
	width : 100%;
	height : 36px;
	background-color : #efefef;
	border : 2px solid #e6e6e6;
	outline : none;
	padding : 0px 0px 0px 12px;
	margin : 0px 0px 10px 0px;
	font-size : 14px;
	color : #787878;
	border-radius : var(--form-radius);
}


.stndInputTextSingleLineUCASE
{
    text-transform : uppercase;
    border-radius : var(--form-radius);
}

.stndInputTextMultiLine {
	display : inline-block;
	width : 100%;
	height : 100px;
	background-color : #efefef;
	border : 2px solid #e6e6e6;
	margin : 0px;
	padding : 6px 0px 0px 13px;
	font-size : 14px;
	color : #787878;
	resize : none;
	outline : none;	
	vertical-align : center;
	border-radius : var(--form-radius);	
}


.stndInputTextMultiLine:focus, .stndInputTextSingleLine:focus, .stndInputTextSingleLineUCASE:focus 
{
   background-color : white;
}

/* Scroll item up on entry to view */
.come-in {
  transform: translateY(450px);
  animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 1s; /* So they look staggered */
}

.outerinlinecontactbox
{

	z-index : 50;

/*	background-image : url('/images/backgrounds/contact_background.jpg'); 
    background-position : right;
*/
    padding-top : 50px;
    padding-bottom : 50px;
    background-color : rgba(0,0,0,.5);
	border-radius : var(--form-radius);	
	border : 1px solid #d2d2d2;  		
}

.innerinlinecontactbox
{
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(2,2,46,1) 0%, rgba(255,255,255,1) 2%, rgba(255,255,255,1) 98%, rgba(2,10,42,1) 100%);
    background : white;

	border : 2px solid #a4be10;    
	border-radius : var(--form-radius);  
		border : 1px solid #d2d2d2;  	
}


.xforexit
{
	float : right;
	font-size : 2rem;
	font-weight : 700;
	color : var(--input-form-button-normal);
	padding : 5px;
}

.xforexit:hover
{
	color : var(--input-form-button-hovered);
}

@media only screen and (max-width: 992px) 
{
    .call-to-invite-top-spacer
    {
        padding-top : 40px;
    }
    
    .stndInputFieldLegend
    {
	    text-align : left;
    }
}

@media only screen and (max-width: 576px) 
{


.stndInputFormMessageBox 
{
    min-width : 95%;
}

}

@keyframes come-in {
  to { transform: translateY(0); }
}
