/* Header, primary navigation, support menu, and mobile menu. */

/* ==========================================================================
   Navigation - WordPress menus
   ========================================================================== */

/* Reset default WP menu styles for Tailwind-driven nav */
#site-navigation ul,
#mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#site-navigation li,
#mobile-menu li {
	position: relative;
}

#site-navigation a,
#mobile-menu a {
	display: block;
	text-decoration: none;
	color: #d1d5db;
	transition: color 0.2s ease;
}

#site-navigation a:hover,
#site-navigation a:focus,
#mobile-menu a:hover,
#mobile-menu a:focus {
	color: #eab308;
}

/* Sub-menus */
#site-navigation ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background-color: #1f2937;
	border: 1px solid #374151;
	border-radius: 0.5rem;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	padding: 0.5rem 0;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.2s ease;
}

#site-navigation li:hover > ul,
#site-navigation li.focus > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#site-navigation ul ul a {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

#site-navigation ul ul a:hover {
	background-color: rgba(234, 179, 8, 0.1);
}

#site-navigation ul ul ul {
	top: 0;
	left: 100%;
}


body.industrial-site #masthead {
	background: #ffffff !important;
	border-bottom: 1px solid var(--pg-line-strong) !important;
	backdrop-filter: none !important;
	transform: translateY(0);
	transition: transform 240ms ease, box-shadow 200ms ease;
	will-change: transform;
}

body.industrial-site #masthead.is-header-hidden {
	transform: translateY(calc(-100% - 1px));
}

body.industrial-site #masthead.is-header-scrolled {
	box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

body.industrial-site #masthead [class*="bg-slate"] {
	background: transparent !important;
}

body.industrial-site #masthead [class*="border-slate"] {
	border-color: var(--pg-line) !important;
}

body.industrial-site #masthead [class*="text-white"],
body.industrial-site #masthead [class*="text-slate-100"],
body.industrial-site #masthead [class*="text-slate-200"] {
	color: var(--pg-text) !important;
}

body.industrial-site #masthead [class*="text-slate-300"],
body.industrial-site #masthead [class*="text-slate-400"],
body.industrial-site #masthead [class*="text-slate-500"] {
	color: var(--pg-text-soft) !important;
}

body.industrial-site #masthead [class*="text-amber"] {
	color: var(--pg-text-muted) !important;
}

body.industrial-site #site-navigation a,
body.industrial-site #mobile-menu a {
	color: var(--pg-text) !important;
}

body.industrial-site #site-navigation a:hover,
body.industrial-site #site-navigation a:focus,
body.industrial-site #mobile-menu a:hover,
body.industrial-site #mobile-menu a:focus {
	color: #000000 !important;
}

body.industrial-site .industrial-cart-count {
	background: #111111 !important;
	color: #ffffff !important;
	border-radius: 999px;
}

body.industrial-site #masthead .industrial-cart-count {
	background: #111111 !important;
	color: #ffffff !important;
}

body.industrial-site #masthead .header-action {
	border: 1px solid var(--pg-line-strong) !important;
	background: #ffffff !important;
	color: var(--pg-text) !important;
}

body.industrial-site #masthead .header-action:hover,
body.industrial-site #masthead .header-action:focus {
	border-color: var(--pg-text) !important;
	background: #f6f6f6 !important;
	color: #000000 !important;
}

body.industrial-site #masthead .header-action--primary {
	border-color: var(--pg-text) !important;
	background: var(--pg-text) !important;
	color: #ffffff !important;
}

body.industrial-site #masthead .header-action--primary:hover,
body.industrial-site #masthead .header-action--primary:focus {
	border-color: #000000 !important;
	background: #000000 !important;
	color: #ffffff !important;
}

body.industrial-site #masthead .mobile-header-main {
	position: relative;
}

body.industrial-site #masthead .mobile-header-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
}

body.industrial-site #masthead .mobile-menu-toggle {
	flex: 0 0 auto;
}

body.industrial-site #masthead .mobile-menu-toggle.header-icon-button,
body.industrial-site #masthead .mobile-menu-toggle.header-icon-button:hover,
body.industrial-site #masthead .mobile-menu-toggle.header-icon-button:focus {
	background: #ffffff !important;
	border-color: transparent !important;
	box-shadow: none !important;
	color: #000000 !important;
}

body.industrial-site #masthead .mobile-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
	min-width: 126px;
	margin-left: auto;
}

