@media only screen and (min-width: 768px) {
  header{
    width: calc(100% - 32px);
    height: 114px;
    left: 16px;
    padding-top: 0;
  }
  header::after, header::before {
    content: '';
    position: absolute;
    height: 100%;
    width: calc((100vw - 100%) / 2);
    background: #fff;
    top: 0;
    z-index: -1;
  }
  header::before {
    left: calc(((100vw - 100%) / -2) + 1px);
  }
  header::after {
    right: calc(((100vw - 100%) / -2) + 1px);
  }
  .header-phone {
    display: none;
  }
  .header-logo--mobile {
    display: none;
  }
  .header-left__link {
    font-size: 13px;
    line-height: 13px;
  }
  .header-right__rent {
    font-size: 12px;
    line-height: 12px;
    display: block;
  }
  .header__city-picker-wrapper {
    box-sizing: border-box;
    padding-top: 1px;
    display: flex;
    margin-left: auto;
    margin-right: 0;
  }
  .header__city-picker {
    direction: rtl;
  }
  .header__city-picker-arrow {
    display: block;
  }
  .header__city-picker-arrow--mobile {
    display: none;
  }
  .header-right__phone {
    font-size: 13px;
    line-height: 13px;
  }
  .header-right__lk {
    font-size: 12px;
    line-height: 12px;
  }

}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header-logo {
    height: 66px;
  }
  .header-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .header-left {
    top: 64px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .header-left__link:first-child {
    margin-left: 0;
  }
  .header-right {
    padding-bottom: 50px;
  }
  .header-right__rent {
    top: 17px;
  }
  
}

@media only screen and (max-width: 1023px) {
  .header-left {
    height: 46px;
    width: 100%;
    position: absolute;
    left: 0;
    overflow-x: auto;
  }
  .header-left:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background-color: rgba(219, 219, 223, .6);
  }
}

@media only screen and (min-width: 1024px) {
  header{
    height: 70px;
  }
}