.ct-ticker {
    position: relative;
    color: #ffffff;
    z-index: 5;
    background: #535353;
    border-radius: 8px;
}
.ct-ticker__close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    opacity: 0.8;
    background: transparent;
    border: 0;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}
.ct-ticker__close:hover { opacity: 1; }
.ct-ticker__label {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 81px;
    justify-content: center;
    font-weight: 700;
    letter-spacing: .5px;
    background: #f5a425;
    color: #1e1e1e;
    z-index: 10;
    text-align: center;
    border-radius: 8px;
    font-size: 23px;
}
.ct-ticker__viewport {
    overflow: hidden;
    width: 100%;
    padding-right: 36px;
    background: red;
    color: black;
    border-radius: 8px 0px 0px 8px;
    font-size: 22px;
    font-weight: 500;
}
.ct-ticker__track {
    white-space: nowrap;
    display: inline-block;
    animation: ct-marquee 40s linear infinite;
}
.ct-ticker__item {
    display: inline-block;
    margin-right: 56px;
    line-height: 20px;
}
.ct-ticker a { color: #80d8ff; text-decoration: underline; }
.ct-ticker a:hover { text-decoration: none; }

@keyframes ct-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .ct-ticker__item { font-size: 13px; margin-right: 40px; }
    .ct-ticker__label { width: 56px; }
    .ct-ticker__viewport { padding-left: 68px; }
}

