/* select */
.jcf-select {
	display: inline-block;
	vertical-align: top;
	position: relative;
	border-bottom: 1px solid rgba(7,40,23,0.21);
	background: none;
	width: 100%;
	padding: 25px 0 0;
	height: 61px;
}
.text-error .jcf-select {
	border-color: #FF0000;
}
.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;
	font-size: 18px;
	line-height: 24px;
	margin: 0 35px 0 0;
	color: #051F28;
}

.jcf-select.jcf-drop-active .jcf-select-opener{
	transform: rotate(180deg);
}

.jcf-select.jcf-drop-active {
	z-index: 2;
}

.jcf-select .jcf-select-text .jcf-option-hideme {
	opacity: 0.6;
}

.jcf-select .jcf-select-opener {
	position: absolute;
	text-align: center;
	background: #aaa;
	width: 16px;
	height: 16px;
	bottom: 0;
	right: 0;
	bottom: 14px;
	background: url(../images/ico-arrow03.svg) no-repeat;
	transition: all 0.3s;
}

.jcf-select-drop {
}

body > .jcf-select-drop {
	position: absolute;
	margin: -1px 0 0;
	z-index: 99999;
	max-height: 399px;
}

body > .jcf-select-drop.jcf-drop-flipped {
	margin: 1px 0 0;
}
.jcf-select .jcf-select-drop {
	position: absolute;
	margin-top: 0px;
	z-index: 99999;
	top: 100%;
	left: -1px;
	right: -1px;
}
.jcf-select .jcf-drop-flipped {
	bottom: 100%;
	top: auto;
}
.jcf-select-drop .jcf-select-drop-content {
	border: 1px solid #CACACA;
}
.jcf-select-drop .jcf-option-hideme {display: none;}
/* multiple select styles */
.jcf-list-box {
	overflow: hidden;
	display: inline-block;
	border: 1px solid #b8c3c9;
	min-width: 200px;
	margin: 0;
}
/* select options styles */
.jcf-list {
	display: inline-block;
	vertical-align: top;
	position: relative;
	background: #fff;
	line-height: 24px;
	font-size: 18px;
	width: 100%;
	padding: 0;
}

.jcf-list .jcf-option-hideme {
	display: none !important;
	border: 0 !important;
}
.jcf-list .jcf-list-content {
	vertical-align: top;
	display: inline-block;
	overflow: auto;
	width: 100%;
}
.jcf-list ul {
	list-style: none;
	padding: 0 16px;
	margin: 0;
}
.jcf-list ul li {
	overflow: hidden;
	display: block;
}

.jcf-list ul li span {
	border-bottom: 1px solid rgba(7,40,23,0.23);
}

.jcf-list ul li:last-child span {
	border: 0;
}

.jcf-list .jcf-overflow {
	overflow: auto;
}
.jcf-list .jcf-option {
	overflow: hidden;
	cursor: default;
	display: block;
	padding: 16px 0;
	color: #656565;
	height: 1%;
	transition: all 0.3s;
	cursor: pointer;
}
.jcf-list .jcf-disabled {
	background: #fff !important;
	color: #aaa !important;
}
.jcf-select-drop .jcf-hover {
	color: #051F28;
}
.jcf-list-box .jcf-selected {
	color: #000;
}
.jcf-list .jcf-optgroup-caption {
	white-space: nowrap;
	font-weight: bold;
	display: block;
	padding: 5px 9px;
	cursor: default;
	color: #000;
}
.jcf-list .jcf-optgroup .jcf-option {
	padding-left: 30px;
}
