.navbar {
    width: 100%;
    height: 62px;
    padding: 0 15px !important;
}

.navbar-index {
    background-color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #000;
    /* backdrop-filter: saturate(180%) blur(10px); */
}

.navbar-fixed-top {
    box-shadow: 0px 8px 23px 1px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar .navbar-header {
    padding-right: 15px;
}

.navbar .navbar-nav {
    margin-left: 150px;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar .navbar-nav li {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.navbar .navbar-nav li a {
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    height: 100%;
    line-height: 60px;
}

.navbar .navbar-nav li:hover a,
.navbar .navbar-nav li.active a {
    border-bottom: 2px solid #000;
}

.navbar .navbar-nav li:hover a,
.navbar .navbar-nav li.active a {
    color: #000;
}

.navbar .navbar-nav .login-btn {
    width: 70px;
    height: 34px;
    border-radius: 3px;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: unset;
}
.navbar .navbar-nav .login-btn:hover {
    background-color: #2962FF;
    color: #fff;
}

.navbar .navbar-nav .login-btn {
    border: 1px solid #2962FF;
    color: #2962FF;
}
.navbar .navbar-nav .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f6f6f6;
}

.mobile-menu-icon {
    display: none;
    font-size: 22px;
}

@media (max-width: 767px) {
    .mobile-hidden {
        display: none !important;
    }

    .mobile-menu-icon {
        display: block;
        margin: 0;
    }
}
