/*
    Theme Name: Reflowx
    Author: Cosmonaut Technologies Pvt. Ltd.
    Author URI: https://www.cosmonautgroup.com/
    Description: Website based on Insurance services.
    Version: 1.0
*/

.counter-sec .counter-number {font-size: 1.75rem;}
.chat-widget {
  position: fixed;
  bottom: 43px;
  right: 14px;
  z-index: 9999;
}

@media (min-width: 768px) {
  .chat-widget {
    bottom: 34px;
    right: 10px;
  }
}

.chat-btn {
  width: 44px;
  height: 44px;
  background: #00c853;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .chat-btn {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}

.chat-container {
  position: relative;
}

.chat-popup {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 240px;
  height: 240px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .chat-popup {
    bottom: 70px;
  }
}

.chat-popup.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-content {
  padding: 16px;
  overflow-y: auto;
}

.popup-img {
  width: 100%;
  border-radius: 8px;
}
