.lkps-menu-item > a .menu-text {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.lkps-menu-item .lkps-icon {
	display: block;
	width: 18px;
	height: 18px;
	flex: none;
}

#primary-menu .lkps-menu-label,
.main-nav .lkps-menu-label {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

#mobile-menu .lkps-menu-label,
.mobile-main-nav .lkps-menu-label {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

.lkps-inline {
	margin: 0 0 30px;
}

.lkps-inline .lkps-inline-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	max-width: 720px;
	min-height: 54px;
	margin: 0;
	padding: 0 18px;
	background: #fff;
	border: 1px solid rgba(20, 43, 58, 0.25);
	border-radius: 2px;
	box-shadow: none;
	color: #6b6f73;
	font: inherit;
	font-size: 16px;
	line-height: 1.3;
	text-align: left;
	text-transform: none;
	letter-spacing: normal;
	cursor: text;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lkps-inline .lkps-inline-btn:hover,
.lkps-inline .lkps-inline-btn:focus-visible {
	border-color: #eeae25;
	box-shadow: 0 0 0 3px rgba(238, 174, 37, 0.2);
	outline: none;
}

.lkps-inline .lkps-icon {
	width: 20px;
	height: 20px;
	color: #142b3a;
	flex: none;
}

html.lkps-lock,
html.lkps-lock body {
	overflow: hidden !important;
}

#lkps {
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 9vh 16px 16px;
	box-sizing: border-box;
	font-family: Lato, Helvetica, Arial, Verdana, sans-serif;
	color: #656565;
	-webkit-font-smoothing: antialiased;
}

#lkps[hidden] {
	display: none !important;
}

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

#lkps .lkps-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 43, 58, 0.72);
	opacity: 0;
	transition: opacity 0.18s ease;
}

#lkps .lkps-dialog {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 780px;
	max-height: 82vh;
	background: #fff;
	border-top: 3px solid #eeae25;
	border-radius: 2px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
	overflow: hidden;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

#lkps.is-open .lkps-backdrop,
#lkps.is-open .lkps-dialog {
	opacity: 1;
	transform: none;
}

#lkps .lkps-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

#lkps .lkps-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: none;
	height: 68px;
	padding: 0 12px 0 22px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

#lkps .lkps-lead {
	display: flex;
	color: #142b3a;
	flex: none;
}

#lkps .lkps-input {
	flex: 1;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	color: #142b3a;
	font-family: inherit;
	font-size: 19px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: normal;
	-webkit-appearance: none;
	appearance: none;
}

#lkps .lkps-input::placeholder {
	color: #8b9096;
	opacity: 1;
}

#lkps .lkps-input::-webkit-search-cancel-button,
#lkps .lkps-input::-webkit-search-decoration {
	-webkit-appearance: none;
	display: none;
}

#lkps button {
	margin: 0;
	font-family: inherit;
	text-transform: none;
	letter-spacing: normal;
	cursor: pointer;
	box-shadow: none;
}

#lkps .lkps-clear {
	flex: none;
	height: 30px;
	padding: 0 10px;
	background: transparent;
	border: 0;
	border-radius: 2px;
	color: #6b6f73;
	font-size: 13px;
	line-height: 30px;
}

#lkps .lkps-clear[hidden] {
	display: none;
}

#lkps .lkps-clear:hover,
#lkps .lkps-clear:focus-visible {
	color: #142b3a;
	background: #f2f3f4;
	outline: none;
}

#lkps .lkps-close {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 2px;
	color: #142b3a;
}

#lkps .lkps-close:hover,
#lkps .lkps-close:focus-visible {
	background: #f2f3f4;
	outline: none;
}

#lkps .lkps-body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

#lkps .lkps-intro {
	padding: 22px 22px 24px;
}

#lkps .lkps-intro[hidden] {
	display: none;
}

#lkps .lkps-intro-text {
	margin: 0 0 18px;
	color: #656565;
	font-size: 15px;
	line-height: 1.55;
}

#lkps .lkps-chips-label {
	margin: 0 0 10px;
	color: #142b3a;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

#lkps .lkps-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

#lkps .lkps-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 36px;
	padding: 0 14px;
	background: #fff;
	border: 1px solid rgba(20, 43, 58, 0.2);
	border-radius: 2px;
	color: #142b3a;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	transition: border-color 0.15s ease, background-color 0.15s ease;
}

#lkps .lkps-chip:hover,
#lkps .lkps-chip:focus-visible {
	border-color: #eeae25;
	background: #fdf7e9;
	outline: none;
}

#lkps .lkps-chip-count {
	color: #6b6f73;
	font-weight: 400;
	letter-spacing: 0;
}

#lkps .lkps-list {
	margin: 0;
	padding: 6px 0;
	list-style: none;
}

#lkps .lkps-list:empty {
	padding: 0;
}

#lkps .lkps-item {
	margin: 0;
	padding: 0;
	list-style: none;
}

