/*
* CSS for contact form.
*/

.blockBackground {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.9);;
    z-index: 25001;
}

.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;
 }


.messageBox 
{
    display : none;
    position : fixed;
    top : 50%;
    left : 50%;
    -webkit-transform : translate(-50%, -50%);
    transform : translate(-50%, -50%);
    background : #f7f7f7;
	box-shadow : 5px 5px 10px 0.9px rgba(0, 0, 0, 0.5);
    margin : 0 auto;
    transition : display .6s;
    z-index : 25006;
}

.messageBoxInner 
{
	display : inline-block;
	width : 100%;
	border : 0px;
	margin : 0px;
    background-color : #ffffff;
	vertical-align : top;
}

.messageBoxLine {
	width : 95%;
	text-align : center;
	font-size : 1remt;
	color : #000000;
	margin : 10px 10px 10px 10px;
}

.messageBoxSpaceLine {
	width : 100%;
	height : 40px;
}

.messageBoxButtonLine {
	display : inline-block;
	width : 100%;
	text-align : right;
	vertical-align : top;
	padding : 10px 30px 10px 10px;
}

.appFullInput
{
	display : block;
	text-align : left;
	color : #000000;
	margin-left : 50px;
	margin-right : 20px;
}

.formLinks
{
	color : #ff8000;
}

.formLinks:hover
{
	color : #000000;
}

.appHeadingLine {
	display : inline-block;
	width : 100%;
	text-align : right;
	font-size : 1rem;
	color : #000000;
	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 : 1rem;
}


.contactFormBox {
    display : none;
    width : 60%;
    position : fixed;
    top : 45%;
    left : 50%;
    -webkit-transform : translate(-50%, -50%);
    transform : translate(-50%, -50%);
    background-color : var(--sitewidebgcolor);
    color : black;
    -webkit-box-shadow: 3px 3px 7px -1px rgba(173,170,173,1);
    -moz-box-shadow: 3px 3px 7px -1px rgba(173,170,173,1);
    box-shadow: 3px 3px 7px -1px rgba(173,170,173,1);
    margin : 0 auto;
    z-index : 25002;
    overflow : hidden;
}


.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 : 1.1rem;
	font-weight : 300;
	vertical-align : top;
	color : black;
	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 : 5px;
}

.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 : 5px;
}

.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 : 5px;	
}

.appTextInputMULT:focus, .appTextInputSTD:focus, .appTextInputMULTTALL:focus
{
	border : 1px solid #c8c8c8;
}

@media only screen and (max-width: 768px) 
{
    .contactFormBox 
    {
		width : 99%;
	} 
}