.global-header-v3 {

    /* Desktop Menu */
    .global-header-container {
        box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);

        /* Icons */
        .icon-searching:before {
            color: #330099;
        }

        .icon-globe-2:before,
        .icon-right-arrow:before {
            color: #FFFFFF;
        }

        /* Alert Text */
        .alert-text {
            width: auto;
            background: #fff;
            display: flex;
            justify-content: end;

            .cmp-text {
                background: #f7f8fa;
                margin: .5rem;
                padding: .25rem 0;
                border-top-right-radius: 5px;
                border-top-left-radius: 5px;

                p {
                    font-size: unset;
                    line-height: unset;
                    font-family: unset;

                    a {
                        font-size: smaller;
                        font-weight: 600;
                        color: #34009b;
                        display: flex;
                        justify-content: end;
                    }
                }
            }
        }

        /* Main Navbar */
        .main-navbar {
            box-shadow: none;
            -webkit-box-shadow: none;
            height: auto;

            .main-navbar__logo img {
                width: inherit;
            }

            ul.main-navbar-links {
                width: 60%;
            }

            .main-navbar-links {
                li {
                    font-family: Barlow-SemiBold, Helvetica, Arial, sans-serif;
                    font-size: 0.95rem;
                    letter-spacing: normal;
                    line-height: 1.1875rem;
                    color: #000000;
                    display: block;
                    height: auto;
                    align-items: initial;
                    padding: 0;
                    cursor: unset;

                    .level0-item {
                        margin-right: 2.5rem;
                        padding: 20.5px 0 20.5px 0;

                        &:hover {
                            .menu-dropdown {
                                display: block;
                            }
                        }

                        &.selected {
                            &:after {
                                background: #330099;
                                bottom: 0;
                                content: "";
                                height: .1875rem;
                                left: 0;
                                margin: auto;
                                position: absolute;
                                right: 0;
                                width: 100%;
                                transform: none;
                            }
                        }
                    }

                    .menu-dropdown {
                        position: absolute;
                        top: 100%;
                        left: 0;
                        background: #fff;
                        border: 1px solid #ccc;
                        border-radius: 4px;
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        width: 220px;
                        z-index: 1000;
                        transform: none;

                        .dropdown-groups-wrapper {
                            flex-direction: column;
                            padding: 0px;

                            .dropdown-group {
                                width: unset;
                                display: flex;
                                border-right: none;
                            }

                            .dropdown-group-title {
                                font-family: Barlow-SemiBold, Helvetica, Arial, sans-serif;
                                font-size: 0.95rem;
                                letter-spacing: normal;
                                line-height: 1.4rem;
                                color: #333;
                                display: block;
                                margin: 0;
                                height: auto;
                                cursor: pointer;
                                padding: 10px 14px;
                                align-items: initial;
                                border: none;

                                &:hover {
                                    background-color: #f0f0f0;
                                    border-color: transparent;
                                    color: #34009b;
                                }

                                a {
                                    text-decoration: none;
                                    color: inherit;
                                    display: block;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* Mobile Menu */
    .global-header-container {

        &.show-responsive-container {
            padding-bottom: 0;
            background-color: #330099;
        }

        .main-navbar {
            .main-navbar-responsive-wrapper {
                .main-navbar-responsive__main-list.level1 {
                    padding-bottom: 50px;

                    li a {
                        color: #FFFFFF;
                    }
                }

                .responsive-selector-list {
                    color: #FFFFFF;
                    position: relative;
                    background-color: #330099;
                    height: 100%;

                    .icon-left-arrow {
                        color: inherit;
                        top: 1.0625rem;
                    }

                    ul {
                        background-color: transparent;
                        height: auto;

                        li {
                            background-color: transparent;

                            .responsive-selector-list__lang {
                                color: inherit;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* Header Overlay */
.u-header-overlay,
.u-search-overlay {
    background: transparent;
}

@media (max-width: 1023px) {
    .main-navbar {
        .main-navbar__wrapper {
            background: #fff;
        }

        .main-navbar-responsive-wrapper {
            height: 100%;
            background-color: #330099;

            .level1 {
                .toggle-button {
                    color: #FFFFFF;
                }

                li a {
                    border-right: none;
                }
            }

            .l2-item {
                background: transparent;

                .level-2-anchor {
                    border: none;
                }
            }

            .responsive-selector {
                background-color: #330099;

                .responsive-selector__lang{
                    color: #fff;
                }
            }
        }
    }
}