@charset "UTF-8";

#stv_pg { display:none !important; }

/**
우측 퀵
**/
.quick-fab{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-fab .qbtn{
  width: 54px;
  height: 54px;

  border: 0;
  border-radius: 14px;

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

  cursor: pointer;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.quick-fab .qbtn:active{
  transform: translateY(1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}

.quick-fab .qbtn i{
  font-size: 26px;
  line-height: 1;
}

/* 카톡 */
.quick-fab .qbtn-kakao{
  background: #FEE500;
  color: #3A1D1D;
}

.quick-fab .qbtn-kakao i { font-size: 36px; }

/* 위/아래 */
.quick-fab .qbtn-up,
.quick-fab .qbtn-down{
  background: rgba(34,34,34,.92);
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
}

/* 반응형(모바일에서 살짝 작게) */
@media (max-width: 680px){
  .quick-fab{
    right: 10px;
    bottom: 10px;
    gap: 5px;
  }
  .quick-fab .qbtn{
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .quick-fab .qbtn i{
    font-size: 22px;
  }
  .quick-fab .qbtn-kakao i { font-size: 30px; }
}
