/* ==========================================================================
   Custom Header — bs-header.css
   All styles scoped under #bs-custom-header to avoid conflicts.
   Mobile-first: base = mobile, @media (min-width: 1025px) = desktop.
   ========================================================================== */

/* ---------- Full-width fix: Elementor shortcode widget doesn't stretch ---------- */
.e-con:has(#bs-custom-header) > .elementor-widget-shortcode {
    width: 100%;
}

/* ---------- CSS Custom Properties ---------- */
#bs-custom-header {
    --hdr-nav-bg: #252525;
    --hdr-nav-text: #e8e8e8;
    --hdr-mega-bg: #1a1d28;
    --hdr-mega-border: rgba(255, 255, 255, 0.08);
    --hdr-accent: #22d3a7;
    --hdr-accent-hover: #1bb892;
    --hdr-link-color: #c0c4cc;
    --hdr-link-hover: #ffffff;
    --hdr-heading-color: #8b8fa3;
    --hdr-transition: 0.2s ease;
    --hdr-nav-height: 56px;
    --hdr-z-mega: 9999;
}

#bs-custom-header *,
#bs-custom-header *::before,
#bs-custom-header *::after {
    box-sizing: border-box;
}

/* ---------- Row 1: PR Banner ---------- */
#bs-custom-header .bs-hdr-pr-row {
    background: #080c15;
    border-bottom: 1px solid #22d3a745;
    padding: 8px 0;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bs-custom-header .bs-hdr-pr-row a.bs-pr-title {
    color: #22d3a7;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
}

#bs-custom-header .bs-hdr-pr-row a.bs-pr-submit {
    color: #7a8ba7;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid #22d3a730;
    white-space: nowrap;
    line-height: 1.4;
    flex-shrink: 0;
}

#bs-custom-header .bs-hdr-pr-row a.bs-pr-submit:hover {
    color: #22d3a7;
    border-color: #22d3a760;
}

@media (max-width: 767px) {
    #bs-custom-header .bs-hdr-pr-row {
        padding: 8px 12px;
    }
}

/* ---------- Row 2: Main Nav Bar ---------- */
#bs-custom-header .bs-hdr-nav-row {
    background: var(--hdr-nav-bg);
    min-height: var(--hdr-nav-height);
}

#bs-custom-header .bs-hdr-nav-inner {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    height: var(--hdr-nav-height);
    position: relative;
}

/* ---------- Logo ---------- */
#bs-custom-header .bs-hdr-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

#bs-custom-header .bs-hdr-logo img {
    height: 28px;
    width: auto;
    display: block;
}

#bs-custom-header .bs-hdr-logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Mobile: logo centered */
#bs-custom-header .bs-hdr-logo {
    margin: 0 auto;
}

/* ---------- Hamburger (mobile/tablet) ---------- */
#bs-custom-header .bs-hdr-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--hdr-nav-text);
    cursor: pointer;
    padding: 8px;
    margin-left: -8px;
    position: absolute;
    left: 16px;
    z-index: 2;
}

/* ---------- Mobile Search Trigger ---------- */
#bs-custom-header .bs-header-search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--hdr-nav-text);
    cursor: pointer;
    padding: 8px;
    margin-right: -8px;
    position: absolute;
    right: 16px;
    z-index: 2;
}

/* ---------- Desktop Nav (hidden on mobile) ---------- */
#bs-custom-header .bs-hdr-nav {
    display: none;
}

/* ---------- Desktop Search (hidden on mobile) ---------- */
#bs-custom-header .bs-hdr-search {
    display: none;
}

/* ---------- Language Switcher (hidden on mobile) ---------- */
#bs-custom-header .bs-hdr-lang {
    display: none;
    position: relative;
    flex-shrink: 0;
}

/* ---------- Row 3: Stats Ticker ---------- */
#bs-custom-header .bs-hdr-ticker-row {
    background: #f0f4f8;
    border-bottom: 1px solid #d5dce6;
    padding: 9px 16px;
    min-height: 36px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#bs-custom-header .bs-hdr-ticker-row::-webkit-scrollbar {
    display: none;
}

/* ---------- Row 4: Ad Slot ---------- */
#bs-custom-header .bs-hdr-ad-row {
    display: none;
}

/* ==========================================================================
   Mobile Menu Overlay
   All selectors use #bs-mobile-menu for specificity over Elementor's
   broad button/a rules from the parent theme.
   ========================================================================== */
#bs-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    background: #1a1d28;
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#bs-mobile-menu *,
#bs-mobile-menu *::before,
#bs-mobile-menu *::after {
    box-sizing: border-box;
}

#bs-mobile-menu[aria-hidden="false"] {
    transform: translateX(0);
}

/* ---------- Mobile Menu Header ---------- */
#bs-mobile-menu .bs-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

