/*
	Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	15;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

/* === Remove input autofocus webkit === */
*:focus {outline: none;}

.formField {
	font-family: Arial, Helvetica, sans-serif;
	background-color:white;;
	border: 1px black solid;
}
/* === List Styles === */
.formField ul {
    width:100%;
    list-style-type:none;
	list-style-position:outside;
	margin:0px;
	padding:0px;
	
}
.formField li{
	padding:8px; 
	/*border-bottom:1px solid #eee;*/
	position:relative;
	border-bottom: 1px black solid;
} 
.formField ul li {
	font-size:14px;
	clear: both;
}
/* === Form Header === */
.formField h2 {
	margin:0;
	display: inline;
}
.required_notification {
	color:#d45252; 
	margin:5px; 
	display:inline;
	float:right;
}

/* === Form Elements === */
.formField {
	display:inline-block;
	width:50%;
	min-width:100px;
	margin-top: 0px;
	display:inline-block;
	float:left;
	padding:0px;
}
.formField label {
	font-family:'AmasisLightMT', Arial, Helvetica, sans-serif;
	width:100%;
	min-width:100px;
	margin-top: 0px;
	display:inline;
	float:left;
	padding:0px;
	font-size: 20px;
}
.formField input {
	height:15px; 
	width:100%;
	min-width:250px;
	padding:5px;	
	font-family: Arial, Helvetica, sans-serif;
}
.formField input[type="radio"] {
	width: auto;	
	display: inline;
}
.formField select {
	height:30px; 
	width:100%;
	min-width:260px;
	padding:5px 8px;
	border:2px solid #aaa;
	font-family:'AmasisLightMT', Arial, Helvetica, sans-serif;	
}
.formField textarea {
	height:45px; 
	width:100%;
	min-width:260px;
	padding:5px 8px;
	font-family:'AmasisLightMT', Arial, Helvetica, sans-serif;
}
.formField #message {
	height:90px;
	width:100%;
	padding:5px 8px;
}

	/* form element visual styles */
	.formField input, .formField textarea, .formField select {
		border:none;
/* 		border:1px solid #aaa; */

	}
	.formField input:focus, .formField textarea:focus, .formField select:focus{
/* 		border:1px solid #aaa; */
	}

/* === HTML5 validation styles === */	
.formField input:required, .formField textarea:required {
	background: #fff url(../images/red_asterisk.png) no-repeat 95% center;
}
.formField input:required:valid, .formField textarea:required:valid {
	background: #fff url(../images/valid.png) no-repeat 95% center;
}
.formField input:focus:invalid, .formField textarea:focus:invalid {
	background: #fff url(../images/invalid.png) no-repeat 95% center;
/* 	box-shadow: 0 0 1px #d45252; */
	box-shadow: none;
/* 	border-color: #b03535; */
	border: none;
}

