/* Fixed WhatsApp & Telegram Chat Integration Widgets */
.integration-fixed {
  position: fixed;
  z-index: 10000000;
}
.integration-fixed__top-left { top: 0; left: 0; }
.integration-fixed__top-right { top: 0; right: 0; }
.integration-fixed__bottom-left { bottom: 0; left: 0; }
.integration-fixed__bottom-right { bottom: 0; right: 0; }

.whatsapp-container, .telegram-container {
  padding: 24px;
}
.whatsapp-button {
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  transform: scale(0.9);
}
.whatsapp-button:hover {
  transform: scale(1);
  background-color: #108f29;
}

.telegram-button {
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #1fafcc;
  color: #FFF !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  transform: scale(0.9);
}
.telegram-button:hover {
  transform: scale(1);
  background-color: #227fb5;
}
