/* SELECT */
.selectCF{
	margin:0;
	padding:0;
	display:block;
	position:relative;
	font-size:12px;
	border-bottom:solid 3px #000000;
	
}
.selectCF li{
	list-style:none;
	cursor: pointer;
	perspective: 900px;
	-webkit-perspective: 900px;
  text-align: left;
}
.selectCF > li{
	position:relative;
	font-size:0;
}
.selectCF span{
	display:inline-block;
	height:45px;
	line-height:45px;
	color:#FFF;
	z-index:1;
}
.selectCF .arrowCF{
	transition: .3s;
	-webkit-transition: .3s;
	width:30px;
	text-align:center;
	vertical-align: top;
	font-size:20px;
	background: none !important;
	
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	
	
}
.selectCF .titleCF{
	padding: 0 5px 0 10px;
	border-left: dotted 1px rgba(244,244,244,.5);
	font-size:16px;	
	overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
     width: calc(100% - 30px) !important;
     box-sizing: border-box;
     text-align:left;
     text-transform:lowercase;
     background: none !important;
   
     
}
.selectCF .searchCF{
	padding: 0 10px 0 20px;
	border-left: dotted 1px rgba(244,244,244,.5);
	position: absolute;
	top:0;
	right:0;
	z-index:-1;
	display: none !important;
}
@keyframes searchActive {
	from{ transform: rotateY(180deg) }
	to{ transform: rotateY(0deg); }
}@-moz-keyframes searchActive {
	from{ transform: rotateY(180deg) }
	to{ transform: rotateY(0deg); }
}
@-webkit-keyframes searchActive {
	from{ -webkit-transform: rotateY(180deg) }
	to{ -webkit-transform: rotateY(0deg); }
}
.searchActive .searchCF{
	z-index:1;
	animation: searchActive 0.3s alternate 1;
	-moz-animation: searchActive 0.3s alternate 1;
	-webkit-animation: searchActive 0.3s alternate 1;
}
.searchActive .titleCF{
	opacity:0;
}
.selectCF .searchCF input{
	line-height:45px;
	border:none;
	padding:0;
	margin:0;
	width:100%;
	height:100%;
	background:transparent;
	font-size:17px;
}
.selectCF .searchCF input:active, .selectCF .searchCF input:focus{
	box-shadow:none;
	border:none;
	outline: none;
}
.selectCF li ul{	
	display:none;
	position:absolute;
	top:100%;
	left:0;
	padding: 0 !important;
	width:100%;
	background: #FFF;
	max-height: 255px;
    overflow-y: auto;
	transition: .2s;
	-webkit-transition: .2s;
	z-index:2;
	/*background:rgba(253,253,253,.9);*/
	border:solid 1px #616160;
  
}
.selectCF li ul li{
	padding:9px 0 9px 20px;
	border-bottom: 1px solid rgba(240,240,240,.9);
	font-weight:normal;
	font-size:16px;
	transition: .2s;
	-webkit-transition: .2s;
	overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform:lowercase;
}
.selectCF li ul li:hover{
	background: #666;
	color:#FFF;
}
.selectCF .selected{
	background: #666;
	color:#FFF;
}
.selectCF li ul li:last-child{
	border-bottom: none;
}


.onCF .arrowCF{
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
}
@-moz-keyframes effect1 {
	from{ transform: translateY(15px); opacity:0; }
	to{ transform: translateY(0px); opacity:1; }
}
@-webkit-keyframes effect1 {
	from{ -webkit-transform: translateY(15px); opacity:0; }
	to{ -webkit-transform: translateY(0px); opacity:1; }
}
.onCF li ul{
	display:block;
	-moz-animation: effect1 0.3s alternate 1;
	-webkit-animation: effect1 0.3s alternate 1;
}