/* 로그인 위젯 컨테이너 스타일 */
.custom-login-widget-container {
  position: relative; /* 필요 시 */
  z-index: 2; /* 배너보다 높게 설정하여 덮어쓰지 않도록 함 */
}

.custom-right-menus-container {
  position: sticky;
  top: 170px;
}

.custom-right-menus {
  display: flex;
  width: 300px;
  flex-direction: column;
  row-gap: 16px; /* 메뉴 간격 */
}

.custom-right-menu {
  /* position: sticky; */
}

.custom-right-menu--kakao {
  /* top: 170px; */
}

.custom-right-menu--listings {
  /* top: 235px; */
}

.custom-right-menu--banners {
  /* top: 630px; */

}

.custom-right-menu__list {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  column-gap: 32px;
  list-style: none;
}

.custom-right-menu__item {
  width: 48px;
  height: 48px;
}

.custom-right-menu__item img {
  width: 100%;
  height: 100%;
}

.custom-right-menu__parent-container {
  position: relative;
}

/* 배너 스타일 */
.custom-right-menu__menu {
  box-sizing: border-box;
  z-index: 1;
  display: flex;
  max-width: 300px; /* 고정된 넓이 */
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  transition: top 0.3s ease;
}

.custom-right-menu--listings .custom-right-menu__menu {
  max-height: 684px;
}

.custom-right-menu--banner .custom-right-menu__menu {
  max-height: 515px;
}

.right-menu-slider {
  width: 100%;
}

.right-menu-slider__wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.right-menu-slider img {
  width: 100%; /* 슬라이더 너비에 맞춤 */
  aspect-ratio: 16 / 9; /* 16:9 비율 유지 */
  object-fit: contain; /* 이미지 크기가 작아도 잘 채워지도록 설정 */
}

.right-menu-slider__slider.slick-slider.slick-vertical .slide-group {
  display: flex;
  column-gap: 4px;
}

.right-menu-slider__slider.slick-slider.slick-vertical .slide-group a {
  flex: 1;
}

.right-menu-slider--listings .prime-equipment-item {
  margin: 0;
}

.up_btn,
.down_btn {
  cursor: pointer;
  font-size: 24px;
  color: black;
  padding: 0px;
  text-align: center;
  width: 100%;
  background-color: #ebebeb;
}

.pointcgbtn {
  background-color: #dd553a;
  color: white;
  padding: 10px;
  text-align: center;
  display: block;
  width: 100%;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px; /* 버튼과 슬라이더 간 간격 */
}

/* 태블릿과 모바일에서 숨기기 */
@media (max-width: 1024px) {
    .custom-right-menu {
        display: none;
    }
}
