/* radio */
.jcf-radio {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	overflow: hidden;
	cursor: default;
	width:18px;
	height:18px;
	background:url(../images/bg-radio.png) no-repeat;
	background-size:18px 43px;
}
.jcf-radio span{display:none;}
.jcf-radio input[type="radio"] {
	position: absolute;
	height: 100%;
	width: 100%;
	border: 0;
	margin: 0;
	left: 0;
	top: 0;
}
.jcf-radio.jcf-checked{background-position:0 -25px;}
/* checkbox */
.jcf-checkbox {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	overflow: hidden;
	cursor: default;
	width:26px;
	height:25px;
	background:url(../images/bg-checkbox.png) no-repeat;
	background-size:26px 60px;
	margin:0 5px 0 0;
}
.jcf-checkbox span{display:none;}
.jcf-checkbox input[type="checkbox"] {
	position: absolute;
	height: 100%;
	width: 100%;
	border: 0;
	margin: 0;
	left: 0;
	top: 0;
}
.jcf-checkbox.jcf-checked{background-position:0 -35px;}

/* select */
.jcf-select {
	display: inline-block;
	vertical-align: top;
	position: relative;
	background: #fff;
	border-radius:8px;
	border-bottom:3px #26d4c6 solid;
	overflow:hidden;
}
.jcf-select select {
	z-index: 1;
	left: 0;
	top: 0;
}
.jcf-select .jcf-select-text {
	text-overflow:ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: default;
	display: block;
	color:#606060;
	font:400 22px/38px 'Rubik', Arial, Helvetica, sans-serif;
	padding-top:2px;
	margin: 0 30px 0 10px;
}
.jcf-select .jcf-select-opener {
	position: absolute;
	text-align: center;
	bottom: 0;
	right: 0;
	top: 0;
	width:30px;
	background:url(../images/bg-select.png) no-repeat 100% 0;
	background-size:24px 24px;
}
body > .jcf-select-drop {
	position: absolute;
	margin: -7px 0 0;
	z-index: 9999;
}
.jcf-select .jcf-select-drop {
	position: absolute;
	margin-top: 0px;
	z-index: 9999;
	top: 100%;
	left: -1px;
	right: -1px;
}
.jcf-select-drop .jcf-select-drop-content {
	background:#fff;
	border-radius:0 0 8px 8px;
	padding:0 0 7px;
	font-size:22px;
	line-height:24px;
	border-bottom:3px #26d4c6 solid;
}
.jcf-select-drop .jcf-list-content ul{
	list-style:none;
	display:block;
	padding-top:10px;
}
.jcf-select-drop .jcf-list-content ul li{
	padding:5px 10px;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
}
.jcf-select-drop .jcf-list-content ul li:hover{background:#efefef;}