
.select {
    position: relative;
    display: block;
    margin: 0 auto;
	  width: 100%;
	  height: 100%;
    color: #cccccc;
    vertical-align: middle;
    text-align: left;
    user-select: none;
    -webkit-touch-callout: none;
}
.select .placeholder {
    position: relative;
    display: block;
    z-index: 1;
    cursor: pointer;
	width: 100%;
	height: 100%;
	display: flex;align-items: center;
	cursor: pointer;
	border-radius: 20px;
	overflow: hidden;
	padding: 0 25px;
}
.select .placeholder input{outline: none;background-color: white;border: none;cursor: pointer;font-size: 18px;}
.select .placeholder:hover {
    /* background: #34383c; */
}
.select .placeholder:after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "iconfont"; 
    content: "\e71e";
    z-index: 10;
	transition: all 0.3s;
}
.select.is-open .placeholder:after {
    /* content: '\f077'; */
	 transform: translateY(-50%) rotate(180deg);
}
.select.is-open ul {
    display: block;
	border-radius: 8px;
}
.select.select--white .placeholder {
    background: #fff;
    color: #999;
}
.select.select--white .placeholder:hover {
    background: #fafafa;
}
.select ul {
    display: none;
    position: absolute;
    overflow-y: auto;
	overflow-x: auto;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 5px 0 0 0;
    padding: 0;
    z-index: 100;
	max-height: 200px;
}
/* .select ul::-webkit-scrollbar {width: 4px !important;height: 4px !important;}
.select ul::-webkit-scrollbar-thumb {background: #FDA701 !important;border-radius: 30px !important;-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;}
.select ul::-webkit-scrollbar-thumb {background: #FDA701 !important;border-radius: 30px !important;-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;}::-webkit-scrollbar-track {background: #FFCD3A !important;-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important; }*/

.select ul li {
    display: block;
    text-align: left;
    padding: 15px 25px;
    color: #999;
    cursor: pointer;
}
.select ul li:hover {
    background: #eee;
    color: #000;
	font-weight: 600;
}