#bs-mobile-menu .bs-mobile-menu-header .bs-hdr-logo {
    margin: 0;
}

#bs-mobile-menu .bs-mobile-menu-header .bs-hdr-logo img {
    height: 26px;
    width: auto;
}

#bs-mobile-menu button.bs-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    color: #8b8fa3;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
}

#bs-mobile-menu button.bs-mobile-close:hover,
#bs-mobile-menu button.bs-mobile-close:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* ---------- Mobile Nav Items ---------- */
#bs-mobile-menu .bs-mobile-menu-nav {
    padding: 8px 0;
}

#bs-mobile-menu .bs-mobile-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#bs-mobile-menu button.bs-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #e8e8e8;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    padding: 16px 20px;
    cursor: pointer;
    text-align: left;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
    transition: background 0.15s ease;
}

#bs-mobile-menu button.bs-mobile-toggle:active {
    background: rgba(255, 255, 255, 0.04);
}

#bs-mobile-menu .bs-mobile-toggle svg {
    transition: transform 0.2s ease;
    opacity: 0.4;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

#bs-mobile-menu .bs-mobile-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
    opacity: 0.7;
}

#bs-mobile-menu .bs-mobile-toggle[aria-expanded="true"] {
    color: #22d3a7;
}

/* ---------- Mobile Sub-menu (accordion) ---------- */
#bs-mobile-menu .bs-mobile-sub {
    display: none;
    padding: 0 12px 12px 12px;
}

#bs-mobile-menu .bs-mobile-sub[aria-hidden="false"] {
    display: block;
}

#bs-mobile-menu .bs-mobile-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a0a4b4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 11px 14px;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1.4;
}

#bs-mobile-menu .bs-mobile-sub a:hover,
#bs-mobile-menu .bs-mobile-sub a:focus,
#bs-mobile-menu .bs-mobile-sub a:active {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

#bs-mobile-menu .bs-mobile-sub a .bs-hdr-mega-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #6b6f80;
}

#bs-mobile-menu .bs-mobile-sub a .bs-hdr-mega-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

#bs-mobile-menu .bs-mobile-sub a:hover .bs-hdr-mega-icon,
#bs-mobile-menu .bs-mobile-sub a:active .bs-hdr-mega-icon {
    color: #22d3a7;
}

#bs-mobile-menu .bs-mobile-sub a svg:not(.lucide) {
    opacity: 0.35;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

#bs-mobile-menu .bs-mobile-sub-heading {
    display: block;
    color: #555870;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 14px 6px;
    margin-top: 4px;
}

#bs-mobile-menu a.bs-mobile-cta {
    display: block;
    background: #22d3a7;
    color: #0b0f1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    margin: 10px 14px 4px;
    transition: background 0.15s ease;
}

#bs-mobile-menu a.bs-mobile-cta:hover,
#bs-mobile-menu a.bs-mobile-cta:active {
    background: #1bb892;
    color: #0b0f1a;
}

/* ---------- Mobile Language Switcher ---------- */
#bs-mobile-menu .bs-mobile-menu-lang {
    display: flex;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    flex-wrap: wrap;
}

#bs-mobile-menu a.bs-mobile-lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b8fa3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

#bs-mobile-menu a.bs-mobile-lang-link--active {
    border-color: #22d3a7;
    color: #ffffff;
    background: rgba(34, 211, 167, 0.08);
}

#bs-mobile-menu a.bs-mobile-lang-link:hover,
#bs-mobile-menu a.bs-mobile-lang-link:active {
    border-color: #22d3a7;
    color: #ffffff;
}

#bs-mobile-menu .bs-hdr-lang-flag {
    border-radius: 2px;
    flex-shrink: 0;
}

/* ---------- Body scroll lock when mobile menu open ---------- */
body.bs-mobile-menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Desktop (>=1025px)
   ========================================================================== */
