/* Header messenger buttons near the phone number. */
.header_phones .tel_wrap {
  background: none !important;
  gap: 10px;
  overflow: visible;
  padding-left: 0;
}

.header_phone_links {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.header_messengers {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 7px;
}

.header_messenger {
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(35, 35, 35, 0.12);
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  text-decoration: none;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  width: 34px;
}

.header_messenger:hover {
  box-shadow: 0 8px 18px rgba(35, 35, 35, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.header_messenger svg {
  display: block;
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.header_messenger--telegram {
  background: #2aabee;
}

.header_messenger--whatsapp {
  background: #25d366;
}

.header_messenger--whatsapp svg {
  height: 23px;
  width: 23px;
}

@media (max-width: 767px) {
  .header_phones .tel_wrap {
    justify-content: center;
  }

  .header_messenger {
    height: 32px;
    width: 32px;
  }

  .header_messenger svg {
    height: 17px;
    width: 17px;
  }

  .header_messenger--whatsapp svg {
    height: 22px;
    width: 22px;
  }
}
