.header {

}

.header__topline {
    padding: 8px 0;
    background-color: #BDA10F;
    color: #fff;
    font-size: 13px;
    line-height: 1.54;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header__topline-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    justify-content: space-between;
    max-width: 1920px;
    box-sizing: border-box;
}

.header__address {
    margin: 0;
}

.header__address-link {
    color: #fff;
}

.header__address-city_len_long {
    display: none;
}

.header__tel {
    color: #fff;
    text-decoration: none;
}

.header__langmenu {
    display: none;
}

.header__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
}

.header__logo {
    display: block;
    width: 123px;
}

.header__logo-img {
    width: 100%;
    height: auto;
}

.iconsmenu {
    margin: 0;
    list-style-type: none;
    padding: 0;
    display: flex;
    margin-left: 15px;
    margin-right: -15px;
    justify-content: flex-end;
}

.iconsmenu__link {
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-right: 15px;
}

.iconsmenu__link::before {
    content: '';
    display: block;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center center;
}

.iconsmenu__link_type_docview {
    display: none;
}

.iconsmenu__link_type_docview::before {
    background-image: url(/images/docview.svg);
    
}

.iconsmenu__link_type_lk::before {
    background-image: url(/images/lk.svg);
}

.iconsmenu__text {
    display: none;
}

@media screen and (min-width: 720px) {
    .header__topline {
        position: static;
    }

    .header__topline-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .header__address {
        margin-right: 20px;
        display: flex;
        align-items: center;
    }

    .header__address::before {
        content: '';
        display: block;
        margin-right: 10px;
        width: 16px;
        height: 16px;
        background: url(/images/header-address.svg) no-repeat center center;
    }

    .header__address-city_len_short {
        display: none;
    }

    .header__address-city_len_long {
        display: inline;
    }

    .header__tel {
        display: flex;
        align-items: center;
    }

    .header__tel::before {
        content: '';
        display: block;
        margin-right: 10px;
        width: 16px;
        height: 16px;
        background: url(/images/header-tel.svg) no-repeat center center;
    }

    .header__langmenu {
        list-style-type: none;
        display: flex;
        padding: 0;
        margin: 0;
        flex-grow: 1;
        justify-content: flex-end;
    }

    .header__langmenu-item:last-child::before {
        content: '/';
        display: inline-block;
        margin: 0 4px;
    }

    .header__langmenu-link {
        color: #fff;
        font-size: 15px;
        line-height: 1.07;
    }

    .header__row {
        padding: 20px 30px;
    }

    .header__logo {
        display: none;
    }

    .iconsmenu__link_type_docview {
        display: flex;
    }
}

@media screen and (min-width: 1280px) {

    .header__row {
        padding-top: 32px;
        padding-bottom: 32px;
        /*display: grid;*/
        grid-template-columns: 5fr 3fr 5fr;
    }

    .header__logo {
        display: block;
        width: 137px;
        margin-left: auto;
        margin-right: auto;
    }

    .iconsmenu__link::before {
        margin-right: 16px;
    }

    .iconsmenu__text {
        display: inline;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 15px;
        line-height: 1.07;
    }

    .iconsmenu__link_type_docview .iconsmenu__text {
        font-family: 'Caveat Brush';
        font-weight: 400;
    }
}


@media screen and (max-width: 719px) {
    .header__hidden-on-mobile {
        display: none;
    }
}