/* Default Theme: orange bg, red text */
.ticker-theme-default {
    background-color: #FFB142;
    color: #7C1312;
}

/* Red Theme: red bg, white text */
.ticker-theme-red {
    background-color: #7C1312;
    color: #ffffff;
}
.awd-ticker-wrap {
    overflow: hidden;
    font-size: 1.25rem;
    padding: 0.75rem 0;
    white-space: nowrap;
}

.awd-ticker {
    display: inline-block;
    width: max-content;
    animation: awd-scroll 180s linear infinite;
    overflow: hidden;
}

.awd-ticker-items {
    display: inline-flex;
    align-items: center;
    font-family: 'David Libre';
    font-size: 48px;
    font-weight: 400;
}
.awd-ticker-item {
    white-space: nowrap;
    margin-right: .5em;
}
.awd-ticker-item::after {
    content: '•';
    font-size: 60px;
    line-height: 0;
    margin-left: .5em;
    top: 11px;
    position: relative;
    display: inline-block;
    font-family: 'Public Sans';
}


/* Full width breakout for Astra and WordPress blocks */
body .alignfull.awd-ticker-wrap,
body .wp-block-awd-ticker.alignfull.awd-ticker-wrap,
body #content .entry-content .alignfull.awd-ticker-wrap {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

@keyframes awd-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}