﻿
html, body, div, header, footer, main, section, nav, h1, h2, h3, h4, h5, h6, img, svg, p, a, hr, span, ol, ul, li, form, input, label {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 100%;
    vertical-align: baseline
}

*, *::before, *::after {
    box-sizing: border-box
}

svg:not(:root) {
    overflow: hidden
}

input {
    border-radius: 0
}

    input::placeholder {
        opacity: .5
    }

.loader {
    display: none
}

@@font-face {
    font-family: KONE;
    src: url("/fonts/KONE_Information.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@@font-face {
    font-family: INTER;
    src: url("/fonts/Inter-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@@font-face {
    font-family: INTERSEMIBOLD;
    src: url("/fonts/Inter-SemiBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

:root {
    --light-primary-white: #FFFFFF;
    --light-primary-black: #141414;
    --light-primary-kone-blue: #1450F5;
    --light-secondary-sand: #F3EEE6;
    --light-secondary-yellow: #FFE141;
    --light-secondary-light-blue: #D2F5FF;
    --light-secondary-pink: #FFCDD7;
    --light-secondary-green: #AAE1C8;
    --light-accent-accent-red: #FF5F28;
    --light-accent-accent-orange: #FFA023;
    --light-accent-accent-green: #1ED273;
    --light-accent-destructive-text: #F51414;
    --light-grayscale-100-text: var(--light-primary-black);
    --light-grayscale-150-hover: #4F4F4F;
    --light-grayscale-200-inactive: #727272;
    --light-grayscale-300-disabled: #959595;
    --light-grayscale-400-border: #D0D0D0;
    --light-grayscale-500: #E7E7E7;
    --light-grayscale-600-bg-tertiary: #F1F1F1;
    --light-grayscale-700-bg-secondary: #F8F8F8;
    --light-grayscale-800-bg-primary: var(--light-primary-white);
    --light-color-background-bg-blue: #F3F6FE;
    --light-color-background-bg-green: #E8FBF1;
    --light-color-background-bg-orange: #FFF6E9;
    --light-color-background-bg-red: #FFEFE9;
    --light-blue-d-80: #142041;
    --light-blue-d-60: #142C6E;
    --light-blue-d-40: #14389B;
    --light-blue-d-20: #1444C8;
    --light-blue-l-20: #4373F7;
    --light-blue-l-40: #7296F9;
    --light-blue-l-60: #A1B9FB;
    --light-blue-l-80: #D0DCFD;
    --light-blue-l-90: #E7EDFE;
    --light-green-d-80: #10351A;
    --light-green-d-60: #0C5621;
    --light-green-d-40: #087827;
    --light-green-d-20: #18A85C;
    --light-green-l-20: #4BDB8F;
    --light-green-l-40: #78E4AB;
    --light-green-l-60: #A5EDC7;
    --light-green-l-80: #D2F6E3;
    --light-orange-d-80: #433017;
    --light-orange-d-60: #724C1A;
    --light-orange-d-40: #A1681D;
    --light-orange-d-20: #D08420;
    --light-orange-l-20: #FFB34F;
    --light-orange-l-40: #FFC67B;
    --light-orange-l-60: #FFD9A7;
    --light-orange-l-80: #FFECD3;
    --light-red-d-80: #432318;
    --light-red-d-60: #72321C;
    --light-red-d-40: #A14120;
    --light-red-d-20: #D05024;
    --light-red-l-20: #FF7F53;
    --light-red-l-40: #FF9F7E;
    --light-red-l-60: #FFBFA9;
    --light-red-l-80: #FFDFD4
}

html {
    font-size: 1rem;
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding, 50px)
}

body {
    position: relative;
    background-color: var(--light-primary-white);
    color: var(--light-primary-black);
    font-family: INTER,Arial,"Helvetica Neue",Helvetica,sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    overflow-x: hidden
}

    body:before {
        z-index: 5000;
        position: fixed;
        width: 100%;
        padding: .625rem 0;
        bottom: 0
    }

a[name] {
    display: none
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.hidden {
    display: none
}

.display-block {
    display: block;
}

.scroll-menu {
    overflow-y: scroll;
    max-height: 125px
}

body:before {
    content: "handheld";
    display: none
}

.screen {
    display: none
}

.handheld {
    display: flex
}

@@media(min-width: 800px),print {
    body:before {
        content: "medium-screen";
        display: none
    }

    .screen {
        display: flex
    }

    .handheld {
        display: none
    }
}

@@media(min-width: 1200px),print {
    body:before {
        content: "wide-screen";
        display: none
    }

    .screen {
        display: flex
    }

    .medium-screen {
        display: flex
    }

    .handheld {
        display: none
    }
}

@@media(min-width: 1400px),print {
    body:before {
        content: "large-screen";
        display: none
    }
}

@@media(min-width: 1600px),print {
    body:before {
        content: "extra-large-screen";
        display: none
    }
}

.bg-sand {
    background-color: var(--light-secondary-sand)
}

.bg-lightblue {
    background-color: var(--light-color-background-bg-blue)
}

.bg-pink {
    background-color: var(--light-primary-white)
}

.bg-green {
    background-color: var(--light-secondary-green)
}

.bg-white {
    background-color: var(--light-primary-white)
}

.bg-koneblue {
    background-color: var(--light-primary-kone-blue)
}

a {
    color: var(--light-primary-kone-blue);
    text-decoration: underline;
    text-underline-offset: .25em;
    display: inline-block
}

    a:hover {
        color: var(--light-blue-d-20);
        text-decoration: underline
    }

p {
    margin-top: 0
}

    p:empty {
        display: none
    }

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    font-weight: 400;
    letter-spacing: -0.02em
}

h1, .h1 {
    font-size: 2.5rem;
    line-height: 3rem
}

@@media(min-width: 480px),print {
    h1, .h1 {
        font-size: clamp(2.5rem, 2.5vw + 1.75rem, 3rem);
        line-height: clamp(3rem, 2.5vw + 2.25rem, 3.5rem)
    }
}

@@media(min-width: 800px),print {
    h1, .h1 {
        font-size: clamp(3rem, 2.5vw + 1.75rem, 3.625rem);
        line-height: clamp(3.5rem, 2.5vw + 2.75rem, 4rem)
    }
}

@@media(min-width: 1200px),print {
    h1, .h1 {
        font-size: 3.625rem;
        line-height: 4rem
    }
}

h2, .h2 {
    font-size: 2rem;
    line-height: 2.5rem
}

@@media(min-width: 480px),print {
    h2, .h2 {
        font-size: clamp(2rem, 2.5vw + 1.25rem, 2.5rem);
        line-height: clamp(2.5rem, 2.5vw + 1.75rem, 3rem)
    }
}

@@media(min-width: 800px),print {
    h2, .h2 {
        font-size: clamp(2.5rem, 2vw + 1.5rem, 3rem);
        line-height: clamp(3rem, 2.5vw + 2.25rem, 3.5rem)
    }
}

@@media(min-width: 1200px),print {
    h2, .h2 {
        font-size: 3rem;
        line-height: 3.5rem
    }
}

h3, .h3 {
    font-size: 1.75rem;
    line-height: 2.5rem
}

@@media(min-width: 480px),print {
    h3, .h3 {
        font-size: clamp(1.75rem, 1.25vw + 1.375rem, 2rem);
        line-height: clamp(2.5rem, 0vw + 2.5rem, 2.5rem)
    }
}

@@media(min-width: 800px),print {
    h3, .h3 {
        font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
        line-height: clamp(2.5rem, 2.5vw + 1.75rem, 3rem)
    }
}

@@media(min-width: 1200px),print {
    h3, .h3 {
        font-size: 2.5rem;
        line-height: 3rem
    }
}

h4, .h4 {
    font-size: 1.5rem;
    line-height: 2rem
}

@@media(min-width: 480px),print {
    h4, .h4 {
        font-size: clamp(1.5rem, 1.25vw + 1.125rem, 1.75rem);
        line-height: clamp(2rem, 2.5vw + 1.25rem, 2.5rem)
    }
}

@@media(min-width: 800px),print {
    h4, .h4 {
        font-size: clamp(1.75rem, 1vw + 1.25rem, 2rem);
        line-height: clamp(2.5rem, 0vw + 2.5rem, 2.5rem)
    }
}

@@media(min-width: 1200px),print {
    h4, .h4 {
        font-size: 2rem;
        line-height: 2.5rem
    }
}

h5, .h5 {
    font-size: 1.25rem;
    line-height: 2rem
}

@@media(min-width: 480px),print {
    h5, .h5 {
        font-size: clamp(1.25rem, 1.25vw + 0.875rem, 1.5rem);
        line-height: clamp(2rem, 0vw + 2rem, 2rem)
    }
}

@@media(min-width: 800px),print {
    h5, .h5 {
        font-size: clamp(1.5rem, 1vw + 1rem, 1.75rem);
        line-height: clamp(2rem, 2.5vw + 1.25rem, 2.5rem)
    }
}

@@media(min-width: 1200px),print {
    h5, .h5 {
        font-size: 1.75rem;
        line-height: 2.5rem
    }
}

h6, .h6 {
    font-size: 1.125rem;
    line-height: 1.5rem
}

@@media(min-width: 480px),print {
    h6, .h6 {
        font-size: clamp(1.125rem, 0.625vw + 0.9375rem, 1.25rem);
        line-height: clamp(1.5rem, 2.5vw + 0.75rem, 2rem)
    }
}

@@media(min-width: 800px),print {
    h6, .h6 {
        font-size: clamp(1.25rem, 1vw + 0.75rem, 1.5rem);
        line-height: clamp(2rem, 0vw + 2rem, 2rem)
    }
}

@@media(min-width: 1200px),print {
    h6, .h6 {
        font-size: 1.5rem;
        line-height: 2rem
    }
}

.display-text {
    font-size: 4rem
}

@@media(min-width: 800px),print {
    .display-text {
        font-size: 4.5rem
    }
}

.kone-header-navigation .bilingual a {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-family: INTERSEMIBOLD,sans-serif;
    letter-spacing: normal
}

.rtf .subtitle {
    font-family: KONE,sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: .05em;
    text-transform: uppercase
}

.rtf .actions a:not(.btn), .rtf .details .table-container table thead tr th, .rtf .details .table-container table thead tr td, .rtf .details .table-container table td, .rtf .details .table-container table th, .rtf .details .table-container > *, .rtf .details {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: normal
}

.rtf .footer {
    font-size: 0.875rem;
    line-height: 1.5rem;
    letter-spacing: normal
}

ol, ul {
    list-style: none;
    padding-left: 1.5rem
}

ol, ul {
    margin-top: 0
}

    ol ol, ul ul, ol ul, ul ol {
        margin-bottom: 0
    }

blockquote {
    margin: 0 0 1rem
}

b, strong {
    font-weight: 600
}

sub, sup {
    position: relative;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

figure {
    margin: 0 0 1rem
}

img, svg {
    vertical-align: middle
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

button {
    border-radius: 0;
    background-color: rgba(0,0,0,0)
}

    button:focus:not(:focus-visible) {
        outline: 0
    }

[role=button] {
    cursor: pointer
}

button, [type=button], [type=reset], [type=submit] {
    -webkit-appearance: button
}

    button:not(:disabled), [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled) {
        cursor: pointer
    }

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

[hidden] {
    display: none !important
}

.media {
    margin-bottom: 2rem
}

.rtf .subtitle {
    margin-bottom: .75rem;
    color: var(--light-primary-kone-blue);
    text-transform: uppercase;
    font-family: KONE,sans-serif
}

.rtf h3, .rtf h4, .rtf h5, .rtf h6 {
    margin-bottom: .5rem
}

.rtf .details {
    margin-bottom: 1.5rem
}

    .rtf .details > *:not(:last-child) {
        margin-bottom: 1.2em
    }

    .rtf .details ul {
        list-style: disc
    }

    .rtf .details ol {
        list-style: decimal
    }

    .rtf .details .table-container > *:not(table):not(:last-child) {
        margin-bottom: 1rem
    }

    .rtf .details .table-container ul {
        list-style: disc
    }

    .rtf .details .table-container ol {
        list-style: decimal
    }

    .rtf .details .table-container table {
        border-collapse: collapse;
        width: 100%;
        background-color: var(--light-primary-white);
        text-align: left;
        border-top: 1px solid #000
    }

        .rtf .details .table-container table th {
            position: relative;
            font-weight: bold
        }

        .rtf .details .table-container table td {
            position: relative
        }

        .rtf .details .table-container table thead tr th, .rtf .details .table-container table thead tr td {
            vertical-align: top
        }

        .rtf .details .table-container table thead tr th, .rtf .details .table-container table thead tr td, .rtf .details .table-container table tbody tr th, .rtf .details .table-container table tbody tr td, .rtf .details .table-container table tfoot tr td, .rtf .details .table-container table tfoot tr th {
            border-right: 1px solid #000;
            border-bottom: 1px solid #000;
            background-clip: padding-box
        }

        .rtf .details .table-container table thead tr th, .rtf .details .table-container table thead tr td, .rtf .details .table-container table tbody tr th, .rtf .details .table-container table tfoot tr th {
            font-family: INTERSEMIBOLD,sans-serif
        }

        .rtf .details .table-container table thead tr {
            border-collapse: separate
        }

            .rtf .details .table-container table thead tr th, .rtf .details .table-container table thead tr td {
                padding: .75rem 1.5rem;
                text-align: left
            }

                .rtf .details .table-container table thead tr th:focus, .rtf .details .table-container table thead tr td:focus {
                    outline: none
                }

                .rtf .details .table-container table thead tr th:first-child, .rtf .details .table-container table thead tr td:first-child {
                    border-right: none;
                    z-index: 10
                }

                    .rtf .details .table-container table thead tr th:first-child::after, .rtf .details .table-container table thead tr td:first-child::after {
                        position: absolute;
                        content: "";
                        top: 0;
                        right: 0;
                        width: 1px;
                        height: 100%;
                        display: block;
                        background: #000
                    }

                    .rtf .details .table-container table thead tr th:first-child::before, .rtf .details .table-container table thead tr td:first-child::before {
                        position: absolute;
                        content: "";
                        top: 0;
                        left: 0;
                        width: 1px;
                        height: 100%;
                        display: block;
                        background: #000
                    }

        .rtf .details .table-container table tbody tr td, .rtf .details .table-container table tbody tr th, .rtf .details .table-container table tfoot tr td, .rtf .details .table-container table tfoot tr th {
            padding: .75rem 1.5rem
        }

            .rtf .details .table-container table tbody tr td:first-child, .rtf .details .table-container table tbody tr th:first-child, .rtf .details .table-container table tfoot tr td:first-child, .rtf .details .table-container table tfoot tr th:first-child {
                border-right: none;
                z-index: 10;
                font-family: INTERSEMIBOLD,sans-serif
            }

                .rtf .details .table-container table tbody tr td:first-child::after, .rtf .details .table-container table tbody tr th:first-child::after, .rtf .details .table-container table tfoot tr td:first-child::after, .rtf .details .table-container table tfoot tr th:first-child::after {
                    position: absolute;
                    content: "";
                    top: 0;
                    right: 0;
                    width: 1px;
                    height: 100%;
                    display: block;
                    background: #000
                }

                .rtf .details .table-container table tbody tr td:first-child::before, .rtf .details .table-container table tbody tr th:first-child::before, .rtf .details .table-container table tfoot tr td:first-child::before, .rtf .details .table-container table tfoot tr th:first-child::before {
                    position: absolute;
                    content: "";
                    top: 0;
                    left: 0;
                    width: 1px;
                    height: 100%;
                    display: block;
                    background: #000
                }

        .rtf .details .table-container table tbody tr:hover.row-has-link, .rtf .details .table-container table tfoot tr:hover.row-has-link {
            cursor: pointer
        }

        .rtf .details .table-container table.downloadtable {
            border-top: 1px solid #000;
            border-left: 1px solid #000
        }

            .rtf .details .table-container table.downloadtable thead tr th, .rtf .details .table-container table.downloadtable thead tr td, .rtf .details .table-container table.downloadtable tbody tr th, .rtf .details .table-container table.downloadtable tbody tr td, .rtf .details .table-container table.downloadtable tfoot tr td, .rtf .details .table-container table.downloadtable tfoot tr th {
                border-bottom: 1px solid #000;
                border-right: 1px solid #000
            }

                .rtf .details .table-container table.downloadtable thead tr th:first-child::after, .rtf .details .table-container table.downloadtable thead tr th:first-child::before, .rtf .details .table-container table.downloadtable thead tr td:first-child::after, .rtf .details .table-container table.downloadtable thead tr td:first-child::before {
                    display: none
                }

                .rtf .details .table-container table.downloadtable tbody tr td:first-child::after, .rtf .details .table-container table.downloadtable tbody tr td:first-child::before, .rtf .details .table-container table.downloadtable tbody tr th:first-child::after, .rtf .details .table-container table.downloadtable tbody tr th:first-child::before, .rtf .details .table-container table.downloadtable tfoot tr td:first-child::after, .rtf .details .table-container table.downloadtable tfoot tr td:first-child::before, .rtf .details .table-container table.downloadtable tfoot tr th:first-child::after, .rtf .details .table-container table.downloadtable tfoot tr th:first-child::before {
                    display: none
                }

        .rtf .details .table-container table.tablesorter .tablesorter-header {
            cursor: pointer
        }

            .rtf .details .table-container table.tablesorter .tablesorter-header > .tablesorter-header-inner {
                padding-right: 2rem;
                position: relative
            }

                .rtf .details .table-container table.tablesorter .tablesorter-header > .tablesorter-header-inner::after {
                    position: absolute;
                    font-family: KONE-Icon-Font;
                    font-size: 1rem;
                    right: 0;
                    top: 3px
                }

            .rtf .details .table-container table.tablesorter .tablesorter-header.tablesorter-headerUnSorted > .tablesorter-header-inner::after {
                -webkit-transform: rotate(90deg);
                -moz-transform: rotate(90deg);
                -o-transform: rotate(90deg);
                transform: rotate(90deg);
                content: ""
            }

            .rtf .details .table-container table.tablesorter .tablesorter-header.tablesorter-headerAsc > div::after {
                content: ""
            }

            .rtf .details .table-container table.tablesorter .tablesorter-header.tablesorter-headerDesc > div::after {
                content: ""
            }

@@media(min-width: 800px),print {
    .rtf .details .table-container table tbody tr td:first-child, .rtf .details .table-container table tfoot tr td:first-child {
        font-family: INTER,Arial,"Helvetica Neue",Helvetica,sans-serif
    }
}

.rtf .actions {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    margin-bottom: 1.5rem
}

    .rtf .actions * {
        align-self: flex-start
    }

.rtf > *:last-child {
    margin-bottom: 0 !important
}

@@media(min-width: 800px),print {
    .rtf h3, .rtf h4, .rtf h5, .rtf h6 {
        margin-bottom: 1rem
    }
}

.lazyload, .lazyloading {
    opacity: 0
}

.lazyloaded {
    opacity: 1;
    transition: opacity 300ms
}

.entireEleClickable h3 a, .entireEleClickable h4 a, .entireEleClickable h5 a {
    text-decoration: none;
    color: var(--light-primary-black)
}

.entireEleClickable:has(h3 a[href]), .entireEleClickable:has(h4 a[href]), .entireEleClickable:has(h5 a[href]) {
    cursor: pointer
}

    .entireEleClickable:has(h3 a[href]):hover h3 a[href], .entireEleClickable:has(h3 a[href]):hover h4 a[href], .entireEleClickable:has(h3 a[href]):hover h5 a[href], .entireEleClickable:has(h4 a[href]):hover h3 a[href], .entireEleClickable:has(h4 a[href]):hover h4 a[href], .entireEleClickable:has(h4 a[href]):hover h5 a[href], .entireEleClickable:has(h5 a[href]):hover h3 a[href], .entireEleClickable:has(h5 a[href]):hover h4 a[href], .entireEleClickable:has(h5 a[href]):hover h5 a[href] {
        text-decoration: underline
    }

.kone-header {
    z-index: 1100;
    position: relative
}

    .kone-header a {
        text-decoration: none
    }

    .kone-header ul {
        padding: 0;
        margin: 0
    }

        .kone-header ul ul {
            padding: 0;
            margin: 0
        }

.kone-header-navigation {
    width: 100%;
    display: block;
    background-color: var(--light-primary-white)
}

    .kone-header-navigation.fixed-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0
    }

.kone-header-navigation__sticklylinks {
    display: none
}

.kone-header-navigation__header.fixed {
    position: fixed;
    z-index: 10;
    width: 100%;
    background-color: var(--light-primary-white);
    left: 0
}

.kone-header-navigation__header .pagename {
    color: var(--light-primary-kone-blue);
    text-align: center;
    text-transform: uppercase;
    font-size: .625rem;
    line-height: .75rem;
    padding: .625rem 0;
    border-bottom: 1px solid #ccc
}

.kone-header-navigation__header .header-sections {
    position: relative;
    padding: 1rem 0;
    width: 100%;
    color: var(--light-primary-kone-blue);
    border-bottom: 1px solid #ccc
}

    .kone-header-navigation__header .header-sections .container {
        display: flex;
        align-items: center;
        column-gap: .5rem;
        justify-content: space-between
    }

    .kone-header-navigation__header .header-sections .header-logo img {
        width: 6.125rem
    }

    .kone-header-navigation__header .header-sections .header-controls {
        display: flex;
        flex-direction: column;
        flex: 1 1 50%;
        max-width: 85%;
        align-items: flex-end;
        row-gap: 1rem
    }

        .kone-header-navigation__header .header-sections .header-controls .others-details {
            display: none
        }

        .kone-header-navigation__header .header-sections .header-controls .controls-details {
            display: flex;
            column-gap: .5rem
        }

            .kone-header-navigation__header .header-sections .header-controls .controls-details .contactus, .kone-header-navigation__header .header-sections .header-controls .controls-details .website-search {
                display: none
            }

            .kone-header-navigation__header .header-sections .header-controls .controls-details .language-selector.desktop {
                display: none
            }

            .kone-header-navigation__header .header-sections .header-controls .controls-details .language-selector .network {
                display: flex;
                align-items: center;
                text-align: left;
                margin-left: auto;
                flex-direction: row-reverse
            }

                .kone-header-navigation__header .header-sections .header-controls .controls-details .language-selector .network span:last-child {
                    font-size: .75rem;
                    line-height: .75rem
                }

                .kone-header-navigation__header .header-sections .header-controls .controls-details .language-selector .network span:first-child, .kone-header-navigation__header .header-sections .header-controls .controls-details .language-selector .network span:only-child {
                    font-size: 1.5rem;
                    line-height: 1.5rem
                }

            .kone-header-navigation__header .header-sections .header-controls .controls-details .hamberger-menu .navicon {
                display: inline-block;
                padding: 0
            }

                .kone-header-navigation__header .header-sections .header-controls .controls-details .hamberger-menu .navicon:before {
                    font-family: KONE-Icon-Font;
                    font-size: 1.7rem;
                    line-height: 1.7rem;
                    color: var(--light-primary-kone-blue)
                }

                .kone-header-navigation__header .header-sections .header-controls .controls-details .hamberger-menu .navicon:hover, .kone-header-navigation__header .header-sections .header-controls .controls-details .hamberger-menu .navicon:focus {
                    text-decoration: none
                }

                .kone-header-navigation__header .header-sections .header-controls .controls-details .hamberger-menu .navicon.collapsed:before {
                    content: ""
                }

                .kone-header-navigation__header .header-sections .header-controls .controls-details .hamberger-menu .navicon.expanded:before {
                    content: ""
                }

.kone-header-navigation .bilingual {
    display: flex;
    flex-wrap: wrap;
    row-gap: .75rem;
    margin: .75rem;
    padding: .5rem;
    justify-content: space-between;
    background-color: var(--light-color-background-bg-blue);
    border-radius: 1.25rem;
    border: 1px solid var(--light-grayscale-600-bg-tertiary)
}

    .kone-header-navigation .bilingual a {
        color: var(--light-primary-black);
        align-self: center;
        padding: .75rem 1.25rem;
        flex: 1 1 auto;
        text-align: center
    }

        .kone-header-navigation .bilingual a.active-language {
            background-color: var(--light-primary-kone-blue);
            color: var(--light-primary-white);
            pointer-events: none;
            cursor: not-allowed;
            border-radius: 50rem
        }

.kone-header-navigation .mobile-ribbon-footer {
    position: fixed;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--light-primary-kone-blue);
    z-index: 1000;
    box-shadow: 0px -30px 30px 10px hsla(0,0%,100%,.8)
}

    .kone-header-navigation .mobile-ribbon-footer ul {
        display: flex;
        width: 100%;
        justify-content: space-evenly;
        align-items: center;
        height: 100%;
        background-color: rgba(0,0,0,0)
    }

        .kone-header-navigation .mobile-ribbon-footer ul li a {
            color: var(--light-primary-white);
            border: none;
            font-size: 1.5rem;
            line-height: 1.5rem
        }

            .kone-header-navigation .mobile-ribbon-footer ul li a span {
                font-size: 2rem;
                line-height: 2rem
            }

.kone-header-navigation .search-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--light-primary-white);
    z-index: 1000;
    display: none
}

.kone-header-navigation .search-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--light-primary-kone-blue);
    cursor: pointer
}

    .kone-header-navigation .search-popup__close span {
        font-size: 1.5rem
    }

