@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');
:root {
    --ticker-animation1: scroll 100s linear infinite;
    --ticker-animation2: scroll 100s linear infinite;
}
.news-ticker-body, .news-ticker-body-b {
    transition: visibility 0.3s ease-in-out;
}
.news-ticker-body-a {
    /* margin: 0; */
    margin-top: 5px;
    margin-bottom: -6px;
    margin-left: 16px;
    margin-right: 16px;
    font-family: 'PT Sans Narrow', Arial, Helvetica, sans-serif;
}
.news-ticker-body-b {
    /* margin: 0; */
    margin-top: 6px;
    margin-bottom: -6px;
    margin-left: 16px;
    margin-right: 16px;
    font-family: 'PT Sans Narrow', Arial, Helvetica, sans-serif;
}
.news-ticker-a {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.3);
    border-bottom: 4px solid #eb1c24;
    border-left: 0px solid #eeeeee;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.news-ticker-b {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.3);
    border-bottom: 4px solid #63c8e8;
    border-left: 2px solid #eeeeee;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.ticker-heading-a {
    background-color: #eb1c24;
    --p: 0;
    height: 20px;
    aspect-ratio: 3 / 2;
    clip-path: polygon(var(--p) 0, 100% 0, calc(100% - var(--p)) 100%, 0 100%);
    color: #fff;
    padding-left: 16px;
    padding-right: 6px;
    padding-top: 5px;
    font-size: 14px;
    display: flex;
    white-space: nowrap;
    flex-shrink: 0;
    align-items: center;
}
.ticker-heading-b {
    background-color: #63c8e8;
    --p: 8px;
    height: 20px;
    aspect-ratio: 3 / 2;
    clip-path: polygon(var(--p) 0, 100% 0, calc(100% - var(--p)) 100%, 0 100%);
    color: #fff;
    padding: 0 20px;
    padding-top: 1px;
    font-size: 14px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}
.ticker-content-wrapper {
    flex: 1;
    display: flex;
    overflow: hidden;
    position: relative;
    /* margin-left: -4px; */
    height: 20px;
}
.ticker-content {
    display: flex;
    color: #e31b23;
    white-space: nowrap;
    padding-left: 6px;
    animation: var(--ticker-animation1);
    align-items: center;
}
.ticker-content:hover {
    animation-play-state: paused;
}
.ticker-content-b {
    display: flex;
    color: #63c8e8;
    white-space: nowrap;
    padding-left: 6px;
    animation: var(--ticker-animation2);
    /* animation: scroll 100s linear infinite; */
    align-items: center;
}
.ticker-content-b:hover {
    animation-play-state: paused;
}
.ticker-item {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    margin-right: 5px;
    transition: color 0.3s;
    display: inline-block;
}
.ticker-item:hover {
    color: #eb1c24;
}.ticker-item-b {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    margin-right: 5px;
    transition: color 0.3s;
    display: inline-block;
}
.ticker-item-b:hover {
    color: #63c8e8;
}
@keyframes scroll {
    100% { transform: translateX(-100%); }
}
