a.multi-select{
	display: block;
	width: 100%;
	max-height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.7;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	overflow: hidden;  /*for controlling overflow text*/
	text-overflow: ellipsis;  /*for controlling overflow text*/
}
a.multi-select:hover,
a.multi-select:focus{
	text-decoration: none;
}
.multi-select-dropdown.open{
	display: block;
	z-index: 3;
}
.multi-select-dropdown{
	display: none;
	z-index: 1000;
	position: absolute;
	/* top: 100%;
	left: 0;*/
	float: left;
	width: calc(100% - 31px);
	/* min-width: 100%; */
	/* padding: 5px 0; */
	margin: 2px 0 0;
	font-size: 12px;
	text-align: left;
	list-style: none;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,.15);
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.multi-select-dropdown ul{
	padding: 0px;
	list-style: none;
}
.multi-select-dropdown ul.dual{
	width: 50%;
	float: left;
}
.multi-select-dropdown ul.triple{
	width: 33.33%;
	float: left;
}
.multi-select-dropdown ul.quadruple{
	width: 25%;
	float: left;
}
.multi-select-dropdown ul>li>label{
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	/* white-space: nowrap; */
	cursor: pointer;
	font-size: 11px;
}
@media (max-width: 769px){
	.multi-select-dropdown{
		position: relative;
		max-height: 300px;
		overflow-y: auto;
	}
	.multi-select-dropdown ul.dual{
		width: 100%;
		float: none;
	}
}
 /* Customize the label (the container) */
.multi-select-dropdown>ul>li>label {
	position: relative;
	padding-left: 35px;
}

/* Hide the browser's default checkbox */
.multi-select-dropdown>ul>li>label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 5px;
	left: 13px;
	height: 13px;
	width: 13px;
	background-color: #bababa;
}

/* On mouse-over, add a grey background color */
.multi-select-dropdown>ul>li>label:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.multi-select-dropdown>ul>li>label input:checked ~ .checkmark {
	background-color: #1e3250;
}
.multi-select-dropdown>ul>li>label input:checked ~ span:not(.checkmark) {
	color: #1e3250;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.multi-select-dropdown>ul>li>label input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.multi-select-dropdown>ul>li>label .checkmark:after {
	/* left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg); */
} 