.vote {
    width: 58px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #c4c4c4;
}


.nested-comments .vote{
    top: 0.5em;
    width: 48px!important;
}
.vote,
.voting {
    position: relative
}

.voting {
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    text-indent: -99999em;
    margin: 0 auto;
    padding: 0;
    cursor: pointer;
}

.vote.weak-vote {
    color: #E92F3E
}

.vote.strong-vote {
    color: #208844;
}

@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */
    .vote-count-post {
        position: relative;
        left: 2px;
    }
}

.vote .vote-for {
    background-image: url(../images/thumb-up.svg)
}

.weak-vote .vote-for {
    background-image: url(../images/thumb-up-weak.svg)
}

.strong-vote .vote-for {
    background-image: url(../images/thumb-up-strong.svg)
}

.vote-against {
    background-image: url(../images/thumb-down.svg)
}

.weak-vote .vote-against {
    background-image: url(../images/thumb-down-weak.svg)
}

.strong-vote .vote-against {
    background-image: url(../images/thumb-down-strong.svg)
}
@media only screen and (max-width:770px) {
    .vote {
    }
}

.vote-count-post{
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #c4c4c4;
    display: inline-flex;
    margin-top: 7px!important;
    padding-top: 1px;
}
.weak-vote .vote-count-post{
    border-color: #E92F3E;
}
.strong-vote .vote-count-post{
    border-color: #208844;
}
.nested-comment-head .vote-for{
    margin-bottom: 8px;
}