.contact-form-container {
    display: flex;
    flex-flow: column;
    width: 100%;
}

body {
    min-height: 22rem;
    font-family: sans-serif;
}
body * {
    box-sizing: border-box;
    overflow-wrap: break-word;
}
.qsm_questions_answers_section img,
.question-description img {
    max-width: calc(100vw - 16px);
    height: auto;
}

.contact-form-line {
    display: flex;
    flex-flow: column;
    margin: .4rem auto;
    width: 100%;
    max-width: 26rem;
}

.contact-form-line input[type="text"] {
    padding: 10px 8px;
    background: #fff;
    border: 1px solid #3498db;
    font-size: 14px;
    color: #555;
    border-radius: 3px;
    transition: all 250ms ease-in-out;
    line-height: 22px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset;
}

.contact-form-line input[type="text"]:hover {
    box-shadow: 0 0 6px rgba(52, 152, 219, .25);
}

input[type="checkbox"],
input[type="radio"] {
    margin: 0;
    position: relative;
    top: 2px;
}

input[type="checkbox"] {
    margin-right: .6rem;
}

input[type="checkbox"],
input[type="radio"],
label {
    cursor: pointer;
}

.question-container {
    display: flex;
    flex-flow: column;
    min-height: 22rem;
}

.question-answers {
    flex-grow: 1;
}

.question-container > * {
    margin: .8rem 0;
}

.question-title {
    font-weight: bold;
    font-size: 1.4rem;
    margin-top: 2rem;
}

.question-answers .answer-line {
    margin: .6rem 0;
}

.answer-line > label {
    padding-left: 1rem;
    cursor: pointer;
}

.mlw_qmn_question {
    line-height: 1.4rem;
}

#timer {
    position: absolute;
    top: 0;
    right: 0;
    padding: .8rem;
}

button {
    background: #2ecc71;
    color: #fff;
    border-radius: 3px;
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background: #27ae60;
}

.flex-line {
    display: flex;
}
@media only screen and (max-width: 320px) {
    .flex-line {
        flex-flow: column-reverse;
    }
    .flex-line > * {
        margin: .2rem;
    }
}

.middle-section {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-flow: column;
    padding: 0 1rem;
    justify-content: center;
}

#numbering {
    align-self: center;
    margin-top: .4rem;
}

#progressbar {
    height: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: #aaa 0px 0px 4px inset;
}
.progress-fill {
    background: #2ecc71;
    height: 100%;
    border-radius: 8px;
    box-shadow: #aaa 0px 0px 4px inset;
}
/*safari fix*/
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
    font-size: 18px !important;
}