body.industrial-site #masthead .mobile-header-actions .header-icon-button {
	width: 42px;
	height: 42px;
}

@media (max-width: 420px) {
	body.industrial-site #masthead .mobile-header-logo img {
		width: auto;
		max-width: 112px;
		height: auto;
	}

	body.industrial-site #masthead .mobile-header-actions {
		min-width: 114px;
	}

	body.industrial-site #masthead .mobile-header-actions .header-icon-button {
		width: 38px;
		height: 38px;
	}
}

body.industrial-site #masthead .header-contact-card {
	border-color: var(--pg-line-strong) !important;
	background: #fafafa !important;
	color: var(--pg-text-muted) !important;
}

body.industrial-site #masthead .header-icon-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid transparent;
	border-radius: 0.375rem;
	background: #ffffff;
	color: var(--pg-text);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.industrial-site #masthead .header-icon-button svg {
	width: 19px;
	height: 19px;
}

body.industrial-site #masthead .mobile-menu-toggle .mobile-menu-toggle__icon {
	display: block;
	width: 24px !important;
	height: 24px !important;
	overflow: visible;
}

body.industrial-site #masthead .header-icon-button:hover,
body.industrial-site #masthead .header-icon-button:focus {
	background: #f6f6f6;
	border-color: transparent;
	color: #000000;
}

body.industrial-site #masthead .mobile-menu-toggle,
body.industrial-site #masthead .mobile-menu-toggle:hover,
body.industrial-site #masthead .mobile-menu-toggle:focus {
	color: #000000 !important;
}

body.industrial-site #masthead .mobile-menu-toggle svg,
body.industrial-site #masthead .mobile-menu-toggle svg path,
body.industrial-site #masthead .mobile-menu-toggle svg line {
	opacity: 1 !important;
	stroke: #000000 !important;
	visibility: visible !important;
}

body.industrial-site #masthead .header-cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

body.industrial-site.search-overlay-open {
	overflow: hidden;
}

body.industrial-site .site-search-overlay {
	position: fixed;
	z-index: 80;
	pointer-events: none;
}

body.industrial-site .site-search-overlay.is-open {
	pointer-events: auto;
}

body.industrial-site .site-search-overlay__backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 80;
	border: 0;
	background: rgba(0, 0, 0, 0.48);
	opacity: 0;
	transition: opacity 220ms ease, visibility 0s linear 220ms;
	visibility: hidden;
}

body.industrial-site .site-search-overlay.is-open .site-search-overlay__backdrop {
	opacity: 1;
	transition-delay: 0s;
	visibility: visible;
}

body.industrial-site .site-search-overlay__backdrop:hover,
body.industrial-site .site-search-overlay__backdrop:focus,
body.industrial-site .site-search-overlay__backdrop:active {
	border-color: transparent !important;
	background: rgba(0, 0, 0, 0.48) !important;
	color: inherit;
	outline: none;
}

body.industrial-site .site-search-overlay__panel {
	position: fixed;
	right: 0;
	left: 0;
	z-index: 81;
	background: #ffffff;
	color: #111111;
	box-shadow: none;
	opacity: 0;
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, visibility 0s linear 260ms;
	visibility: hidden;
}

body.industrial-site .site-search-overlay.is-open .site-search-overlay__panel {
	opacity: 1;
	transition-delay: 0s;
	visibility: visible;
}

body.industrial-site .site-search-overlay__inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

body.industrial-site .site-search-overlay__logo {
	display: inline-flex;
	align-items: center;
}

body.industrial-site .site-search-overlay__logo-image {
	width: auto;
	height: 2rem;
}

body.industrial-site .site-search-overlay__form {
	display: flex;
	align-items: center;
	width: 100%;
	border: 1px solid #d6d6d6;
	background: #ffffff;
}

body.industrial-site .site-search-overlay__input {
	width: 100%;
	min-width: 0;
	height: 44px;
	padding: 0 1rem;
	border: 0;
	background: transparent;
	color: #111111;
	font-size: 1rem;
	line-height: 1.4;
	outline: none;
}

body.industrial-site .site-search-overlay__input::placeholder {
	color: #777777;
}

body.industrial-site .site-search-overlay__submit {
	align-self: stretch;
	padding: 0 1.1rem;
	border: 0;
	border-left: 1px solid #d6d6d6;
	background: #111111;
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

body.industrial-site .site-search-overlay__actions-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.25rem;
}

