//	=================
//    	Imports
//	=================

@import '../../assets/base/color_variables';   	// Color Variables
@import '../../assets/base/fonticons';   			// Fonticons Variables
@import '../../assets/base/urls';   				// URLS Variables
@import '../../assets/base/utilities_variables';  // Utilities Variables


.custom-autocomplete {
	height: 375px;
}
.autocomplete-suggestions {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: $b-width-1 $solid $light-gray-3;
	background: $white;
	cursor: default;
	overflow: auto;
	-webkit-box-shadow: $shadow-3;
	-moz-box-shadow: $shadow-3;
	box-shadow: $shadow-3;
	strong {
		font-weight: bold;
		color: $additional-color-5;
	}
}
.autocomplete-suggestion {
	padding: 2px $p-5;
	white-space: nowrap;
	overflow: hidden;
}
.autocomplete-no-suggestion {
	padding: 2px $p-5;
}
.autocomplete-selected {
	background: $color_357;
}
.autocomplete-group {
	padding: 2px $p-5;
	font-weight: bold;
	font-size: $fs-16;
	color: $black;
	display: block;
	border-bottom: $b-width-1 $solid $black;
}
@media (max-width: 991px) {
	.custom-autocomplete {
		height: 450px;
	}
}
