#top-site-header {
    box-shadow: 0 6px 16px 0 #1919190f;
    top: 0;
    z-index: 30;
}


#header-navigation {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

/* MI - HOME LOGO */
#nav-logo {
    box-sizing: initial;
    flex-shrink: 0;
    position: relative;
    z-index: 100;
}

#nav-logo-link,
#nav-logo .logo-xiaomi {
    display: block;
    height: 100%;
    width: 100%;
}

#nav-logo .logo-mi-home {
    transform: translateX(-112px);
    transition: transform 0.3s;
}

#nav-logo:hover .logo-mi-home {
    transform: translateX(0px);
}


/*Group links*/

.navigation__group {
    display: flex;
    height: inherit;
}

.navigation__separator {
    flex-grow: 1;
}

.navigation__item {
    color: #191919;
    height: inherit;
}


.navigation__item .navigation__link {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 100%;
    padding: 0 8px;
}

.navigation__item .link-border {
    border-bottom: 3px solid #00000000;
    border-top: 3px solid #0000;
    box-sizing: border-box;
    transition: border .2s ease-in-out;
}

.navigation__item .link-border:hover {
    border-bottom: 3px solid #ff6900;
    border-top: 3px solid #0000;
    box-sizing: border-box;
    transition: border .2s ease-in-out;
}

.navigation__shortcut .shortcut__item .shortcut__item--wrapper {
    line-height: 1;
    position: relative;
}

.navigation__shortcut .shortcut__icon {
    font-size: 18px;
}

.only-medium {
    display: none;
}

.only-phone {
    display: flex;
}

.active{
    color:#ff6900
}

/*MD*/

@media (min-width: 768px) {
    .navigation__item {
        margin: 0 8px;
    }

    .only-medium {
        display: flex;
    }

    .only-phone {
        display: none;
    }

}

/*LG*/

@media (min-width: 1025px) {

    #header-navigation {
        padding: 0 16px;
    }

    .navigation__logo {
        height: 28px;
        padding: 0 16px;
        width: 28px;
    }

    .navigation__shortcut .shortcut__icon {
        font-size: 20px;
    }
}


/*XL*/

@media (min-width: 1440px) {

    .navigation__item {
        margin: 0 16px;
    }

    .navigation__shortcut .shortcut__icon {
        font-size: 28px;
    }

}