/*size*/
.cn-h-lg { height: 500px; }
.cn-h-md { height: 350px; }
.cn-h-sm { height: 180px; }

@media (max-width: 768px) {
    .cn-h-lg { height: 300px; }
    .cn-h-md { height: 250px; }
}


.cn-scroll-track {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 9;
}
.cn-scroll-box {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  align-items: center;
}
.cn-scroll-box::-webkit-scrollbar {
  display: none;
}
.cn-scroll-box.is-dragging .cn-scroll-item {
  pointer-events: none;
}
.cn-scroll-box.is-dragging {
  cursor: grabbing;
}
.cn-scroll-arrow-box{
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}
.cn-scroll-arrow{
  position: relative;
  z-index: 2;
  background: #fff !important;
  border: 1px solid #ccc !important;
  border-radius: 50% !important;
  font-size: 20px;
  height: 25px;
  width: 25px;
  padding: 0 !important;
  cursor: pointer !important;
  min-height: unset !important;
  color: #212121 !important;
}
.cn-scroll-shadow{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 1;
  pointer-events: none;
}
.cn-scroll-arrow-box.cn-box-left{ left: 0; }
.cn-scroll-arrow-box.cn-box-right{ right: 0; }
.cn-scroll-arrow-box.cn-box-left .cn-scroll-shadow{
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.cn-scroll-arrow-box.cn-box-right .cn-scroll-shadow{
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
.cn-scroll-arrow-box.is-disabled {
  opacity: 0;
  pointer-events: none;
}
.cn-scroll-item{
  flex-shrink: 0;
  cursor: pointer;
}




/*메인 스크롤 슬라이더_main-section-promotion_260205*/
/*시간차 없애기 위해 style.css에 있는 코드 반복 등록 4주 후 삭제하기!!*/
.cn-scroll-slider.main-section-promotion .cn-scroll-box{
  width: 100%;
  gap: 20px;
  padding: 10px 0;
}
.cn-scroll-slider.main-section-promotion .cn-scroll-item {
	flex: 1;
    white-space: nowrap;
    border: none;
    padding: 25px 30px;
    background-color: #f4f4f4;
    border-radius: 13px;
}
.cn-scroll-slider.main-section-promotion .shape-icon.arrow-angle.back {
    height: 8px;
    width: 8px;
    transform: rotate(-45deg) translateY(-145%) translateX(165%);
}
.cn-scroll-slider.main-section-promotion .shape-icon.arrow-angle.next {
    height: 8px;
    width: 8px;
    transform: rotate(135deg) translateY(170%) translateX(-135%);
}
.cn-scroll-slider.main-section-promotion .point-arrow-btn {
    margin-left: auto;
    padding: 1px 0 0 2px;
    color: #fff;
    display: flex;
    border-radius: 15px;
    height: 30px;
    width: 30px;
    background: #ef8c02;
    align-items: center;
    justify-content: center;
}
.cn-scroll-slider.main-section-promotion .shape-icon.arrow-tail {
    width: 10px;
    height: 10px;
}
