.b-vote {
    position: relative;
}

.b-vote__votes {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    font-family: 'futuralightcregular', sans-serif;
    text-align: center;
    color: #f74b49;
    vertical-align: middle;
}

.b-vote__votes:last-child {
    margin-bottom: 0;
}

.b-vote__button {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: #db0000;
    background: none;
    border: none;
    outline: none;
    opacity: 0.5;
    cursor: pointer;
    vertical-align: middle;
}

.b-vote__button:hover,
.b-vote__button--selected {
    opacity: 1;
}

.b-vote__button--selected {
    pointer-events: none;
}

.b-vote__icon {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.b-vote__captcha {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #ccc;
    transform: translate(-50%, 20px);
    z-index: 9999;
}

.b-vote__captcha:before,
.b-vote__captcha:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 0;
    height: 0;
    pointer-events: none;
}

.b-vote__captcha:before {
    margin-left: -18px;
    border: 18px solid transparent;
    border-bottom-color: #ccc;
}

.b-vote__captcha:after {
    margin-left: -16px;
    border: 16px solid transparent;
    border-bottom-color: #fff;
}