.feature-voting-wrapper{
    display: flex;
}

.feature-voting-wrapper .feature-voting-row{
    flex: 1 1 100%;
}

.feature-voting-features-wrapper{
    display: flex;
    flex-direction: column;
}

.feature-voting-features-wrapper .feature-voting-feature-row{
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    -webkit-transition: all .3s cubic-bezier(.25,.8,.25,1);
    transition: all .3s cubic-bezier(.25,.8,.25,1);
    border: 0;
}

.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-headline{
    padding: 10px 20px;
    background-color: #f4f4f4;
    color: #000;
}

.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-description{
    color: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-description .feature-voting-feature-description-inner{
    padding: 20px 20px 10px;
}

.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper{
    padding: 10px 20px;
    display: flex;
    gap: 20px;   
    align-items: center;
    flex-wrap: wrap;
}

.feature-voting-wrapper .feature-voting-row .feature-voting-attachment-download-btn,
.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-unfold-collapse-btn,
.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-vote-btn,
.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-dislike-btn,
.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-feature-attachment-download-btn{
    background-color: #f4f4f4;
    color: #000;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
    border: 0;
    outline: none;
    padding: 0.6180469716em 1.41575em;
    text-decoration: none;
    font-weight: 600;
    text-shadow: none;
    display: inline-block;
}

.feature-voting-wrapper .feature-voting-row .feature-voting-attachment-download-btn:hover,
.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-unfold-collapse-btn:hover,
.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-vote-btn:hover,
.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-dislike-btn:hover,
.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-feature-attachment-download-btn:hover{
    background-color: #d5d5d5;
}

.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-vote-btn.user-voted{
    background-color: #51A556;
    color: #fff;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}

.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-vote-btn.user-voted:hover{
    background-color: #89cc66;
}

.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-dislike-btn.user-disliked{
    background-color: #51A556;
    color: #fff;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}

.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-dislike-btn.user-disliked:hover{
    background-color: #89cc66;
}

.feature-voting-feature-dislike-btn-wrapper.feature-voting-feature-d-none{
    display: none;
}

.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-feature-vote-count,
.feature-voting-features-wrapper .feature-voting-feature-row .feature-voting-feature-actions-wrapper .feature-voting-feature-dislike-count{
    padding: 10px 12px 13px;
    position: relative;
    background-color: #fff;
    border: 1px solid #f4f4f4;
    border-left: 0;
    left: -3px;
}

.feature-voting-remaining-votes-wrapper-badge-right{
    position: fixed;
    top: calc(50% - 40px);
    right: 0;
    background-color: #fff;
    -webkit-box-shadow: -5px 0px 10px 2px rgba(0,0,0,0.2); 
    box-shadow: -5px 0px 10px 2px rgba(0,0,0,0.2);
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}

.feature-voting-remaining-votes-wrapper-badge-right .feature-voting-remaining-votes-title-badge-right{
    padding: 10px 15px;
    background-color: #d5d5d5;
    font-weight: bold;
}

.feature-voting-remaining-votes-wrapper-badge-right .feature-voting-remaining-votes-title-badge-right .feature-voting-remaining-votes-title-badge-right-feature-voting-title{
    max-width: 110px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: normal;
}

.feature-voting-remaining-votes-wrapper-badge-right .feature-voting-remaining-votes-content-badge-right{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
}

/* BEGIN - MODAL STYLES */
.feature-voting-modal {
    display: none; 
    position: fixed; 
    z-index: 1001; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.feature-voting-modal-close {
    color: #f4f4f4;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-left: auto;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
}

.feature-voting-modal-close:hover,
.feature-voting-modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.feature-voting-modal-header {
    display: flex;
    align-items: center;
    padding: 7px 15px 7px;
    color: #000;
    background-color: #fff;
    border-bottom: 1px solid #f4f4f4;
}

.feature-voting-modal-header h2{
    padding: 0;
    color: #000;
    margin-bottom: 0;
    font-size: 24px;
}

.feature-voting-modal-body {
    padding: 15px 15px;
}

.feature-voting-modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 10px 15px;
    border-top: 1px solid #f4f4f4;
    background-color: #fff;
    color: #000;
    gap: 15px;
}

.feature-voting-modal-footer .feature-voting-modal-footer-btn{
    background-color: #f4f4f4;
    color: #000;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
    border: 0;
    outline: none;
    padding: 0.6180469716em 1.41575em;
    text-decoration: none;
    font-weight: 600;
    text-shadow: none;
    display: inline-block;
}

.feature-voting-modal-footer .feature-voting-modal-footer-btn:hover{
    background-color: #d5d5d5;
}

.feature-voting-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    margin-top: 50px;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

#feature-voting-vote-modal.feature-voting-modal .feature-voting-modal-content{
    max-width: 710px;
}

#feature-voting-success-modal.feature-voting-modal .feature-voting-modal-content,
#feature-voting-error-modal.feature-voting-modal .feature-voting-modal-content{
    max-width: 320px;
}

#feature-voting-success-modal.feature-voting-modal .feature-voting-modal-header{
    background-color: #51A556;
}

#feature-voting-success-modal.feature-voting-modal .feature-voting-modal-header h2{
    color: #fff;
}

#feature-voting-error-modal.feature-voting-modal{
    z-index: 1002;
}

#feature-voting-error-modal.feature-voting-modal .feature-voting-modal-header{
    background-color: #e40219;
}

#feature-voting-error-modal.feature-voting-modal .feature-voting-modal-header h2{
    color: #fff;
}

#feature-voting-loading-modal.feature-voting-modal .feature-voting-modal-content{
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#feature-voting-loading-modal.feature-voting-modal .feature-voting-modal-content .feature-voting-modal-body svg{
    width: 80px;
    height: 80px;
    animation: rotate 1.5s linear infinite; 
}

#feature-voting-vote-modal .feature-voting-modal-body .vote-modal-content-headline{
    font-size: 1.41575em;
    text-align: center;
    margin-bottom: 25px;
}

#feature-voting-vote-modal .feature-voting-modal-body .vote-modal-content-row{
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

#feature-voting-vote-modal .feature-voting-modal-body .vote-modal-content-row .vote-modal-content-column-wrapper{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#feature-voting-vote-modal .feature-voting-modal-body .vote-modal-content-row .vote-modal-content-column-wrapper .vote-modal-content-feature-vote{
    font-size: 22px;
}

#feature-voting-vote-modal .feature-voting-modal-body .vote-modal-content-row .vote-modal-content-column-wrapper .vote-modal-content-feature-title{
    font-weight: bold;
    text-align: center;
}

#feature-voting-vote-modal .feature-voting-modal-body .vote-modal-content-row .vote-modal-content-input-wrapper .vote-modal-content-feature-title{
    background-color: #f4f4f4;
    padding: 10px 15px;
    text-align: center;
    width: 100%;
}

#feature-voting-vote-modal .feature-voting-modal-body .vote-modal-content-row .vote-modal-content-input-wrapper #vote-modal-content-votes-ip{
    font-size: 45px;
    max-width: 150px;
    text-align: center;
    background: #fff;
    border: 1px solid #f4f4f4;
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

@keyframes rotate{
    to{ transform: rotate(360deg); }
}
/* END - MODAL STYLES */