/* Category List view on Skill page */
.custom-input-container {
	position: relative;
	/*width: 300px;*/
}

.suggestions-list {
	position: absolute;
	width: 100%;
	background: #fff;
	border-top: none;
	max-height: 150px;
	overflow-y: auto;
	z-index: 1000;
	padding: 0 10px 10px 10px;
	font-size: 12px;
}

.suggestions-list.active {
	border: 1px solid #ccc;
}

.suggestions-list li {
	padding: 8px;
	cursor: pointer;
}

.suggestions-list li:hover {
	background: #f0f0f0;
}