.b-vote {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.b-vote__votes {
    display: block;
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    font-family: 'futuralightcregular', sans-serif;
    text-align: center;
    color: #ca0f0a;
}

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

.b-vote__button {
    display: inline-block;
    width: 76px;
    height: 68px;
    margin: 0;
    padding: 0;
    text-indent: -9999px;
    background: url(../img/vote-button.jpg) 0 0 no-repeat;
    border: none;
    outline: none;
    cursor: pointer;
}

.b-vote__button:hover {
    background-position: 0 100%;
}

.b-vote__button:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.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;
}