.veq-question-container ul {
    counter-reset: list-prefix;
    list-style: none;
    margin: 0 0 1em;
    padding: 0;
}

.veq-question-container li {
    position: relative;
    background-color: #f5f5f5;
    counter-increment: list-prefix;
    border-radius: 3px;
    margin-bottom: .3em;
    padding: 9px .3em;
    padding-left: 70px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
}

.veq-question-container h4 {
    margin-bottom: 19px;
    font-size: 22px;
    font-family: "Nunito Sans", sans-serif;
}

.veq-question-container .answer-description {
    display: none;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}

.veq-question-container.incorrect .incorrect-description {
    display: initial;
    color: #009cca;
}

.veq-question-container.correct .correct-description {
    display: initial;
    color: #008d36;
}

.veq-question-container li:last-of-type {
    margin: 0;
}

.veq-question-container li:after,
.veq-question-container li:before {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #9b9b9b;
    color: white;
    text-align: center;
    vertical-align: middle;
}

.veq-question-container li:before {
    position: absolute;
    top: 10px;
    left: 11px;
}

.veq-question-container li.clicked:after,
.veq-question-container li.clicked:before {
    background-color: #009cca;
    color: white;
}

.veq-question-container li.correct:after,
.veq-question-container li.correct:before {
    background-color: #009444;
    color: white;
}

.veq-question-container li.correct:before,
.veq-question-container li.clicked:before {
    letter-spacing: -1px;
}


.veq-question-container li:before {
    /*content: counter(list-prefix, upper-alpha);*/
    content: "";
    margin-right: 1rem;
    margin-left: .5rem;
    background: transparent;
    border: 2px solid #9b9b9b;
}

.veq-question-container li:hover {
    cursor: pointer;
    background-color: #e4e4e4;
}

.veq-question-container[data-clicked] li:hover {
    cursor: inherit;
    background-color: #f5f5f5;
}

.veq-question-container li.clicked,
.veq-question-container li.correct {
    color: white;
}

.veq-question-container li.clicked:after,
.veq-question-container li.correct:after {
    float: right;
    margin-right: 14px;
}

.veq-question-container li.clicked,
.veq-question-container[data-clicked] li.clicked:hover{
    color: #009cca;
}

.veq-question-container li.correct,
.veq-question-container[data-clicked] li.correct:hover{
    color: #009444;
}

/*.veq-question-container li.clicked:after {*/
    /*content: "✗";*/
/*}*/

/*.veq-question-container li.correct:after {*/
    /*content: "✓";*/
/*}*/
