.header__right-top-section {
    width: 170px;
}

.header__burger-sec,
.header__lk-sec,
.header__lk-sec button,
.header__right-top-section {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header__lk-sec button {
    justify-content: center;
    position: relative;
    width: 80px;
    height: 40px;
}

.header__lk-sec button svg {
    fill: #f8eac9;
    height: 13px;
    width: 12px;
    position: relative;
    z-index: 2;
    transition: .3s;
}

.header__lk-sec button::before {
    position: absolute;
    left: 0;
    top: 2px;
    content: "";
    width: 100%;
    border: 1px solid rgba(248, 234, 201, .1);
    height: 35px;
    border-radius: 100%;
    transform: rotate(-15deg);
    transition: .3s;
}

/* ХОВЕР */
.no-touch .header__lk-sec button:hover svg {
    fill: #f8eac9;
}

.no-touch .header__lk-sec button:hover::before {
    background-color: #2a2b2b;
    border: 1px solid #2a2b2b;
}

/* СМЕНА ТЕМЫ (важно!) */
.menu-open .header__lk-sec button svg,
.sand-style-page .header__lk-sec button svg {
    fill: #2a2b2b;
}

.menu-open .header__lk-sec button::before,
.sand-style-page .header__lk-sec button::before {
    border: 1px solid rgba(42, 43, 43, .1);
}

@media only screen and (min-width:1361px) {
    .header__lk-sec,
    .header__right-top-section {
        justify-content: flex-end;
    }

    .header__lk-sec {
        margin-left: 6px;
    }

    .header__burger-sec button,
    .header__lk-sec button {
        width: 128px;
        height: 64px;
        top: 7px;
    }

    .header__lk-sec button svg {
        width: 18px;
        height: 21px;
    }

    .header__burger-sec button::before,
    .header__lk-sec button::before {
        height: 58px;
    }
}
