﻿.chip {
    /* Center the content */
    align-items: center;
    display: inline-flex;
    justify-content: center;
    /* Background color */
    background-color: #e0dfe0;
    /* Rounded border */
    border-radius: 9999px;
    /* Spacing */
    padding: 0.25rem 0.5rem;
    max-width: 100%;
    height: 100%;
    user-select: none;
}

.chip__content {
    margin-right: 0.25rem;
    white-space: nowrap;
}

.chipfont {
    font-family: "Runda";
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0em;
    text-transform: none;
}





.page-head__ticker {
    display: flex;
    align-items: center;
    justify-content: center;
   
    line-height: 1;
    padding: 0 12px;
   
}

.msg {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    width: calc(100% - 24px);
}

    .msg span {
        animation: marquee 60s linear infinite;
        display: inline-block;
        padding-left: calc(100% - 24px);
        margin-left: 50px;
        margin-right: 50px;
    }

.msg--two span {
    animation-delay: 30s;
    margin-left: 50px;
    margin-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}