/* custom forms styles */
.customForm-hidden {
	display: block !important;
	position: absolute !important;
	right:-9999px !important;
}

/* custom select styles */
.select-area {
	position: relative;
	overflow: hidden;
	height: 30px;
	background: #fff;
	color: #404041;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	border-bottom: 1px solid #f78f1e;
	width: 100% !important;
}
.select-area .select-opener {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	bottom: 0;
	width: 32px;
	font-weight: 400;
}
.select-area .select-opener:before{
	content: "\f107";
	font-family: 'FontAwesome';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	font-weight: 400;
	color: #f79021;
	font-size: 20px;
	line-height: 30px;
}
.select-area .left {
	position: absolute;
	width: 10px;
	height: 31px;
	z-index: 1;
	top: 0;
	left: 0;
	display: none;
}
.select-area .center {
	white-space: nowrap;
	position: relative;
	cursor: default;
	display: block;
	z-index: 2;
	padding: 0 8px 0 30px;
}
.select-area .center img {
	margin: 5px 5px 0 0;
	position: relative;
	float: left;
}
.options-overflow div.drop-list {
	overflow: auto;
}
.options-hidden {
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
}
.select-options {
	z-index: 3000;
	background: #fff;
	position: absolute;
}
.select-options .drop-holder {
	border: 1px solid #f78f1e;
	border-width: 0 1px 1px;
	height: 1%;
}
.select-options-flipped .drop-holder {
	border-width: 1px 1px 0;
}
.select-options div.drop-list {
	width: 100%;
}
.select-options ul {
	overflow: hidden;
	list-style: none;
	width: 100%;
	padding: 0;
	margin: 0;
}
.select-options ul li {
	overflow: hidden;
	float: right;
	width: 100%;
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
}
.select-options ul a {
	text-decoration: none;
	cursor: default;
	color: #404041;
	display: block;
	overflow: hidden;
	height: 1%;
	padding: 3px 8px 6px;
}
.select-options ul a span {
	cursor: default;
	float: right;
}
.select-options .item-selected a {
	text-decoration: none;
	background: #666;
	color: #fff;
}
.select-options ul a:hover {
	text-decoration: none;
}
.select-options ul a:focus {
	outline: none;
}
.select-options .optgroup strong{
	cursor: default;
	display: block;
	width: 100%;
}
.select-options .optgroup strong em {
	display: block;
	padding: 5px;
	height: 1%;
}
.select-options .optgroup ul a {
	padding-left: 20px;
}
.select-options img {
	margin: 2px 3px 0 0;
	float: left;
	border: 0;
}

/* custom checkbox styles */
.chk-area {
	margin: 7px 0 0 3px;
	float: right;
	overflow: hidden;
	height: 13px;
	width: 13px;
}
.chk-area span {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	position:relative;
	width: 13px;
	height: 13px;
	border: 1px solid #000;
	border-radius:2px;
	-webkit-box-shadow:inset -1px 1px rgba(0,0,0,.1);
	box-shadow:inset -1px 1px rgba(0,0,0,.1);
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.chk-checked span {
	background: #f78f1e;
	border-color: #f78f1e;
}
.chk-area span:before {
	position:absolute;
	left:1px;
	top:1px;
	opacity:0;
	color:#fff;
	cursor:pointer;
	font: 10px/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition:all .3s;
	-webkit-transition:all .3s;
	content:"\f00c";
}
.chk-checked span:before {
	opacity:1;
}