
/* 배너 컨테이너 */
.rollingbanner{
    width: 100%;
    height: 60px;
    font-size: .875rem;
    color: #fff;
    letter-spacing: -.075em;
    background-color: #fff;
}
.rollingbanner a{
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}
.rollingbanner > .wrap1{
    position: relative;
    width: 1180px;
    height: 60px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}
.wrap1::before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.75) 51%, rgba(255,255,255,0) 100%);
}
.wrap1::after{
    content:'';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.75) 51%, rgba(255,255,255,1) 100%);
}

/* 애니메이션하는 요소 */
.roller{
    position: absolute;
    height: 100%;
}
.roller > ul{
    margin: 0;
    list-style: none;
    padding: 0px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.roller > ul > li{
    padding-right: 30px;
}
.roller > ul > li span{
    padding-right: 3px;
}
.roller > ul > li img{
    height: 60px;
}
.roller > ul > li .status {
    position: relative;
    padding-left: 20px;
}
.roller > ul > li .status.up::before{
    position: absolute;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><title>Arrow Forward</title><path fill="none" stroke="rgb(255,96,96)" stroke-linecap="square" stroke-miterlimit="10" stroke-width="48" d="M268 112l144 144-144 144M392 256H100"/></svg>');
    transform: rotateZ(-45deg);
    width: 18px;
    height: 18px;
    padding: 1px;
    left: 0;
}
.roller > ul > li .status.down::before{
    position: absolute;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><title>Arrow Forward</title><path fill="none" stroke="rgb(96,96,255)" stroke-linecap="square" stroke-miterlimit="10" stroke-width="48" d="M268 112l144 144-144 144M392 256H100"/></svg>');
    transform: rotateZ(45deg);
    width: 18px;
    height: 18px;
    padding: 1px;
    left: 0;
}