
.MultiSelect{
	width: 90px;
	height: 25px;
	line-height: 25px;
	display: inline-block;
	border: solid 1px #d6d2d2;
	border-radius: 5px;
	font-size: 14px;
	background: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, #fff 36%, rgba(0,0,0,0.2) 100%);
	color: #000;
}
.MultiSelect .ms-Title{
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	
}
.MultiSelect .ms-Title span{
	text-indent: 5px;
	color: #333;
	font-size: 12px;
}
.MultiSelect .ms-Title .arrow{
	
	width: 14px;
	height: 14px;
	background: url(img/SelectArrow.png)0px -10px no-repeat;
	margin-right: 0px;
	margin-top: 7px;
	background-size: cover;
}
.MultiSelect.OpenList .ms-Title .arrow{
	background-position: 0px 0px;
}
.MultiSelect .ms-BoxList{
	display: none;
	min-width: 100px;
	background: #fff;
	position: absolute;
	border: solid 1px #7b7979;
	border-radius: 0px 5px 5px 5px;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.5); 
	z-index: 1000;
}
.MultiSelect.OpenList .ms-BoxList{
	display: block;
	text-align: left;
}

.bdo .MultiSelect.OpenList .ms-BoxList{
	text-align: right;
}

.MultiSelect .ms-BoxList.big .ms-List{
	height: 200px;
	overflow-y: scroll;
	
}
@media(max-width: 1100px){
	.MultiSelect .ms-BoxList.big .ms-List{
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}
	.MultiSelect .ms-BoxList.big .ms-List::-webkit-scrollbar{
		width: 16px; 
		height: 20px; 
		background-color: #fff;
	}
	.MultiSelect .ms-BoxList.big .ms-List::-webkit-scrollbar-thumb {
		background-color: #333;
		border-radius: 5px;
	}
}


.MultiSelect .ms-Item label.locked{
	color: #7e7e7e;
    cursor: not-allowed;
}

.MultiSelect .ms-Search{
	width: 200px;
	display: flex;
	justify-content: space-between;
}
.MultiSelect .ms-Search input.InputSearch{
	width: 170px;
	margin: 5px 0px 5px 5px;
	height: 20px;
	line-height: 20px;
	border-radius: 0px;
	font-size: 12px;
	font-weight: normal;
}
.MultiSelect .ms-Search .butClear{
	margin-top: 5px;
	margin-right: 2px;
	width: 19px;
    height: 19px;
    background: url(img/icon_clear.png)no-repeat center;
	cursor: pointer;
	border: solid 1px #ddd;
}

.MultiSelect .ms-AllSelect{
	border-bottom: solid 1px #ccc;
}

.MultiSelect .ms-Buttons{
	display: flex;
	justify-content: left;
	padding: 5px 0px;
	
}

.bdo .MultiSelect .ms-Buttons{
	justify-content: right;
}
.MultiSelect .ms-Buttons div{
	min-width: 60px;
	color: #fff;
	background: #0099FF;
	border-radius: 4px;
	padding: 2px 8px;
	font-size: 12px;
	margin-left: 5px;
	cursor: pointer;
	line-height: 20px;
	text-align: center;
}
.bdo .MultiSelect .ms-Buttons div{
	margin-left: 0px;
	margin-right: 5px;
}
form.multiselect-form .ms-but-submit{
	display: none;
}
form.multiselect-form-locked .ms-but-submit{
	display: none;
}
/***************************************/
