/* Navbar container */
.navbar {
    overflow: hidden;
    display: flex;
    align-items: center;
    position: unset;
}

/* Links inside the navbar */
.navbar a, .navbar form button {
    float: left;
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    background: transparent;
    font-weight: 600;
}

.navbar a.registry {
    background: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    margin-left: 10px;
}

/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
    position: unset;
}

/* Dropdown button */
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: #fff;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    font-weight: 600;
    /* Important for vertical align on mobile phones */
    margin: 0;
    /* Important for vertical align on mobile phones */
}

#fw_header.fix .navbar a, #fw_header.fix .navbar form button, #fw_header.fix .dropdown .dropbtn{
    color: #000;
}

/* Add a red background color to navbar links on hover */
.navbar a:hover,
.dropdown:hover .dropbtn {}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

/* Links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

header#fw_header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: transparent;
    z-index: 9999;
    transition: all .3s ease;
}

header#fw_header.fix{
    background: #fff;
}

header#fw_header .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

header#fw_header .ls {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

header#fw_header .ls h1 img {
    width: 160px;
}

header#fw_header .ls h1 .b {
    display: none;
}
header#fw_header .ls h1 .w{
    display: block;
}

header#fw_header.fix .ls h1 .b {
    display: block;
}
header#fw_header.fix .ls h1 .w{
    display: none;
}

.navbar form {
    margin: 0;
}

header#fw_header h1 {
    margin: 0;
}

header#fw_header h1 a {
    display: flex;
}

nav.mobile_menu {
    display: none;
}

nav.mobile_menu ul {
    list-style: none;
}

nav.mobile_menu ul li {
    padding: 15px 30px;
}

nav.mobile_menu ul li a {
    color: #333;
    text-decoration: none;
}

nav.mobile_menu ul ul {
    display: none;
}

nav.mobile_menu ul ul {
    margin-top: 10px;
}

nav.mobile_menu ul ul li {
    padding: 6px 5px;
}

nav.mobile_menu ul ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

nav.mobile_menu {
    position: fixed;
    width: calc(100% - 60px);
    height: 100vh;
    z-index: 99999;
    background-color: #fff;
    right: 0;
    top: 0;
}

nav.mobile_menu ul.user {
    display: flex;
    column-gap: 0;
    gap: 15px;
    margin-top: 15px;
}

nav.mobile_menu .menu-close {
    position: absolute;
    right: 15px;
    top: 20px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    display: flex;
    background: transparent;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
}

nav.mobile_menu ul.default>li {
    border-bottom: 1px solid #eee;
}

nav.mobile_menu .user-wrap {
    background: #000;
    padding: 30px;
}

nav.mobile_menu .user-wrap .welcome.w2 {
    font-weight: 300;
}
nav.mobile_menu .user-wrap .welcome {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

nav.mobile_menu ul.user a svg, nav.mobile_menu ul.user button svg {
    width: 17px;
    height: 13px;
    margin-right: 4px;
    fill: #fff;
    opacity: .7;
}

#fw_header.fix .navbar a.registry {
    color: #fff;
}

@media screen and (max-width:767px) {
    header#fw_header {
        padding: 15px 15px;
        border-bottom: 1px solid #eee;
    }

    header#fw_header .ls h1 img {
        width: 130px;
    }

    nav.mobile_menu ul.user li {
        padding: 0;
    }

    nav.mobile_menu ul.user a, nav.mobile_menu ul.user button {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #c7c7c7;
        font-size: 16px;
        font-weight: 700;
        background: transparent;
        padding: 0;
    }

    nav.mobile_menu ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        font-weight: bold;
    }

    header#fw_header .menu-button svg image {
        filter: invert(1);
    }
    header#fw_header.fix .menu-button svg image {
        filter: invert(0);
    }
    header#fw_header .menu-button svg {
        width: 26px;
        height: 24px;
    }
}