.kone-header-navigation .search-popup .search-form-mobile {
    position: relative;
    top: 50%;
    transform: translateY(-50%)
}

.kone-header-navigation .search-popup form {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    display: flex;
    column-gap: .625rem;
    z-index: 1000
}

    .kone-header-navigation .search-popup form .search-input {
        display: flex;
        width: 100%
    }

        .kone-header-navigation .search-popup form .search-input input[type=search] {
            font-family: INTER,Arial,"Helvetica Neue",Helvetica,sans-serif;
            font-size: 1rem;
            background-color: var(--light-color-background-bg-blue);
            border-radius: 50rem;
            border: 1px solid var(--light-grayscale-400-border);
            color: var(--light-primary-kone-blue);
            padding: .625rem 1rem;
            background-image: none;
            -webkit-appearance: textfield;
            box-sizing: content-box;
            height: 1.75rem;
            width: 100%;
            -webkit-box-sizing: content-box;
            -webkit-transition: all .5s;
            -moz-transition: all .5s;
            transition: all .5s
        }

            .kone-header-navigation .search-popup form .search-input input[type=search]:focus {
                border: 2px solid var(--light-primary-kone-blue)
            }

            .kone-header-navigation .search-popup form .search-input input[type=search]::-webkit-input-placeholder {
                color: var(--light-primary-kone-blue)
            }

            .kone-header-navigation .search-popup form .search-input input[type=search]:-moz-placeholder {
                color: var(--light-primary-kone-blue);
                opacity: 1
            }

            .kone-header-navigation .search-popup form .search-input input[type=search]::-moz-placeholder {
                color: var(--light-primary-kone-blue);
                opacity: 1
            }

            .kone-header-navigation .search-popup form .search-input input[type=search]:-ms-input-placeholder {
                color: var(--light-primary-kone-blue)
            }

    .kone-header-navigation .search-popup form button {
        color: var(--light-primary-kone-blue);
        padding: 0
    }

        .kone-header-navigation .search-popup form button span {
            display: inline-block;
            font-size: 1.75rem;
            transform: rotate(270deg)
        }

