.dropselect-container {
	display: none;
}
.dropselect-container.dropselect-dropped {
	display: block;
	border: 1px solid #cccccc;
	border-top: none;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 100;
	padding: 5px 0;
	max-height: 160px;
	overflow: scroll;
}
.dropselect-container.dropselect-dropped .dropselect-option {
	width: 100%;
	padding: 6px 14px;
	position: relative;
	cursor: pointer;
}
.dropselect-container.dropselect-dropped .dropselect-option > .dropselect-option-checkbox {
	height: 16px;
	width: 16px;
	border: 1px solid #cccccc;
	float: left;
	margin-right: 10px;
}
.dropselect-container.dropselect-dropped .dropselect-option[data-option-selected="1"] > .dropselect-option-checkbox {
	background-image: url(/workfolio_common/img/common_sprite.svg);
	background-size: 250px 212px;
	background-position: -98px -59px;
}
.dropselect-container.dropselect-dropped .dropselect-option .dropselect-option-text {
	color: #000;
	font-size: 1em;
	line-height: 16px;
	overflow: hidden;
}
.dropselect-container.dropselect-dropped .dropselect-option:hover {
	background-color: #f2f2f2;
}
.dropselect-container.dropselect-dropped .dropselect-option:hover .dropselect-option-text{
	color: #000;
}
.dropselect-container.dropselect-dropped .dropselect-empty-state {
	width: 100%;
	padding: 5px 14px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
input.dropselect-input {
	text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.dropselect-uncheck-all {
	margin-top: -5px;
	padding: 8px;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1em;
	background-color: #eeeeee;
	border-bottom: 1px solid #cccccc;
}
.dropselect-uncheck-all:hover {
	cursor: pointer;
	background-color: #f5f5f5;
}
