.sw-carousel {
    width: 100%;
    overflow: hidden;
}
.newsticker {
    font-family: "Open Sans",Sans-serif;

    position: relative;
    color: #fff;
    font-size: 15px;
    line-height: 18px;
}


.newsticker:before {
    content: "";
    position: absolute;
    top: 0;
    width: 200vw;
    left:-50vw;
    background-color: var(--color-background-1);
    background-image: var(--gradient-background-1);
    height: 100%;
}


.topBar {
    margin-top: -10px;
    margin-bottom: 10px;
  }
.sw-carousel__link {
    margin-left: 17px;
    position: relative;
    white-space: nowrap;
}

.sw-carousel__link:before {
    margin-left: 5px;
    margin-right: 5px;
    content: '|';
    position: absolute;
    right: 100%;
    top: 0;

}

.sw-carousel__link:after {

    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #fff;
    bottom: -1px;
    opacity: .5;
    left: 0;
}
.sw-carousel__link:hover:after {
    opacity: 1;
}
.sw-carousel__item {
    display: flex;
    justify-content: center;
    padding: 5px 0;

}
.sw-carousel__item__inner {
    display: flex;
}

@media screen and (max-width: 768px) {
    .newsticker {
        display: none;
    }
}

