/*.question_container {
    background-color: #555;
    color: #ddd;
    border-radius: 10px;
    padding: 5px;
    font-family: 'Montserrat', sans-serif;
    max-width: 700px
}

.question_container p {
    font-size: 32px
}
*/
.question {
    width: 75%
}

.options {
    position: relative;
    padding-left: 10px;
}

#options label {
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer
}

.options input {
    opacity: 0
}

.checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #555;
    border: 1px solid #ddd;
    border-radius: 50%
}

/*.options input:checked~.checkmark:after {
    display: block
}
*/
.options .checkmark:after {
    content: "✔";
    width: 10px;
    height: 10px;
    display: block;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 300ms ease-in-out 0s
}

/* On mouse-over, add a grey background color */
.options:hover input ~ .checkmark {
  background-color: #ccc;
}