/* custom forms styles */
.customForm-hidden {
	display: block !important;
	position: absolute !important;
	left:-9999px !important;
}
/* custom checkbox styles */
.chk-area {
	margin: 0 20px 0 0;
	float: left;
	overflow: hidden;
	height: 22px;
	width: 22px;
	border:1px solid #ccc;
	-webkit-box-shadow:inset -7px -7px 4px rgba(153,153,153,.1);
	box-shadow:inset -7px -7px 4px rgba(153,153,153,.1);
	position:relative;
	padding:3px;
}
.chk-area span {
	display: block;
	position:relative;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.chk-checked span {background:#55017a;}
/* radio button styles */
.rad-area {
	margin: 0 20px 0 0;
	float: left;
	overflow: hidden;
	height: 22px;
	width: 22px;
	border:1px solid #ccc;
	border-radius:100%;
	-webkit-box-shadow:inset -7px -7px 4px rgba(153,153,153,.1);
	box-shadow:inset -7px -7px 4px rgba(153,153,153,.1);
	padding:3px;
}
.rad-area span {
	display: block;
	position:relative;
	width: 100%;
	height: 100%;
	border-radius:100%;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.rad-checked span {background:#55017a;}
/* custom select styles */
.select-area {
	background: #eee;
	float: left;
	position: relative;
	overflow: hidden;
	margin: 0 0 20px;
	height: 40px;
	width: 100% !important;
	border-radius: 9px;
	cursor: pointer;
}
.select-area.select-active{border-radius: 9px 9px 0 0;}
.select-area .select-opener {
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	right: 0;
	width: 40px;
	cursor: pointer;
}
.select-area .select-opener:before{
	content: '';
	position: absolute;
	z-index: 20;
	top: 50%;
	left: 50%;
	width: 13px;
	height: 8px;
	margin: -3px 0 0 -9px;
	background: url(../images/arrow-03.png) no-repeat;
}
.select-area .center {
	white-space: nowrap;
	position: relative;
	cursor: pointer;
	display: block;
	z-index: 2;
	color: #333;
	font-size: 14px;
	line-height: 18px;
	padding: 11px 45px 11px 10px;
}
.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: #eee;
	border-radius: 0 0 9px 9px;
	position: absolute;
}
.select-options .drop-holder {
	height: 1%;
}
.select-options-flipped .drop-holder {
	position: relative;
}
.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: left;
	width: 100%;
	font-size: 14px;
	line-height: 18px;
	padding: 1px 0 0;
	position: relative;
}
.select-options ul li:before{
	content: '';
	position: absolute;
	z-index: 20;
	top: 0;
	left: 14px;
	right: 14px;
	height: 1px;
	background: #d3d3d3;
}
.select-options ul a {
	text-decoration: none;
	cursor: pointer;
	color: #333;
	display: block;
	overflow: hidden;
	height: 1%;
	padding: 13px 10px;
}
.select-options ul li:last-child a{border-radius: 0 0 9px 9px;}
.select-options ul a span {
	cursor: pointer;
	float: left;
}
.select-options .item-selected a {
	text-decoration: none;
	background: #fedf25;
	color: #53007a;
}
.select-options ul a:hover {
	text-decoration: none;
}
.select-options ul a:focus {
	outline: none;
}