header {
    display: none;
}

.card {
    padding: 48px;
}

.questionnaire {
    position: relative;
}

.questionnaire .header {
    background: #3a93bd;
    padding: 20px 20px 70px;
}

.questionnaire .header img {
    height: 80px;
    margin: 0 auto;
    display: block;
}

.questionnaire .footer {
    padding: 20px;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.questionnaire .footer .text {
    text-align: center;
    font-size: 12px;
    color: rgba(0, 0, 0, .35);
    height: 16px;
    line-height: 16px;
}

.questionnaire .progress-indicator {
    height: 4px;
    width: 100%;
    top: 0;
    position: fixed;
    background: transparent;
    z-index: 10;
}

.questionnaire .progress-indicator > div {
    width: 0;
    background: #fff;
    transition: width .35s;
    height: 100%;
}

.questionnaire .page {
    display: none;
}

.questionnaire,
.questionnaire .intro-text {
    color: rgba(0, 0, 0, .66);
    font-size: 16px;
}

.questionnaire .intro-text {
    max-width: 80ch;
}

.questionnaire .question {
    max-width: 80ch;
    color: rgba(0, 0, 0, .9);
    font-size: 24px;
    font-weight: 500;
    margin: 16px 0;
    font-style: italic;
}

.questionnaire .answer-container {
    margin-top: 1em;
}

.questionnaire .answer-container .answer {
    margin-bottom: .5em;
}

.questionnaire .answer-container .answer label {
    color: inherit;
    font-weight: 400;
    font-size: 16px;
}

.questionnaire .progress-button-container {
    margin-top: 10px;
}

.questionnaire .progress-button-container button {
    margin-top: 16px;
}

.questionnaire .btn,
.questionnaire .btn.focus,
.questionnaire .btn:focus,
.questionnaire .btn:hover {
    line-height: 38px;
    color: #fff;
    background-color: #3a93bd;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.card.question-wrapper {
    top: 109px;
    margin-bottom: 56px;
}

.absolute-center {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/*.questionnaire label:focus,
.questionnaire .btn:focus,
.questionnaire input:focus {
    outline: 2px dashed #3a93bd8c !important;
}*/

@media (max-width: 767px) {
    .card.question-wrapper {
        top: 63px;
        margin: 0;
        left: 50%;
        transform: translateX(-50%);
        overflow-y: auto;
        z-index: 5;
    }

    .questionnaire .header {
        background: #3a93bd;
        padding: 3px 20px 0;
        box-shadow: 0 0 9px 2px rgba(0, 0, 0, .3);
        z-index: 10;
        position: absolute;
        width: 100%;
    }

    .questionnaire .header img {
        height: 60px;
        margin: 0 auto;
        display: block;
    }

    .questionnaire .progress-indicator {
        height: 3px;
    }
}