/* CSS Document */

/* Controls element display styles */
#waiting, #success, #failure {
	display: none;
}
body.submitting #upload_form_div {
	overflow: hidden;
	height: 1px;
}
body.submitting #waiting {
	display: block;
}
body.submitting.failure #waiting, body.submitting.success #waiting {
	display: none;
}
body.submitting.success #success {
	display: block;
}
body.submitting.failure #failure {
	display: block;
}
#upload_form_div .file-upload:invalid {
	border: 2px red solid;
	background-color: red;
}
p + div.toggle {
	display: none;
}
p.display-next ~ div.toggle {
	display: block;
}


/* Form1 (Quote Request) form styles */
#form1 {
	font-size: 14px;
	color: #4d4d4d;
}
#form1 .two-col {
	width: 48%;
	float: left;
	background: #ecedf0;
	padding: 10px 20px;
	margin-top: 1px;
}
#form1>.two-col:nth-of-type(2) {
	background: #cbcdd3;
	margin-left: 4%;
}
#form1 h2 {
	color: #193960;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 30px;
	margin: 0;
}
#form1 h3 {
	margin: 8px 0;
}
#form1 ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#form1 .text-sm {
	display: inline-block;
	font-size: 10px;
	line-height: 1.3em;
	margin-top: 5px;
}
#form1 .text-sm.text-sm2 {
	margin-top: 0;
}
#form1  .form-style-1,
#form1  .form-style-2 {
	display: block;
	margin-bottom: 5px;
}
#form1 .form-style-1 input,
#form1 .form-style-1 select,
#form1 .form-style-1 textarea {
	height: 40px;
	border: solid 1px #b0b1b1;
	border-radius: 7px;
	width: 100%;
	background: #fff;
}
#form1 .form-style-1 input,
#form1 .form-style-1 select {
	padding: 0 10px;
}
#form1 .form-style-1 textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 10px;
	height: auto;
}
#form1 .form-style-1.qty-option input {
	width: 20%;
	margin-right: 3%;
}
#form1 .indented {
	/* line-height: 2em;  */
	margin: 5px 0 10px 20px; 
	font-size: 12px;
}
#form1 .submit-button {
	font-size: 15px;
	font-weight: normal;
	padding: 8px 12px;
	color: #2b2b2b;
	background: #fdb813;
	border: solid 2px #fff;
	border-radius: 5px;
}
#form1 .submit-button:hover {
	background: #422f03; 
	color: #fff;
	cursor: pointer;
}
#form1 .details {
	padding: 0 10px; 
	border: solid 1px #fff; 
	margin: 0 -5px 15px; 
	background: #d9dbe0;
}


/* "Small" screen styles - apply to view less than 600px */
 @media screen and (max-width: 600px) {
	#form1 .two-col {
		width: 100%;
		float: none;
	}
	#form1 > .two-col:nth-of-type(2) {
		margin-left: 0;
		margin-top: 20px;
	}
	#form1 .show-notsmall {
		display: none;
	}
 }

/* Hide page elements using CSS */
form#form1.api-form div.indented > label:nth-child(9) {
/*	outline: 4px solid red; */
}

