.ii_notice_marquee_wrapper {
    width: 100%;
    overflow: hidden;
    background: #394095;
    padding: 25px 0;
    position: relative;
}

/* Left Fade */
.ii_notice_marquee_wrapper::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
    pointer-events:none;
    background:linear-gradient(
        to right,
        #394095 0%,
        rgba(57,64,149,0.85) 40%,
        rgba(57,64,149,0) 100%
    );
}

/* Right Fade */
.ii_notice_marquee_wrapper::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
    pointer-events:none;
    background:linear-gradient(
        to left,
        #394095 0%,
        rgba(57,64,149,0.85) 40%,
        rgba(57,64,149,0) 100%
    );
}

.ii_notice_marquee_track {
    display: flex;
    width: max-content;
    animation: ii_notice_scroll 70s linear infinite;
}

.ii_notice_marquee_group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ii_notice_marquee_item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.ii_notice_marquee_item span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    padding: 0 18px;
}

.ii_notice_marquee_item img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: 0 12px;
    flex-shrink: 0;
}

.ii_notice_marquee_wrapper:hover .ii_notice_marquee_track {
    animation-play-state: paused;
}

@keyframes ii_notice_scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive */

@media(max-width:768px) {

    .ii_notice_marquee_wrapper {
        padding: 20px 0;
    }

    .ii_notice_marquee_item span {
        font-size: 14px;
        padding: 0 14px;
    }

    .ii_notice_marquee_item img {
        width: 20px;
        height: 20px;
        margin: 0 10px;
    }

    .ii_notice_marquee_wrapper::before,
    .ii_notice_marquee_wrapper::after{
        display:none;
    }

}