﻿ 
.Answers {
    counter-reset: li;
    list-style: none;
    margin: 1em 0;
    padding-left: 0px !important;
}
 
.Answer {
    border: 1px solid #dddddc;
    -webkit-border-radius: .5em;
    border-radius: .5em;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    background: #f5f5f5;
    margin-bottom: .5em;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: .3s border, .2s -webkit-transform;
    -moz-transition: .3s border, .2s -moz-transform;
    -o-transition: .3s border, .2s -o-transform;
    -ms-transition: .3s border, .2s -ms-transform;
    transition: .3s border, .2s transform;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    -webkit-transform: translate3D(0 0);
    -moz-transform: translate3D(0 0);
    -o-transform: translate3D(0 0);
    -ms-transform: translate3D(0 0);
    transform: translate3D(0 0);
}
.Answer:active, .Answer:focus {
    -webkit-transform: scale(.98);
    -moz-transform: scale(.98);
    -o-transform: scale(.98);
    -ms-transform: scale(.98);
    transform: scale(.98);
}
.Answer.is-selected {
    border: 1px solid #fcc738;
}
.Answer.is-selected:before {
    border-right: 1px solid #fcc738;
    background: rgba(252, 199, 56, .8);
    color: #814f1d;
}

.Answer-incorrect:before {
    background-color:red !important;
  color:white;
  font-weight:bold;
}
.Answer-incorrect {
  background-color:red!important;
  color:white;
  font-weight:bold;
}

.Answer-correct:before {
    background-color: #2DAD0B!important;
    color: white;
    font-weight: bold;
}
.Answer-correct {
    background-color: #2DAD0B !important;
    color: white;
    font-weight: bold;
}


.Answer:before {
    counter-increment: li;
    content: counter(li, lower-alpha) ".";
    font-size: 17px;
    border-right: 1px solid #dddddc;
    padding:0px 10px 0px 10px;
    background: #fff;
    line-height: 1;
    -webkit-transition: .2s background;
    -moz-transition: .2s background;
    -o-transition: .2s background;
    -ms-transition: .2s background;
    transition: .2s background;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.Answer-content {
        font-size: 14px;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -o-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.Answer-content pre:only-of-type {
    border: none;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -o-box-flex: 1;
    box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: -1rem;
    padding: 1em;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.Answer-content>pre {
    margin: .5em 0;
    border: none;
    -webkit-border-radius: .5em;
    border-radius: .5em;
}
.Answer-content>pre+br {
    display: none;
}
 
 
 .Answer-overlay {
    opacity: 0;
    position: absolute;
}