
.line-chat-icon {
  border-radius: 25px;
  margin-bottom: 20px;
  margin-right: 20px;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

@keyframes line-float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

.line-chat-icon {
  animation: line-float 3s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex; 
}

.line-chat-icon:hover {
  animation-play-state: paused;
  
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}


.w-inline-block {
  max-width: 100%;
  display: inline-block;
}