
/* New Poll design - 2025 */

.poll-v2 {
    font-size: 18px;
    padding: 20px 12px;
}

.card-data:not(#news_body) .poll {
    padding: 0;
}

.poll-v2 .poll-header .poll-title{
    font-size: 20px;
    text-transform: uppercase;
    color: #3E5368;
    font-weight: 700;
    margin-bottom: 8px;
}

.poll-v2 .poll-header .question{
    font-weight: 400;
}

.poll-v2 .poll-content {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.poll-v2 .poll-content .poll-option {
    border-radius: 8px;
    outline: 1px rgba(0, 85.68, 122.40, 0.15) solid;
    outline-offset: -1px;
    padding: 8px;
    text-align: center;
    text-transform: uppercase;
}

.poll-v2 .poll-content .poll-option:hover {
    background-color: #e6e6e6;
    cursor: pointer;
}

.poll-v2 .poll-footer {
    font-size: 12px;
    font-weight: 400;
    color: #868c96;
    text-align: center;
}

.poll-v2 .poll-results {
    display: flex;
    flex-direction: column;
    gap: 17px;
    width: 100%;
}

.poll-v2 .bar-background {
    height: 9px;
    background-color: #F2F4F8;
    border-radius: 15px;
}

.poll-v2 .bar {
    height: 100%;
    background-color: #2E4077;
    border-radius: 15px;
    width: 0;
    transition: width 0.3s ease;
}

.poll-v2 .result-header {
    display: flex;
    margin-bottom: 8px;
}

.poll-v2 .result-option {
    color: #3E4652;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 500;
    text-transform: uppercase;
    padding-left: 4px;
    flex-grow: 1;
}

.poll-v2 .result-values {
    display: flex;
    color: #868C96;
    font-size: 12px;
    font-family: Roboto;
    font-weight: 400;
    align-items: end;
    justify-content: space-between;
}

.poll-v2 .result-values.percent {
    color: #3E4652;
    margin-left: 8px;
    width: 22px;
    text-align: right;
    display: block;
}

.poll-v2 .img-container.result {
    width: 48px;
    height: 40px;
    margin-right: 6px;
}

.poll-v2 .option.team {
    width: 80px;
}

.poll-v2 .option.team:hover > .img-container {
    cursor: pointer;
    outline: 2px #3E4652 solid;	
    outline-offset: -2px;
}

.poll-v2 .poll-content.match {
    flex-direction: row;
    justify-content: space-between;
    margin: 30px 0;
}

.poll-v2 .img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #2E407733;

}

.poll-v2 .container-name {
    color: #3E4652;
    font-size: 12px;
    font-family: Roboto;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-top: 6px;
}