@charset "UTF-8";
/* Header----------------------------------------------------------- * / */
.header {
  background-color: var(--white);
  grid-area: header;
  z-index: 100;
  position: relative; }
  .header .header__right {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    height: 100%; }
  .header .header__center {
    position: static;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    height: 60px; }
    @media (max-width: 1024px) {
      .header .header__center {
        padding-left: 12px;
        padding-right: 12px; } }

.header-btn {
  height: 100%;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--hight--green);
  font-weight: 500;
  padding: 10px 24px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid transparent;
  margin-left: 21px; }
  @media (max-width: 1024px) {
    .header-btn {
      margin-left: 25px; } }
  @media (max-width: 767px) {
    .header-btn {
      display: none; } }
  .header-btn:first-child {
    margin-left: 0; }
  .header-btn.-yellow {
    background-color: var(--hight-yellow);
    color: var(--almoste-black); }
    .header-btn.-yellow:hover > span {
      color: var(--almoste-black);
      border-bottom-color: transparent; }
  .header-btn .header-btn__icon {
    margin-left: 10px;
    font-size: 0.6em;
    position: relative; }
    .header-btn .header-btn__icon.-left {
      top: -1px;
      margin-left: 0;
      margin-right: 7px;
      font-size: 1.1em; }
  .header-btn:hover {
    text-decoration: none;
    border-bottom-color: var(--hight--green); }
    .header-btn:hover.-yellow {
      border-bottom-color: transparent; }
    .header-btn:hover > span {
      text-decoration: none;
      color: var(--hight--green);
      border-color: var(--hight--green); }
    .header-btn:hover .langs {
      visibility: visible;
      opacity: 1;
      pointer-events: auto; }
      .header-btn:hover .langs .langs-item {
        transform: none;
        opacity: 1; }
  .header-btn .header-btn-userpic {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    border-radius: 100%;
    background-color: #eee;
    display: inline-flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    line-height: 1;
    overflow: hidden; }
    .header-btn .header-btn-userpic img {
      max-width: 100%;
      max-height: 100%; }
  .header-btn .header-btn-lang {
    width: 21px;
    height: 14px;
    margin-right: 10px; }
    .header-btn .header-btn-lang svg {
      width: 21px;
      height: 14px; }
  .header-btn .header-btn-username {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    display: block; }

.langs {
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  right: 0;
  padding: 26px 12px 10px;
  cursor: default;
  box-shadow: 0 2px 2px 0 var(--shadow-gray), 0 1px 4px 0 var(--shadow-gray) inset;
  background-color: var(--white);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease-out; }
  .langs .langs-list {
    margin: 0 auto;
    max-width: 900px;
    column-count: 5;
    /*количество колонок, на которое хотим разбить текст*/
    -moz-column-count: 5;
    /*для мозилы*/
    -webkit-column-count: 5;
    /*для webkit браузеров*/
    column-gap: 40px;
    /*отступ между колонками*/
    -moz-column-gap: 40px;
    -webkit-column-gap: 40px; }
    .langs .langs-list .langs-pic {
      width: 23px;
      height: 16px;
      margin-right: 15px; }
      .langs .langs-list .langs-pic svg {
        width: 23px;
        height: 16px; }
    .langs .langs-list .langs-link {
      display: inline-flex;
      flex-flow: row nowrap;
      justify-content: flex-start;
      align-items: flex-start;
      color: var(--almoste-black);
      font-size: 16px;
      line-height: 1.2;
      text-transform: none;
      font-weight: normal;
      border-bottom: 2px solid transparent; }
      .langs .langs-list .langs-link:hover {
        text-decoration: none;
        border-bottom-color: var(--hight--green); }
    .langs .langs-list .langs-item {
      max-width: 200px;
      margin-bottom: 13px;
      margin-right: 15px;
      opacity: 0; }

.dropdown-wrapper {
  position: relative;
  height: 100%; }

.dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: var(--white);
  z-index: 100000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  padding: 5px 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.4s ease-out; }
  .-active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none; }
  .dropdown .dropdown-link {
    padding-left: 11px;
    padding-right: 11px;
    padding-bottom: 4px;
    padding-top: 4px;
    margin-bottom: 1px;
    text-transform: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    font-weight: normal; }
    .dropdown .dropdown-link .icon {
      margin-right: 5px; }
    .dropdown .dropdown-link:hover {
      text-decoration: none;
      background-color: var(--green-grey); }
    .dropdown .dropdown-link::before {
      position: absolute;
      content: "";
      border-bottom: 7px solid rgba(0, 0, 0, 0.2);
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      display: inline-block;
      right: 9px;
      top: -6px; }
    .dropdown .dropdown-link::after {
      content: "";
      position: absolute;
      border-bottom: 6px solid #FFF;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      display: inline-block;
      right: 10px;
      top: -5px; }
    .dropdown .dropdown-link:last-child {
      margin-bottom: 0; }

/*# sourceMappingURL=../../maps/header.css.map */
