.jq-checkbox + label{
	font-size: 16px;
	color: #494949;
	line-height: 1.875;
	cursor: pointer;
}
.jq-checkbox {
	width: 12px;
	height: 12px;
	margin: 0 15px 0 0;
	border: 1px solid #6b6b6b;
	border-radius: 1px;
	background: #fff;
	cursor: pointer;
}
.jq-checkbox.checked .jq-checkbox__div {
	width: 8px;
	height: 8px;
	background: #6b6b6b;
	margin: 1px 0 0 1px;
}


.jq-radio + label{
	font-size: 18px;
	color: #494949;
	line-height: 1.8;
	cursor: pointer;
}
.jq-radio:first-child + label{
	padding-right: 25px;
}
.jq-radio {
	width: 15px;
	height: 15px;
	margin: 0 15px 0 0;
	border: 1px solid #6b6b6b;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}
.jq-radio.checked .jq-radio__div {
	width: 7px;
	height: 7px;
	margin: 3px 0 0 3px;
	border-radius: 50%;
	background: #6b6b6b;
}


.jq-selectbox {
	vertical-align: middle;
	width: 100%;
	cursor: pointer;
	margin-bottom: 15px;
}
.jq-selectbox__select {
	height: 50px;
	padding: 17px 25px;
	border: 1px solid #e7e7e7;
	background: #fff;
	color: #494949;
	font-size: 14px;
}
.jq-selectbox__select-text {
	display: block;
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 100%;
}
.jq-selectbox__trigger-arrow {
	position: absolute;
	top: 21px;
	right: 18px;
	width: 9px;
	height: 6px;
	background-image: url(../img/scr10_arr.png);
	background-repeat: no-repeat;
}
.jq-selectbox__dropdown {
	box-sizing: border-box;
	width: 100%;
	margin: 2px 0 0;
	padding: 0;
	border: 1px solid #CCC;
	background: #FFF;
	font-size: 14px;
}
.jq-selectbox ul {
	margin: 0;
	padding: 0;
}
.jq-selectbox li {
	min-height: 18px;
	padding: 5px 10px 6px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
}
.jq-selectbox li.selected {
	background-color: #A3ABB1;
	color: #FFF;
}
.jq-selectbox li:hover {
	background-color: #ffc803;
	color: #FFF;
}
