/* parent div */
.content {
}

/*mobile-only*/
@media all and (max-width: 767px) {
	body {margin: 0 auto;}
	/* parent div */
	.content {
		width: 100%;	
	}
}
/*END mobile-only*/

/*tablet-only*/
@media all and (min-width: 768px) and (max-width: 979px) {
	/* parent div */
	.content {
		/*width: 500px;*/
	}
}
/*END tablet-only*/


/*dektop-only*/
@media all and (min-width: 980px) {
	/* parent div */
	.content {
		/*width: 500px;	*/
	}
}
/*END dektop-only*/

/* div that contains the form*/
#message {
	margin: 0 auto;
}

/*divs that contain labels and fields*/
.label {
	text-align: left;
	margin: 2px 0;
	font-weight: bold;
}
.field {
	margin: 0 0 20px 0;
}

/*specific html elements, all*/
.fieldName, .fieldEmail, .fieldPhone, .fieldCity, .fieldZip, .fieldChoices, .fieldComments {  
	width: 100%;
	box-sizing: border-box;
}

/*
specific html elements, individually
	Example: 
		.fieldName { color:green; }
		.fieldEmail { color:blue; }
*/
.fieldName {  }
.fieldEmail {  }
.fieldPhone {  }
.fieldCity {  }
.fieldZip {  }
.fieldChoices {  }
.fieldComments {  }

/*
divs that contain specific labels, individually
	Example: 
		.labelName { color:green; }
		.labelEmail { color:blue; }
*/
.labelName {  }
.labelEmail {  }
.labelPhone {  }
.labelCity {  }
.labelZip {  }
.labelChoices {  }
.labelComments {  }

/*html form elements*/
input, textarea, select {
	padding: 15px;
	font-size: 1em;
	border: 1px solid #A1A1A1;	
}
button {
	display: inline-block;
	position: relative;
	background-color: #272727;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	height: 2.75em;
	line-height: 2.75em;
	font-weight: 700;
	padding: 0 2.5em 0 2.5em;
	clear: both;
}

/*div that contains the submit button*/
#button-submit {
	text-align: center;
}

/*div that contains error and success messages*/
#mail-status {
	padding: 12px 20px;
	width: 100%;
	display:none; 
	font-weight: 600;
	color: rgb(40, 40, 40);
}

/*div that contains Google reCAPTCHA*/
.g-recaptcha {margin: 0 0 25px 0;}
.g-recaptcha div {margin: auto;}

/*error and success classes are set in contact-form.js*/
.error{
	/*error message color*/
	background-color: #F7902D;  
	margin-bottom: 40px;
}
.success{
	/*success message color*/
	background-color: #48e0a4; 
}
