
.select-menulan{
	width: 100px;
	cursor: pointer;
	position: relative;
	align-items: flex-start;


}
.selectlan{
	background-color: #00a8ff;
	padding: 2px;
	color: #fff;
	font-weight: 400;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 10px;

}
.option-listlan{
	position:absolute;
	width: 100%;
	background-color: #f9f9f9;
	border-radius: 6px;
	margin-top: 1px;
	padding: 0 20px;
	max-height: 180px;
	overflow: auto;
	transition: .4s linear .2s;
	height: 0;
}
.opstionlan{
	padding:1px 0;
	font-weight: 250;
	font-size: 10px;
	transition: .3s ease-in-out;
}
.opstionlan:hover,.opstionlan.selected{
	color: #00a8ff;
}

.option-listlan::-webkit-scrollbar{
	width: 4px;
	background-color: #eee;
}

.option-listlan.active{
	height: auto;
}