body {
    /*background: #c7edcc;*/
}

.container {
    width: 80vw;
}

.buttons {
    margin-top: 20px;
    user-select: none;
}

.questionInfo {
    font-size: 20px;
    color: gray;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.questionType {
    /*margin-right: 10px;*/
}

.questionNumber {

}

p.questionText {
    font-size: 20px;
}

ul.options {
    /*margin: 10px;*/
}

li.option {
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
}

li.option input {
    cursor: pointer;
    background: transparent;
    color: black;
    border: none;
    margin-right: 5px;
    /*-webkit-appearance: button;*/
    width: 10px;
    height: 10px;
}

li.option button.checkbox {
    background: gray;
    font-size: 20px;
    padding: 10px 15px;
    margin-right: 5px;
}

li.option button.checkbox.active {
    background: cornflowerblue;
}

li.option .optionText {
    font-size: 18px;
    color: black;
}

p.result {
    font-size: 22px;
}

p.result.correct {
    color: green;
}

p.result.wrong {
    color: red;
}

button.checkAnswer {
    display: none;
}

.explain {
    display: none;
}

.correctAnswerArea {
    display: none;
}

