#pollForm {
    padding-bottom: 2em;
}

#pollOptions {
    margin: 1em 0;
    padding: 0;
    list-style: none;
    -webkit-column-count: 2;
    -moz-column-count: 2;
         column-count: 2;
}

@media screen and (max-width:480px) {
    #pollOptions {
        -webkit-column-count: 1;
        -moz-column-count: 1;
             column-count: 1;
    }
}

#pollOptions li {
    position: relative;
    padding-left: 2em;
    line-height: 1.2em;
    margin: 0 0 1em 0;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    cursor: pointer;
    display: block;
    overflow: hidden;
}

#pollOptions li:before,
#pollOptions li:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#pollOptions li:before {
    content: '';
    position: absolute;
    top: 0.1em;
    left: 0;
    height: 1em;
    width: 1em;
    border-radius: 100%;
    border: 2px solid #bbb;
}

#pollOptions li.selected:before {
    border: 2px solid #003058;
}

#pollOptions li.selected:after {
    content: '';
    position: absolute;
    top: 0.35em;
    left: 0.25em;
    height: 0.5em;
    width: 0.5em;
    border-radius: 100%;
    background: #003058;
    z-index: 2;
}

#poll-form input[type="submit"] {
    display: table;
    font-family: 'mongoose';
    font-weight: 500;
    font-style: normal;
    font-size: 1.875rem;
    line-height: .8333333333;
    letter-spacing: .03em;
    text-align: center;
    text-transform: uppercase;
    outline: none;
    padding: 0.8125rem 0.875rem;
    border-radius: 0.1875rem;
    border-width: 0.125rem;
    color: #fff;
    border-color: var(--lvc-dark-blue);
    background-color:var(--lvc-dark-blue);
    margin: 2rem auto 1rem auto;
    transition: all .25s ease;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    cursor: pointer;
}

#poll-form input[type="submit"]:hover {
    background-color:var(--lvc-light-blue);
    border-color: var(--lvc-light-blue);
    color:#fff;
}

#pollResults {
    padding: 0 1em;
}

.poll_result {
    width: 100%;
    margin-bottom: 0.5em;
    padding: 0 0 0.5em;
}

.poll_result p {
    margin: 0 0 0.5em 0;
}

.poll_result_bar {
    width: 100%;
    height: 0.5em;
    background: #eee;
    position: relative;
}

.poll_result_progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background: #003058;
}

.poll_value {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(100%, -50%, 0);
    transform: translate3d(100%, -50%, 0);
    line-height: 1em;
    font-size: 0.75em;
    background: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    border: 2px solid #fff;
    z-index: 9;
}

.poll_value:before {
    content: '';
    display: block;
    height: 0.5em;
    width: 0.5em;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-45deg) translate3d(0, -75%, 0);
    transform: rotate(-45deg) translate3d(0, -75%, 0);
    z-index: -1;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.total_votes {
    margin: 0;
    padding-top: 0.5em;
    border-top: 1px solid #eee;
    text-align: right;
}