.voting.widget {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 28px
}
.voting h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0px 0px 25px 0px;
}
.voting.result .voting-qa {
    position:relative;
    background-color: #F3F6F9;
    border-radius: 4px;
    padding: 15px 23px 15px 23px;
    margin: 0px 0px 15px 0px;
}
.voting.result .voting-qa .sum {
    position: absolute;
    right: 23px;
    top:50%;
    transform: translateY(-50%);
    color: #ababab;
    z-index: 1;
}
.voting.result .sum-line {
    color: #808080;
}
.voting.result .sum-line.top{
    margin-top: 6px;
    color: #000000;
}
.voting.result.widget .voting-qa .fill {
    background: #E2EAF6;
    display: block;
    position: absolute;
    height: 100%;
    width: 30%;
    border-radius: 5px;
    top: 0px;
    left: 0px;
    z-index: 0;
    width: 0%;
    transition: 2s;
}
.voting.result.context .voting-qa .fill {
    background: #33498B;
    border-radius: 4px;
    display: block;
    position: absolute;
    height: 3px;
    width: 30%;
    bottom: 0px;
    left: 0px;
    z-index: 0;
    width: 0%;
    transition: 2s;
}
.voting.context .voting-qa .name,
.voting.result .voting-qa .name {
    position: relative;
    z-index: 1;
}
.voting .voting-qa label {
    cursor: pointer;
    position: relative;
    background-color: #F3F3F3;
    border-radius: 0px;
    padding: 16px 22px 16px 64px;
    color: #0E456F;
    margin: 0px 0px 15px 0px;
    display: block;
    font-weight: normal;
    transition: color ease-in-out .15s;
}
.voting .voting-qa input[type='radio'],
.voting .voting-qa input[type='checkbox'] {
    display: none;
}
.voting.result .voting-qa.selected,
.voting.result .voting-qa.selected .sum,
.voting .voting-qa input[type='radio']:checked + label,
.voting .voting-qa input[type='checkbox']:checked + label {
    color: #33498B;
}

.voting .voting-qa input[type='checkbox']:not(checked) + label:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 23px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid;
    border-radius: 2px;
    transition: border-color ease-in-out .15s, background-color .15s linear;
    transform: translateY(-50%);
    border-color: rgba(120, 136, 152, .66);
}
.voting .voting-qa input[type='checkbox']:checked + label:before {
    border-color: #33498b;
}
.voting .voting-qa input[type='checkbox']:checked + label:after  {
    content: '';
    position: absolute;
    top: 50%;
    right: 27px;
    display: block;
    width: 8px;
    height: 6px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACXSURBVHgBbY4xDoJAEEVnl00MHTeQI1BYUFJqhzfBRKy1tth4AvQEWkLlCYArcAeo2IVhhoSEgikmP3nz/3wBGxNF2mtd+wUUb2cLdq79kwwRoZHhUfuH0zNhyJqcNQIEBO9VkV6UETZjIx3tDdiYtD/DPH2wSQ07dZY9RSLMKThiUhW31/JS8Api7Tm9yWCUvzK/ftadJrAnN/LFB1zTAAAAAElFTkSuQmCC');
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.voting .voting-qa input[type='radio']:not(checked) + label:before {
    content: '';
    position: absolute;
    top: 50%;
    right: auto;
    width: 19px;
    height: 19px;
    left: 24px;
    background-color: #fff;
    border: 2px solid #0E456F!important; 
    border-radius: 50%;
    transition: border-color ease-in-out .15s, background-color .15s linear;
    transform: translateY(-50%);
}
.voting .voting-qa input[type='radio']:checked + label:before {
    border-color: #33498b;
}
.voting .voting-qa input[type='radio']:checked + label:after  {
    position: absolute;
    top: 50%;
    right: auto;
    left: 28px;
    display: block;
    width: 11px;
    height: 11px;
    content: " ";
    background-color: #33498b;
    border-radius: 50%;
    transform: translateY(-50%);
}

.voting.context button{
    width: 50%;
}

.voting.context h4{
    font-weight: bold;
    font-size: 24px;
    color: #0E456F;
}

@media (max-width: 768px) {
    .voting.context button{
        width: 100%;
    }
}