.enquete-blog *{-moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; user-select: none;}

.enquete-blog{
    width: 100%;
    max-width: 600px;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 50px auto 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.enquete-blog h3{
    font-size: 22px;
    font-weight: bold;
    color: #555;
    margin: 0;
}

.enquete-blog .opcao{
    width: 100%;
    position: relative;
}

.enquete-blog .opcao .vote{
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    color: #777;
    padding: 0 45px;
    margin: 0;
	position: relative;
    cursor: pointer;
}

.enquete-blog .opcao .vote:hover, .enquete-blog .vote.votado{
    border: 1px solid #4caf50;
    background-color: #4caf50;
    color: #fff;
}

.enquete-blog .opcao .count{
    width: 40px;
    height: 40px;
    background-color: #e6ebed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
    color: #708893;
    border-radius: 100%;
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 1;
    cursor: default;
}

.enquete-blog .total{
    font-size: 18px;
    font-weight: bold;
    color: #555;
    margin: 0;
}

@media(max-width: 520px){
    .enquete-blog{padding: 10px;}
    .enquete-blog .opcao .vote{
        justify-content: start;
        text-align: left;
        font-size: 14px;
        line-height: 18px;
        padding: 0 45px 0 10px;
    }
    .enquete-blog .opcao .count{
        width: 30px;
        height: 30px;
        font-size: 12px;
        line-height: 12px;
        right: 10px;
        top: 10px;
    }
}