.vote-div{
    cursor: pointer;
    width: fit-content;
}

.vote-div.voted{
    cursor: default;
}
.vote-description{
    padding: 5px;
}

.vote-div .dashicons{
    line-height: 26px;
}

.feature-request-vote-value::before{
    -webkit-text-fill-color: #ffffff;
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}

.vote-div{
    margin: 3px 0;
}

.vote-div.no .dashicons::before{
    -webkit-text-fill-color: #ff0000;
}

.vote-div.maybe .dashicons::before{
    -webkit-text-fill-color: #ffa500;
}

.vote-div.yes .dashicons::before{
    -webkit-text-fill-color: #2196F3;
}

.vote-div.love-it .dashicons::before{
    -webkit-text-fill-color: #8BC34A;
}

.feature-request-vote-value::before{
    text-shadow: none;
}

.vote-div:hover .vote-description,
.voted .vote-description{
    color: #ffffff;
    position: relative;
    border-radius: 6px;
    margin-left: 5px;
}

.vote-div.no:hover .vote-description,
.voted.no .vote-description{
    background: #ff0000;
}

.voted.no .vote-description::after{
    border-color: transparent #ff0000 transparent transparent;
}

.vote-div.maybe:hover .vote-description,
.voted.maybe .vote-description{
    background: #ffa500;
}

.voted.maybe .vote-description::after{
    border-color: transparent #ffa500 transparent transparent;
}

.vote-div.yes:hover .vote-description,
.voted.yes .vote-description{
    background: #2196F3;
}

.voted.yes .vote-description::after{
    border-color: transparent #2196F3 transparent transparent;
}

.vote-div.love-it:hover .vote-description,
.voted.love-it .vote-description{
    background: #8BC34A;
}

.voted.love-it .vote-description::after{
    border-color: transparent #8BC34A transparent transparent;
}

.voted .vote-description::after{
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    position: absolute;
    left: -12px;
    top: 10px;
}

#filter-feature-requests-form label{
    font-weight: bold;
}

#filter-feature-requests-form a{
    text-decoration: none;
}

#filter-feature-requests-form a.selected{
    color: #ffffff;
    background-color: #000000;
    padding: 5px;
    border-radius: 6px;
}
.feature-request {
    border: 1px solid;
    border-radius: 20px;
    padding: 1rem;
    margin: 1rem 0;
}

.feature-request .feature-request-title{
    text-decoration: none;
    color: #000;
}

.feature-request .feature-request-title h4{
    margin-bottom: 0;
}

.feature-request .feature-request-categories{
    margin-bottom: 1rem;
}

.feature-request .column {
    width: 100%;
}

.feature-request .column-25 {
    margin-top: 1rem;
}
  
.feature-request .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.feature-request #comment{
    width: 90%;
}

#load-more-feature-requests{
    margin-top: 1rem;
}

#load-more-feature-requests::before{
    content: " ";
    width: 55px;
    height: 55px;
    background: url(../images/ajax-loader.gif) no-repeat;
    display: block;
    margin: auto;
}

#no-more-feature-requests{
    margin-top: 1rem;
}
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (min-width: 1200px) {
    .feature-request .column {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .feature-request .column-25 {
        max-width: 25%;
        margin-left: 1rem;
        margin-top: 0;
    }
}