.lcfgm {
	--lcfgm-bg: #1b75bc;
	--lcfgm-link: #ffffff;
	--lcfgm-link-hover: #000000;
	--lcfgm-link-active: #ffffff;
	--lcfgm-border: #ffffff;
	--lcfgm-focus: #109cde;
	--lcfgm-panel: #1b75bc;
	--lcfgm-submenu-bg: #1c4e71;
	--lcfgm-submenu-hover: #1b75bc;
	--lcfgm-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
	--lcfgm-z-index: 1000;
	box-sizing: border-box;
	position: relative;
	z-index: var(--lcfgm-z-index);
	width: 100%;
	background: var(--lcfgm-bg);
	color: var(--lcfgm-link);
	font: inherit;
}

.lcfgm *,
.lcfgm *::before,
.lcfgm *::after {
	box-sizing: inherit;
}

.lcfgm [hidden] {
	display: none !important;
}

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

.lcfgm .lcfgm__toggle,
.lcfgm .lcfgm__link,
.lcfgm .lcfgm__submenu-toggle {
	-webkit-appearance: none;
	appearance: none;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font: inherit;
	margin: 0 !important;
	text-transform: none;
}

.lcfgm__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	/*min-height: 2rem;*/
	padding: 0.45rem 1rem;
	border: 0;
	/*border-top: 2px solid var(--lcfgm-bg);
	border-bottom: 2px solid var(--lcfgm-bg);*/
	background: #ffffff !important;
	color: #000000 !important;
	cursor: pointer;
}

.lcfgm__toggle:focus-visible,
.lcfgm__link:focus-visible,
.lcfgm__submenu-toggle:focus-visible {
	outline: 3px solid var(--lcfgm-focus);
	outline-offset: 2px;
}

.lcfgm__toggle-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 1.5rem;
	height: 1.125rem;
}

.lcfgm__toggle-icon span,
.lcfgm__toggle-icon::before,
.lcfgm__toggle-icon::after {
	position: absolute;
	left: 0;
	display: block;
	width: 1.5rem;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 160ms ease, opacity 160ms ease;
}

.lcfgm__toggle-icon span {
	top: calc(50% - 1px);
}

.lcfgm__toggle-icon::before {
	top: 0;
}

.lcfgm__toggle-icon::after {
	bottom: 0;
}

.lcfgm[data-lcfgm-open="true"] .lcfgm__toggle-icon span {
	opacity: 0;
}

.lcfgm[data-lcfgm-open="true"] .lcfgm__toggle-icon::before {
	transform: translateY(0.5rem) rotate(45deg);
}

.lcfgm[data-lcfgm-open="true"] .lcfgm__toggle-icon::after {
	transform: translateY(-0.5rem) rotate(-45deg);
}

.lcfgm__panel {
	display: none;
	width: 100%;
	border-top: 1px solid var(--lcfgm-border);
	background: #1b75bc;
	background: var(--lcfgm-panel);
}

.lcfgm[data-lcfgm-open="true"] .lcfgm__panel {
	display: block;
}

