/* 카카오 상담 섹션 */
.kakao_chat_section{
  position: fixed;
  right: 26px;
  bottom: 110px; /* 챗봇 버튼 위 */
  z-index: 9998;
}

/* 카카오 버튼 */
.kakao_chat_btn{
  width: 85px;
  height: 85px;

  background: #fee500;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform .25s ease;
}

.kakao_chat_btn:hover{
  transform: translateY(-3px);
}

.kakao_chat_btn img{
  width: 60px;
  height: 60px;
}