/* Footer Chat */

.footer-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-chat-button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  cursor: pointer;
  padding: 0;
}
.footer-chat-text {
  font-size: 9px;
  background: #4CAF50;
  border-radius: 100px;
  padding: 5px 15px;
  margin-bottom: 7px;
  color: #fff;
  font-weight: 400;
  width: auto;
}
.footer-chat-icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

.footer-chat-popup {
  display: none;
  border-radius: 10px;
  z-index: 25;
  margin-bottom: -25px;
  background-color: #65AA59;
  color: white;
  flex-direction: column;
  padding: 20px 25px;
  gap: 10px;
  max-width: 200px;

  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.modal-open {
  display: block;
  opacity: 1;
}
.footer-chat-popup p {
  margin-bottom: 0;
}
.footer-chat-popup a {
  text-decoration: none;
}
.footer-chat-popup button {
  width: 100%;
  display: flex;
  padding: 10px 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-radius: 5px;
  border: 2px solid #FFF;
  background-color: transparent;
  color: white;
  font-weight: 500;
  cursor: pointer;
}
.footer-chat-popup button:hover {
  background-color: white;
  color: #65AA59;
}

.footer-chat-popup .title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-chat-popup .small {
  font-size: 10px;
  line-height: 1.4;
  margin-top: 15px;
  color: #B4F8A8;
}