
.mini-poll {
    margin: 1em 0;
}
.mini-poll-buttons {
    text-align: center;
}
.mini-poll-buttons button {
    margin: 0.25em;
    padding: 0.5em 1em;
    font-size: 1em;
    font-weight: 600 !important;
    border-radius: 3px;
    background: none;
    border: 1px solid #fff;
    transition: .2s ease;
}
.mini-poll-buttons button svg {
    margin-left: 10px;
    width: 12px;
    fill: var(--theme-palette-color-3);
    transition: .2s ease;
}
.mini-poll-buttons button:hover {
    cursor: pointer;
    background: var(--theme-palette-color-1);
    border: 1px solid var(--theme-palette-color-1);
    color: #fff;
}
.mini-poll-buttons button:hover svg {
    fill: #fff;
    transform: rotate(90deg);
}
.mini-poll-results {
    margin-top: 1em;
}
.mini-poll h4 {
    color: var(--theme-palette-color-4, #212224) !important;
    font-weight: 400 !important;
    font-family: "Manuale", Sans-serif !important;
    text-align: center;
}
.answers-2 button {
    width: calc(50% - 0.75em);
}
.answers-3 button {
    width: calc(33% - 0.75em);
}
.answers-4 button {
    width: calc(25% - 0.75em);
}