.stats-visual-show {

    font-size: 13px;
    font-weight: 500;
    display: flex;
    padding: 12px;
    text-align: center;
    flex-direction: row;
    justify-content: center;
    gap: 5px;
}

.stats-visual-status {
    display: flex;
    gap: 7px;
    flex-direction: row;
    align-content: center;
    align-items: center;
}


.stats-visual-show svg {
    width: auto;
    height: 20px;
}

.stats-visual-show.show-futuro {
    background: #007bff;
    color: #fff;
}

.stats-visual-show.show-encerrado {
    background: #000;
    color: #adadad;
}


.stats-visual-show.show-encerrado svg {
    fill: #C093FF;
}

.stats-visual-show.show-futuro svg {

    fill: #31d1ff;

}


.stats-visual-show.show-andamento {
    animation: animanewhead 3000ms ease infinite;
    color: #fff;
    font-weight: 700;
}

.stats-visual-show.show-andamento svg {
    mix-blend-mode: difference;
}

.stats-visual-show.show-em-votacao {
    background: #F2295B;
    color: #fff;
}

.stats-visual-show.show-em-votacao svg {
    fill: #ffc81b;
}

@keyframes animanewhead {
    0% {
        background: #26005E;
    }

    25% {
        background: #1DD694;
    }
    50% {
        background: #F2295B;
    }
    75% {
        background: #1DD694;
    }
    100% {
        background: #26005E;
    }
}