@media (min-width: 1025px) {
    #bs-custom-header {
        --hdr-nav-height: 60px;
    }

    /* Hide mobile elements */
    #bs-custom-header .bs-hdr-hamburger {
        display: none;
    }

    #bs-custom-header .bs-header-search-trigger {
        display: none;
    }

    /* Logo: not centered */
    #bs-custom-header .bs-hdr-logo {
        margin: 0;
        margin-right: 24px;
    }

    #bs-custom-header .bs-hdr-logo img {
        height: 38px;
    }

    /* ---------- Desktop Nav ---------- */
    #bs-custom-header .bs-hdr-nav {
        display: flex;
        align-items: center;
        gap: 0;
        flex: 1;
        min-width: 0;
    }

    #bs-custom-header .bs-hdr-nav-item {
        position: relative;
    }

    #bs-custom-header .bs-hdr-nav-link {
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--hdr-nav-text);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        font-family: inherit;
        padding: 0 14px;
        height: var(--hdr-nav-height);
        white-space: nowrap;
        transition: color var(--hdr-transition);
        background: none;
        border: none;
        cursor: pointer;
    }

    #bs-custom-header .bs-hdr-nav-link:hover,
    #bs-custom-header .bs-hdr-nav-item--open .bs-hdr-nav-link {
        color: #ffffff;
    }

    #bs-custom-header .bs-hdr-nav-link svg {
        opacity: 0.5;
        transition: transform var(--hdr-transition), opacity var(--hdr-transition);
    }

    #bs-custom-header .bs-hdr-nav-item--open .bs-hdr-nav-link svg {
        transform: rotate(180deg);
        opacity: 0.8;
    }

    /* ---------- Mega Menu Panels ---------- */
    #bs-custom-header .bs-hdr-mega {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        background: var(--hdr-mega-bg);
        border: 1px solid var(--hdr-mega-border);
        border-radius: 10px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--hdr-transition), transform var(--hdr-transition), visibility var(--hdr-transition);
        z-index: var(--hdr-z-mega);
        min-width: 220px;
        pointer-events: none;
    }

    #bs-custom-header .bs-hdr-nav-item--open .bs-hdr-mega {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    #bs-custom-header .bs-hdr-mega-inner {
        display: flex;
        padding: 20px;
        gap: 24px;
    }

    #bs-custom-header .bs-hdr-mega-col {
        display: flex;
        flex-direction: column;
        min-width: 180px;
    }

    /* News mega: wider columns */
    #bs-custom-header .bs-hdr-mega--news .bs-hdr-mega-inner {
        min-width: 640px;
    }

    #bs-custom-header .bs-hdr-mega--news .bs-hdr-mega-col {
        min-width: 190px;
        flex: 1;
    }

    /* CPT mega: two columns */
    #bs-custom-header .bs-hdr-mega--cpt .bs-hdr-mega-inner {
        min-width: 400px;
    }

    #bs-custom-header .bs-hdr-mega--cpt .bs-hdr-mega-col:last-child {
        border-left: 1px solid var(--hdr-mega-border);
        padding-left: 24px;
    }

    /* More mega: two columns */
    #bs-custom-header .bs-hdr-mega--more .bs-hdr-mega-inner {
        min-width: 380px;
    }

    /* ---------- Mega Menu Content ---------- */
    #bs-custom-header .bs-hdr-mega-heading {
        display: block;
        color: var(--hdr-heading-color);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        padding: 0 10px 8px;
    }

    #bs-custom-header .bs-hdr-mega-heading--spaced {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--hdr-mega-border);
    }

    #bs-custom-header .bs-hdr-mega-link {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--hdr-link-color);
        text-decoration: none;
        font-size: 13px;
        padding: 8px 10px;
        border-radius: 6px;
        transition: background 0.15s ease, color 0.15s ease;
        white-space: nowrap;
    }

    #bs-custom-header .bs-hdr-mega-link:hover {
        background: rgba(255, 255, 255, 0.06);
        color: var(--hdr-link-hover);
    }

    #bs-custom-header .bs-hdr-mega-link:hover .bs-hdr-mega-icon {
        color: var(--hdr-accent);
    }

    #bs-custom-header .bs-hdr-mega-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        color: var(--hdr-heading-color);
        transition: color 0.15s ease;
    }

    #bs-custom-header .bs-hdr-mega-icon svg {
        width: 100%;
        height: 100%;
        stroke: currentColor;
    }

    #bs-custom-header .bs-hdr-mega-link svg.lucide {
        width: 16px;
        height: 16px;
    }

    /* External link icon (keep existing style) */
    #bs-custom-header .bs-hdr-mega-link svg:not(.lucide) {
        opacity: 0.4;
        flex-shrink: 0;
    }

    /* ---------- Mega Menu Posts (News) ---------- */
    #bs-custom-header .bs-hdr-mega-post {
        display: flex;
        flex-direction: column;
        gap: 2px;
        color: var(--hdr-link-color);
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 6px;
        transition: background 0.15s ease, color 0.15s ease;
    }

    #bs-custom-header .bs-hdr-mega-post:hover {
        background: rgba(255, 255, 255, 0.06);
        color: var(--hdr-link-hover);
    }

    #bs-custom-header .bs-hdr-mega-post-title {
        font-size: 13px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    #bs-custom-header .bs-hdr-mega-post-date {
        font-size: 11px;
        color: var(--hdr-heading-color);
    }

    /* ---------- Mega Menu Recent Items (CPT) ---------- */
    #bs-custom-header .bs-hdr-mega-recent {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--hdr-link-color);
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 6px;
        transition: background 0.15s ease, color 0.15s ease;
    }

    #bs-custom-header .bs-hdr-mega-recent:hover {
        background: rgba(255, 255, 255, 0.06);
        color: var(--hdr-link-hover);
    }

    #bs-custom-header .bs-hdr-mega-recent-logo {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.08);
    }

    #bs-custom-header .bs-hdr-mega-recent-name {
        font-size: 13px;
        line-height: 1.4;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* ---------- Mega Menu CTA Button ---------- */
    #bs-custom-header .bs-hdr-mega-cta {
        display: block;
        background: var(--hdr-accent);
        color: #0b0f1a;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        padding: 10px 16px;
        border-radius: 6px;
        text-align: center;
        margin-top: 12px;
        transition: background var(--hdr-transition);
    }

    #bs-custom-header .bs-hdr-mega-cta:hover {
        background: var(--hdr-accent-hover);
        color: #0b0f1a;
    }

    /* ---------- Desktop Search ---------- */
    #bs-custom-header .bs-hdr-search {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 12px;
        flex-shrink: 0;
    }

    #bs-custom-header .bs-hdr-search-input-wrap {
        position: relative;
        display: flex;
        align-items: center;
    }

    #bs-custom-header .bs-hdr-search-icon {
        position: absolute;
        left: 10px;
        color: #888;
        display: flex;
        align-items: center;
        pointer-events: none;
    }

    #bs-custom-header .bs-hdr-search-input {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        color: #ffffff;
        font-size: 13px;
        padding: 8px 12px 8px 34px;
        width: 200px;
        outline: none;
        transition: border-color var(--hdr-transition), background var(--hdr-transition), width var(--hdr-transition);
    }

    #bs-custom-header .bs-hdr-search-input::placeholder {
        color: #777;
    }

    #bs-custom-header .bs-hdr-search-input:focus {
        border-color: var(--hdr-accent);
        background: rgba(255, 255, 255, 0.12);
    }

    /* ---------- Desktop Language Switcher ---------- */
    #bs-custom-header .bs-hdr-lang {
        display: flex;
    }

    #bs-custom-header .bs-hdr-lang-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        color: var(--hdr-nav-text);
        font-size: 13px;
        font-weight: 500;
        padding: 6px 10px;
        cursor: pointer;
        transition: border-color var(--hdr-transition);
    }

    #bs-custom-header .bs-hdr-lang-btn:hover {
        border-color: rgba(255, 255, 255, 0.3);
    }

    #bs-custom-header .bs-hdr-lang-btn svg {
        opacity: 0.5;
        transition: transform var(--hdr-transition);
    }

    #bs-custom-header .bs-hdr-lang[data-open="true"] .bs-hdr-lang-btn svg {
        transform: rotate(180deg);
    }

    #bs-custom-header .bs-hdr-lang-flag {
        border-radius: 2px;
        display: block;
    }

    #bs-custom-header .bs-hdr-lang-dropdown {
        position: absolute;
        top: calc(100% + 6px);
        right: 0;
        background: var(--hdr-mega-bg);
        border: 1px solid var(--hdr-mega-border);
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        list-style: none;
        margin: 0;
        padding: 6px;
        min-width: 140px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(4px);
        transition: opacity var(--hdr-transition), transform var(--hdr-transition), visibility var(--hdr-transition);
        z-index: var(--hdr-z-mega);
    }

    #bs-custom-header .bs-hdr-lang[data-open="true"] .bs-hdr-lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #bs-custom-header .bs-hdr-lang-option {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--hdr-link-color);
        text-decoration: none;
        font-size: 13px;
        padding: 8px 10px;
        border-radius: 5px;
        transition: background 0.15s ease, color 0.15s ease;
    }

    #bs-custom-header .bs-hdr-lang-option:hover {
        background: rgba(255, 255, 255, 0.06);
        color: var(--hdr-link-hover);
    }

    #bs-custom-header .bs-hdr-lang-option--active {
        color: var(--hdr-accent);
    }

    /* ---------- Desktop Ad Slot ---------- */
    #bs-custom-header .bs-hdr-ad-row {
        display: block;
        min-height: 0;
    }

    #bs-custom-header #bs-hdr-ad-container:empty {
        display: none;
    }
}

/* ==========================================================================
   Large Desktop (>=1280px) — wider search, more spacing
   ========================================================================== */
@media (min-width: 1280px) {
    #bs-custom-header .bs-hdr-search-input {
        width: 240px;
    }


    #bs-custom-header .bs-hdr-nav-link {
        padding: 0 16px;
    }
}

/* ==========================================================================
   Mega menu backdrop (prevents accidental closure)
   ========================================================================== */
@media (min-width: 1025px) {
    #bs-custom-header .bs-hdr-nav-item--open::before {
        content: '';
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        height: 12px;
    }
}

/* ==========================================================================
   Print: hide header
   ========================================================================== */
@media print {
    #bs-custom-header,
    .bs-mobile-menu {
        display: none;
    }
}
