/*
* CSS for contact form.
*/


:root {
    --contact-form-field-border-radius  : var(--site-radius);
    --contact-form-wrapper-border-radius  : var(--site-radius);
}

.contactFormBox {
    display : none;
    width : 60%;
    position : fixed;
    top : 45%;
    left : 50%;
    -webkit-transform : translate(-50%, -50%);
    transform : translate(-50%, -50%);
    background-color : #547692;
    color : black;
    -webkit-box-shadow: 3px 3px 7px -1px rgba(0,0,0,1);
    -moz-box-shadow: 3px 3px 7px -1px rgba(0,0,0,1);
    box-shadow: 3px 3px 7px -1px rgba(0,0,0,1);
    margin : 0 auto;
    z-index : 25002;
    overflow : hidden;
    border-radius : var(--contact-form-wrapper-border-radius);
}

.blockBackground {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);;
    z-index: 25001;
}

.blockBackground.active {
    display: inline-block;
}


.blockFormBackground {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: .50;
    -webkit-opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
    z-index: 25005;
 }

.blockFormBackground.active {
    display: inline-block;
}


.messageBox {
    display : none;
    position : fixed;
    top : 50%;
    left : 50%;
    -webkit-transform : translate(-50%, -50%);
    transform : translate(-50%, -50%);
    background : #c0c0c0;
	box-shadow : 5px 5px 10px 0.9px rgba(0, 0, 0, 0.5);
    margin : 0 auto;
    border-radius : var(--contact-form-wrapper-border-radius);    
    transition : display .6s;
    z-index : 25006;
    
}

.messageBoxInner {
	display : inline-block;
	width : 100%;
	border : 0px;
	margin : 0px;
    background-color : #ffffff;
	vertical-align : top;
	text-align : center;
	border-radius : var(--contact-form-wrapper-border-radius);
}

.messageBoxLine {
	width : 100%;
	text-align : center;
	font-size : 10pt;
	color : #000000;
	padding : 10px 10px 10px 10px;
	border-radius : var(--contact-form-wrapper-border-radius);
}

.messageBoxSpaceLine {
	width : 100%;
	height : 40px;
}

.messageBoxButtonLine {
	display : inline-block;
	width : 100%;
	text-align : center;
	vertical-align : top;
	padding : 10px 10px 10px 10px;
    border-radius : var(--contact-form-wrapper-border-radius);	
}

.appFullInput {
	display : block;
	text-align : left;
	color : #ffffff;
	margin-left : 50px;
	margin-right : 20px;
}

.formLinks {
	color : #ffff00;
}

.formLinks:hover {
	color : #ffffff;
}

.appHeadingLine {
	display : inline-block;
	width : 100%;
	text-align : right;
	font-size : 12pt;
	font-style : bold;
	font-weight : 600;
	color : #ffffff;
	padding : 10px 30px 10px 10px;
}

.appButtonLine {
	display : inline-block;
	width : 100%;
	text-align : right;
	vertical-align : top;
	padding : 10px 30px 10px 10px;
}


.appMediumButton {
	padding-top : 3px;
	font-size : .8rem;
}


.appEditBox {
	display : inline-block;
	position : relative;
	width : 100%;
	border : 0px;
	margin : 0px;
    background :none;
	vertical-align : top;
}

.appEditBackground {
	position : absolute;
	top : 0px;
    overflow : hidden;
}


.appSpaceLine {
	width : 100%;
	height : 20px;
}

.appInputLine {
	display : inline-block;
	width : 100%;
	text-align : left;
	vertical-align : top;
	margin : 0px 0px 10px 0px;
}

.appFieldLegend {
	display : inline-block;
	width : 30%;
	text-align : right;
	font-size : .8rem;
	vertical-align : top;
	color : #ffffff;
	margin : 10px 5px 0px 0px;
}

.appTextInputSTD {
	display : inline-block;
	width : 65%;
	height : 36px;
	background-color : #ffffff;
	border : 1px solid #E5E5E5;
	outline : none;
	padding : 1px 0px 0px 13px;
	margin : 0px 0px 0px 0px;
	font-size : 14px;
	color : #787878;
	border-radius : var(--contact-form-field-border-radius);
}

.appTextInputMULT {
	display : inline-block;
	width : 65%;
	height : 70px;
	background-color : #ffffff;
	border : 1px solid #E5E5E5;
	margin : 0;
	padding : 8px 0px 0px 13px;
	font-size : 14px;
	color : #787878;
	resize : none;
	outline : none;	
	vertical-align : center;
	border-radius : var(--contact-form-field-border-radius);
}

.appTextInputMULTTALL {
	display : inline-block;
	width : 65%;
	height : 100px;
	background-color : #ffffff;
	border : 1px solid #E5E5E5;
	margin : 0;
	padding : 8px 0px 0px 13px;
	font-size : 14px;
	color : #787878;
	resize : none;
	outline : none;	
	vertical-align : center;
	border-radius : var(--contact-form-field-border-radius);
}

.appTextInputMULT:focus, .appTextInputSTD:focus, .appTextInputMULTTALL:focus {
	border : 1px solid #c8c8c8;
}

@media only screen and (max-width: 768px) {
    .contactFormBox 
    {
		width : 90%;
	} 
}