@charset "utf-8";

.multi-dropdown{
	position: relative;
	border: 1px solid silver;
	border-radius: 4px;
	width: 100%;
	min-height: 44px;
	min-height: 30px;
}

.multi-dropdown:hover{
	cursor: text;
}

.multi-dropdown.open.up{
	border-top: none;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

.multi-dropdown.open.down{
	border-bottom: none;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}

.multi-dropdown > input{
	height: 26px !important;
	margin-top: 1px;
	margin-left: 1px;
	padding-left: 5px;
	border: none !important;
}

.multi-dropdown > input:focus{
	border: none;
	outline: none;
}

.multi-dropdown > input,
.multi-dropdown > ul:first-child{
	float: left;
}

.multi-dropdown > ul:first-child{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.multi-dropdown > ul:first-child > li{
	border-radius: 4px;
	float: left;
	margin-left: 2px;
	margin-right: 2px;
	margin-top: 2px;
	margin-bottom: 2px;	
	background-color: #e4e4e4;
	border: 1px solid #aaa;	
	padding: 0 5px;
	cursor: default;
	font-size: 14px;
}
								
.multi-dropdown > ul:first-child > li > *{
	float: left;
}

.multi-dropdown > ul:first-child > li > i.fa-times{
	color: #000;
	opacity: 0.5;
	line-height: 22px;
	margin-left: 0px;
}

.multi-dropdown > ul:first-child > li > i.fa-times:hover{
	color: red;
	opacity: 1;
	cursor: pointer;
}

.multi-dropdown > ul:first-child > li > i.fa-times + span{
	height: 22px;
	width: 1px;
	background-color: grey;
	background-color: transparent;
	margin-left: 5px;
	margin-left: 5px;
	margin-right: 7px;
	margin-right: 0px;
	opacity: 0.6;
}

.multi-dropdown > ul:first-child > li > i.fa-times + span + span{
	height: 22px;
	line-height: 21px;
}

.multi-dropdown > ul:first-child > li > i.fa-times:hover + span + span{
	opacity: 0.4;
}

.multi-dropdown > ul:first-child > li:not(:last-child){
	background-color: #e4e4e4;
	border: 1px solid #aaa;	
	padding: 0 5px;
	cursor: default;
	margin-top: 2px;
}

.multi-dropdown > ul:first-child + input + ul{
	position: absolute;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	top: 100%;
	left: -1px;
	right: -1px;
	background: #fff;
	border: 1px solid silver;
	max-height: 97px;
	overflow-y: auto;
	background: #fff;
	z-index: 2;
}

.multi-dropdown > ul:first-child + input + ul > li{
	margin-left: 2px;
	margin-right: 2px;
	margin-top: 2px;
	margin-bottom: 2px;
	padding: 0px 5px;
}

.multi-dropdown:not(.open) > ul:first-child + input + ul{
	display: none;
}

.multi-dropdown.up > ul:first-child + input + ul{
	top: -97px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom: none;
}

.multi-dropdown.down > ul:first-child + input + ul{
	top: 100%;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-top: none;
}

.multi-dropdown > ul:first-child + input + ul > li[data-value]:hover{
	cursor: pointer;
	background: rgb(88, 151, 251);	
}

.multi-dropdown > ul:first-child + input + ul > li.selected{
	display: none;
}

.multi-dropdown > i.fa-times{
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 7px;
}

.multi-dropdown > i.fa-times:hover{
	color: red;
}