/* Forms - General Structure */
input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

input[type='search'] {
	-webkit-appearance: none;
}

fieldset {
	border: none;
	padding: 0;
	margin: 0;
}

fieldset ul {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

fieldset > ul > li {
	padding-bottom: .8em;
	position: relative;
	width: 100%;
	font-size: inherit;
	padding-left: 0;
	padding-right: 0;
}

.no-flexbox fieldset > ul > li:not(.full) {
	display: block;
	float: left;
}

fieldset > ul > li.fit {
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

fieldset > ul > li.fit + .fit {
	margin-left: 2%;
}

fieldset > ul > li.fourth {
	width: 24%;
}

fieldset > ul > li.third {
	width: 32%;
}

fieldset > ul > li.half {
	width: 49%;
}

fieldset > ul > li.full {
}

.input-text {
	position: relative;
}

fieldset ul.column-form {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

fieldset > ul.column-form > li.half {
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 0;
}

fieldset > ul.column-form > li.half > ul {
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

fieldset > ul.column-form > li.half > ul > li {
	width: 100%;
	padding-bottom: .8em;
}
/* End Forms - General Structure */

/* Forms - Label Styles */
fieldset li > label {
	display: block;
	position: relative;
	margin-bottom: .25em;
}

fieldset li > label.hide {
	display: none;
}

fieldset li > label small {
	display: block;
	line-height: 1;
}
/* End Forms - Label Styles */

/* Forms - Input Styles */
.input-text input[type='text'], .input-text input[type='month'], .input-text input[type='email'], .input-text input[type='tel'], .input-text input[type='datetime'], .input-text input[type='datetime-local'], .input-text textarea, .input-text select, .zip-search-input {
	display: block;
	border: none;
	padding: .5em .75em;
	width: 100%;
	border-radius: .3em;
	text-align: left;
	outline: none;
	font-size: 1.222em;
	-webkit-transition: background-color .4s ease 0s;
	-moz-transition: background-color .4s ease 0s;
	-o-transition: background-color .4s ease 0s;
	transition: background-color .4s ease 0s;
}

.input-text textarea {
	resize: none;
	min-height: 8em;
}

.input-text select {
	padding: .67em .75em;
}

.touch .input-text select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.input-text input[type='month'] {
	padding: .45em .5em;
}

.input-text input:focus, .input-text select:focus, .input-text textarea:focus, .zip-search-input:focus {
	outline: none;
}

.input-text.check-box {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.input-text.check-box label:not(.check-replace) {
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

.input-text.check-box input {
	width: 1.5em;
	height: 1.5em;
	margin: 0;
	padding: 0;
	position: absolute;
	opacity: 0;
}

.input-text.check-box .check-replace {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	border-style: solid;
	border-width: 1px;
	margin-right: .75em;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	position: relative;
	border-radius: .2em;
}

.input-text.check-box .check-replace:before {
	content: '\e132';
	font-family: 'icomoon-ult';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	opacity: 0;
	-webkit-transition: opacity .4s ease 0s;
	-moz-transition: opacity .4s ease 0s;
	-o-transition: opacity .4s ease 0s;
	transition: opacity .4s ease 0s;
}

.input-text.check-box input:checked + .check-replace:before {
	opacity: 1;
}

.input-text select option {
	text-transform: none;
	text-align: center;
}

.input-text ::-webkit-input-placeholder {
	opacity: 1;
}

.input-text :-moz-placeholder {
	opacity: 1;
}

.input-text ::-ms-input-placeholder {
	opacity: 1;
}

input[type=text]::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}

input[type=text]::-ms-reveal {
	display: none;
	width: 0;
	height: 0;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
	display: none;
}
/* End Forms - Input Styles */

/* File Uploader Styles */
.input-text.uploader {
	border-radius: .3em;
}

.input-text.uploader input {
	padding-top: .5em;
	padding-bottom: .5em;
	width: 100%;
	margin: .3em .5em 0;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	.input-text.uploader input {
		padding-left: 3.75em;
	}
}

.input-text.uploader input::-webkit-file-upload-button {
	visibility: hidden;
}

.input-text.uploader input::before {
	content: 'Upload Image';
	border-radius: .5em;
	display: inline-block;
	padding: .5em 1em;
	outline: none;
	white-space: nowrap;
	-webkit-user-select: none;
	cursor: pointer;
	font-weight: 700;
	font-size: .95em;
	text-transform: uppercase;
	line-height: 1;
	-webkit-transition: background-color .4s ease 0s, color .4s ease 0s;
	-moz-transition: background-color .4s ease 0s, color .4s ease 0s;
	-o-transition: background-color .4s ease 0s, color .4s ease 0s;
	transition: background-color .4s ease 0s, color .4s ease 0s;
	margin-left: -3.25rem;
	margin-top: -.75rem;
}

.input-text.uploader input.uploaded::before {
	content: 'Change Image';
}

.input-text.uploader input:hover::before {
}

.input-text.uploader input:active::before {
}
/* End File Uploader Styles */

/* Forms - Validation Message Box */
fieldset .validation {
	position: absolute;
	padding: .5em 1em;
	top: 100%;
	z-index: 2;
	font-size: .8em;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(10%);
	-moz-transform: translateY(10%);
	-o-transform: translateY(10%);
	transform: translateY(10%);
	-webkit-transition: .25s;
	-moz-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
	white-space: nowrap;
	display: block;
	right: 0;
}

fieldset .invalid .validation {
	opacity: 1;
	-webkit-transform: translate(0);
	-moz-transform: translate(0);
	-o-transform: translate(0);
	transform: translate(0);
	visibility: visible;
}

fieldset .validation:before {
	content: '';
	display: block;
	position: absolute;
	height: 0;
	width: 0;
	border-left: solid .5em transparent;
	border-right: solid .5em transparent;
	border-bottom-style: solid;
	border-bottom-width: .5em;
	bottom: 100%;
	right: 1em;
}
/* End Forms - Validation Message Box */

/* 1500px Responsive */
@media screen and (max-width:1500px) {
	body {
	}
}
/* End 1500px Responsive */

/* 1200px Responsive */
@media screen and (max-width:1200px) {
	body {
	}
}
/* End 1200px Responsive */

/* 1000px Responsive */
@media screen and (max-width:1000px) {
	body {
	}
}
/* End 1000px Responsive */

/* 800px Responsive */
@media screen and (max-width:800px) {
	body {
	}
}
/* End 800px Responsive */

/* 650px Responsive */
@media screen and (max-width:650px) {
	body {
	}
}
/* End 650px Responsive */

/* 550px Responsive */
@media screen and (max-width:550px) {
	body {
	}

	fieldset > ul > li {
		display: block;
		width: 100% !important;
	}
}
/* End 550px Responsive */

/* 475px Responsive */
@media screen and (max-width:475px) {
	body {
	}
}
/* End 475px Responsive */

/* 400px Responsive */
@media screen and (max-width:400px) {
	body {
	}
}
/* End 400px Responsive */

/* 350px Responsive */
@media screen and (max-width:350px) {
	body {
	}
}
/* End 350px Responsive */