#lkps .lkps-item::before,
#lkps .lkps-item::marker {
	content: none;
	display: none;
}

#lkps .lkps-link {
	display: grid;
	grid-template-columns: 124px minmax(0, 1fr) 20px;
	align-items: center;
	gap: 18px;
	padding: 12px 18px 12px 19px;
	border-left: 3px solid transparent;
	color: inherit;
	text-decoration: none;
	transition: background-color 0.12s ease, border-color 0.12s ease;
}

#lkps .lkps-link:focus,
#lkps .lkps-item.is-active .lkps-link {
	background: #f5f6f7;
	border-left-color: #eeae25;
	text-decoration: none;
	outline: none;
}

@media (hover: hover) {
	#lkps .lkps-link:hover {
		background: #f5f6f7;
		border-left-color: #eeae25;
		text-decoration: none;
	}

	#lkps .lkps-link:hover .lkps-go {
		opacity: 1;
		transform: none;
	}
}

#lkps .lkps-thumb {
	display: block;
	width: 124px;
	height: 84px;
	overflow: hidden;
	background: #e7eaec;
	border-radius: 2px;
}

#lkps .lkps-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	object-fit: cover;
	border-radius: 0;
}

#lkps .lkps-main {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

#lkps .lkps-name {
	color: #142b3a;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

#lkps .lkps-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 10px;
	color: #6b6f73;
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

#lkps .lkps-loc {
	color: #223e50;
	font-weight: 700;
}

#lkps .lkps-cat {
	position: relative;
	padding-left: 11px;
}

#lkps .lkps-cat::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	background: #eeae25;
	border-radius: 50%;
}

#lkps .lkps-desc {
	display: -webkit-box;
	overflow: hidden;
	color: #656565;
	font-size: 14px;
	line-height: 1.5;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

#lkps .lkps-desc.is-short {
	-webkit-line-clamp: 1;
}

#lkps .lkps-match {
	overflow: hidden;
	color: #3e3e3e;
	font-size: 13px;
	line-height: 1.45;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#lkps .lkps-match-label {
	color: #142b3a;
	font-weight: 700;
}

#lkps mark {
	padding: 0 1px;
	background: rgba(238, 174, 37, 0.35);
	border-radius: 1px;
	color: inherit;
}

#lkps .lkps-go {
	display: flex;
	color: #142b3a;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity 0.12s ease, transform 0.12s ease;
}

#lkps .lkps-item.is-active .lkps-go {
	opacity: 1;
	transform: none;
}

#lkps .lkps-empty {
	padding: 36px 22px 40px;
	text-align: center;
}

#lkps .lkps-empty[hidden] {
	display: none;
}

#lkps .lkps-empty-title {
	margin: 0 0 6px;
	color: #142b3a;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	word-break: break-word;
}

#lkps .lkps-empty-text {
	margin: 0;
	color: #656565;
	font-size: 14px;
	line-height: 1.5;
}

#lkps .lkps-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex: none;
	min-height: 42px;
	padding: 0 22px;
	background: #f7f7f7;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	color: #6b6f73;
	font-size: 12px;
	line-height: 1.4;
}

#lkps .lkps-keys {
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

#lkps kbd {
	display: inline-block;
	min-width: 20px;
	padding: 1px 5px;
	background: #fff;
	border: 1px solid rgba(20, 43, 58, 0.2);
	border-radius: 3px;
	box-shadow: none;
	color: #142b3a;
	font-family: inherit;
	font-size: 11px;
	line-height: 16px;
	text-align: center;
}

#lkps kbd + kbd {
	margin-left: -2px;
}

@media (max-width: 640px) {
	#lkps {
		padding: 0;
	}

	#lkps .lkps-dialog {
		max-width: none;
		height: 100%;
		max-height: none;
		border-radius: 0;
	}

	#lkps .lkps-bar {
		height: 60px;
		padding: 0 6px 0 16px;
		gap: 8px;
	}

	#lkps .lkps-input {
		font-size: 16px;
	}

	#lkps .lkps-intro {
		padding: 18px 16px 22px;
	}

	#lkps .lkps-link {
		grid-template-columns: 84px minmax(0, 1fr);
		gap: 14px;
		padding: 12px 16px 12px 13px;
		align-items: start;
	}

	#lkps .lkps-thumb {
		width: 84px;
		height: 64px;
	}

	#lkps .lkps-go,
	#lkps .lkps-keys,
	#lkps .lkps-cat {
		display: none;
	}

	#lkps .lkps-name {
		font-size: 14px;
	}

	#lkps .lkps-desc {
		font-size: 13px;
	}

	#lkps .lkps-foot {
		padding: 0 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	#lkps .lkps-backdrop,
	#lkps .lkps-dialog,
	#lkps .lkps-go,
	#lkps .lkps-link {
		transition: none;
	}
}