body.industrial-site .site-search-overlay__actions {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

body.industrial-site .site-search-overlay .header-icon-button,
body.industrial-site .site-search-overlay__close {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid transparent;
	border-radius: 0.375rem;
	background: #ffffff;
	color: #111111;
	transition: background-color 0.2s ease, color 0.2s ease;
}

body.industrial-site .site-search-overlay .header-icon-button:hover,
body.industrial-site .site-search-overlay .header-icon-button:focus,
body.industrial-site .site-search-overlay__close:hover,
body.industrial-site .site-search-overlay__close:focus {
	background: #f6f6f6;
	color: #000000;
	outline: none;
}

body.industrial-site .site-search-overlay .header-icon-button:focus-visible,
body.industrial-site .site-search-overlay__close:focus-visible,
body.industrial-site .site-search-overlay__input:focus-visible,
body.industrial-site .site-search-overlay__submit:focus-visible,
body.industrial-site .site-search-overlay__quick a:focus-visible {
	outline: 2px solid rgba(17, 17, 17, 0.28);
	outline-offset: 3px;
}

body.industrial-site .site-search-overlay .header-icon-button svg,
body.industrial-site .site-search-overlay__close svg {
	width: 19px;
	height: 19px;
}

body.industrial-site .site-search-overlay__mobile-copy,
body.industrial-site .site-search-overlay__quick {
	display: none;
}

@media (min-width: 1024px) {
	body.industrial-site .site-search-overlay__backdrop {
		top: calc(var(--industrial-search-panel-top, 0px) + var(--industrial-search-panel-height, 82px));
	}

	body.industrial-site .site-search-overlay__panel {
		top: var(--industrial-search-panel-top, 0px);
		height: var(--industrial-search-panel-height, 82px);
		border-bottom: 1px solid #d6d6d6;
		transform: translateY(calc(-1 * var(--industrial-search-panel-height, 82px)));
	}

	body.industrial-site .site-search-overlay.is-open .site-search-overlay__panel {
		transform: translateY(0);
	}

	body.industrial-site .site-search-overlay__inner {
		display: grid;
		grid-template-columns: minmax(190px, 0.28fr) minmax(360px, 1fr) minmax(152px, 0.25fr);
		align-items: center;
		gap: clamp(1rem, 3vw, 2rem);
		height: 100%;
		padding: 0 1rem;
	}
}

@media (max-width: 1023px) {
	body.industrial-site .site-search-overlay__panel {
		right: 0;
		bottom: 0;
		left: 0;
		max-height: calc(100vh - 1rem);
		padding: 1.25rem;
		overflow-y: auto;
		border-top: 1px solid #d6d6d6;
		transform: translateY(100%);
		-webkit-overflow-scrolling: touch;
	}

	body.industrial-site .site-search-overlay.is-open .site-search-overlay__panel {
		transform: translateY(0);
	}

	body.industrial-site .site-search-overlay__inner {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 1rem;
	}

	body.industrial-site .site-search-overlay__brand {
		align-self: center;
	}

	body.industrial-site .site-search-overlay__actions-wrap {
		grid-column: 2;
		grid-row: 1;
	}

	body.industrial-site .site-search-overlay__actions {
		display: none;
	}

	body.industrial-site .site-search-overlay__mobile-copy,
	body.industrial-site .site-search-overlay__form,
	body.industrial-site .site-search-overlay__quick {
		grid-column: 1 / -1;
	}

	body.industrial-site .site-search-overlay__mobile-copy {
		display: block;
		padding-top: 0.75rem;
		border-top: 1px solid #eaeaea;
	}

	body.industrial-site .site-search-overlay__mobile-copy p {
		margin: 0 0 0.35rem;
		color: #111111;
		font-size: 1.25rem;
		font-weight: 700;
		line-height: 1.2;
	}

	body.industrial-site .site-search-overlay__mobile-copy span {
		display: block;
		color: #444444;
		font-size: 0.92rem;
		line-height: 1.45;
	}

	body.industrial-site .site-search-overlay__form {
		margin-top: 0.2rem;
	}

	body.industrial-site .site-search-overlay__input {
		height: 50px;
	}

	body.industrial-site .site-search-overlay__submit {
		padding: 0 0.9rem;
	}

	body.industrial-site .site-search-overlay__quick {
		display: block;
		padding-top: 0.4rem;
	}

	body.industrial-site .site-search-overlay__quick p {
		margin: 0 0 0.7rem;
		color: #777777;
		font-size: 0.72rem;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
	}

	body.industrial-site .site-search-overlay__quick-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-top: 1px solid #eaeaea;
	}

	body.industrial-site .site-search-overlay__quick a {
		display: block;
		padding: 0.8rem 0.7rem 0.8rem 0;
		border-bottom: 1px solid #eaeaea;
		color: #111111;
		font-size: 0.9rem;
		font-weight: 600;
		line-height: 1.25;
		text-decoration: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.industrial-site .site-search-overlay__backdrop,
	body.industrial-site .site-search-overlay__panel {
		transition: none;
	}
}

body.industrial-site #mobile-menu.mobile-menu-drawer {
	position: fixed;
	top: var(--industrial-mobile-menu-top, 73px);
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 45;
	display: none;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: #ffffff !important;
	border-top: 1px solid var(--pg-line-strong) !important;
	box-shadow: none;
	opacity: 1;
	pointer-events: none;
	transform: translateX(-100%);
	transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 260ms ease;
	visibility: hidden;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 1023px) {
	body.industrial-site #mobile-menu.mobile-menu-drawer {
		display: block;
	}
}

