/* PC_MAIN DEDICATED FILE */
/* Split from former 30_components.css for maintenance safety */

/* =========================================================
   KAKAO FLOAT CUSTOM (Rounded Square Style)
   ========================================================= */

.kakao-consult{
  position: fixed;
  right: 36px;
  top: 40%;
  transform: translateY(-50%);
  z-index: 4500;
}

.kakao-consult a{
  width: 85px;
  height: 93px;

  background: #FEE500;
  border-radius: 16px;

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

  text-decoration: none;
  color: #111;

  box-shadow: 0 14px 40px rgba(0,0,0,0.18);

  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease,
    opacity .58s cubic-bezier(.22,.61,.36,1),
    filter .58s cubic-bezier(.22,.61,.36,1);
}

/* 아이콘 박스 */
.kakao-box{
  width: 63px;
  height: 63px;
  margin-bottom: 0;

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

.kakao-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 텍스트 */
.kakao-text{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

/* hover */
.kakao-consult a:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

.kakao-consult a:active{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}


body.footer-header-hidden .kakao-consult{
  opacity: 0;
  filter: brightness(.82);
  pointer-events: none;
}

.kakao-consult{
  transition: opacity .58s cubic-bezier(.22,.61,.36,1), filter .58s cubic-bezier(.22,.61,.36,1);
}
