
#wizard {
    font-family: 'Assistant', sans-serif;
    padding: 100px 1rem 1rem;
    overflow-y: auto;
    min-height: 600px;
}

#wizard > .content {
    /*min-height: 310px;*/
}

#wizard .text-danger {
    color: red;
}

#wizard p, #wizard label, #wizard h2 {
    font-family: 'Assistant', sans-serif;
    color: #003974;
    margin: 0;
    font-weight: 600;
}

.img-responsive {
    max-width: 100%;
    width: auto;
}

.questionnaire {
    direction: rtl;
    max-width: 750px;
    font-family: 'Assistant', sans-serif;
    margin: 0 auto;
    border: 1px solid #339aa8;
    display: none;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    background: #fff;
    transform: translate(0, -50%);
    overflow: hidden;
    box-shadow: 0 0 5px 0;
    min-height: 600px;
    z-index: 99999999999999;
}

.questionnaire > form > header {
    background: #009aa8;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    height: 65px;
    padding: 0;
    flex: 0 0 33.333%;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
}

.questionnaire > form > header h1 {
    color: #ffffff;
    font-size: 1.2rem;
}

.questionnaire > form > header > img {
    max-width: 120px;
    max-height: 100%;
    position: absolute;
    left: 0;
}

.questionnaire .steps {
    display: none;
}

#wizard .row {
    display: flex;
    flex-wrap: wrap;
}

#wizard .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

#wizard .col-auto {
    flex: 0 0 auto;
    width: auto;
}

#wizard .form-control {
    display: block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: calc(100% - 25px);
}

#wizard button, #wizard input, #wizard optgroup, #wizard select, #wizard textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

#wizard label {
    display: inline-block;
    line-height: 1.5;
    font-size: 1.5rem;
}

#wizard label.form-check-label {
    display: initial;
    line-height: 1;
    font-size: 1.5rem;
}

#wizard .form-check {
    display: block;
    min-height: 1.5rem;
    padding-right: 1.5em;
    margin-bottom: 1.125rem;
}

#wizard .form-check > input,
#wizard .form-check > label {
    cursor: pointer
}

#wizard .form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

#wizard .d-block {
    display: block;
}

#wizard .col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.5rem;
    font-weight: 600;
    color: #003974;
}

#wizard .content > section.current {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    /*min-height: 414px;*/
}

#wizard #date-accident.form-control {
    margin: 0;
    width: 100%;
}

#wizard .content > section .innerTitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#wizard .content input[type=number],
#wizard .content select,
#wizard .content textarea,
#wizard .content input[type=date],
#wizard .content input[type=text] {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 2px solid #c8c8c8;
}

#wizard .content input[type=number],
#wizard .content input[type=text] {
    font-size: 2rem;
}

.stepIndicator {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -190px;
    right: 0;
    left: 0;
    padding-bottom: 1rem;
}

.stepIndicator > span:first-child {
    border: 2px solid #c8c8c8;
    border-radius: 15px;
    padding: 5px 30px;
    color: #7c7c7c;
    max-width: 200px;
    background: #ffffff;
    z-index: 10;
}

#wizard .form-check-input[type=radio] {
    border-radius: 50%;
}

#wizard .form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
}

.stepIndicator > span.cross-line {
    border: 0;
    border-top: 2px solid #c8c8c8;
    display: flex;
    height: 1px;
    width: 100%;
    position: absolute;
    right: 0;
    left: 0;
}

#wizard > .actions > ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0;
}

#wizard > .actions > ul li {
    display: flex;
}

#wizard > .actions > ul li.disabled {
    background: #c8c8c8;
    display: none;
}

#wizard > .actions > ul a {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: #fff;
    background-color: #009aa8;
    border-color: #005961;
    align-items: center;
    justify-content: center;
    padding: 1rem 4rem;
}

#wizard > .actions > ul a[href='#previous'] {
    background-color: #bbbbbb;
    border-color: #7a7a7a;
}

#wizard .btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#wizard .btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

#wizard .titleGroup {
    display: inline-block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    text-align: center;
}

#wizard .titleSep {
    display: block;
    width: 100%;
    height: 2px;
    background: #bbb;
    max-width: 375px;
    margin: 0 auto 1.5rem;
}

#wizard .titleGroup > p {
    font-size: 1.5rem;
}

#wizard.titleGroup p,
#wizard .titleGroup h2 {
    font-size: 1.5rem;
    color: #003974;
}

#wizard .titleGroup h2 {
    font-size: 2.5rem;
}

#wizard .dateAccident {
    margin-bottom: 2rem;
}

#wizard .form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

#wizard .form-check-input:checked[type=checkbox] {
    background-image: url(data:image/svg+xml,%3csvg xmlns= 'http://www.w3.org/2000/svg' viewBox= '0 0 20 20' %3e%3cpath fill= 'none' stroke= '%23fff' stroke-linecap= 'round' stroke-linejoin= 'round' stroke-width= '3' d= 'M6 10l3 3l6-6' /%3e%3c/svg%3e);
}

#wizard .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:checked[type=radio] {
    background-image: url(data:image/svg+xml,%3csvg xmlns= 'http://www.w3.org/2000/svg' viewBox= '-4 -4 8 8' %3e%3ccircle r= '2' fill= '%23fff' /%3e%3c/svg%3e);
}

#wizard .form-check-input[type=checkbox] {
    border-radius: 0.25em;
}

#wizard .text-center {
    text-align: center !important;
}

#wizard .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    direction: ltr;
}

#wizard .input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #113974;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px solid #ced4da;
}

#wizard .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
#wizard .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#wizard .input-group > .form-control,
#wizard .input-group > .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

#wizard .disclaimer {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    font-size: 2rem;
}

#wizard .disclaimer > span:last-child {
    text-align: center;
}

body {
    position: relative;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

button.questionnaireAction:active,
button.questionnaireAction:focus,
button.questionnaireAction:hover,
button.questionnaireAction {
    position: fixed;
    bottom: 45px;
    z-index: 99999;
    right: 15px;
    border-radius: 21px;
    background: #339aa8;
    border-color: #257e8b;
    color: #fff;
    height: 60px;
    min-width: 60px;
    width: auto;
    box-shadow: none;
    outline: none;
}

button.questionnaireAction:active {
    background: #257e8b;
    border-color: #339aa8;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #009aa8;
}

::-webkit-scrollbar-thumb:hover {
    background: #257e8b;
}

.headerActions {
    position: absolute;
    right: 15px;
    top: 36%;
    transform: translate(0, -50%);
    color: #fff;
    font-weight: bold;
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 576px) {
    #wizard .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    #wizard .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

@media (min-width: 992px) {
    .questionnaire > form > header h1 {
        font-size: 2rem;
    }

    .questionnaire > form > header {
        height: 100px;
    }
}