.lcfgm__list,
.lcfgm__submenu {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.lcfgm__list[data-lcfgm-level="0"] {
	background: #1b75bc;
	background: var(--lcfgm-bg);
}

.lcfgm__icon--home::before {
	display: inline-block;
	font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
	font-style: normal;
	font-weight: 900;
	content: "\f015";
}

.lcfgm__label {
	display: inline;
}

@media (max-width: 1099px) {
	.lcfgm {
		background: #ffffff;
		border-top: 2px solid var(--lcfgm-bg);
		border-bottom: 2px solid var(--lcfgm-bg);
		display: block;
		flex: 1 1 100%;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		max-width: 100vw;
		width: 100vw;
	}

	.lcfgm__toggle {
		display: flex;
		justify-content: flex-start;
		width: 100%;
	}

	.lcfgm__link {
		font-size: 16px;
	}

	.lcfgm__panel,
	.lcfgm__list[data-lcfgm-level="0"] {
		background: #1b75bc;
	}

	.lcfgm[data-lcfgm-open] .lcfgm__link:hover,
	.lcfgm[data-lcfgm-open] .lcfgm__link:focus,
	.lcfgm[data-lcfgm-open] .lcfgm__link[aria-expanded="true"],
	.lcfgm[data-lcfgm-open] .lcfgm__submenu-toggle:hover,
	.lcfgm[data-lcfgm-open] .lcfgm__submenu-toggle:focus,
	.lcfgm[data-lcfgm-open] .lcfgm__submenu-toggle[aria-expanded="true"] {
		color: #ffffff !important;
		background: #1b75bc !important;
	}

	.lcfgm[data-lcfgm-open] .lcfgm__submenu .lcfgm__link:hover,
	.lcfgm[data-lcfgm-open] .lcfgm__submenu .lcfgm__link:focus {
		color: #ffffff !important;
		background: #113b58 !important;
	}
}

.lcfgm__item {
	position: relative;
	padding: 0;
	margin: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.lcfgm .lcfgm__link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.35rem;
	width: 100%;
	min-height: 2.5rem;
	padding: 0.625rem 0.75rem;
	border: 0;
	background: transparent !important;
	color: var(--lcfgm-link) !important;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.lcfgm .lcfgm__link:hover,
.lcfgm .lcfgm__link:focus {
	color: var(--lcfgm-link-hover) !important;
	background: #c9e0fb !important;
	text-decoration: none;
}

.lcfgm .lcfgm__link[aria-expanded="true"],
.lcfgm .lcfgm__submenu-toggle[aria-expanded="true"] {
	color: #ffffff !important;
	background: var(--lcfgm-submenu-bg) !important;
}

.lcfgm .lcfgm__submenu .lcfgm__item--current > .lcfgm__link {
	color: var(--lcfgm-link-active) !important;
	background: var(--lcfgm-submenu-hover) !important;
}

.lcfgm__submenu-toggle {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	min-height: 2.5rem;
	border: 0;
	background: transparent !important;
	color: var(--lcfgm-link) !important;
	cursor: pointer;
}

.lcfgm__item--has-children > a.lcfgm__link {
	padding-right: 3rem;
}

.lcfgm__indicator {
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	margin-left: 0.65rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 160ms ease;
}

.lcfgm__link--button .lcfgm__indicator {
	margin-left: auto;
}

.lcfgm__link[aria-expanded="true"] .lcfgm__indicator,
.lcfgm__submenu-toggle[aria-expanded="true"] .lcfgm__indicator {
	transform: rotate(225deg) translateY(-2px);
}

.lcfgm__submenu {
	background: var(--lcfgm-submenu-bg);
}

.lcfgm__submenu .lcfgm__link {
	padding-left: 1.75rem;
}

.lcfgm__submenu .lcfgm__submenu .lcfgm__link {
	padding-left: 2.5rem;
}

@media (min-width: 1100px) {
	.lcfgm__toggle {
		display: none;
	}

	.lcfgm__panel {
		display: block;
		border-top: 0;
	}

	.lcfgm__list[data-lcfgm-level="0"] {
		display: flex;
		align-items: stretch;
		flex-wrap: nowrap;
		width: 100%;
	}

	.lcfgm.lcfgm--center .lcfgm__list[data-lcfgm-level="0"] {
		justify-content: center;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item {
		border-bottom: 0;
		border-left: 1px solid rgba(255, 255, 255, 0.9);
		box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.1);
		flex: 0 1 auto;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item:first-child {
		border-left: 0;
		box-shadow: none;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item > .lcfgm__link {
		min-height: 50px;
		padding: 0 12px;
		font-size: 16px;
		line-height: 50px;
		white-space: nowrap;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item > .lcfgm__link .lcfgm__icon--home::before {
		font-size: 1.3rem;
		line-height: 1;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item > .lcfgm__link .lcfgm__icon--home + .lcfgm__label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item > a.lcfgm__link {
		padding-right: 2.45rem;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item:not(.lcfgm__item--has-children) > a.lcfgm__link {
		justify-content: center;
		padding-right: 10px;
		padding-left: 10px;
		text-align: center;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item > .lcfgm__submenu-toggle {
		min-height: 50px;
	}

	.lcfgm__submenu {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 300px;
		border: 2px solid var(--lcfgm-border);
		background: var(--lcfgm-submenu-bg);
		box-shadow: var(--lcfgm-shadow);
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item:nth-last-child(-n + 2) > .lcfgm__submenu {
		left: auto;
		right: 0;
	}

	.lcfgm__submenu .lcfgm__item {
		border-bottom: 1px solid var(--lcfgm-border);
	}

	.lcfgm__submenu .lcfgm__item:last-child {
		border-bottom: 0;
	}

	.lcfgm__submenu .lcfgm__link {
		min-height: auto;
		padding: 10px;
		font-size: 14px;
		line-height: 20px;
		white-space: normal;
	}

	.lcfgm .lcfgm__submenu .lcfgm__link:hover,
	.lcfgm .lcfgm__submenu .lcfgm__link:focus {
		color: #ffffff !important;
		background: var(--lcfgm-submenu-hover) !important;
	}

	.lcfgm__submenu .lcfgm__submenu {
		top: -1px;
		left: 100%;
	}
}

@media (max-width: 1300px) and (min-width: 1100px) {
	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item > .lcfgm__link {
		padding-right: 7px;
		padding-left: 7px;
		font-size: 0.9em;
	}
}

@media (max-width: 1199px) and (min-width: 1100px) {
	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item > .lcfgm__link {
		/*min-height: auto;*/
		padding: 7px;
		line-height: 1.25;
		white-space: normal;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item {
		display: table-cell;
	}
}

@media (max-width: 1140px) and (min-width: 1100px) {
	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item > .lcfgm__link {
		min-height: 50px;
		padding-right: 6px;
		padding-left: 6px;
		font-size: 15px;
		line-height: 50px;
		white-space: nowrap;
	}

	.lcfgm__list[data-lcfgm-level="0"] > .lcfgm__item:not(.lcfgm__item--has-children) > a.lcfgm__link {
		padding-right: 7px;
		padding-left: 7px;
	}
}
