.nav-links {
    display: none !important;
}
.nav__row {
    display: flex;
    align-items: center;
}
.nav__logo {
    flex-shrink: 0;
    order: 1;
}
.country-flag {
    display: none;
}
.nav__logo-image img {
    height: 85px;
    padding: 6px;
    margin-bottom: 15px;
}
.logo__dark img {
    height: 70px;
    padding: 5px;
    background: #19191a;
    border-radius: 10px;
    width: 80px;
    margin-bottom: 14px;
}
.nav__right {
    display: flex;
    align-items: center;
    order: 2;
    margin-left: auto;
}
.nav__account-link {
    order: 3;
    flex-shrink: 0;
    margin-left: 12px;
}
.nav__toggle {
    flex-shrink: 0;
}
.nav__account-link a {
    min-width: 112px;
    height: 44px;
    padding: 0 17px;
    border: 1px solid #d59127;
    border-radius: 24px;
    background: rgba(22, 22, 22, 0.88);
    color: #e0a343 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.2s;
}
.nav__account-link a:hover {
    background: #d59127;
    color: #111 !important;
    transform: translateY(-1px);
}
.nav__account-link > a > i {
    font-size: 23px;
    line-height: 1;
}
.nav-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #24201a;
    color: #d99a3a;
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}
.nav-user-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.nav-user-avatar i {
    font-size: 19px;
    line-height: 1;
}
.nav__dark {
    margin-left: 17px;
}
.nav__search {
    margin-left: 12px;
}
@media (min-width: 992px) {
    .nav__toggle {
        display: none;
    }
}
@media (max-width: 991px) {
    .nav__row {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .nav__logo {
        margin-right: auto;
    }
    .nav__account-link {
        order: 2;
        margin: -10px 9px 0 4px;
    }
    .nav__toggle {
        order: 3;
        margin: 0 !important;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        color: #e0a343;
        font-size: 25px;
        cursor: pointer;
    }
    .nav__right {
        order: 4;
        margin-left: 0;
    }
    .nav__account-link a {
        width: auto;
        min-width: 105px;
        height: 43px;
        padding: 0 15px;
    }
}
@media (max-width: 430px) {
    .nav__logo-image img {
        width: auto !important;
        height: 65px !important;
        margin-bottom: 8px !important;
    }
    .nav__account-link {
        margin-right: 5px;
        margin-left: 3px;
    }
    .nav__account-link a {
        min-width: 96px;
        height: 41px;
        padding: 0 13px;
        font-size: 14px;
        gap: 7px;
    }
    .nav__account-link > a > i {
        font-size: 21px;
    }
    .nav-user-avatar {
        width: 30px;
        height: 30px;
    }
    .nav__toggle {
        width: 40px;
        height: 41px;
        font-size: 23px;
    }
}
@media (max-width: 350px) {
    .nav__account-link a {
        min-width: 44px;
        width: 44px;
        padding: 0;
        border-radius: 50%;
    }
    .nav__account-link .account-text {
        display: none;
    }
}
