*,
*::before,
*::after {
	box-sizing: border-box;
}

.flex-group.menu-search {
	z-index: 1;
}

.search-input-group {
	position: relative;
	width: 100%;
	max-width: 300px;
	box-sizing: border-box;
	margin: 0 auto;
	border: 2px solid #c5c5c5;
	border-radius: 6px;
	background-color: #fff;
	transition: border-color 100ms ease-in;
}

.t-autocomplete-menu {
	position: absolute;
	top: 95%;
	left: 0;
	width: 100%;
	background-color: white;
	border: 2px solid #080D82;
	border-top: 1px solid #eee;
	box-sizing: border-box;
	border-radius: 0px 0px 6px 6px;
	box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
	padding: 8px 0;
	opacity: 0;
	transform: translateY(-2px);
	pointer-events: none;
	transition: opacity 100ms ease-in, transform 100ms ease-in;
	will-change: opacity, transform;
}

.t-autocomplete-menu.open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

@media (min-width: 808px) {
	.search-input-group {
		max-width: 450px !important;
	}

	.t-autocomplete-menu {
		width: 100% !important;
	}
}

@media (min-width: 360px) and (max-width: 808px) {
	.search-input-group {
		max-width: 350px !important;
	}

	.t-autocomplete-menu {
		width: 100% !important;
	}
}

DIV.t-autocomplete-menu LI {
	padding: 5px;
	border: 0;
	color: #03037b;
	text-decoration: none;
	white-space: nowrap;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.search-group-header {
	font-size: 14px;
	font-weight: 400;
	padding: 4px;
	color: rgba(50, 50, 50, 0.6) !important;
	text-decoration: none !important;
	margin: 8px 0 4px;
	cursor: default;
	display: flex;
	align-items: center;
	gap: 6px;
	border-top: 1px solid #eee;
	pointer-events: none;
}

.search-result {
	padding: 4px 26px !important;
	cursor: pointer;
	font-size: 14px;
	font-weight: 450;
	text-decoration: none !important;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.search-result:hover {
	background-color: #f0f3ff !important;
}

.search-result .name {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
	font-weight: 700;
	color: #19255A;
	letter-spacing: 0.3px;
}

.search-result .name strong {
	font-weight: bold;
}

.search-result .sub {
	color: #7c7c7c;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
}

.search-result .highlight-sub {
	color: #ff9900;
	font-style: italic;
	font-weight: 500;
}

.search-divider {
	list-style: none;
	border: 0;
	border-top: 1px solid #eee;
	margin: 6px 25px;
	height: 0;
	pointer-events: none;
}

.all-results-item {
	text-align: center;
	padding: 8px 0;
	text-decoration: none;
	pointer-events: auto;
}

.all-results-link {
	font-weight: 700;
	color: #ff9900;
	text-decoration: underline;
	display: inline-block;
}

.all-results-link:hover {
	text-decoration: underline;
	color: #ff9900;
	text-decoration-color: #ff9900;
}

.search-input-group.menu-open {
	border-color: #080D82;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-color: transparent;
}

.search-input-group.menu-open .search-button {
	color: #080D82 !important;
}

@supports (-webkit-appearance: none) and (not (-moz-appearance: none)) {
	.t-autocomplete-menu {
		left: -2px !important;
	}
}

.t-autocomplete-menu>ul.search-results-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.t-autocomplete-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

DIV.t-autocomplete-menu UL {
	border: 0 !important;
	background-color: transparent !important;
}

.most-searched {
	position: relative;
	font-size: 10px;
	top: 1px;
	left: -3px;
	letter-spacing: 0.25px;
}