.nr-poll{
    width:100%;
    box-sizing:border-box;
    padding:26px;
    border:1px solid #e1e9e3;
    border-radius:22px;
    background:#fff;
    box-shadow:0 10px 30px rgba(16,45,28,.07);
}

.nr-poll-head{
    margin-bottom:18px;
}

.nr-poll-kicker{
    display:inline-block;
    margin-bottom:8px;
    color:#2b8749;
    font-size:11px;
    line-height:1;
    font-weight:900;
    letter-spacing:.7px;
    text-transform:uppercase;
}

.nr-poll h3{
    margin:0!important;
    color:#0f1f32;
    font-size:24px!important;
    line-height:1.18!important;
    letter-spacing:-.6px!important;
    font-weight:900!important;
}

.nr-poll-options{
    display:grid;
    gap:9px;
}

.nr-poll-option{
    position:relative;
    display:flex;
    align-items:center;
    gap:11px;
    min-height:50px;
    box-sizing:border-box;
    padding:11px 13px;
    border:1px solid #e1e8e3;
    border-radius:13px;
    background:#fafcfb;
    cursor:pointer;
    transition:.18s ease;
}

.nr-poll-option:hover{
    border-color:#bdd9c5;
    background:#f4faf5;
}

.nr-poll-option input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.nr-poll-radio{
    width:18px;
    height:18px;
    flex:0 0 18px;
    box-sizing:border-box;
    border:2px solid #aebbb2;
    border-radius:50%;
    background:#fff;
    box-shadow:inset 0 0 0 4px #fff;
    transition:.18s ease;
}

.nr-poll-option:has(input:checked){
    border-color:#69a97d;
    background:#eef8f0;
}

.nr-poll-option input:checked + .nr-poll-radio{
    border-color:#2b8749;
    background:#2b8749;
}

.nr-poll-answer{
    color:#28384a;
    font-size:14px;
    line-height:1.35;
    font-weight:700;
}

.nr-poll-submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:16px;
    padding:12px 18px;
    border:0;
    border-radius:12px;
    background:linear-gradient(135deg,#2b8749,#155d32);
    color:#fff;
    font:inherit;
    font-size:13px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(43,135,73,.18);
}

.nr-poll-submit:hover{
    transform:translateY(-1px);
}

.nr-poll-submit:disabled{
    opacity:.65;
    cursor:wait;
    transform:none;
}

.nr-poll-message{
    margin-bottom:10px;
    color:#155d32;
    font-size:13px;
    font-weight:700;
}

.nr-poll-message:empty{
    display:none;
}

.nr-poll-message.is-error{
    color:#b63b3b;
}

.nr-poll-results{
    display:grid;
    gap:13px;
}

.nr-poll-result-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:6px;
    color:#28384a;
    font-size:13px;
}

.nr-poll-result-top span{
    font-weight:750;
}

.nr-poll-result-top strong{
    color:#155d32;
    font-weight:900;
}

.nr-poll-bar{
    height:9px;
    overflow:hidden;
    border-radius:999px;
    background:#edf2ee;
}

.nr-poll-bar span{
    display:block;
    height:100%;
    border-radius:inherit;
    background:linear-gradient(90deg,#399453,#216f3f);
}

.nr-poll-summary{
    margin-top:4px;
    padding-top:14px;
    border-top:1px solid #e7ece8;
    color:#6c7887;
    font-size:12px;
    font-weight:700;
}

.nr-poll-summary span{
    color:#8a958d;
}

@media(max-width:600px){
    .nr-poll{
        padding:20px 16px;
        border-radius:18px;
    }

    .nr-poll h3{
        font-size:20px!important;
    }

    .nr-poll-submit{
        width:100%;
    }
}
