/* CTM chat widget (CallTrackingMetrics), same widget as on lp.premiaspine.com */

/* позиция и размеры чата CTM */
ctm-chat {
  --ctm-chat-bottom-offset: 15px;
  --ctm-chat-right-offset: 20px;
  /* на лендинге 51; здесь выше, т.к. фикс-шапка #header имеет z-index 999/1001,
     иначе открытое окно чата уходит под неё */
  --ctm-chat-z-index: 1300;
  --bubble-icon-size: 64px;
  --ctm-chat-window-width: 410px;
  --window-height: 600px;
}

@media (max-width: 480.98px) {
  ctm-chat {
    --ctm-chat-bottom-offset: 15px;
    --ctm-chat-right-offset: -10px;
  }
}

/* увеличенная кнопка чата на десктопе */
@media screen and (min-width: 767px) {
  ctm-chat::part(bubble-container) {
    transform: scale(2) !important;
    transform-origin: bottom right;
  }
}

/* скрыть всплывающее engage-сообщение */
ctm-chat::part(engage-message-bubble) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