/* === Form hints === */
.form_hint {
	background: #d45252;
	border-radius: 3px 3px 3px 3px;
	color: white;
	margin-left:8px;
	padding: 5px 6px;
	z-index: 999; /* hints stay above all other elements */
	position: absolute; /* allows proper formatting if hint is two lines */
	display: none;
}
.form_hint::before {
	content: "\25C0";
	color:#d45252;
	position: absolute;
	top:1px;
	left:-6px;
}
.formField input:focus + .form_hint {display: inline;}
.formField input:required:valid + .form_hint {background: #28921f;}
.formField input:required:valid + .form_hint::before {color:#28921f;}
	
/* === BIG Button Style GREEN for submitting === */
button.submit {
	background-color: #68b12f;
	background: -webkit-gradient(linear, left top, left bottom, from(#68b12f), to(#50911e));
	background: -webkit-linear-gradient(top, #68b12f, #50911e);
	background: -moz-linear-gradient(top, #68b12f, #50911e);
	background: -ms-linear-gradient(top, #68b12f, #50911e);
	background: -o-linear-gradient(top, #68b12f, #50911e);
	background: linear-gradient(top, #68b12f, #50911e);
	border: 1px solid #509111;
	border-bottom: 1px solid #5b992b;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	box-shadow: inset 0 1px 0 0 #9fd574;
	-webkit-box-shadow: 0 1px 0 0 #9fd574 inset ;
	-moz-box-shadow: 0 1px 0 0 #9fd574 inset;
	-ms-box-shadow: 0 1px 0 0 #9fd574 inset;
	-o-box-shadow: 0 1px 0 0 #9fd574 inset;
	color: white;
	font-size:13px;
	padding: 6px 20px;
	text-align: center;
	text-shadow: 0 -1px 0 #396715;
}
button.submit:hover {
	opacity:.85;
	cursor: pointer; 
}
button.submit:active {
	border: 1px solid #20911e;
	box-shadow: 0 0 10px 5px #356b0b inset; 
	-webkit-box-shadow:0 0 10px 5px #356b0b inset ;
	-moz-box-shadow: 0 0 10px 5px #356b0b inset;
	-ms-box-shadow: 0 0 10px 5px #356b0b inset;
	-o-box-shadow: 0 0 10px 5px #356b0b inset;
}

/* === BIG Button Style RED for cancelling === */

button.nullify {
	background: #a88d93; /* Old browsers */
	background: -moz-linear-gradient(top,  #a88d93 0%, #a90329 17%, #8f0222 44%, #6d0019 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a88d93), color-stop(17%,#a90329), color-stop(44%,#8f0222), color-stop(100%,#6d0019)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #a88d93 0%,#a90329 17%,#8f0222 44%,#6d0019 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #a88d93 0%,#a90329 17%,#8f0222 44%,#6d0019 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #a88d93 0%,#a90329 17%,#8f0222 44%,#6d0019 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #a88d93 0%,#a90329 17%,#8f0222 44%,#6d0019 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a88d93', endColorstr='#6d0019',GradientType=0 ); /* IE6-9 */
	border: 1px solid #7c1524;
	border-bottom: 1px solid #63111d;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	box-shadow: inset 0 1px 0 0 #a0042d;
	-webkit-box-shadow: 0 1px 0 0 #a0042d inset ;
	-moz-box-shadow: 0 1px 0 0 #a0042d inset;
	-ms-box-shadow: 0 1px 0 0 #a0042d inset;
	-o-box-shadow: 0 1px 0 0 #a0042d inset;
	color: white;
	font-size:13px;
	padding: 6px 20px;
	text-align: center;
	text-shadow: 0 -1px 0 #396715;
}
button.nullify:hover, button.nullify-small:hover, button.pt-product-goback:hover, button.gray-small:hover {
	opacity:.85;
	cursor: pointer; 
}
button.nullify:active {
	border: 1px solid #63111d;
	box-shadow: 0 0 10px 5px #6d0019 inset; 
	-webkit-box-shadow:0 0 10px 5px #6d0019 inset ;
	-moz-box-shadow: 0 0 10px 5px #6d0019 inset;
	-ms-box-shadow: 0 0 10px 5px #6d0019 inset;
	-o-box-shadow: 0 0 10px 5px #6d0019 inset;
}
button.nullify-small {
	background: #a88d93; /* Old browsers */
	background: -moz-linear-gradient(top,  #a88d93 0%, #a90329 17%, #8f0222 44%, #6d0019 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a88d93), color-stop(17%,#a90329), color-stop(44%,#8f0222), color-stop(100%,#6d0019)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #a88d93 0%,#a90329 17%,#8f0222 44%,#6d0019 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #a88d93 0%,#a90329 17%,#8f0222 44%,#6d0019 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #a88d93 0%,#a90329 17%,#8f0222 44%,#6d0019 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #a88d93 0%,#a90329 17%,#8f0222 44%,#6d0019 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a88d93', endColorstr='#6d0019',GradientType=0 ); /* IE6-9 */
	border: 1px solid #7c1524;
	border-bottom: 1px solid #63111d;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	box-shadow: inset 0 1px 0 0 #a0042d;
	-webkit-box-shadow: 0 1px 0 0 #a0042d inset ;
	-moz-box-shadow: 0 1px 0 0 #a0042d inset;
	-ms-box-shadow: 0 1px 0 0 #a0042d inset;
	-o-box-shadow: 0 1px 0 0 #a0042d inset;
	color: white;
	font-size:11px;
	padding: 3px 10px;
	text-align: center;
	text-shadow: 0 -1px 0 #396715;
}

/* === Button Style BLUE for selecting === */
button.selector-small, button.pt-product-goback {
	background-color: #68b12f;
	background: -webkit-gradient(linear, left top, left bottom, from(#4164e5), to(#z));
	background: -webkit-linear-gradient(top, #4164e5, #3851ce);
	background: -moz-linear-gradient(top, #4164e5, #3851ce);
	background: -ms-linear-gradient(top, #4164e5, #3851ce);
	background: -o-linear-gradient(top, #4164e5, #3851ce);
	background: linear-gradient(top, #4164e5, #3851ce);
	border: 1px solid #509111;
	border-bottom: 1px solid #3d5ed8;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	box-shadow: inset 0 1px 0 0 #4877f9;
	-webkit-box-shadow: 0 1px 0 0 #4877f9 inset ;
	-moz-box-shadow: 0 1px 0 0 #4877f9 inset;
	-ms-box-shadow: 0 1px 0 0 #4877f9 inset;
	-o-box-shadow: 0 1px 0 0 #4877f9 inset;
	color: white;
	padding: 3px 10px;
	font-size:13px;
	text-align: center;
	text-shadow: 0 -1px 0 #2f48a5;
}
button.selector-small:hover {
	opacity:.85;
	cursor: pointer; 
}
button.selector-small:active {
	border: 1px solid #4877f9;
	box-shadow: 0 0 1px 5px #2f48a5 inset; 
	-webkit-box-shadow:0 0 1px 5px #3450b7 inset ;
	-moz-box-shadow: 0 0 1px 5px #3450b7 inset;
	-ms-box-shadow: 0 0 1px 5px #3450b7 inset;
	-o-box-shadow: 0 0 1px 5px #3450b7 inset;
}
button.selector-small a:visited {
	color: white;
}
button.btnFloatRight {
	float:right;
	margin-right:2.5%;	
}

/****** PT GO BACK BUTTON ******/
button.pt-product-goback {
	font-size:11px;
}
button.pt-product-goback img {
	position:relative;
	top:-2px;
}
/* === Button Style GRAY === */
button.gray-small{
	background-color: #dedede;
	background: -webkit-gradient(linear, left top, left bottom, from(#bdbdbd), to(#3));
	background: -webkit-linear-gradient(top, #bdbdbd, #a1a1a1);
	background: -moz-linear-gradient(top, #bdbdbd, #a1a1a1);
	background: -ms-linear-gradient(top, #bdbdbd, #a1a1a1);
	background: -o-linear-gradient(top, #bdbdbd, #a1a1a1);
	background: linear-gradient(top, #bdbdbd, #a1a1a1);
	border: 1px solid #509111;
	border-bottom: 1px solid #3d5ed8;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	box-shadow: inset 0 1px 0 0 #dedede;
	-webkit-box-shadow: 0 1px 0 0 #dedede inset ;
	-moz-box-shadow: 0 1px 0 0 #dedede inset;
	-ms-box-shadow: 0 1px 0 0 #dedede inset;
	-o-box-shadow: 0 1px 0 0 #dedede inset;
	color: white;
	padding: 3px 10px;
	font-size:13px;
	text-align: center;
	text-shadow: 0 -1px 0 #2f48a5;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {	
	.formField {
/*
		width:75%;
		min-width:250px;
		max-width:500px;
		padding:5px 8px;
*/
	}
	
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
	.formField {
		width: auto;	
		max-width:750px;
		min-width:100px;
		padding:5px 8px;	
	}
	/* === List Styles === */
	.formField ul {
		clear: left;
		display: inline;
	}
	.formField li{
		padding:8px; 
		/*border-bottom:1px solid #eee;*/
		position:relative;
	} 
	.formField ul li {
		font-size:14px;
	}	
	.formField input[type="number"]{
		width:20px;		
	}
	
	.formField select {
		width:200px;
	}
	.s-box textarea{
		width: 50px;
	}
	.in-range {
		background-color: red;
	}
	
}