.profile-header {
  height: 44px;
  width: 100%;
  background-color: var(--bg-highlight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile-header__title {
  font-size: 18px;
  line-height: 120%;
}

.profile-tabs {
  margin-top: 4px;
}

.profile-tabs__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profile-tabs__li {
  height: 44px;
}
.profile-tabs__li:not(:last-child) {
  border-bottom: 1px solid var(--bg-highlight);
}
.profile-tabs__li.active img {
  opacity: 0;
  visibility: hidden;
}
.profile-tabs__li.active .profile-tabs__link {
  background-color: var(--bg-highlight);
  font-weight: 500;
}

.profile-tabs__content {
  max-width: 600px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.profile-tabs__link {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 16px;
  padding: 0 16px;
}
.profile-tabs__link img {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}