.floating-window {
  position: fixed;
  right: 3%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.floating-window .floating-btn {
  width: 70px;
  height: 70px;
  color: #333;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.floating-window .floating-btn:hover {
  background-color: #006DF0;
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 109, 240, 0.2);
}
.floating-window .floating-btn.active {
  background-color: #006DF0;
  color: #fff;
}
.floating-window .floating-btn img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}
.floating-window .floating-btn .btn-text {
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .floating-window .floating-btn {
    padding: 10px 0;
    width: 60px;
    height: 60px;
  }
  .floating-window .floating-btn img {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 480px) {
  .floating-window .floating-btn {
    padding: 10px 0;
    width: 50px;
    height: 50px;
  }
  .floating-window .floating-btn img {
    width: 24px;
    height: 24px;
  }
  .floating-window .floating-btn .btn-text {
    font-size: 10px;
  }
}
.success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px 30px;
  border-radius: 8px;
  z-index: 1020;
  display: none;
}
.success-toast .toast-content {
  display: flex;
  align-items: center;
}
.success-toast .toast-content img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.success-toast .toast-content p {
  margin: 0;
  font-size: 16px;
}
/*# sourceMappingURL=floatingWindow.min.css.map */
