/* ══════════════════════════
       VOTE MODAL (socials / vote_struct)
    ══════════════════════════ */
.vote_modal {
    display: flex;
    flex-direction: column;
    align-content: center;
    overflow-y: auto;
    padding: 2%;
    width: -webkit-fill-available;
    height: 100%;
    flex-wrap: wrap;
}

/* Contestant button overrides for the static modal pages */
.contestant button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    width: fit-content;
    /* min-width: 101px; */
    min-height: 10vh;
}



@media(min-width: 726px) {
    .contestant button {
        min-width: auto;
    }
}

.contestant button:hover {
    color: plum;
    border-radius: 20pt;
    box-shadow: 0px 8px 18px 0 rgba(188, 143, 143, 0.4);
}
