/* "Top" 버튼 스타일 */
.clvs-btn-top {
  padding: 0;
  margin: 0;
  position: absolute;
}
.clvs-btn-top #_btnTop {
  display: none; /* 기본적으로 숨김 */
  position: fixed; /* 스크롤과 상관없이 고정 위치 */
  bottom: 5.5rem; /* 화면 아래에서 15px 위치 */
  right: 3rem; /* 화면 오른쪽에서 0px 위치 */
  z-index: 1000; /* 다른 요소보다 위에 위치 */
  width: 3rem; /* 버튼 너비 */
  height: 3rem; /* 버튼 높이 */
  border: none; /* 테두리 제거 */
  outline: none; /* 아웃라인 제거 */
  background-color: #acacac; /* 버튼 배경색 */
  color: white; /* 버튼 글자색 */
  cursor: pointer; /* 마우스 포인터 모양 변경 */
  border-radius: 1.5rem;
  display: flex; /* 플렉스 박스 사용 */
  align-items: center; /* 아이템 수직 중앙 정렬 */
  justify-content: center; /* 아이템 수평 중앙 정렬 */
}
.clvs-btn-top #_btnTop:hover {
  background-color: #ff6600; /* 호버 시 배경색 */
}
/* 화살표 아이콘 스타일 */
.clvs-btn-top .arrow-up {
  display: inline-block;
}