.poll-block__container .poll-block{
    width: 100%;
}
.poll-block__row{
    padding-left: 60px;
    border-left: 2px solid #00CBBF;
}
.poll-block__row .poll-block__name{
    color: #343434;
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 30px;
}
.poll-block__row .poll-block__h2{
    color: #343434;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    margin: 0 0 30px 0;
}
.poll-block__container .poll-item{
    margin-bottom: 15px;
    padding-bottom: 0;
}

.poll-block__container .poll-item__radio-label:before{
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #B0B1B1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.poll-block__container .poll-item__radio-label:after{
    content: '';
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    display: block;
    position: absolute;
    background: transparent;
    border-radius: 50%;
}

.poll-block__container .poll-item__radio-label:hover:after{
    background: var(--themePollResultColor);
}

.poll-block__container .poll-item__radio-label:hover:before{
    background: var(--themePollResultColorTransparent);
    border-color: var(--themePollResultColor);
}


.poll-block__container .poll-item:last-child{
    margin-bottom: 0;
}
.poll-block__container .poll-item__radio{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 30px;
}
.poll-block__container .poll-item__radio-label{
    color: #343434;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    padding-left: 45px;
}

.poll-block__container .poll-block._checked .poll-item__radio-label{
    color: rgba(52, 52, 52, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.poll-block__container .poll-block._checked .poll-item._selected .poll-item__radio-label {
    color: #343434;
}
.poll-block__container .poll-block._checked .poll-item._selected .poll-item__radio-label:before{
    background:  var(--themePollResultColor);
    border-color: transparent;
}
.poll-block__container .poll-block .poll-item__radio-button:checked + .poll-item__radio-label:before {
    background:  var(--themePollResultColor)!important;
    border-color: transparent;
}

.poll-block__container .poll-block .poll-item__radio-button:checked + .poll-item__radio-label:after {
    background:  #fff;
    border-color: transparent;
}

.poll-block__container .poll-block._checked .poll-item__radio-label:before{
    border: 1px solid rgba(176, 177, 177, 0.50);
    background: rgba(176, 177, 177, 0.20);
}

.poll-block__container .poll-item__results-quantity{
    color: #343434;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    width: 40px;
    text-align: left;
}

.poll-block__container .poll-block._checked .poll-item{
    margin-bottom: 5px;
}

.poll-block__container .poll-block._checked .poll-item__radio{
    margin-bottom: 5px;
}
.poll-block__container .poll-item__results{
    gap: 15px;
}
.poll-block__container .poll-item__results-line {
    height: 4px;
    width: calc(100% - 55px);
    border-radius: 10px;
    background: rgba(52, 52, 52, 0.20);
}

.poll-block__container .poll-block .poll-item .poll-item__results-line .fill{
    border-radius: 10px !important;
    background: #343434 !important;
    height: 4px !important;
}

.poll-block__container .poll-block .poll-item._selected .poll-item__results-line .fill{
    background: var(--themePollResultColor) !important;
}

@media(max-width: 767px){
    .poll-block__row {
        padding-left: 15px;
    }
    .poll-block__container .poll-block__name {
        font-size: 24px;
        font-weight: 500;
        line-height: 28px;
        margin-bottom: 15px;
    }
    .poll-block__container .poll-block__h2 {
        font-size: 20px;
        font-weight: 500;
        line-height: normal;
        margin: 0 0 15px 0;
    }
    .poll-block__container .poll-item__radio-label {
        font-size: 16px;
    }
    .poll-block__container .poll-item__radio-label:before {
        width: 28px;
        height: 28px;

    }
    .poll-block__container .poll-item__radio-label:hover:before, .poll-block__row .poll-block._checked .poll-item._selected .poll-item__radio-label:before {
        background-size: 100% 100%;
    }
    .poll-block__container .poll-item__results {
        gap: 5px;
    }
}
