.price {display:inline-block;}
.dc_price {color:var(--main-color-r); font-weight:600}

/* 기본 스타일 설정 */
.scroll-container {
    width: 95%;
    overflow: hidden;
    white-space: nowrap; /* li 요소들을 한 줄로 만듦 */
    background: var(--main-bg-color);
    color: var(--main-color-w);
    padding: 15px 15px;
    border-radius: 1rem;
    position: relative;
    margin: 0 auto;
    bottom: -3rem;
    font-size: 17px;
}

.scroll-list {
    display: inline-block;
    animation: scroll 30s linear infinite; /* 두 배의 시간으로 설정 */
}

.scroll-list li {
    display: inline-block;
    padding: 0 20px;
    list-style: none;
}

/* 좌에서 우로 무한 스크롤 애니메이션 */
@keyframes scroll {
    0% {
        transform: translateX(0); /* 처음 시작 위치 */
    }
    100% {
        transform: translateX(-50%); /* 리스트의 절반만큼 이동 */
    }
}

/** 비정기 알람 스타일 */
.dynamic-popup-list {
    /*position: absolute;*/
    /*width: 400px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    /*background-color: white;*/
}