body.industrial-site #mobile-menu.mobile-menu-drawer.is-open {
	pointer-events: auto;
	transform: translateX(0);
	visibility: visible;
}

body.industrial-site #mobile-menu .mobile-menu-drawer__inner {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	min-height: 100%;
	max-width: none;
	margin: 0;
	padding: clamp(1.25rem, 6vw, 2.5rem) 1.25rem max(2rem, env(safe-area-inset-bottom));
}

body.industrial-site #mobile-menu .mobile-menu-list {
	border-top: 1px solid var(--pg-line-strong);
}

body.industrial-site #mobile-menu .mobile-menu-link,
body.industrial-site #mobile-menu .mobile-menu-link--summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1rem 0;
	border-bottom: 1px solid var(--pg-line);
	background: transparent !important;
	color: #111111 !important;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.35;
	text-decoration: none;
	text-transform: none;
}

body.industrial-site #mobile-menu .mobile-menu-link:hover,
body.industrial-site #mobile-menu .mobile-menu-link:focus,
body.industrial-site #mobile-menu .mobile-menu-link--summary:hover,
body.industrial-site #mobile-menu .mobile-menu-link--summary:focus {
	color: #000000 !important;
	outline: none;
}

body.industrial-site #mobile-menu .mobile-menu-link:focus-visible,
body.industrial-site #mobile-menu .mobile-menu-link--summary:focus-visible {
	outline: 2px solid rgba(17, 17, 17, 0.28);
	outline-offset: 4px;
}

body.industrial-site #mobile-menu .mobile-menu-details {
	border: 0;
	background: transparent;
}

body.industrial-site #mobile-menu .mobile-menu-link--summary {
	cursor: pointer;
}

body.industrial-site #mobile-menu .mobile-menu-caret,
body.industrial-site #mobile-menu .mobile-support-caret {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	color: #111111;
	transition: transform 0.18s ease;
}

body.industrial-site #mobile-menu .mobile-menu-caret svg,
body.industrial-site #mobile-menu .mobile-support-caret svg {
	width: 100%;
	height: 100%;
}

body.industrial-site #mobile-menu .mobile-menu-details[open] .mobile-menu-caret,
body.industrial-site #mobile-menu .mobile-support-menu[open] .mobile-support-caret {
	transform: rotate(180deg);
}

body.industrial-site #mobile-menu .mobile-menu-submenu {
	display: grid;
	gap: 0;
	padding: 0.45rem 0 0.95rem;
	border-bottom: 1px solid var(--pg-line);
}

body.industrial-site #mobile-menu .mobile-menu-sub-link {
	display: block;
	padding: 0.7rem 0 0.7rem 1rem;
	background: transparent !important;
	color: var(--pg-text-muted) !important;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0;
	text-decoration: none;
}

body.industrial-site #mobile-menu .mobile-menu-sub-link:hover,
body.industrial-site #mobile-menu .mobile-menu-sub-link:focus {
	color: #000000 !important;
}

body.industrial-site #mobile-menu .mobile-menu-contact {
	margin-top: auto;
	padding-top: 1.2rem;
	border-top: 1px solid var(--pg-line-strong) !important;
	border-right: 0 !important;
	border-bottom: 0 !important;
	border-left: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--pg-text-muted) !important;
}

