/*....  VOTEBOX  ...........................................................*/

/* Vote Box */
.votebox {
    background-color:#e2f8da;
    padding: 0;
    margin-bottom: 2rem;
    border-radius: 3px;
    height: 285px;
    display: grid;
    grid-template-columns: 360px 1fr;
    color: #002461;
    user-select: none;
}

#benu-banner {
    display: block;
}

@media screen and (max-width: 1400px) {
    .votebox {
        grid-template-columns: 1fr;
    }

    #benu-banner {
        display: none;
    }
}



.votebox .container {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem 1rem 2rem;
}


.votebox .container h3 {
    font-weight: 400;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .1rem;
    margin-bottom: 1rem;
    position: absolute;
    top: 1rem;
    left: 2rem;
    background-color: #50A731aa;
    color: white;
    padding: .25rem .5rem;
    border-radius: 3px;
}

.votebox .container h4 {
    color: #002461;
    font-size: 1.5rem;
    font-weight: 500;
    margin: .3rem 0;
}

.votebox .container .options {
    padding: .25rem 0 .25rem 1rem;
    line-height: 1.3rem;
    font-size: .9rem;
    color: #002461;
    display: grid;
    grid-template-columns: 1fr 25px 1fr;
    grid-template-rows: auto;
    transition: all .4s ease-in-out;
}



.votebox .container .options .vote-result_number {
    text-align: right;
    padding: 0 3px 0 0;
}

.votebox .container .options .vote-result_line {
    background-color: #B9174B88;
    height: .5rem;
    margin: .4rem 0;
    border-radius: 2px;
    width: 0px;
}



.votebox .container button {
    background-color: #95123b;
    border-radius: 3px;
    padding: .5rem;
    display: block;
    text-align: center;
    color: white;
    width: 180px;
    border: none;
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .1rem;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.votebox .container button:hover {
    letter-spacing: .3rem;
    background-color: #B9174B;
}




#vote-info_1 {
    position: absolute;
    top: 1rem;
    right: 2rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: end;
}

#vote-info_1 h5 {
    width: fit-content;
    color: white;
    background-color: #50A731;
    font-size: .8rem;
    line-height: 1rem;
    font-weight: 400;
    padding: .1rem .3rem;
    border-radius: 3px;
    margin-bottom: .3rem;
}

#vote-info_1 h6 {
    width: fit-content;
    color: white;
    background-color: #002461;
    font-size: .8rem;
    line-height: 1rem;
    font-weight: 400;
    padding: .1rem .3rem;
    border-radius: 3px;
}


#vote-info_2 {
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    width: 200px;
    text-align: right;
}
