/* * VERTICAL Header */ .l-header { position: fixed; inset-inline-start: var(--site-outline-width, 0); min-height: 100vh; z-index: 111; width: var(--header-width, auto); } .l-header:not(.scrollable) { display: flex; flex-direction: column; height: 100%; top: var(--site-outline-width, 0) !important; } .l-header[style*="absolute"] { inset-inline-start: 0 !important; /* fix when header is bigger than screen height and Site Canvas Layout = Outlined */ } .l-subheader { flex-shrink: 0; padding-left: 0 !important; padding-right: 0 !important; } .l-subheader.at_middle { flex-grow: 10; } .l-subheader-h { width: 100%; } .l-subheader-cell { text-align: center; flex-direction: column; } .l-subheader.at_top .l-subheader-cell > *, .l-subheader.at_bottom .l-subheader-cell > * { margin-bottom: 0.7rem; } .l-subheader.at_top .l-subheader-cell > *:first-child, .l-subheader.at_bottom .l-subheader-cell > *:first-child { margin-top: 0.7rem; } .l-subheader.at_middle .l-subheader-cell > * { margin-bottom: 1.4rem; } .l-subheader.at_middle .l-subheader-cell > *:first-child { margin-top: 1.4rem; } .rtl .l-header.align_left .l-subheader-cell { align-items: flex-end; } .rtl .l-header.align_right .l-subheader-cell { align-items: flex-start; } /* VERTICAL mobile header */ body.header-show { overflow: hidden; } .w-header-overlay { display: none; position: fixed; z-index: 101; top: 0; left: 0; right: 0; bottom: 0; visibility: hidden; pointer-events: none; background: rgba(0,0,0,0); transition: all 0.3s; } .header-show .w-header-overlay { visibility: visible; pointer-events: auto; background: rgba(0,0,0,0.75); } .w-header-show { display: none; position: fixed; z-index: 102; top: calc( var(--site-outline-width, 0px) + var(--wp-admin--admin-bar--height, 0px) ); inset-inline-end: var(--site-outline-width, 0); text-align: center; background: rgba(0,0,0,0.3); color: #fff !important; opacity: 1; line-height: 50px; /* fixed value */ height: 50px; /* fixed value */ width: 50px; /* fixed value */ margin: 15px; /* fixed value */ padding: 0; font-size: 1.4rem; border-radius: var(--site-border-radius); } .w-header-show:before { content: '\f0c9'; font-family: fontawesome; font-weight: 400; vertical-align: top; } .header-show .w-header-show { opacity: 0; } .w-header-show span { display: none; margin-left: 0.5rem; } /* Header Shadow */ .l-header.shadow_thin { box-shadow: 1px 0 0 rgba(0,0,0,0.08); } .rtl .l-header.shadow_thin { box-shadow: -1px 0 0 rgba(0,0,0,0.08); } .l-header.shadow_wide { box-shadow: 5px 0 15px rgba(0,0,0,.15); } .rtl .l-header.shadow_wide { box-shadow: -5px 0 15px rgba(0,0,0,.15); } /* Header elements */ .l-header, .w-nav.type_mobile.m_layout_panel .w-nav-list.level_1 { max-width: calc(100vw - 70px); /* to avoid screen overlapping on mobiles */ } .w-image img.for_transparent { display: none; } .l-subheader.at_middle .w-dropdown-list, .l-subheader.at_bottom .w-dropdown-list { top: auto; bottom: -0.4em; padding-top: 0.4em; padding-bottom: 2.4em; } .l-subheader-cell > .w-cart { margin-left: 0.6rem; margin-right: 0.6rem; } .w-cart-content { display: none !important; }