.header__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__wrapper-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.support-btn {
  --text-color: white;
  --icons-color: var(--text-color);
  --border-color: white;
  --background-color: transparent;
  --background-color-hovered: rgba(255, 255, 255, .05);
  position: relative;
  display: flex;
  height: 44px;
  padding: 14px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: background 250ms;
  color: var(--text-color);
}

.support-btn:hover {
  background-color: var(--background-color-hovered);
}

.support-btn--dark {
  --text-color: #2A4F7C;
  --icons-color: #6C98CD;
  --border-color: transparent;
  --background-color: transparent;
  --background-color-hovered: transparent;
}

.support-btn__text {
  color: currentColor;
  font-feature-settings: 'liga' off, 'clig' off;

  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  pointer-events: none;
}

.support-btn__icon {
  aspect-ratio: 1;
  color: currentColor;
  pointer-events: none;
  transition: transform 150ms;
}

.support-btn.show .support-btn__dropdown {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.support-btn__icon:last-of-type {
  transform: rotate(180deg);
}

.support-btn.show .support-btn__icon:last-of-type {
  transform: rotate(0deg);
}

.support-btn__dropdown {
  display: flex;
  flex-direction: column;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: calc(100% + 4px);
  width: 228px;
  padding: 12px 16px;
  right: 0;
  background-color: white;
  border-radius: 12px;
  transition: opacity 150ms;
  box-shadow: 0 4px 8px -6px #2a4f7c;
}

.support-btn__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-btn__list-item {
  display: flex;
  align-items: center;
}

.support-btn__list-item-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-wrap: nowrap;
}

.support-btn__list-item-text {
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: #2A4F7C;
}

.support-btn__list-item-text.support-btn__list-item-text--marked {
  color: #7A92AF;
}

.support-btn__dropdown-worktime {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-block: 8px;
  gap: 4px;
}

.support-btn__divider {
  margin-bottom: 8px;
  border: 0.5px solid #D7E9FF;
}

@media (max-width: 1140px) {
  .support-btn {
    height: 36px;
  }

  .search .search__header {
    width: 420px !important;
  }
}

@media (max-width: 768px) {
  .support-btn:hover {
    background-color: inherit;
  }
}

@media (max-width: 320px) {
  .support-btn {
    position: inherit;
    border: unset;
    padding: 0;
    height: fit-content;
  }

  .support-btn__icon:last-of-type {
    display: none;
  }

  .support-btn__dropdown {
    top: 44px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    z-index: 99;
  }
}