body.industrial-site #mobile-menu .mobile-menu-contact::before {
	display: block;
	margin-bottom: 0.7rem;
	color: var(--pg-text-soft);
	content: 'PLASMARGON';
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

body.industrial-site #mobile-menu .mobile-menu-contact__label {
	margin: 0 0 0.55rem;
	color: var(--pg-text-soft);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

body.industrial-site #mobile-menu .mobile-menu-contact__link {
	display: inline-flex;
	padding: 0;
	color: #111111 !important;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
	body.industrial-site #mobile-menu.mobile-menu-drawer {
		transition: none;
	}
}

@media (max-width: 374px) {
	body.industrial-site #masthead .mobile-header-logo img {
		max-width: 84px;
	}

	body.industrial-site #masthead .mobile-header-actions {
		gap: 0;
		min-width: 102px;
	}

	body.industrial-site #masthead .mobile-header-actions .header-icon-button {
		width: 34px;
		height: 34px;
	}

}

@media (min-width: 1024px) {
	body.industrial-site #masthead .mobile-header-logo {
		position: static;
		transform: none;
	}

	body.industrial-site #masthead .mobile-menu-toggle,
	body.industrial-site #masthead .mobile-header-actions {
		display: none;
	}

	body.industrial-site #mobile-menu.mobile-menu-drawer {
		display: none !important;
	}
}

body.industrial-site #site-navigation.primary-nav-wrap {
	position: relative;
}

body.industrial-site #site-navigation .primary-menu-root {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.industrial-site #site-navigation .primary-menu-root > li {
	position: relative;
}

body.industrial-site #site-navigation .primary-menu-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	line-height: 1;
	text-decoration: none;
}

body.industrial-site #site-navigation .primary-menu-link::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.55rem;
	height: 2px;
	background: #111111;
	opacity: 0;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 220ms ease, opacity 160ms ease;
}

body.industrial-site #site-navigation .primary-menu-link:hover::after,
body.industrial-site #site-navigation .primary-menu-link:focus::after,
body.industrial-site #site-navigation.machines-mega-open .machines-menu-trigger::after,
body.industrial-site #site-navigation .support-menu-item.support-menu-open .support-menu-trigger::after {
	opacity: 1;
	transform: scaleX(1);
}

body.industrial-site #site-navigation .nav-menu-caret {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.7rem;
	height: 0.7rem;
	color: currentColor;
	transition: transform 0.16s ease;
}

body.industrial-site #site-navigation .nav-menu-caret svg {
	width: 100%;
	height: 100%;
}

body.industrial-site #site-navigation.machines-mega-open .machines-menu-trigger .nav-menu-caret,
body.industrial-site #site-navigation .support-menu-item.support-menu-open .nav-menu-caret {
	transform: rotate(180deg);
}

body.industrial-site #site-navigation .support-submenu {
	position: absolute;
	top: calc(100% + 0.6rem);
	left: 0;
	z-index: 95;
	min-width: 208px;
	margin: 0;
	padding: 0.38rem;
	list-style: none;
	border: 1px solid var(--pg-line-strong);
	border-radius: 0.45rem;
	background: #ffffff;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

body.industrial-site #site-navigation .support-menu-item.support-menu-open .support-submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

body.industrial-site #site-navigation .support-submenu-link {
	display: block;
	padding: 0.58rem 0.62rem;
	border-radius: 0.3rem;
	color: #4b5563;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.15s ease, background-color 0.15s ease;
}

body.industrial-site #site-navigation .support-submenu-link:hover,
body.industrial-site #site-navigation .support-submenu-link:focus {
	color: #111111;
	background: #f5f5f5;
	outline: none;
}

body.industrial-site #mobile-menu .mobile-support-menu summary {
	list-style: none;
}

body.industrial-site #mobile-menu .mobile-support-menu summary::-webkit-details-marker {
	display: none;
}

body.industrial-site #mobile-menu .mobile-support-caret {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.8rem;
	height: 0.8rem;
	transition: transform 0.15s ease;
}

body.industrial-site #mobile-menu .mobile-support-caret svg {
	width: 100%;
	height: 100%;
}

body.industrial-site #mobile-menu .mobile-support-menu[open] .mobile-support-caret {
	transform: rotate(180deg);
}
