/* Instructor Search Box */
.instructor-search {
	width: 100%;
	position: relative;
	cursor: text;
}

input[type="text"].instructor-search__input {
	width: 100%;
	padding: 10px 10px 10px 30px;
}

.instructor-search__icon {
	position: absolute;
	top: 15px;
	left: 10px;
}

/* JS adds the 'no-results' class to the .instructor-search__no-results element 
	when there are no results */
.instuctor-search__no-results {
	display: block;
	color: #999;
	font-size: 14px;
	padding: 10px;
}
/* We use visibility instead of display here because we want the element to take up space */
.instuctor-search__no-results {
	visibility: hidden;
}
.instuctor-search__no-results.no-results {
	visibility: visible;
}
