
#voting-section {
    font-family: Exo;
    position: relative;
    width: 100%;
    border: none;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.01), 0 15px 32px 0 rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.01), 0 15px 32px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.01), 0 15px 32px 0 rgba(0, 0, 0, 0.06);
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 4px;
    padding: 10px;
    text-align: center;
    border: 1px solid #707070;
}
#points-container {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#points-container > div {
    max-width: 70px;
    width: 100%;
    background-color: var(--theme-primary, #c36323);
    color: white;
    margin: 0 6px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 2px solid var(--theme-primary, #c36323);;
    border-radius: 8px;
    font-size: 24px;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
}

#points-container div.icon {
    font-size: 14px;
}

div.vote-poster {
    font-family: Exo;
    z-index: 5999999;
    width: 100%;
    color: white;
    padding: 0 5px;
    text-shadow: 2px 2px 4px rgb(0, 0, 0);
    font-size: 20px;
    background-color: var(--theme-primary, #1f76a2);
    border-radius: 6px;
    max-width: 100px;
    margin: auto;
    margin-top: 16px;
    transition: all 0.2s;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.25);
    /*border: 1px solid #195c7d;*/
}

#voting-section a {
    color: var(--theme-primary, blue);
}


div.vote-poster:hover {
    transform: scale(1.05);
}