.donaters {
    padding: 30px 0;
    background: var(--theme-semiwhite);
    display: flex;
    overflow: hidden;
}
.donaters .donater-item {
    min-width: 30ch;
    padding: 0 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.donaters .donater-item .circle {
    width: 72px;
    min-width: 72px;
    aspect-ratio: 1/1;
    background: var(--Mint);
    border-radius: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--White);
    font-weight: bold;
    margin-right: 10px;
}
.donaters .donater-name {
    color: var(--Mint);
}
.donaters .donater-time {
    color: var(--DarkGrey);
    font-size: calc(1rem - 4px);
}


@keyframes ticker {
    to {
        transform: translate(-100%);
        transform: translate3d(-100%,0,0)
    }
}
.donaters-track {
    animation: ticker 40s linear infinite;
    white-space: nowrap;
    display: flex;
    position: relative
}
