﻿/*

blue            #212445
pale green      #e4edd4
grey            #8b8e90
black           #17191B
white           #ffffff
warm grey       #cfceca

warm grey 50%   #e7e6e4 

*/

/*Variables*/
:root {
    --e_screen-size-0: 0px;
    --e_screen-size-SM: 576px;
    --e_screen-size-MD: 767px;
    --e_blue: #212445;
    --e_warm-gray: #e7e6e4;
    --e_light_gray: #cfceca;
    --e_pale-green: #e4edd4;
}



/* Overrides the standard bootstrap font   */
@font-face {
    /* Entryphone brand font - Uncut sans */
    font-family: 'UncutSans-Regular';
    src: url('../fonts/uncutsans/Webfonts/UncutSans-Regular.woff2') format('woff2');
}

body {
    /* Entryphone brand font - Uncut sans */
    font-family: 'UncutSans-Regular', sans-serif !important;
    font-size: 14px !important;
    color: black !important;
}

/*Overrides the bootstrap page width - was done for the Q series door panel menu*/
.container {
    max-width: 1450px !important;
    margin: 0 auto;
}


a {
    color: var(--e_blue);
    font-size: 16px;
    text-decoration: none !important;
}

    a:hover {
        text-decoration: underline !important;
    }



th {
    font-weight: bold;
    font-size: 14px !important;
}


h1 {
}


p {
    font-size: 1rem !important;
}



/* DevExpress styles */
/* CustomTreeViewStyles.css */
.dxTV .dxTVCheckBox {
    display: none;
}




/* entryphone styles - all start with e_ */


/* Used on home page */
.e_advert h2 a {
    color: var(--e_blue);
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 50.4px;
}


.e_advert p {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0;
}



/* entryphone styles */
.e_explanation-text-below-heading {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--e_blue);
}

.e_heading1 {
    margin-bottom: 6px;
    font-size: 32px !important;
    font-weight: 500;
    color: var(--e_blue);
}


.e_heading2 {
    margin-top: 32px;
    margin-bottom: 6px;
    font-size: 24px !important;
    font-weight: 500;
    color: var(--e_blue);
}



/* typically used from Griview numeric columns where we need to right align a heading */
.e_right {
    text-align: right;
}




.e_backgroundcolour {
    background-color: black !important;
}

.e_alternative_backgroundcolour {
    background-color: var(--e_light_gray);
}


/* <asp:RadioButtonList */
.e_radiostyle {
    line-height: 24px;
}

    /* <asp:RadioButtonList distance between radio button and text */
    .e_radiostyle label {
        margin-left: 10px !important;
    }



.e_vertical_spacing {
    position: relative;
    z-index: 2;
    margin-top: 10vh;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
}


.e_bigbold_message {
    font-size: 52px;
    font-style: normal;
    font-weight: 300;
    line-height: 66px;
   
}


/* main menu items need to be in white as video is playing in background */
.nav-link {
    color: white !important;
}


.e_homepage-banner-overlay {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 750px;
    z-index: 0;
    overflow: hidden;
}

.e_non-homepage-banner-overlay {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 0;
    overflow: hidden;
    background-color: var(--e_blue);
}


.e_image-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.e_zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 6s ease forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}




/* Bootstrap overrides */


.btn-secondary {
    background-color: var(--e_blue) !important;
    color: white !important;
}


.bi {
    font-size: 18px !important; /* Adjust the size as needed */
}

.alert-success {
    background-color: var(--e_pale-green) !important; /* Blue background */
}


.e_icon-24px {
    font-size: 24px !important;
}

/* Specically for menus used in MasterPageWithMenu */
/* Mobile devices */
@media (min-width: 0px) and (max-width: 767px) {

    /* TOP menu area  - on mobile it is the dropdown area that displays when you click the hamburger */
    .navbar-collapse {
        background-color: var(--e_blue);
        padding: 24px !important;
    }

    /* TOP menu popup items hover behaviour */
    .navbar-nav .nav-item:hover > .nav-link {
        color: #fff !important;
    }

    /* SUB menu popup area including the menu items themselves */
    .navbar-nav .nav-item:hover .dropdown-menu {
        display: block;
        border: 0px none black;
    }


    .dropdown-menu ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }


    /* Only used on Checkout trolley icon    */
    .dropdown-menu.e_trolley_dropdown {
        /*No need for modification on mobile*/
        /*transform: translateX(-75%) !important;*/

        background-color: var(--e_pale-green) !important;
    }
}

/* Specically for menus used in MasterPageWithMenu */
/* Everything larger than a mobile */
@media (min-width: 768px) {

    /* TOP menu area  - on mobile it is the dropdown area that displays when you click the hamburger */
    .navbar-collapse {
    }

    /* TOP menu popup items hover behaviour */
    .navbar-nav .nav-item:hover > .nav-link {
        color: #fff !important;
        text-decoration: underline;
        text-underline-offset: 12px;
        text-decoration-thickness: 2px;
    }

    /* SUB menu popup area including the menu items themselves */
    .navbar-nav .nav-item:hover .dropdown-menu {
        display: block;
        padding: 12px;
    }

    /* the box that appears containing the dropdown menu items  */
    .dropdown-menu {
        border: 6px;
        margin-top: 0px;
    }

        .dropdown-menu ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }


    /* The menu items dropdown but not the checkout  */
    .e_menuitems {
        /*Popup box width*/
        width: 700px;
        /*Popup box height*/
        height: 600px;
        
        xbackground-color: rgba(255, 255, 255, 0.95); /* White with 80% opacity */
    }


    .nav-link {
        /* Spacing between main menu items */
        margin-right: 18px;
        margin-left: 18px;
        /*Pushes text down so that it lines up with bottom of Entryphone logo */
        margin-top: 18px;
        display: block;
    }

    /* Bootstrap overrides */


    /* Sub menu items */
    .dropdown-item {
        margin-top: 18px;
    }

        /* sub menu items e.g. Telephones, Releases */
        .dropdown-item:hover {
            text-decoration: underline;
            text-underline-offset: 5px;
        }

        .dropdown-item:focus {
            background-color: var(--e_pale-green) !important;
        }


    .nav-link, .dropdown-item, .dropdown-header {
        font-size: 1.25rem !important;
    }

    .dropdown-menu.e_trolley_dropdown {
        transform: translateX(-75%) !important;
        background-color: var(--e_pale-green) !important;
    }

    .e_cart-nav-item {
        position: relative;
    }

    .e_cart-nav-item .e_trolley_dropdown {
        margin-top: 0 !important;
    }

    .e_cart-nav-item .e_trolley_dropdown::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: 1rem;
    }

    .e_cart-nav-item:hover .e_trolley_dropdown,
    .e_cart-nav-item:focus-within .e_trolley_dropdown,
    .e_cart-nav-item.e_cart-open .e_trolley_dropdown {
        display: block;
    }
}



footer {
    padding: 18px;
    border-left: 0px solid lightgray;
    border-right: 0px solid lightgray;
    border-top: 1px;
    border-bottom: 1px;
    border-style: solid;
    border-color: lightgray;
}


    footer a {
        color: var(--e_blue);
    }





/* FOR TESTING SCREEN SIZE BREAKPOINTS  */

@media (min-width: 0px) and (max-width: 575px) {
    .e_custom-background {
        /* background-color: red!important;*/
    }
}
/* Custom styles for small screens (sm) */
@media (min-width: 576px) and (max-width: 767px) {
    .e_custom-sm-background {
        background-color: orange;
    }
}
/* Custom styles for medium screens (md) */
@media (min-width: 768px) {
    .e_custom-md-background {
        background-color: green;
    }
}

/* 2026 public-site design system */
:root {
    --e-blue: #171a36;
    --e-blue-soft: #262b55;
    --e-green: #dce9c8;
    --e-mint: #f0f5e8;
    --e-ink: #17191b;
    --e-muted: #626777;
    --e-surface: #f6f6f3;
    --e-border: rgba(23, 26, 54, .12);
    --e-radius: 1.25rem;
    --e-shadow: 0 18px 55px rgba(23, 26, 54, .10);
    --bs-primary: #171a36;
    --bs-primary-rgb: 23, 26, 54;
    --bs-body-font-family: 'UncutSans-Regular', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --bs-body-color: #17191b;
    --bs-body-bg: #fff;
    --bs-border-radius: .75rem;
    --bs-border-radius-lg: 1rem;
}

html { scroll-behavior: smooth; }

body.e_site-body {
    overflow-x: clip;
    background: #fff;
    color: var(--e-ink) !important;
    font-size: 1rem !important;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--e-green); color: var(--e-blue); }

.container { width: min(100% - 2rem, 1450px); }

h1, h2, h3, h4, h5, h6 {
    color: var(--e-blue);
    font-weight: 600;
    letter-spacing: -.025em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4.75rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.25rem); }

a { transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
a:hover { text-decoration: none !important; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid #8cb94e !important;
    outline-offset: 3px;
}

.btn {
    --bs-btn-padding-x: 1.2rem;
    --bs-btn-padding-y: .72rem;
    font-weight: 600;
    border-radius: 999px;
}

.btn-secondary, .btn-primary {
    border-color: var(--e-blue) !important;
    background: var(--e-blue) !important;
}

.btn-secondary:hover, .btn-primary:hover { background: var(--e-blue-soft) !important; transform: translateY(-1px); }

/* Installation service */
.e_installation-section { color: var(--e-ink); }
.e_installation-section h1,
.e_installation-section h2,
.e_installation-section h3 { margin-top: 0; }
.e_installation-section h1 { font-size: clamp(2.15rem, 3.2vw, 3.25rem); line-height: 1.03; text-wrap: balance; }
.e_installation-section h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.08; }
.e_installation-section h3 { font-size: 1.14rem; line-height: 1.25; }
.e_installation-section p { font-size: 1rem !important; line-height: 1.65; }
.e_installation-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    min-height: 460px;
    overflow: hidden;
    border: 1px solid var(--e-border);
    border-radius: 24px;
    background: #f4f7f1;
    box-shadow: 0 18px 55px rgba(23, 26, 54, .08);
}
.e_installation-hero__copy { align-self: center; padding: clamp(2rem, 4vw, 4.25rem); }
.e_installation-hero__copy > p { max-width: 39rem; margin: 1.15rem 0 1.65rem; color: #4e5368; }
.e_installation-kicker {
    display: inline-block;
    margin-bottom: .9rem;
    color: #536b31;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.e_installation-hero__visual { display: grid; min-height: 100%; margin: 0; overflow: hidden; place-items: center; background: #e8efdf; }
.e_installation-hero__visual svg { width: min(90%, 570px); height: auto; }
.e_installation-drawing__structure { fill: none; stroke: #171a36; stroke-width: 3; stroke-linejoin: round; }
.e_installation-drawing__windows { fill: #fff; stroke: #171a36; stroke-width: 2; }
.e_installation-drawing__signal { fill: none; stroke: #7da842; stroke-width: 4; stroke-linecap: round; }
.e_installation-drawing__signal circle { fill: #7da842; }
.e_installation-drawing__panel { fill: #171a36; stroke: #171a36; stroke-width: 3; }
.e_installation-drawing__panel circle,
.e_installation-drawing__panel path { fill: none; stroke: #dce9c8; stroke-width: 3; stroke-linecap: round; }
.e_installation-drawing__caption { fill: #7da842; stroke: #7da842; stroke-width: 2; }
.e_installation-hero--nationwide { background: var(--e-blue); }
.e_installation-hero--nationwide .e_installation-hero__copy { color: rgba(255,255,255,.86); }
.e_installation-hero--nationwide h1 { color: #fff; }
.e_installation-hero--nationwide .e_installation-hero__copy > p { color: rgba(255,255,255,.76); }
.e_installation-hero--nationwide .e_installation-kicker { color: var(--e-green); }
.e_installation-hero--nationwide .e_installation-text-link { color: #fff; }
.e_installation-hero--nationwide .e_installation-hero__visual { background: #202544; }
.e_installation-network__routes { fill: none; stroke: rgba(220,233,200,.42); stroke-width: 3; }
.e_installation-network__nodes { fill: #dce9c8; stroke: #202544; stroke-width: 6; }
.e_installation-network__panels { fill: #171a36; stroke: #dce9c8; stroke-width: 3; }
.e_installation-network__panels circle,
.e_installation-network__panels path { fill: none; stroke: #dce9c8; stroke-width: 3; stroke-linecap: round; }
.e_installation-network__markers { fill: #dce9c8; stroke: #dce9c8; stroke-width: 3; stroke-linecap: round; }
.e_installation-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem; }
.e_installation-text-link { color: var(--e-blue); font-weight: 650; }
.e_installation-text-link span { display: inline-block; margin-left: .25rem; transition: transform .2s ease; }
.e_installation-text-link:hover span { transform: translateX(4px); }
.e_installation-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 1.25rem 0 clamp(3.5rem, 7vw, 6.5rem);
    overflow: hidden;
    border: 1px solid var(--e-border);
    border-radius: 18px;
    background: var(--e-border);
}
.e_installation-highlights > div { display: flex; flex-direction: column; padding: 1.25rem 1.4rem; background: #fff; }
.e_installation-highlights strong { color: var(--e-blue); font-size: .96rem; }
.e_installation-highlights span { margin-top: .15rem; color: #676b7e; font-size: .86rem; }
.e_installation-journey { margin-bottom: clamp(3.5rem, 7vw, 6.5rem); }
.e_installation-section-heading { max-width: 48rem; margin-bottom: 2rem; }
.e_installation-section-heading > p { max-width: 42rem; margin: .8rem 0 0; color: #5c6175; }
.e_installation-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.e_installation-steps li { min-width: 0; padding: 1.5rem; border: 1px solid var(--e-border); border-radius: 18px; background: #fff; box-shadow: 0 10px 35px rgba(23, 26, 54, .045); }
.e_installation-steps li > span { display: inline-flex; align-items: center; justify-content: center; width: 2.3rem; height: 2.3rem; margin-bottom: 1.35rem; border-radius: 50%; background: var(--e-green); color: var(--e-blue); font-size: .73rem; font-weight: 800; }
.e_installation-steps p { margin: .7rem 0 0; color: #62667a; font-size: .91rem !important; }
.e_installation-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(1.7rem, 4vw, 3rem); border-radius: 22px; background: #eef3e6; }
.e_installation-cta > div { max-width: 46rem; }
.e_installation-cta h2 { margin-bottom: .5rem; }
.e_installation-cta p { margin: 0; color: #5c6175; }
.e_installation-cta .btn { flex: 0 0 auto; }

@media (max-width: 1100px) {
    .e_installation-hero { grid-template-columns: 1fr; }
    .e_installation-hero__visual { max-height: 390px; order: -1; }
    .e_installation-hero__visual svg { width: min(78%, 480px); max-height: 360px; }
}

@media (max-width: 767px) {
    .e_installation-hero { border-radius: 18px; }
    .e_installation-hero__copy { padding: 1.5rem; }
    .e_installation-hero__visual { min-height: 250px; max-height: 250px; }
    .e_installation-hero__visual svg { width: min(86%, 360px); max-height: 230px; }
    .e_installation-highlights,
    .e_installation-steps { grid-template-columns: 1fr; }
    .e_installation-cta { align-items: flex-start; flex-direction: column; }
}

/* Maintenance service */
.e_maintenance-section h1,
.e_maintenance-section h2 { margin-top: 0; }
.e_maintenance-section h1 { font-size: clamp(2.15rem, 3.2vw, 3.25rem); line-height: 1.03; text-wrap: balance; }
.e_maintenance-section h2 { font-size: 1.25rem; line-height: 1.2; }
.e_maintenance-section p { font-size: 1rem !important; line-height: 1.65; }
.e_maintenance-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(290px, .92fr);
    min-height: 430px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid var(--e-border);
    border-radius: 24px;
    background: #f4f7f1;
    box-shadow: 0 18px 55px rgba(23, 26, 54, .08);
}
.e_maintenance-hero__copy { align-self: center; padding: clamp(2rem, 4vw, 4rem); }
.e_maintenance-hero__copy > p { max-width: 39rem; margin: 1rem 0 1.5rem; color: #53586d; }
.e_maintenance-hero__visual { display: grid; min-height: 100%; margin: 0; place-items: center; background: #e8efdf; }
.e_maintenance-hero__visual svg { width: min(84%, 490px); height: auto; }
.e_maintenance-drawing__panel { fill: #fff; stroke: #171a36; stroke-width: 4; }
.e_maintenance-drawing__panel circle,
.e_maintenance-drawing__panel path { fill: none; stroke: #171a36; stroke-width: 4; stroke-linecap: round; }
.e_maintenance-drawing__check { fill: #dce9c8; stroke: #6f9638; stroke-width: 5; }
.e_maintenance-drawing__check path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.e_maintenance-drawing__signal { fill: none; stroke: #7da842; stroke-width: 5; stroke-linecap: round; }
.e_maintenance-drawing__pulse { fill: none; stroke: #7da842; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; }
.e_maintenance-drawing__pulse circle { fill: #7da842; }
.e_maintenance-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.25rem 0 clamp(3.5rem, 7vw, 6rem); }
.e_maintenance-options article { padding: 1.5rem; border: 1px solid var(--e-border); border-radius: 18px; background: #fff; box-shadow: 0 10px 35px rgba(23, 26, 54, .045); }
.e_maintenance-options article > span { display: inline-flex; align-items: center; justify-content: center; width: 2.3rem; height: 2.3rem; margin-bottom: 1.25rem; border-radius: 50%; background: var(--e-green); color: var(--e-blue); font-size: .73rem; font-weight: 800; }
.e_maintenance-options article p { margin: .65rem 0 0; color: #62667a; font-size: .91rem !important; }
.e_maintenance-charges-heading { margin-top: clamp(3rem, 6vw, 5rem); }
.e_maintenance-charges-heading h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
.e_maintenance-table-wrap { margin: 1.5rem 0; overflow-x: auto; border: 1px solid var(--e-border); border-radius: 18px; }
.e_maintenance-table-wrap .table { min-width: 720px; margin: 0; }
.e_maintenance-table-wrap .table th { padding: 1rem; background: var(--e-blue); color: #fff; vertical-align: middle; }
.e_maintenance-table-wrap .table td { padding: .9rem 1rem; border-color: var(--e-border); vertical-align: middle; }
.e_maintenance-table-wrap .table td.e_heading2 { padding: .75rem 1rem; background: #eef3e6; color: var(--e-blue); font-size: .95rem !important; font-weight: 700; }
.e_maintenance-price { display: inline-block; padding: .25rem .5rem; border-radius: .45rem; background: #dce9c8; color: #243510; font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.e_maintenance-price-note { color: #62667a; font-size: .88em; white-space: nowrap; }

.e_maintenance-hero--dark { background: var(--e-blue); }
.e_maintenance-hero--dark h1 { color: #fff; }
.e_maintenance-hero--dark .e_installation-kicker { color: var(--e-green); }
.e_maintenance-hero--dark .e_maintenance-hero__copy > p { color: rgba(255,255,255,.76); }
.e_maintenance-hero--dark .e_maintenance-hero__visual { background: #202544; }
.e_maintenance-network__lines { fill: none; stroke: rgba(220,233,200,.42); stroke-width: 4; }
.e_maintenance-network__nodes { fill: #dce9c8; stroke: #202544; stroke-width: 7; }
.e_maintenance-network__tools { fill: none; stroke: #171a36; stroke-width: 5; stroke-linecap: round; }
.e_maintenance-privacy { display: flex; gap: .55rem 1.5rem; margin-top: 1.25rem; padding: 1.25rem 1.4rem; border-left: 4px solid #7da842; border-radius: 0 12px 12px 0; background: #f4f7f1; }
.e_maintenance-privacy strong { flex: 0 0 auto; color: var(--e-blue); }
.e_maintenance-privacy span { color: #5d6275; }
.e_label-drawing__panel { fill: #fff; stroke: #171a36; stroke-width: 4; }
.e_label-drawing__panel circle { fill: #dce9c8; }
.e_label-drawing__text { fill: none; stroke: #7da842; stroke-width: 5; stroke-linecap: round; }

@media (max-width: 1100px) {
    .e_maintenance-hero { grid-template-columns: 1fr; }
    .e_maintenance-hero__visual { min-height: 330px; max-height: 360px; order: -1; }
    .e_maintenance-hero__visual svg { width: min(70%, 430px); max-height: 320px; }
}

@media (max-width: 767px) {
    .e_maintenance-hero { border-radius: 18px; }
    .e_maintenance-hero__copy { padding: 1.5rem; }
    .e_maintenance-hero__visual { min-height: 240px; max-height: 240px; }
    .e_maintenance-hero__visual svg { width: min(80%, 320px); max-height: 220px; }
    .e_maintenance-options { grid-template-columns: 1fr; }
    .e_maintenance-privacy { align-items: flex-start; flex-direction: column; }
}

.form-control, .form-select {
    min-height: 48px;
    border-color: var(--e-border);
    border-radius: .75rem;
    padding: .7rem .9rem;
}

.card {
    border: 1px solid var(--e-border);
    border-radius: var(--e-radius);
    box-shadow: 0 10px 35px rgba(23, 26, 54, .06);
}

.e_site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #212445;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color .25s ease, box-shadow .25s ease;
}
.e_site-header.e_scrolled { background: #212445 !important; box-shadow: 0 10px 30px rgba(0,0,0,.16); backdrop-filter: none; }
.e_site-header .navbar { min-height: 96px; padding-block: .8rem; }
.e_site-header .navbar-brand img { width: clamp(180px, 20vw, 270px); max-height: 58px; }
.e_site-header .nav-link {
    color: rgba(255,255,255,.88) !important;
    font-size: 1rem !important;
    font-weight: 500;
    white-space: nowrap;
}
.e_site-header .nav-link:hover { color: #fff !important; }
.e_site-header .navbar-toggler { border: 1px solid rgba(255,255,255,.3); border-radius: .75rem; padding: .55rem .7rem; }

.e_non-homepage-banner-overlay { height: 100%; background: #212445; }
.e_page-shell { padding-top: 1.5rem; }
.e_page-content { margin-block: 1rem 3.5rem; min-height: 30vh; }

.dropdown-menu {
    border: 1px solid var(--e-border);
    border-radius: 1rem;
    box-shadow: var(--e-shadow);
}
.dropdown-item { border-radius: .55rem; }
.dropdown-item:hover, .dropdown-item:focus { background: var(--e-mint); color: var(--e-blue); }

.e_desktop-hero-copy { position: absolute; inset: 270px 0 auto; z-index: 1; }
.e_desktop-hero-copy .lead { font-size: clamp(1.05rem, 1.6vw, 1.35rem) !important; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.e_bigbold_message { color: #fff; font-size: clamp(3rem, 6vw, 6rem); font-weight: 500; line-height: .98; text-wrap: balance; text-shadow: 0 3px 30px rgba(0,0,0,.32); }
.e_homepage-banner-overlay::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,15,39,.62), rgba(12,15,39,.18), rgba(12,15,39,.45)); pointer-events: none; }
.e_homepage-banner-overlay video { width: 100%; height: 100%; object-fit: cover; }

.e_mobile-hero {
    position: relative;
    min-height: 660px;
    margin: -2.5rem calc(50% - 50vw) 3rem;
    padding: 8rem 1.25rem 3rem;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: linear-gradient(180deg, rgba(23,26,54,.15), rgba(23,26,54,.92)), url('../images/homepage/KitsBannerH500.jpg') center/cover;
}
.e_mobile-hero__content { width: min(100%, 680px); margin-inline: auto; }
.e_mobile-hero h1 { color: #fff; font-size: clamp(2.75rem, 12vw, 4.5rem); line-height: .98; text-wrap: balance; }
.e_mobile-hero p { font-size: 1.1rem !important; max-width: 38rem; }
.e_eyebrow { display: inline-block; margin-bottom: .8rem; color: var(--e-blue); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.e_eyebrow--light { color: var(--e-green); }

.e_vertical_spacing { margin-top: clamp(3.5rem, 8vw, 8rem); padding: 0; background: transparent; }
.e_kits-feature a { display: block; color: var(--e-blue); }
.e_kits-feature h2 { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.e_kits-feature img { height: clamp(280px, 45vw, 560px); border-radius: var(--e-radius) !important; box-shadow: var(--e-shadow); transition: transform .35s ease; }
.e_kits-feature a:hover img { transform: scale(1.008); }

.e_home-features > a { display: block; color: inherit; margin-bottom: clamp(4rem, 8vw, 8rem); }
.e_home-features > a:hover h2 { color: #3c4c24; }
.e_home-features .container { padding: clamp(1.25rem, 4vw, 4rem); border-radius: var(--e-radius); }
.e_home-features .row { --bs-gutter-x: clamp(1.5rem, 5vw, 5rem); }
.e_home-features img { width: 100%; min-height: 360px; max-height: 620px; object-fit: cover; border-radius: var(--e-radius) !important; }
.e_advert h2, .e_advert h2 a { color: var(--e-blue); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 600; line-height: 1.08; text-wrap: balance; }
.e_advert p { color: var(--e-muted); font-size: clamp(1rem, 1.4vw, 1.18rem) !important; line-height: 1.7; }

.e_footer-wrap { width: 100vw; margin-left: calc(50% - 50vw); padding: 0; background: #212445; color: rgba(255,255,255,.72); }
.e_site-footer { width: min(100% - 2rem, 1450px); margin: 0 auto; padding: clamp(3rem, 7vw, 6rem) 0 2rem; border: 0; }
/* Keep both banner surfaces identical, including the header's overlay layer. */
#divSticky.e_site-header,
#divSticky.e_site-header.e_scrolled,
#divSticky .e_non-homepage-banner-overlay,
.e_footer-wrap,
.e_footer-wrap .e_site-footer {
    background: #212445 !important;
    opacity: 1;
}
.e_site-footer h5 { color: #fff; font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; }
.e_site-footer p, .e_site-footer li { color: rgba(255,255,255,.68); font-size: .95rem !important; }
.e_site-footer a { color: rgba(255,255,255,.78); }
.e_site-footer a:hover { color: #fff; }
.e_site-footer li { margin-bottom: .45rem; }
.e_back-to-top { font-size: .9rem; }
.e_footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .85rem; }

@media (max-width: 991.98px) {
    .e_site-header { background: #212445; }
    .e_site-header .navbar { min-height: 76px; }
    .e_site-header .navbar-collapse { max-height: calc(100vh - 76px); overflow-y: auto; padding: 1rem 0 1.5rem !important; background: transparent; }
    .e_site-header .navbar-nav { gap: .15rem; }
    .e_site-header .nav-link { margin: 0; padding: .8rem .4rem; font-size: 1.08rem !important; }
    .e_site-header .dropdown-menu { position: static !important; width: auto; height: auto; margin: 0 0 .5rem; padding: .5rem; box-shadow: none; }
    .e_site-header .dropdown-item { margin: 0; padding: .65rem .8rem; font-size: 1rem !important; white-space: normal; }
    .e_site-header .d-flex .navbar-nav { flex-direction: row; flex-wrap: wrap; }
    .e_page-shell { padding-top: 1rem; }
}

@media (max-width: 767.98px) {
    .container { width: min(100% - 1.5rem, 1450px); }
    .e_page-content { margin-top: 0; }
    .e_vertical_spacing { margin-top: 4rem; }
    .e_home-features .container { width: 100%; }
    .e_home-features img { min-height: 260px; }
    .e_advert { padding-block: 1rem; }
    .toast { max-width: calc(100vw - 2rem); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Refined primary navigation */
.e_primary-nav .navbar-brand {
    margin-right: clamp(1.25rem, 3vw, 3.5rem);
    padding: .35rem 0;
}

.e_primary-nav .navbar-nav {
    align-items: center;
    gap: .4rem;
}

.e_primary-nav .nav-link {
    margin: 0 !important;
    padding: .65rem .8rem !important;
    border-radius: .65rem;
    line-height: 1.2;
    text-decoration: none !important;
    text-underline-offset: initial !important;
}

.e_primary-nav .e_nav-menu-trigger {
    border: 0;
    background: transparent;
    font-family: inherit;
}

.e_primary-nav .nav-item:hover > .nav-link,
.e_primary-nav .nav-link:focus-visible,
.e_primary-nav .dropdown-toggle.show {
    color: #fff !important;
    background: rgba(255, 255, 255, .1);
}

.e_primary-nav .dropdown-toggle::after {
    width: .38rem;
    height: .38rem;
    margin: -.2rem 0 0 .55rem;
    border: 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    opacity: .65;
    transform: rotate(45deg);
    transition: transform .15s ease;
    vertical-align: middle;
}

.e_primary-nav .dropdown-toggle.show::after {
    margin-top: .18rem;
    transform: rotate(225deg);
}

.e_primary-nav .e_menuitems {
    width: min(340px, calc(100vw - 2rem));
    height: auto;
    margin-top: 0;
    padding: .65rem;
    border: 1px solid rgba(23, 26, 54, .1);
    border-radius: .9rem;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 20px 55px rgba(12, 15, 39, .2);
    backdrop-filter: blur(14px);
}

@media (min-width: 992px) {
    .e_primary-nav .nav-item.dropdown {
        /* Extend the hoverable area down to the flyout without changing layout. */
        padding-bottom: .65rem;
        margin-bottom: -.65rem;
    }

    .e_primary-nav .e_menuitems::before {
        content: '';
        position: absolute;
        right: 0;
        bottom: 100%;
        left: 0;
        height: .8rem;
    }

    .e_primary-nav .nav-item.dropdown:hover > .dropdown-menu,
    .e_primary-nav .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block;
    }
}

.e_primary-nav .e_menuitems > .row {
    --bs-gutter-x: 0;
    margin: 0;
}

.e_primary-nav .e_menuitems > .row > div:first-child {
    width: 100%;
    padding: 0;
}

.e_primary-nav .e_menuitems > .row > div:empty,
.e_primary-nav .e_menuitems > .row > div:last-child:not(:first-child) {
    display: none !important;
}

.e_primary-nav .e_menuitems ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.e_primary-nav .e_menuitems li {
    margin: 0;
}

.e_primary-nav .e_menuitems li:has(> hr) {
    display: none;
}

.e_primary-nav .dropdown-item {
    display: flex;
    align-items: center;
    min-height: 42px;
    margin: 0 !important;
    padding: .65rem .75rem;
    border-radius: .55rem;
    color: var(--e-blue);
    font-size: .95rem !important;
    font-weight: 520;
    line-height: 1.25;
    text-decoration: none !important;
}

.e_primary-nav .dropdown-item:hover,
.e_primary-nav .dropdown-item:focus {
    background: var(--e-mint);
    color: var(--e-blue);
    transform: translateX(2px);
}

.e_primary-nav .dropdown-item .bi {
    width: 1.75rem;
    margin-right: .35rem;
    font-size: 1.1rem !important;
}

.e_primary-nav .e_menuitems--products {
    width: min(560px, calc(100vw - 2rem));
}

.e_primary-nav .e_menuitems--products ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .15rem .4rem;
}

.e_primary-nav .e_menuitems--products li:first-child {
    grid-column: 1 / -1;
    margin-bottom: .25rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--e-border);
}

.e_primary-nav .e_nav-cta {
    margin-left: .4rem !important;
    padding: .7rem 1.05rem !important;
    border: 1px solid rgba(255, 255, 255, .2);
    background: var(--e-green);
    color: var(--e-blue) !important;
    font-weight: 650;
}

.e_primary-nav .e_nav-cta:hover,
.e_primary-nav .e_nav-cta:focus-visible {
    background: #edf5df;
    color: var(--e-blue) !important;
    transform: translateY(-1px);
}

.e_primary-nav .e_nav-actions {
    margin-left: .75rem;
    padding-left: .75rem;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.e_primary-nav .e_nav-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0 !important;
    place-items: center;
    border-radius: 50%;
}

.e_primary-nav .e_nav-icon .bi {
    font-size: 1.2rem !important;
}

.e_primary-nav .e_nav-account {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .e_primary-nav .navbar-brand { margin-right: .8rem; }
    .e_primary-nav .navbar-brand img { width: 190px; }
    .e_primary-nav .nav-link { padding-inline: .55rem !important; }
    .e_primary-nav .e_nav-actions { margin-left: .35rem; padding-left: .35rem; }
}

@media (max-width: 991.98px) {
    .e_primary-nav .navbar-brand img { width: min(220px, 62vw); }
    .e_primary-nav .navbar-toggler { box-shadow: none !important; }
    .e_primary-nav .navbar-collapse {
        margin-top: .75rem;
        padding: .75rem !important;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 1rem;
        background: rgba(255, 255, 255, .06);
    }
    .e_primary-nav .navbar-nav { align-items: stretch; gap: .2rem; }
    .e_primary-nav .nav-link { padding: .8rem .9rem !important; }
    .e_primary-nav .e_menuitems,
    .e_primary-nav .e_menuitems--products {
        width: 100%;
        margin: .2rem 0 .55rem;
        border-radius: .75rem;
        box-shadow: none;
    }
    .e_primary-nav .navbar-nav .nav-item:hover > .dropdown-menu:not(.show) {
        display: none;
    }
    .e_primary-nav .e_menuitems--products ul { grid-template-columns: 1fr; }
    .e_primary-nav .e_nav-cta { margin: .35rem 0 0 !important; text-align: center; }
    .e_primary-nav .e_nav-actions {
        margin: .6rem 0 0;
        padding: .65rem 0 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
        border-left: 0;
    }
    .e_primary-nav .e_nav-actions .navbar-nav {
        flex-direction: row;
        align-items: center;
    }
}

/* Shared public-page layouts */
.e_public-page {
    padding-top: clamp(1.5rem, 4vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.e_public-page .e_heading1,
.e_public-page .e_heading1 > span {
    color: var(--e-blue);
    font-size: clamp(1.8rem, 3vw, 2.75rem) !important;
    font-weight: 650;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.e_public-page .e_heading2,
.e_public-page .e_heading2 > span {
    margin-top: 1.8rem;
    color: var(--e-blue);
    font-size: 1.2rem !important;
    font-weight: 650;
    letter-spacing: -.015em;
}

.e_split-page > .row,
.e_catalogue-page > .row {
    --bs-gutter-x: clamp(1.5rem, 4vw, 4rem);
}

.e_page-sidebar,
.e_catalogue-sidebar {
    align-self: flex-start;
    padding: 1.25rem;
    border: 1px solid var(--e-border);
    border-radius: 1rem;
    background: var(--e-surface);
}

.e_page-sidebar .e_explanation-text-below-heading {
    margin-top: .75rem;
    color: var(--e-muted);
    line-height: 1.55;
}

.e_page-sidebar select,
.e_catalogue-sidebar select {
    width: 100% !important;
    min-height: 46px;
    padding: .6rem 2.25rem .6rem .75rem;
    border: 1px solid var(--e-border);
    border-radius: .65rem;
    background-color: #fff;
}

.e_page-main {
    padding-top: .2rem;
}

.e_prose {
    color: #343844;
    font-size: 1.02rem;
    line-height: 1.75;
}

.e_prose > div[style*="margin-left"] {
    margin-left: 0 !important;
}

.e_prose p {
    max-width: 78ch;
}

.e_public-page .table {
    margin-block: 1.5rem;
    border: 1px solid var(--e-border);
    border-radius: .85rem;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(23, 26, 54, .05);
}

.e_public-page .table thead th {
    padding: .9rem;
    border-bottom: 0;
    background: var(--e-blue);
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    vertical-align: middle;
}

.e_public-page .table td {
    padding: .85rem .9rem;
    border-color: var(--e-border);
    vertical-align: middle;
}

.e_public-page .table tbody tr:nth-child(even) td {
    background: rgba(240, 245, 232, .48);
}

.e_public-page .table td.e_heading2 {
    margin: 0;
    background: #e9eee2 !important;
    font-size: .95rem !important;
}

/* Information, technical and PDF pages */
.e_split-page .e_page-main .card {
    height: 100%;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.e_split-page .e_page-main a:hover .card {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(23, 26, 54, .12);
}

.e_split-page .e_page-main .card-body {
    padding: 1.15rem;
}

.e_split-page .e_page-main img {
    max-width: 100%;
    object-fit: contain;
}

.e_split-page .e_page-main table:not(.table) {
    width: 100%;
}

.e_split-page .e_page-main table:not(.table) td {
    padding-bottom: 1.1rem;
}

/* Product catalogue */
.e_catalogue-page {
    position: relative;
    background: #fff;
}

.e_catalogue-sidebar {
    position: sticky;
    top: 118px;
}

.e_catalogue-sidebar hr {
    border-color: var(--e-border);
}

.e_catalogue-sidebar .e_panelbuttons,
.e_catalogue-sidebar .e_panelbuttons_all {
    min-height: 34px;
    border-color: var(--e-border) !important;
    border-radius: .4rem !important;
    background: #fff;
    color: var(--e-blue) !important;
}

.e_catalogue-sidebar .e_panelbuttons:hover,
.e_catalogue-sidebar .e_panelbuttons_all:hover {
    border-color: var(--e-blue) !important;
    background: var(--e-blue) !important;
}

.e_catalogue-results {
    padding: 0 !important;
}

.e_catalogue-results .row {
    --bs-gutter-x: 1.25rem;
}

.e_catalogue-results .card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--e-border);
    box-shadow: 0 8px 28px rgba(23, 26, 54, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.e_catalogue-results .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 42px rgba(23, 26, 54, .13);
}

.e_catalogue-results .card-img-top {
    width: 100%;
    height: 220px;
    padding: 1.25rem;
    object-fit: contain;
    background: #fafbf8;
}

.e_catalogue-results .card-body {
    display: flex;
    min-height: 190px;
    padding: 1.15rem;
    flex-direction: column;
    gap: .35rem;
}

.e_catalogue-results .card-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
}

.e_catalogue-results .card-subtitle {
    color: var(--e-muted);
    font-size: .82rem;
    letter-spacing: .035em;
}

.e_catalogue-results .card-body > a:last-child {
    align-self: flex-start;
    margin-top: auto;
    font-weight: 650;
}

/* Contact page */
.e_contact-page {
    margin-inline: calc(50% - 50vw);
    background: linear-gradient(145deg, var(--e-surface), #fff 60%);
}

.e_contact-shell {
    width: min(100% - 2rem, 760px);
}

.e_contact-card {
    border: 0;
    border-radius: 1.25rem;
    box-shadow: 0 24px 70px rgba(23, 26, 54, .12);
}

.e_contact-card .card-header {
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 5vw, 3rem) .5rem;
    border: 0;
    background: transparent;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.e_contact-card .card-body {
    padding: 1rem clamp(1.5rem, 5vw, 3rem) clamp(1.75rem, 5vw, 3rem);
}

.e_contact-intro {
    margin-bottom: 1.75rem;
    color: var(--e-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.e_contact-card label {
    margin-bottom: .35rem;
    color: var(--e-blue);
    font-size: .88rem;
    font-weight: 650;
}

.e_contact-card textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Search */
.e_search-page {
    width: min(100% - 2rem, 820px);
    padding-bottom: 1.5rem;
}

.e_search-page .input-group {
    padding: .45rem;
    border: 1px solid var(--e-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 16px 45px rgba(23, 26, 54, .09);
}

.e_search-page .form-control {
    border: 0;
    box-shadow: none;
}

.e_search-page .input-group-text {
    width: 48px;
    border: 0;
    border-radius: .7rem !important;
    background: var(--e-blue);
    color: #fff;
    place-content: center;
}

.e_search-results {
    width: min(100% - 2rem, 1040px);
    padding-bottom: 4rem;
}

.e_search-results .search-sections {
    gap: .85rem;
}

.e_search-results .search-section {
    border-color: var(--e-border);
    border-radius: .9rem;
    background: #fff;
    box-shadow: 0 8px 28px rgba(23, 26, 54, .05);
}

.e_search-results .search-section-heading {
    padding: 1rem 1.15rem;
    background: var(--e-surface);
    color: var(--e-blue);
}

/* Jobs and interactive builders */
.e_jobs-page {
    width: min(100% - 2rem, 960px);
}

.e_jobs-page > h1 {
    margin-bottom: 2rem;
}

.e_job-card .card-body {
    padding: clamp(1.35rem, 4vw, 2.5rem);
}

.e_job-card .card-title {
    font-size: 1.45rem;
}

.e_builder-page {
    width: min(100% - 2rem, 1450px);
}

/* Interactive fault-finding guide */
.e_fault-guide { width: min(100% - 2rem, 1320px); }
.e_fault-guide__intro { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.e_fault-guide__intro h1 { margin: .25rem 0 .65rem; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: .98; }
.e_fault-guide__intro p { max-width: 44rem; margin: 0; color: #5d6275; font-size: 1.08rem !important; }
.e_fault-guide__eyebrow { display: block; color: #637c3e; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.e_fault-guide__phone { display: flex; flex: 0 0 auto; min-width: 210px; padding: .85rem 1rem; align-items: center; gap: .8rem; border: 1px solid var(--e-border); border-radius: 14px; background: #fff; color: var(--e-blue); box-shadow: 0 8px 25px rgba(23,26,54,.055); }
.e_fault-guide__phone > i { display: grid; width: 2.45rem; height: 2.45rem; place-items: center; border-radius: 50%; background: var(--e-green); }
.e_fault-guide__phone span { font-size: .76rem; font-weight: 650; line-height: 1.25; }
.e_fault-guide__phone small { display: block; margin-top: .15rem; font-size: .94rem; }
.e_fault-guide__workspace { display: grid; grid-template-columns: minmax(245px, .32fr) minmax(0, 1fr); gap: 1.25rem; align-items: start; }
.e_fault-guide__sidebar { position: sticky; top: 112px; padding: 1.6rem; border: 1px solid var(--e-border); border-radius: 20px; background: #f4f7f1; }
.e_fault-guide__sidebar-icon { display: grid; width: 3.4rem; height: 3.4rem; margin-bottom: 1.35rem; place-items: center; border-radius: 15px; background: var(--e-blue); color: #fff; }
.e_fault-guide__sidebar-icon .bi { font-size: 1.45rem !important; }
.e_fault-guide__sidebar h2 { margin: 0 0 .65rem; font-size: 1.4rem; }
.e_fault-guide__sidebar > p { margin: 0; color: #606578; font-size: .92rem !important; line-height: 1.55; }
.e_fault-guide__stages { margin: 1.5rem 0; padding: 0; list-style: none; counter-reset: fault-stage; }
.e_fault-guide__stages li { position: relative; min-height: 2.4rem; padding: .25rem 0 .8rem 2.7rem; color: #555b6e; font-size: .85rem; counter-increment: fault-stage; }
.e_fault-guide__stages li::before { content: counter(fault-stage); position: absolute; left: 0; top: 0; display: grid; width: 1.85rem; height: 1.85rem; place-items: center; border: 1px solid #cbd7b8; border-radius: 50%; background: #fff; color: var(--e-blue); font-size: .7rem; font-weight: 800; }
.e_fault-guide__stages li:not(:last-child)::after { content: ''; position: absolute; top: 1.85rem; bottom: 0; left: .9rem; width: 1px; background: #cbd7b8; }
.e_fault-guide__safety { display: flex; gap: .7rem; padding-top: 1.15rem; border-top: 1px solid #d6dfc8; color: #5c6172; font-size: .76rem; line-height: 1.4; }
.e_fault-guide__safety > i { color: #7a5b16; }
.e_fault-guide__safety strong { display: block; color: var(--e-blue); font-size: .8rem; }
.e_fault-guide__panel { min-height: 600px; padding: clamp(1.5rem, 4vw, 3.25rem); border: 1px solid var(--e-border); border-radius: 22px; background: #fff; box-shadow: 0 18px 55px rgba(23,26,54,.07); }
.e_fault-guide__question-row { display: flex; align-items: start; justify-content: space-between; gap: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--e-border); }
.e_fault-guide__question { display: block; margin-top: .4rem; color: var(--e-blue); font-size: clamp(1.65rem, 3vw, 2.65rem); font-weight: 650; letter-spacing: -.025em; line-height: 1.08; }
.e_fault-guide__navigation a,
.e_fault-guide__navigation span { display: inline-flex; min-height: 40px; padding: .45rem .8rem; align-items: center; gap: .4rem; border: 1px solid var(--e-border); border-radius: 999px; color: var(--e-blue); font-size: .84rem; font-weight: 650; white-space: nowrap; }
.e_fault-guide__navigation span { border-color: transparent; background: #f4f7f1; color: #65704f; }
.e_fault-guide__breadcrumb { margin-top: 1rem; color: #6b7080; font-size: .78rem; line-height: 1.7; }
.e_fault-guide__breadcrumb span > span { display: inline-block; margin: .15rem; padding: .2rem .55rem; border-radius: 999px; background: #f1f3ed; color: #4d5266; }
.e_fault-guide__breadcrumb .e_fault-guide__separator { color: #9aa08f; }
.e_fault-guide__choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; margin-top: 1.5rem; }
.e_fault-guide__choice { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; min-height: 104px; padding: 1.1rem; align-items: center; gap: 1rem; border: 1px solid var(--e-border); border-radius: 16px; background: #fff; color: var(--e-blue); text-align: left; box-shadow: 0 7px 22px rgba(23,26,54,.035); transition: border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.e_fault-guide__choice:hover { transform: translateY(-2px); border-color: #91a871; background: #f8faf5; box-shadow: 0 12px 30px rgba(23,26,54,.08); }
.e_fault-guide__choice-icon { display: grid; width: 2.45rem; height: 2.45rem; place-items: center; border-radius: 12px; background: #eef3e6; }
.e_fault-guide__choice-icon .bi { font-size: .95rem !important; }
.e_fault-guide__choice-copy { min-width: 0; }
.e_fault-guide__choice-copy strong { display: block; font-size: 1rem; line-height: 1.3; }
.e_fault-guide__choice-copy small { display: block; margin-top: .35rem; color: #666b7c; font-size: .78rem; line-height: 1.45; }
.e_fault-guide__choice-copy small:empty { display: none; }
.e_fault-guide__choice-arrow { color: #84936d; transition: transform .2s ease; }
.e_fault-guide__choice:hover .e_fault-guide__choice-arrow { transform: translateX(4px); }
.e_fault-guide__document { margin-top: 1.5rem; }
.e_fault-guide__document-heading { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: 16px; background: #eef3e6; }
.e_fault-guide__document-icon { display: grid; width: 3rem; height: 3rem; place-items: center; border-radius: 50%; background: var(--e-blue); color: #fff; }
.e_fault-guide__document-icon .bi { font-size: 1.35rem !important; }
.e_fault-guide__document-title { display: block; margin-top: .2rem; color: var(--e-blue); font-size: 1.35rem; font-weight: 700; }
.e_fault-guide__document-body { padding: clamp(1.25rem, 3vw, 2.25rem) .25rem; color: #4f5466; }
.e_fault-guide__document-body h1 { margin: 1.25rem 0 .6rem; font-size: 1.35rem; }
.e_fault-guide__document-body p,
.e_fault-guide__document-body li { font-size: .96rem !important; line-height: 1.65; }
.e_fault-guide__document-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; padding-top: 1.25rem; border-top: 1px solid var(--e-border); }

@media (max-width: 900px) {
    .e_fault-guide__workspace { grid-template-columns: 1fr; }
    .e_fault-guide__sidebar { position: static; }
    .e_fault-guide__stages { display: none; }
}

@media (max-width: 650px) {
    .e_fault-guide__intro { align-items: flex-start; flex-direction: column; }
    .e_fault-guide__phone { width: 100%; }
    .e_fault-guide__panel { min-height: 0; padding: 1.15rem; border-radius: 17px; }
    .e_fault-guide__question-row { flex-direction: column-reverse; gap: .8rem; }
    .e_fault-guide__choices { grid-template-columns: 1fr; }
    .e_fault-guide__choice { min-height: 88px; }
}

@media (max-width: 767.98px) {
    .e_public-page { padding-top: 1.25rem; }
    .e_split-page > .row,
    .e_catalogue-page > .row { --bs-gutter-y: 1.25rem; }
    .e_page-sidebar,
    .e_catalogue-sidebar {
        position: static;
        padding: 1rem;
    }
    .e_page-sidebar .e_heading1,
    .e_catalogue-sidebar .e_heading1 { margin-bottom: .8rem; }
    .e_page-main { padding-top: 0; }
    .e_prose { font-size: 1rem; }
    .e_public-page .table {
        display: block;
        overflow-x: auto;
        white-space: normal;
    }
    .e_catalogue-results .card-img-top { height: 190px; }
    .e_contact-page { margin-top: -1rem; }
}

/* Header account and basket controls */
.e_primary-nav .e_nav-actions {
    margin-left: .8rem;
    padding: .3rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
}

.e_primary-nav .e_utility-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .15rem;
}

.e_primary-nav .e_utility-button {
    display: inline-flex;
    min-height: 42px;
    margin: 0 !important;
    padding: .55rem .75rem !important;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, .9) !important;
    font-size: .9rem !important;
    font-weight: 560;
}

.e_primary-nav .e_utility-button:hover,
.e_primary-nav .e_utility-button:focus-visible {
    background: rgba(255, 255, 255, .12);
    color: #fff !important;
}

.e_primary-nav .e_utility-button .bi {
    flex: 0 0 auto;
    font-size: 1.15rem !important;
}

.e_primary-nav .e_utility-label {
    max-width: 115px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.e_primary-nav .e_account-discount {
    padding: .22rem .46rem;
    border: 1px solid rgba(156, 222, 181, .45);
    border-radius: 999px;
    background: rgba(82, 180, 118, .2);
    color: #d9f7e4;
    font-size: .68rem;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
}

.e_primary-nav .e_cart-button {
    position: relative;
    padding-right: .65rem !important;
}

.e_primary-nav .e_cart-summary {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.e_primary-nav .e_cart-total:empty,
.e_primary-nav .e_cart-count:empty {
    display: none;
}

.e_primary-nav .e_cart-total:not(:empty) {
    color: rgba(255, 255, 255, .72);
    font-size: .76rem;
}

.e_primary-nav .e_cart-count:not(:empty) {
    display: inline-grid;
    min-width: 24px;
    height: 24px;
    padding-inline: .4rem;
    place-items: center;
    border: 2px solid var(--e-blue);
    border-radius: 999px;
    background: var(--e-green);
    color: var(--e-blue);
    font-size: .75rem;
    font-weight: 750;
    line-height: 1;
}

.e_primary-nav .e_trolley_dropdown {
    right: 0 !important;
    left: auto !important;
    width: min(390px, calc(100vw - 2rem));
    height: auto;
    margin-top: .65rem !important;
    padding: 1rem !important;
    border: 1px solid var(--e-border);
    border-radius: 1rem;
    background: #fff !important;
    color: var(--e-ink);
    box-shadow: 0 22px 60px rgba(12, 15, 39, .22);
    transform: none !important;
    box-sizing: border-box;
    overflow: hidden;
}

@media (min-width: 992px) {
    .e_primary-nav .e_cart-nav-item .e_trolley_dropdown {
        top: calc(100% - .35rem);
        right: 0 !important;
        left: auto !important;
        margin-top: 0 !important;
        transform: none !important;
    }
}

.e_primary-nav .e_trolley-actions {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin: .75rem -1rem -1rem;
    padding: .85rem 1rem .75rem;
    border-top: 1px solid var(--e-border);
    background: #f8f9f6;
}

.e_primary-nav .e_trolley-action,
.e_primary-nav .e_trolley-empty-action {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: .65rem .75rem;
    border-radius: .7rem;
    font-weight: 650;
    line-height: 1.2;
    white-space: normal;
}

.e_primary-nav .e_trolley-actions .btn-primary {
    border-color: var(--e-blue);
    background: var(--e-blue);
    color: #fff;
    box-shadow: 0 7px 18px rgba(23, 26, 54, .16);
}

.e_primary-nav .e_trolley-actions .btn-primary:hover,
.e_primary-nav .e_trolley-actions .btn-primary:focus-visible {
    border-color: #292e5a;
    background: #292e5a;
    transform: translateY(-1px);
    box-shadow: 0 9px 22px rgba(23, 26, 54, .22);
}

.e_primary-nav .e_trolley-actions .e_trolley-continue {
    min-height: 36px;
    padding: .4rem .65rem;
    color: var(--e-muted);
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
}

.e_primary-nav .e_trolley-actions .e_trolley-continue:hover,
.e_primary-nav .e_trolley-actions .e_trolley-continue:focus-visible {
    color: var(--e-blue);
    text-decoration: underline;
    text-underline-offset: .2rem;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .e_primary-nav .e_nav-actions { margin-left: .35rem; }
    .e_primary-nav .e_utility-button { width: 40px; height: 40px; padding: 0 !important; }
    .e_primary-nav .e_utility-button .e_utility-label,
    .e_primary-nav .e_utility-button .e_cart-total { display: none; }
    .e_primary-nav .e_account-discount { display: none; }
}

@media (max-width: 991.98px) {
    .e_primary-nav .e_nav-actions {
        width: 100%;
        margin: .65rem 0 0;
        padding: .45rem;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: .85rem;
    }
    .e_primary-nav .e_utility-nav {
        width: 100%;
        justify-content: space-between;
    }
    .e_primary-nav .e_utility-button {
        min-width: 44px;
        padding-inline: .7rem !important;
    }
    .e_primary-nav .e_trolley_dropdown {
        position: absolute !important;
        right: 0 !important;
        left: auto !important;
    }
}

@media (max-width: 575.98px) {
    .e_primary-nav .e_utility-label { display: none; }
    .e_primary-nav .e_account-discount { display: none; }
    .e_primary-nav .e_utility-button { width: 44px; padding: 0 !important; }
    .e_primary-nav .e_cart-total { display: none !important; }
}

/* Primary navigation trays */
.e_primary-nav .e_nav-primary-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.e_primary-nav .e_nav-primary-link > .bi {
    color: var(--e-green);
    font-size: .95rem;
    line-height: 1;
}

.e_primary-nav .e_menuitems {
    width: min(520px, calc(100vw - 2rem));
    padding: 0 14px 14px;
    overflow: hidden;
    border: 1px solid rgba(23, 26, 54, .12);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(8, 12, 35, .16);
}

.e_primary-nav .e_menuitems.show {
    display: flex !important;
    flex-direction: column;
}

.e_primary-nav .e_menuitems::after {
    display: block;
    padding: 15px 2px 11px;
    border-bottom: 1px solid #e2e7e1;
    color: #6e7b73;
    font-size: .7rem;
    font-weight: 760;
    letter-spacing: .105em;
    line-height: 1;
    text-transform: uppercase;
    content: 'Explore';
    order: -1;
}

.e_primary-nav .e_menuitems--products::after { content: 'Explore products'; }
.e_primary-nav .e_menuitems--support::after { content: 'Support and information'; }
.e_primary-nav .e_menuitems--tools::after { content: 'Planning tools and portals'; }

.e_primary-nav .e_menu-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 11px;
}

.e_primary-nav .e_menu-group {
    min-width: 0;
    padding: 8px;
    border: 1px solid #e5eae4;
    border-radius: 10px;
    background: #fbfcfa;
}

.e_primary-nav .e_menu-group--wide { grid-column: 1 / -1; }

.e_primary-nav .e_menu-group-title {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 5px;
    padding: 2px 6px 7px;
    border-bottom: 1px solid #e2e7e1;
    color: #59675f;
    font-size: .72rem;
    font-weight: 760;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.e_primary-nav .e_menu-group-title .bi {
    color: var(--e-blue);
    font-size: .9rem;
}

.e_primary-nav .e_menu-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.e_primary-nav .e_menu-inline-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
}

.e_primary-nav .e_menuitems > .row { padding-top: 9px; }
.e_primary-nav .e_menuitems .dropdown-item {
    min-height: 46px;
    padding: 10px 38px 10px 11px;
    position: relative;
    border-radius: 8px;
    font-size: .92rem !important;
    font-weight: 450;
}

.e_primary-nav .e_menuitems .dropdown-item::after {
    content: '\2192';
    position: absolute;
    right: 12px;
    color: #8a998d;
    font-size: 1rem;
    transition: color .15s ease;
}

.e_primary-nav .e_menuitems .dropdown-item:hover,
.e_primary-nav .e_menuitems .dropdown-item:focus-visible {
    background: #f0f5e9;
    color: var(--e-blue);
    transform: none;
}

.e_primary-nav .e_menuitems .dropdown-item:hover::after,
.e_primary-nav .e_menuitems .dropdown-item:focus-visible::after {
    color: var(--e-blue);
}

.e_primary-nav .e_menuitems--products { width: min(600px, calc(100vw - 2rem)); }
.e_primary-nav .e_menuitems--products ul { gap: 2px 8px; }
.e_primary-nav .e_menuitems--products li:first-child {
    margin: 0;
    padding: 0;
    border: 0;
}
.e_primary-nav .e_menuitems--products li:first-child .dropdown-item {
    background: var(--e-blue);
    color: #fff;
}
.e_primary-nav .e_menuitems--products li:first-child .dropdown-item::after { color: var(--e-green); }

@media (min-width: 992px) {
    .e_primary-nav .nav-item.dropdown:hover > .e_menuitems,
    .e_primary-nav .nav-item.dropdown:focus-within > .e_menuitems,
    .e_primary-nav .e_menuitems.show {
        display: flex !important;
        flex-direction: column;
    }
}

@media (max-width: 991.98px) {
    .e_primary-nav .e_menuitems { width: 100%; padding: 0 9px 9px; }
    .e_primary-nav .e_menuitems::after { padding: 13px 3px 10px; }
    .e_primary-nav .e_menuitems--products ul { grid-template-columns: 1fr; }
    .e_primary-nav .e_nav-primary-link { display: flex; }
    .e_primary-nav .e_menu-groups { grid-template-columns: 1fr; }
    .e_primary-nav .e_menu-group--wide { grid-column: auto; }
}

/* Authentication */
.e_auth-page {
    min-height: calc(100vh - 150px);
    margin: -1rem calc(50% - 50vw) -3.5rem;
    padding: clamp(1rem, 3vw, 2.25rem) 1rem;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 12% 15%, rgba(220, 233, 200, .8), transparent 30rem),
        linear-gradient(145deg, #f7f8f4, #fff 55%, #f0f3ec);
}

.e_auth-shell {
    width: min(100%, 900px);
}

.e_auth-card {
    overflow: hidden;
    border: 1px solid rgba(23, 26, 54, .08);
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 30px 90px rgba(23, 26, 54, .16);
}

.e_auth-layout {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(390px, 1.2fr);
}

.e_auth-aside {
    position: relative;
    min-height: auto;
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 4vw, 2.25rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--e-blue);
    color: rgba(255, 255, 255, .78);
}

.e_auth-aside::before,
.e_auth-aside::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.e_auth-aside::before {
    width: 330px;
    height: 330px;
    right: -180px;
    top: -130px;
    border: 1px solid rgba(220, 233, 200, .22);
}

.e_auth-aside::after {
    width: 190px;
    height: 190px;
    right: -80px;
    bottom: -80px;
    background: rgba(220, 233, 200, .09);
}

.e_auth-aside > * {
    position: relative;
    z-index: 1;
}

.e_auth-aside h1 {
    max-width: none;
    margin-bottom: .4rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.65rem);
    line-height: 1;
}

.e_auth-aside > p {
    max-width: 52ch;
    margin-bottom: 0;
    font-size: .96rem !important;
    line-height: 1.5;
}

.e_auth-mark {
    width: 42px;
    height: 42px;
    margin-bottom: .75rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .08);
}

.e_auth-mark .bi {
    color: var(--e-green);
    font-size: 1.3rem !important;
}

.e_auth-assurance {
    display: none;
    align-items: flex-start;
    gap: .7rem;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .65);
    font-size: .83rem;
    line-height: 1.45;
}

.e_auth-assurance .bi {
    margin-top: .1rem;
    color: var(--e-green);
}

.e_auth-back-link {
    margin-top: .75rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--e-green);
    font-weight: 650;
}

.e_auth-back-link:hover {
    color: #fff;
}

.e_auth-form {
    padding: clamp(1.35rem, 4vw, 2.1rem) clamp(1.5rem, 5vw, 2.5rem);
    align-self: center;
}

.e_auth-form-heading {
    margin-bottom: 1.15rem;
}

.e_auth-form-heading h2,
.e_auth-code-panel h2 {
    margin-bottom: .3rem;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.e_auth-form-heading p,
.e_auth-code-panel p {
    margin: 0;
    color: var(--e-muted);
}

.e_auth-form .form-label {
    margin-bottom: .4rem;
    color: var(--e-blue);
    font-size: .88rem;
    font-weight: 680;
}

.e_auth-form .form-control,
.e_auth-form .form-select {
    min-height: 46px;
    border-color: rgba(23, 26, 54, .18);
    background-color: #fff;
}

.e_auth-form .form-control:focus,
.e_auth-form .form-select:focus {
    border-color: var(--e-blue);
    box-shadow: 0 0 0 .22rem rgba(23, 26, 54, .1);
}

.e_auth-form .form-text {
    margin-top: .45rem;
    color: var(--e-muted);
}

.e_auth-inline-link {
    color: var(--e-blue);
    font-size: .84rem;
    font-weight: 650;
}

.e_auth-divider {
    margin: .85rem 0;
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--e-muted);
    font-size: .76rem;
    text-align: center;
}

.e_auth-divider::before,
.e_auth-divider::after {
    content: '';
    height: 1px;
    flex: 1;
    background: var(--e-border);
}

.e_auth-code-panel {
    padding-block: .5rem;
}

.e_auth-form .e_form-group-spacing {
    margin-bottom: .85rem;
}

.e_auth-code-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--e-mint);
    color: var(--e-blue);
}

.e_auth-code-icon .bi {
    font-size: 1.65rem !important;
}

.e_auth-code-input {
    width: min(100%, 330px) !important;
    margin-top: 1.5rem;
    font-size: clamp(2.5rem, 8vw, 4rem) !important;
    font-weight: 700;
    letter-spacing: .2em;
    font-variant-numeric: tabular-nums;
}

.e_auth-form .alert {
    border: 0;
    border-radius: .75rem;
}

@media (max-width: 767.98px) {
    .e_auth-page {
        min-height: auto;
        margin-top: -1rem;
        padding: 1rem .75rem 3rem;
        align-items: start;
    }
    .e_auth-layout { grid-template-columns: 1fr; }
    .e_auth-aside {
        min-height: auto;
        padding: 1.25rem 1.35rem;
        justify-content: flex-start;
    }
    .e_auth-aside h1 {
        max-width: none;
        margin-bottom: .75rem;
        font-size: 2.35rem;
    }
    .e_auth-aside > p { margin-bottom: 0; }
    .e_auth-mark { width: 48px; height: 48px; margin-bottom: 1.25rem; }
    .e_auth-assurance { display: none; }
    .e_auth-back-link { margin-top: 1rem; }
    .e_auth-form { padding: 1.35rem 1.25rem 1.6rem; }
    .e_auth-form-heading { margin-bottom: 1rem; }
}

/* Asynchronous page loading */
.e_loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(23, 26, 54, .24);
    backdrop-filter: blur(3px);
}

.e_loading-card {
    min-width: 190px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    border: 1px solid rgba(23, 26, 54, .1);
    border-radius: 1rem;
    background: #fff;
    color: var(--e-blue);
    box-shadow: 0 22px 65px rgba(12, 15, 39, .24);
    font-size: .95rem;
    font-weight: 650;
}

.e_loading-card .spinner-border {
    width: 1.35rem;
    height: 1.35rem;
    border-width: .16rem;
    color: var(--e-blue);
}

/* Support, installation and information pages */
body:has(.e_support-page) .e_site-header {
    background: var(--e-blue) !important;
}

/* Shared navigation used within information, maintenance and installation pages */
.e_info-page .e_info-links {
    width: 100%;
    margin-top: 18px;
    gap: 0;
    border-top: 1px solid #dce2dd;
}

.e_info-page .e_info-link {
    min-height: 48px;
    width: 100%;
    padding: 11px 4px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 0;
    border-bottom: 1px solid #dce2dd;
    background: transparent;
    color: #263b4a;
    font-size: .94rem;
    font-weight: 650;
    line-height: 1.3;
    text-align: left;
    text-decoration: none !important;
    transition: padding .18s ease, background .18s ease, color .18s ease;
}

.e_info-page .e_info-link__arrow { color: #829483; font-size: 1.05rem; transition: transform .18s ease; }
.e_info-page .e_info-link:hover,
.e_info-page .e_info-link:focus-visible { padding-left: 10px; background: #f1f5ec; color: #122d47; outline: none; }
.e_info-page .e_info-link:hover .e_info-link__arrow,
.e_info-page .e_info-link:focus-visible .e_info-link__arrow { transform: translateX(3px); }
.e_info-page .e_info-link.is-active {
    padding-left: 10px;
    border-color: #d3dfca;
    background: #e6eedc;
    color: #122d47;
    box-shadow: inset 3px 0 0 #122d47;
}

@media (min-width: 768px) {
    .e_info-page .e_support-layout-row {
        display: grid;
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
        gap: clamp(32px, 4vw, 64px);
        margin: 0;
    }
    .e_info-page .e_page-sidebar,
    .e_info-page .e_page-main { width: 100%; max-width: none; padding: 0; border: 0; background: transparent; box-shadow: none; }
}

/* Keep Maintenance and Installation identical to the information-page shell. */
.e_support-page.e_info-page .e_page-sidebar {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.e_support-page.e_info-page .e_page-sidebar .e_heading1 {
    margin: 0 0 6px;
    color: #122d47;
    font-size: 1.65rem !important;
    font-weight: 700;
    line-height: 1.15;
}

.e_support-page.e_info-page .e_page-sidebar .e_heading1 > span {
    font-size: inherit !important;
}

.e_support-page.e_info-page .e_page-sidebar .e_explanation-text-below-heading {
    margin: 0;
    color: #607482;
    font-size: .88rem !important;
    line-height: 1.5;
}

.e_support-page.e_info-page .e_page-main {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 0;
    border: 0;
}

.e_support-page {
    margin-top: -1.25rem;
    padding-top: .65rem;
}

.e_support-layout-row {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
    align-items: flex-start;
}

.e_support-page .e_page-sidebar {
    padding: 1.35rem;
    border-color: rgba(23, 26, 54, .1);
    background: linear-gradient(160deg, #f7f8f4, #f1f4ec);
    box-shadow: 0 12px 35px rgba(23, 26, 54, .06);
}

.e_support-page .e_page-sidebar .e_heading1 {
    margin-bottom: .65rem;
}

.e_support-page .e_page-sidebar .e_heading1 > span {
    display: block;
    font-size: clamp(1.65rem, 2.5vw, 2.25rem) !important;
}

.e_support-page .dxtvControl_Moderno {
    width: 100% !important;
    border: 0;
    background: transparent;
    font-family: inherit;
}

.e_support-page .dxtvControl_Moderno ul {
    margin: 0;
    padding: 0;
}

.e_support-page .dxtvControl_Moderno li {
    margin: .18rem 0;
}

.e_support-page .dxtvControl_Moderno .dxtv-nd {
    min-height: 40px;
    padding: .55rem .65rem !important;
    display: flex;
    align-items: center;
    gap: .45rem;
    border-radius: .6rem;
    color: var(--e-blue);
    font-family: inherit;
    font-size: .92rem;
    line-height: 1.25;
    transition: background-color .18s ease, color .18s ease;
}

.e_support-page .dxtvControl_Moderno .dxtv-nd:hover,
.e_support-page .dxtvControl_Moderno .dxtv-ndHov {
    background: rgba(220, 233, 200, .7) !important;
    color: var(--e-blue) !important;
}

.e_support-page .dxtvControl_Moderno .dxtv-ndSel {
    background: var(--e-blue) !important;
    color: #fff !important;
}

.e_support-page .dxtvControl_Moderno .dxtv-ndSel span {
    color: inherit !important;
}

.e_support-page .dxtvControl_Moderno .dxtv-ndChk {
    flex: 0 0 auto;
    opacity: .78;
}

.e_support-page .e_page-sidebar select {
    margin-top: .75rem;
    color: var(--e-blue);
    font-weight: 600;
}

.e_support-page .e_page-main {
    min-width: 0;
    padding-top: 0;
}

.e_support-page .e_page-main > .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.e_support-page .e_document-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1rem;
}

.e_support-page .e_document-grid > [class*="col-"] {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: 0;
    min-width: 0;
}

.e_support-page .e_page-main .card {
    border-color: rgba(23, 26, 54, .1);
    border-radius: .9rem;
    background: #fff;
    box-shadow: 0 8px 26px rgba(23, 26, 54, .07);
}

.e_support-page .e_page-main .card-body {
    min-height: 180px;
    padding: 1rem;
}

.e_support-page .e_page-main .card-body .row {
    height: 100%;
    align-items: center;
}

.e_support-page .e_page-main .card-body img {
    width: 100%;
    max-width: 120px;
    height: 135px !important;
    object-fit: contain;
}

.e_support-page .e_page-main .card-body span {
    color: var(--e-blue);
    font-weight: 600;
    line-height: 1.4;
}

.e_support-page .e_page-main .h6 {
    margin: 0 0 .6rem;
    color: var(--e-blue);
    font-size: 1.2rem;
}

.e_support-content-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--e-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 32px rgba(23, 26, 54, .055);
}

.e_support-page #ContentPlaceHolder1_gvText {
    width: 100%;
    border-collapse: separate;
}

.e_support-page #ContentPlaceHolder1_gvText > tbody > tr > td {
    padding: 0;
}

.e_support-page #ContentPlaceHolder1_gvText p:last-child {
    margin-bottom: 0;
}

.e_support-page .e_page-main p,
.e_support-page .e_page-main li {
    color: #3d414c;
    line-height: 1.72;
}

.e_support-page .e_page-main a:not(.btn) {
    color: #293963;
    font-weight: 580;
    text-decoration-color: rgba(41, 57, 99, .3);
    text-underline-offset: .18em;
}

.e_support-page .e_page-main a:not(.btn):hover {
    color: var(--e-blue);
    text-decoration: underline !important;
    text-decoration-color: currentColor;
}

.e_support-page .e_prose > div[id]:not(:empty) {
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid var(--e-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 32px rgba(23, 26, 54, .055);
}

.e_support-page .e_prose > div[id] > .e_heading1:first-child,
.e_support-page .e_prose > div[id] > p.e_heading1:first-child {
    margin-top: 0;
}

.e_support-page .e_prose .table {
    font-size: .92rem;
}

.e_support-page .e_prose .table th:first-child,
.e_support-page .e_prose .table td:first-child {
    min-width: 170px;
}

.e_contact-page.e_support-page {
    margin-top: 0;
    padding-top: 2rem;
}

.e_contact-page.e_support-page .e_contact-card .card-header {
    color: var(--e-blue);
}

@media (max-width: 767.98px) {
    .e_support-page {
        margin-top: -.75rem;
        padding-top: .4rem;
    }
    .e_support-page .e_page-sidebar {
        padding: 1rem;
        box-shadow: none;
    }
    .e_support-page .e_page-sidebar .e_heading1 > span {
        font-size: 1.7rem !important;
    }
    .e_support-page .e_page-main .card-body { min-height: 150px; }
    .e_support-page .e_document-grid { grid-template-columns: 1fr; }
    .e_support-page .e_prose > div[id]:not(:empty) {
        padding: 1.1rem;
        border-radius: .8rem;
    }
    .e_support-content-card {
        padding: 1.1rem;
        border-radius: .8rem;
    }
    .e_contact-page.e_support-page {
        margin-top: 0;
        padding-top: 1rem;
    }
}
