/* Единое оформление Telegram-обозначения внутри кнопок сайта. */
.telegram-action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
}

.telegram-action[hidden] {
  display: none !important;
}

.telegram-action__icon {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  object-fit: contain;
}

.telegram-action__label {
  min-width: 0;
  line-height: 1.25;
  text-align: center;
}

.floating-send.telegram-action {
  position: fixed;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 90;
  width: min(520px, calc(100% - 32px));
  min-height: 52px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b64ff, #4487ff);
  box-shadow: 0 14px 34px rgba(25, 80, 230, 0.55);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transform: translateX(-50%);
}

.floating-send.telegram-action:hover {
  filter: brightness(1.05);
  transform: translate(-50%, -1px);
}

.floating-send.telegram-action:active {
  transform: translate(-50%, 0);
}

@media (max-width: 480px) {
  .telegram-action {
    gap: 8px;
  }

  .telegram-action__icon {
    flex-basis: 17px;
    width: 17px;
    height: 17px;
  }
}
