/* SELECT */
.selectCF{
	margin:0;
	padding:0;
	display:block;
	position:relative;	

	
}
.selectCF li{
	list-style:none;
	cursor: pointer;
	perspective: 900px;
	-webkit-perspective: 900px;
  text-align: left;
}
.selectCF > li{
	position:relative;	
}
.selectCF span{
	display:inline-block;
	height: var(--btn-height-60);
	line-height: var(--btn-height-60);
	color:#FFF;
	z-index:1;

}
.selectCF .arrowCF{
    position:absolute;
    right:20px;
	top:1rem;
	transition: .3s;
	-webkit-transition: .3s;	
	text-align:center;
	vertical-align: top;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	z-index: 20;
	
	
	
}

.selectCF .arrowCF:before{
	content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' aria-hidden='true' focusable='false'><path d='M9 6l6 6-6 6' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  display: inline-block;
    width: calc(var(--btn-size) * 0.6);   /* size using font-size/currentColor */

  vertical-align: middle;
}

.selectCF .arrowCF i{
display: none;
}



.selectCF .titleCF{	
	font-size:var(--size-xxx-small);
  border:solid 1px var(--grey-color2); 
  padding:0 var(--input-padding); 
	overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
     width: 100% !important;
     box-sizing: border-box;
     text-align:left; 
	 height:var(--btn-height);  
	 display: flex;  
	 align-items: center;
     
}
.selectCF .searchCF{
	padding:0;	
	position:absolute;
	top:0;
	right:0;
	left:0;
	z-index:1;	
	display: none;
	width:100% !important;
	 background: var(--color-01) !important;
	
}


.selectCF.onCF .searchCF{
    display: block;
}


@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%;
		font-size:var(--size-xx-small);
    color: var(--color-black) !important;
    padding-left:var(--unit-space-16);
    padding-right: var(--unit-space-16); 
    display: none !important;   
}
.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:var(--size-xxx-small); 
	transition: .2s;
	-webkit-transition: .2s;
	/*overflow:hidden;
    text-overflow: ellipsis;
    white-space: nowrap;*/
  
}
.selectCF li ul li:hover{
	    background: var(--color-03);
	color:var(--color-white) !important;
}
.selectCF .selected{
	   background: var(--color-03);
	color:var(--color-white) !important;
}
.selectCF li ul li:last-child{
	border-bottom: none;
}


.onCF .arrowCF{
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	
}
.onCF .arrowCF:after{
    top: -0.5rem !important;
    right: 0.5rem !important;
}


@-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;
}