.kone-header-navigation .search-popup .elastic-suggestions {
    position: absolute;
    z-index: 500;
    background-color: var(--light-primary-white);
    border-radius: 20px;
    box-shadow: 0px 4px 8px 0px rgba(20,20,20,.15);
    margin-left: 1.25rem;
    margin-top: .75rem;
    padding: .75rem;
    display: none
}

    .kone-header-navigation .search-popup .elastic-suggestions .suggestion-item {
        padding: .5rem .5rem;
        color: var(--light-primary-black)
    }

        .kone-header-navigation .search-popup .elastic-suggestions .suggestion-item:hover {
            background-color: var(--light-color-background-bg-blue);
            cursor: pointer;
            border-radius: 12px
        }

.kone-header .navigation .target-group-avatar-container.tooltip-container.active .tooltip {
    font-size: 12px;
    top: 1px;
    line-height: 1.4;
    min-height: 27px;
    right: 34px
}

    .kone-header .navigation .target-group-avatar-container.tooltip-container.active .tooltip::after {
        right: -13px;
        top: 0;
        border-left-width: 13px;
        border-top-width: 13px;
        border-bottom-width: 13px
    }

@@media(max-width: 1024px) {
    .kone-header .navigation .logo .target-group-avatar-container {
        display: block;
        height: 30px;
        width: 30px;
        position: absolute;
        right: 75px;
        top: 10px
    }

        .kone-header .navigation .logo .target-group-avatar-container .target-group-avatar {
            border-radius: 15px;
            display: block;
            height: 30px;
            width: 30px
        }

        .kone-header .navigation .logo .target-group-avatar-container .target-group-change {
            display: block;
            font-size: 14px;
            height: 18px;
            width: 18px;
            opacity: 1;
            padding-right: 0;
            right: -11px
        }

            .kone-header .navigation .logo .target-group-avatar-container .target-group-change .icon-edit {
                position: relative;
                top: -6px
            }
}
