.news-ticker {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #cccccc;
    position: relative;
    background-color: ghostwhite;
    margin: 15px 0px 26px 0px;
}
.news-ticker .content {
    display: flex;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}
.news-ticker .content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.news-ticker .content::-webkit-scrollbar {
    display: none;
}
.news-ticker .item {
    border-right: 10px solid white;
    color: #333333;
    display: block;
    font-family: 'Libre Baskerville', serif;
    flex-shrink: 0;
    height: 100px;
    padding: 10px;
    scroll-snap-align: start;
    transition: 0.2s;
    width: 285px;
}
.news-ticker .item:active {
    color: #333333;
}
.news-ticker .item:hover {
    color: black;
}
.news-ticker .item:last-child {
    border-right: none;
}
.news-ticker .item .title {
    font-weight: 800;
}
.news-ticker .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-ticker .misc {
    font-size: 10px;
}
.news-ticker .scroll-left {
    display: none;
    left: 0px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.news-ticker .scroll-right {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .news-ticker .scroll-right {
        display: none;
    }
}
.news-ticker .scroll-left i,
.news-ticker .scroll-right i {
    font-size: 30px;
    color: dodgerblue;
    opacity: 50%;
    transition: 0.2s;
}
.news-ticker .scroll-left i:hover,
.news-ticker .scroll-right i:hover {
    opacity: 75%;
}
.news-ticker .title {
    display: -webkit-box;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 5px;
    margin-top: 0px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
