#chat-widget {
  position: fixed;
  bottom: 1.1vw;
  right: 2vw;
  z-index: 9999;
  font-family: "Montserrat", sans-serif;
}

.chat-button {
  width: 22vw;
  height: 22vw;
  max-width: 22vw;
  max-height: 22vw;
  background-color: #111111;
  border-radius: 50%;
  box-shadow: 0 0.6vw 2vw rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chat-button:hover {
  transform: scale(1.1);
}

.chat-bubble {
  position: absolute;
  bottom: 4vw;
  right: 28vw;
  width: 11vw;
  max-width: 80vw;
  background: #111111;
  color: #fff;
  padding: 2vw 2.5vw;
  font-size: clamp(13px, 2.5vw, 17px);
  border-radius: 1vw;
  box-shadow: 0 1vw 2.5vw rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(2vw);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.chat-bubble::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 10px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #111111;
}

.chat-bubble span {
  color: #70fa00;
  font-weight: 600;
}

.chat-bubble.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.chat-panel {
  display: none;
  position: absolute;
  bottom: 3vw;
  right: 25vw;
  width: 15vw;
  max-width: 80vw;
  background-color: #111111;
  color: white;
  border-radius: 1.2vw;
  box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.5);
  padding: 4vw;
  font-size: clamp(15px, 4vw, 20px);
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.chat-panel p {
  font-size: 1vw;
  margin-bottom: -0.5vw;
}

.chat-panel.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.chat-panel a {
  background-color: #70fa00;
  color: #111111;
  text-decoration: none;
  padding: 2.5vw;
  border-radius: 1vw;
  margin-top: 2vw;
  font-weight: 600;
  text-align: center;
  display: block;
  font-size: clamp(14px, 3.5vw, 18px);
}

@media (min-width: 800px) {
  .chat-bubble {
    font-size: 18px;
    padding: 16px 20px;
    max-width: 360px;
    border-radius: 14px;
    right: 70px;
  }
  .chat-panel {
    font-size: 17px;
    padding: 18px;
    max-width: 360px;
    right: 70px;
  }
  .chat-panel a {
    padding: 12px;
    font-size: 16px;
  }
  .chat-button {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
@media (max-width: 800px) {
  #chat-widget {
    bottom: 3vw;
    right: 4vw;
  }
  .chat-button {
    width: 15vw;
    height: 15vw;
    max-width: 15vw;
    max-height: 15vw;
    font-size: 5vw;
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.5);
  }
  .chat-bubble {
    bottom: 17.7vw;
    right: 8vw;
    width: 70vw;
    padding: 4vw 5vw;
    font-size: clamp(12px, 4vw, 14px);
    border-radius: 3vw;
    box-shadow: 0 1.5vw 3vw rgba(0, 0, 0, 0.5);
  }
  .chat-bubble::after {
    right: -8px;
    bottom: 8px;
    border-width: 6px;
  }
  .chat-panel {
    bottom: 18vw;
    right: 2vw;
    width: 70vw;
    padding: 5vw;
    font-size: clamp(12px, 3.5vw, 14px);
    border-radius: 7vw;
    box-shadow: 0 1.5vw 3vw rgba(0, 0, 0, 0.5);
  }
  .chat-panel p {
    font-size: 5vw;
    width: 80vw;
    margin-bottom: 1.1vw;
  }
  .chat-panel a {
    width: 50vw;
    margin-left: 5vw;
    padding: 3vw 4vw;
    border-radius: 6vw;
    margin-top: 6.5vw;
    font-size: 4.2vw;
  }
}

/*# sourceMappingURL=chat.css.map */
