@font-face {
    font-family: 'Fedra Sans Pro';
    src: url('font/FedraSansPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Fedra Sans Pro';
    src: url('font/FedraSansPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Fedra Sans Pro';
    src: url('font/FedraSansPro-Normal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Fedra Sans Pro';
    src: url('font/FedraSansPro-NormalItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Fedra Sans Pro';
    src: url('font/FedraSansPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}


.b-vote {
    box-sizing: border-box;
    display: block;
    margin: 0 0 30px;
    padding: 32px;

    background: linear-gradient(132.49deg, #109F84 2.89%, #3CC8A2 51.81%, #8EC21F 105.38%), #BFF8EC;
    border: 1px solid #C4C4C4;

    font-family: 'Fedra Sans Pro', sans-serif;
    color: #fff;
}

.b-vote h1,
.b-vote h2,
.b-vote h3 {
    font-family: 'Fedra Sans Pro', sans-serif;
    color: #fff;
}

.b-vote__info {
    display: block;
    margin: 0 0 32px;
}

.b-vote__title {
    margin: 0 0 16px;

    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
}


.b-vote__title-pic {
    display: inline-block;
    margin: 0 0 0 -3px;
    width: 39px;
    height: 36px;
    background: url("images/colibri.svg") no-repeat center;
    background-size: contain;
}

.b-vote__title-pic_top {
    margin-bottom: 0;
}
.b-vote__title-pic_middle {
    margin-bottom: -9px;
}
.b-vote__title-pic_bottom {
    margin-bottom: -20px;
}

.b-vote__description {
    margin: 0 0 24px;

    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.b-vote__description p {
    margin: 16px 0;
}
.b-vote__description a:link,
.b-vote__description a:visited {
    color: #fff;
}

.b-vote__panel {
    margin: 0 0 40px;
}

.b-vote__panel-title {
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;

    margin: 0 0 32px;
}

.b-vote__question {
    margin: 0 0 40px;
}

.b-vote__question-title {
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;

    margin: 0 0 32px;
}

.b-vote-answer {
    display: flex;
    margin: 0 0 24px;
}

.b-vote-answer__handle {
    width: 40px;
}

.b-vote-answer__info {
    flex: 2 1;

    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.b-vote-answer__info h3 {
    display: block;
    margin: 0 0 8px;

    font-weight: 500;
}

.b-vote-answer__info p {
    margin: 0 8px;
}


.b-vote-checkbox,
.b-vote-radio {
    box-sizing: border-box;
    appearance: none;
    position: relative;
    width: 24px;
    height: 24px;
}

.b-vote-checkbox::before,
.b-vote-radio::before {
    content: "";
    position: absolute;

    box-sizing: border-box;

    background: #fff;

    width: 24px;
    height: 24px;
    border-radius: 5px;
    border: 2px solid #E1E5EA;
    transition: 500ms;

    cursor: pointer;
}
.b-vote-radio::before {
    border-radius: 50%;
}
.b-vote-checkbox::after,
.b-vote-radio::after {
    content: "";
    position: absolute;

    background: url("images/check.svg") no-repeat center;
    opacity: 0;

    width: 24px;
    height: 24px;
    transition: 500ms;

    cursor: pointer;
}

.b-vote-checkbox:checked::before,
.b-vote-radio:checked::before {
    border-color: #209F6D;
}
.b-vote-checkbox:checked::after,
.b-vote-radio:checked::after {
    opacity: 1;
}

.b-vote-checkbox:focus::before,
.b-vote-radio:focus::before {
    border-color: #209F6D;
}


.b-vote-result {
    display: flex;
    margin: 0 0 24px;
}

.b-vote-result__percent {
    width: 76px;

    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}

.b-vote-result__info {
    flex: 2 1;

    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.b-vote-result__name {
    margin: 0 0 16px;

    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.b-vote-result__progress {
    margin: 0 0 4px;
}

.b-vote-result__counter {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}


.b-vote-progress {
    position: relative;
    width: 100%;
    height: 8px;
}

.b-vote-progress__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0%;

    border-radius: 4px;

    /*background: linear-gradient(90deg, #A7FFFF 0%, #B3FCD3 100%);*/
    background: #0087cd;

}


.b-vote__counter {
    display: none;



    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}


.b-vote__required-note {
    display: none;
    margin: 0 0 16px;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.b-vote__required-note.active {
    display: block;
}


.b-vote__button-panel {
}

.b-vote__submit {
    border: 0;
    outline: none;

    display: inline-block;
    padding: 12px 36px;
    background: #fff;
    border-radius: 32px;

    font-family: 'SB Sans Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;

    text-align: center;

    color: #333F48;

    cursor: pointer;
}

.b-vote__submit:disabled {
    opacity: 60%;

    cursor: default;
}


.b-vote-epilog {
    margin: 40px 0 0;
}
.b-vote-epilog__title {
    margin: 0 0 24px;

    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
}
.b-vote-epilog__panel {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 24px;

    background: #fff;
    border-radius: 24px;

    color: #333F48;
}
.b-vote-epilog__panel-content {
    flex: 2 1;

}
.b-vote-epilog__panel-title {
    margin: 0 0 16px;

    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}
.b-vote-epilog__panel-text {
    max-width: 402.55px;

    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.b-vote-epilog__panel-img {
    width: 138px;
}



/* корректировка мобилок*/
@media screen and (max-width: 767px)  {

    .b-vote {
        margin: 24px 24px;
        padding: 24px 16px;
    }

    .b-vote__title {
        margin: 0 0 16px;

        font-size: 24px;
        line-height: 28px;
    }

    .b-vote__title-pic {
        display: inline-block;
        margin: 0 0 0 -3px;
        width: 33px;
        height: 30px;
        background: url("images/colibri.svg") no-repeat center;
    }
    .b-vote__title-pic_top {
        margin-bottom: 0;
    }
    .b-vote__title-pic_middle {
        margin-bottom: -9px;
    }
    .b-vote__title-pic_bottom {
        margin-bottom: -16px;
    }

    .b-vote__description {
        margin: 0 0 32px;

        font-size: 14px;
        line-height: 20px;
    }

    .b-vote__description p {
        margin: 16px 0;
    }


    .b-vote__panel {
        margin: 0 0 24px;
    }

    .b-vote__panel-title {
        font-size: 24px;
        line-height: 28px;

        margin: 0 0 24px;
    }

    .b-vote__question {
        margin: 0 0 32px;
    }

    .b-vote__question-title {
        font-size: 24px;
        line-height: 28px;

        margin: 0 0 24px;
    }

    .b-vote-answer {
        margin: 0 0 24px;
    }

    .b-vote-answer__handle {
        width: 40px;
    }

    .b-vote-answer__info {
        font-size: 14px;
        line-height: 20px;
    }

    .b-vote-answer__info h3 {
        margin: 0 0 8px;
    }

    .b-vote-answer__info p {
        margin: 0 8px;
    }

    .b-vote__submit {
        display: block;
        padding: 13px 36px;
        width: 100%;
    }



    .b-vote-epilog {
        margin: 32px 0 0;
    }
    .b-vote-epilog__title {
        margin: 0 0 16px;
        font-size: 24px;
        line-height: 28px;
    }
    .b-vote-epilog__panel {
        display: block;
        padding: 16px 24px;
    }
    .b-vote-epilog__panel-content {
        margin: 0 0 16px;
    }
    .b-vote-epilog__panel-title {
        margin: 0 0 16px;
        font-size: 20px;
        line-height: 26px;
    }
    .b-vote-epilog__panel-text {
        max-width: initial;
        font-size: 14px;
        line-height: 20px;
    }
    .b-vote-epilog__panel-img {
        width: 138px;
    }
}