/* WW off-canvas (mobile) menu robustness — enqueued as a real stylesheet so NitroPack keeps it
   like theme CSS (inline pseudo rules get optimised away on cached pages). Two fixes:

   1) Collapse Salient's hover/active underline (a::after, border-top, scaleX 0->1 on hover) so it
      never lingers as a stray grey "line" under the last-tapped item on touch devices.
   2) The dropdown caret is an icomoon icon (<i class="fa ..."> -> content "\e60a", font icomoon).
      On optimised/cached pages the icomoon font can fail to load -> the glyph renders as a tofu box.
      Hide that glyph and draw the chevron with pure CSS borders (no icon-font dependency). */

#slide-out-widget-area .off-canvas-menu-container ul li > a::after {
	-webkit-transform: scaleX(0) !important;
	transform: scaleX(0) !important;
	border-top-color: transparent !important;
}
/* Belt-and-braces: the underline pseudo sits at bottom:-2px (just below the link box). Clipping the
   link hides it regardless of hover/transform. This is a plain element rule (survives RUCSS) and is the
   layer that should reliably reach every browser/cache-variant. Safe: text, height and the sibling
   .ocm-dropdown-arrow caret are unaffected. */
#slide-out-widget-area .off-canvas-menu-container ul li > a {
	overflow: hidden !important;
}

/* 3) Indent the menu from the panel's left edge — at tablet widths Salient leaves the items flush
      against the panel edge ("too far left"). 9% gives a consistent ~26-29px indent at phone+tablet. */
#slide-out-widget-area .off-canvas-menu-container ul.menu {
	padding-left: 9% !important;
	box-sizing: border-box !important;
}

#slide-out-widget-area .off-canvas-menu-container ul li .ocm-dropdown-arrow i {
	font-size: 0 !important;
	line-height: 0 !important;
}
#slide-out-widget-area .off-canvas-menu-container ul li .ocm-dropdown-arrow::after {
	content: "" !important;
	position: absolute !important;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -7px 0 0 -4px;
	border-right: 2px solid #fff !important;
	border-bottom: 2px solid #fff !important;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	box-sizing: border-box;
}
