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

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

.search-input-group {
	position: relative;
	width: 100%;
	max-width: 300px;
	box-sizing: border-box;
	margin: 0 auto;
}

.t-autocomplete-menu {
	position: absolute;
	top: calc(100% - 3px);
	left: 0;
	width: 300px;
	background-color: white;
	border: 2px solid #03037b;
	box-sizing: border-box;
	border-radius: 0px 0px 4px 4px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	padding: 8px 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.1s ease-in;
	will-change: opacity;
}

.t-autocomplete-menu.open {
	opacity: 1;
	pointer-events: auto;
}

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

	.t-autocomplete-menu {
		width: 450px !important;
	}
}

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

	.t-autocomplete-menu {
		width: 350px !important;
	}
}

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

.search-group-header {
	font-size: 14px;
	font-weight: 400;
	padding: 4px;
	color: #323232 !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%;
}

.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 {
	display: grid;
	margin: 0 1em;
	list-style: none;
	pointer-events: none;
}

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

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

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

.search-input-group.menu-open {
	border: 2px solid #03037b;
	padding: 0;
	transition: opacity 0.1s ease-in;
	will-change: opacity;
}

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