/* UNN: #EF723B */
/* #dd5522 */
/* #e6642f */
.enquete {
    margin-bottom: 5%;
}

.enquete .titulo {
    color: white;
    font-weight: bold;
    font-size: 2.084vw;
    text-align: center;
    max-width: 30%;
    margin-left: auto;
    margin-right: auto;
    line-height: normal;
}

.enquete .embrulho {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.enquete .vs {
    font-weight: normal;
    font-size: 3.81vw;
    margin: 0 5.4%;
}

.enquete .cartao>* {
    pointer-events: none;
}

.enquete .cartao {
    transition: transform .4s cubic-bezier(0.5, 0, 0.1, 1);
}

.enquete .cartao.pb .imagem {
    filter: grayscale(100%);
}

.enquete .cartao:not(.pb):not(.escolhido):not(.loading):hover {
    transform: scale(1.3);
}

.enquete .cartao .imagem {
    transition: filter .3s ease;
}

.enquete .cartao.escolhido,
.enquete .cartao.pb {
    cursor: auto;
}

.enquete .cartao.pb .placar,
.enquete .cartao.escolhido .placar {
    opacity: 1;
}

.enquete .placar {
    position: absolute;
    left: -1px;
    bottom: -1px;
    right: -1px;
    top: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
    background-image: linear-gradient(to bottom, rgba(67, 67, 67, 0), var(--escuro-tema));
}

.enquete .total {
    color: white;
    font-weight: normal;
    font-size: 2.86vw;
    z-index: 1;
}

.enquete .progresso {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: #EF723Bcc;
}

@media only screen and (max-width: 1024px) {
    .enquete .titulo {
        max-width: 50%;
        font-size: 1.5em;
        min-width: 250px;
    }

    .enquete .total {
        font-size: 2em;
    }

    .enquete .vs {
        font-size: 2em;
    }
}

@media only screen and (max-width: 767px) {
    .enquete {
        margin-bottom: 15%;
    }

    .enquete .cartao.escolhido {
        box-shadow: 0px 0px 0px .5vw white;
    }
}