@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
@import "bootstrap.min.css";
.animated,
.app-wrapper .btn.btn-secondary img,
.app-wrapper .btn,
.app-wrapper .custom-control.custom-radio label {
    transition: 0.1s ease all;
}

.active-effect {
    transform-origin: center;
    transform: scale(0.975);
}

.flashing-effect,
.app-wrapper .custom-control.custom-radio input.flashing-effect + label {
    -webkit-animation: FLASHING-EFFECT 0.25s linear infinite;
    -moz-animation: FLASHING-EFFECT 0.25s linear infinite;
    -o-animation: FLASHING-EFFECT 0.25s linear infinite;
    animation: FLASHING-EFFECT 0.25s linear infinite;
}

.disable-selection,
.app-wrapper .custom-control {
    user-select: none;
}

.disable-clicks {
    pointer-events: none;
}

.text-ellipsis {
    width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@-webkit-keyframes FLASHING-EFFECT {
    0% {
        background: rgba(250, 65, 65, 0.1);
    }
    50% {
        background: rgba(250, 65, 65, 0.2);
    }
    100% {
        background: rgba(250, 65, 65, 0.1);
    }
}
@-moz-keyframes FLASHING-EFFECT {
    0% {
        background: rgba(250, 65, 65, 0.1);
    }
    50% {
        background: rgba(250, 65, 65, 0.2);
    }
    100% {
        background: rgba(250, 65, 65, 0.1);
    }
}
@-o-keyframes FLASHING-EFFECT {
    0% {
        background: rgba(250, 65, 65, 0.1);
    }
    50% {
        background: rgba(250, 65, 65, 0.2);
    }
    100% {
        background: rgba(250, 65, 65, 0.1);
    }
}
@keyframes FLASHING-EFFECT {
    0% {
        background: rgba(250, 65, 65, 0.1);
    }
    50% {
        background: rgba(250, 65, 65, 0.2);
    }
    100% {
        background: rgba(250, 65, 65, 0.1);
    }
}
body,
html {
    font-family: "Open Sans", sans-serif;
    position: relative;
    background: #030c4b;
}
@media (max-width: 767px) {
    body,
    html {
        font-size: 14px;
    }
}

.app-wrapper {
    padding: 3rem 0;
}
@media (max-width: 767px) {
    .app-wrapper {
        padding: 15px 0;
    }
}
.app-wrapper .app-box {
    /* padding: 3rem; */
    padding: 1.2rem 3rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: rgba(10, 10, 10, 0.1) 0 0.25rem 0.5rem;
}
@media (max-width: 767px) {
    .app-wrapper .app-box {
        padding: 2rem;
    }
}
.app-wrapper .branding a {
    color: #999;
    letter-spacing: -1px;
    font-size: 1.25rem;
    text-decoration: none;
    user-select: none;
}
.app-wrapper .questions-progress {
    background: #f2f3f4;
    border-radius: 1.5rem;
    padding: 0.3rem;
    overflow: visible;
    margin: 1.5rem 0;
    margin-bottom: 0.5rem;
}
.app-wrapper .questions-progress .progress-bar {
    background: #d22322;
    box-shadow: rgba(rgba(210, 35, 34, 1), 232, 244, 0.45) 0 0 0.45rem;
    border-radius: 1.5rem;
}
.app-wrapper .questions-list {
    display: block;
}
.app-wrapper .question-item {
    display: none;
}
.app-wrapper .question-item.active {
    display: block;
}
.app-wrapper .question-item .question-title {
    font-weight: bold;
    color: #1f1f1f;
    font-size: 1.2rem;
    line-height: 1.2;
}
.app-wrapper .question-item .question-subtitle {
    font-weight: bold;
    color: #1f1f1f;
    font-size: 1rem;
    line-height: 1.2;
}
.app-wrapper .question-item .question-answers {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
}
.app-wrapper .question-item .question-actions {
    padding-top: 1rem;
}
.app-wrapper .question-item .question-additional {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}
.app-wrapper .question-item .question-additional h3 {
    font-weight: bold;
    color: #1f1f1f;
}
.app-wrapper .question-item .question-additional p {
    margin-bottom: 0;
}
.app-wrapper .question-item .question-additional p + p {
    margin-top: 0.5rem;
}
.app-wrapper .question-item .question-additional p.small {
    color: #999;
}
.app-wrapper .sub-question-item {
    border: 1px solid #ddd;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
}
.app-wrapper .sub-question-item + .sub-question-item {
    margin-top: 1rem;
}
.app-wrapper .sub-question-item.sub-question-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0.75rem;
    width: 100%;
}
.app-wrapper .sub-question-item.sub-question-horizontal .sub-question-title {
    margin-bottom: 0;
}
.app-wrapper .sub-question-item.sub-question-horizontal .sub-question-answers {
    flex-shrink: 0;
    flex-wrap: nowrap;
}
.app-wrapper .sub-question-item .sub-question-title {
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 0.25rem;
    text-overflow: ellipsis;
    overflow: hidden;
}
.app-wrapper .sub-question-item .sub-question-title span {
    display: block;
    color: #999;
    font-size: 0.8rem;
    font-weight: normal;
}
.app-wrapper .sub-question-item .sub-question-answers {
    display: flex;
    flex-wrap: wrap;
}
.app-wrapper .explanations-list {
    padding: 1.5rem 0 0 0;
}
.app-wrapper .explanations-list .explanation-video {
    margin-bottom: 1.5rem;
    position: relative;
}
.app-wrapper .explanations-list .explanation-video button {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
.app-wrapper .explanation-item {
    display: none;
}
.app-wrapper .explanation-item.active {
    display: block;
}
.app-wrapper .explanation-item .explanation-question {
    font-weight: bold;
    color: #1f1f1f;
    font-size: 1.5rem;
    line-height: 1.2;
    padding-bottom: 1rem;
}
.app-wrapper .explanation-item ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.app-wrapper .explanation-item ul li {
    display: block;
    position: relative;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    padding-left: 1.5rem;
}
.app-wrapper .explanation-item ul li:before {
    position: absolute;
    top: 0.25rem;
    left: 0;
    width: 0.8rem;
    height: 0.45rem;
    border-bottom: 3px solid #030c4b;
    border-left: 3px solid #030c4b;
    content: " ";
    margin: auto;
    transform-origin: center;
    transform: rotate(-45deg);
}
.app-wrapper .explanation-item .explanation-actions {
    padding-top: 1rem;
}
.app-wrapper .finish-item {
    text-align: center;
    display: none;
    padding-top: 1.5rem;
}
.app-wrapper .finish-item.active {
    display: block;
}
.app-wrapper .finish-item h3 {
    font-weight: bold;
    color: #030c4b;
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 0 10%;
    margin: 1rem 0;
}
.app-wrapper .finish-item.summary-item {
    text-align: left;
    margin-top: 1.5rem;
    border-top: 1px solid #ddd;
}
.app-wrapper .finish-item.summary-item h6 {
    font-weight: bold;
    color: #030c4b;
    margin: 0;
}
.app-wrapper .finish-item.summary-item h4 {
    font-weight: bold;
    color: #1f1f1f;
    font-size: 1rem;
    line-height: 1.25;
    margin: 1rem 0;
}
.app-wrapper .finish-item.summary-item h4 b {
    color: #030c4b;
}
.app-wrapper .finish-item.summary-item table.table {
    background: #f2f3f4;
    border-radius: 0.5rem;
    border: none;
}
@media (max-width: 767px) {
    .app-wrapper .finish-item.summary-item table.table {
        background: none;
    }
}
.app-wrapper .finish-item.summary-item table.table thead {
    border-top: none;
}
.app-wrapper .finish-item.summary-item table.table thead th {
    border-top: none;
    font-size: 0.7rem;
}
@media (max-width: 767px) {
    .app-wrapper .finish-item.summary-item table.table thead {
        display: none;
    }
}
.app-wrapper .finish-item.summary-item table.table tbody tr td {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    vertical-align: middle;
}
@media (max-width: 767px) {
    .app-wrapper .finish-item.summary-item table.table tbody tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
        background: none;
        border: 1px solid #ddd;
        border-radius: 0.5rem;
        padding: 0.5rem 0.5rem 1rem 0.5rem;
    }
    .app-wrapper .finish-item.summary-item table.table tbody tr td {
        border: none;
    }
    .app-wrapper .finish-item.summary-item table.table tbody tr td:first-child {
        font-size: 0.9rem;
    }
    .app-wrapper
        .finish-item.summary-item
        table.table
        tbody
        tr
        td:not(:first-child) {
        position: relative;
    }
    .app-wrapper
        .finish-item.summary-item
        table.table
        tbody
        tr
        td:not(:first-child):before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 3rem;
        content: attr(data-title);
        font-weight: 400;
        color: #1f1f1f;
        margin: auto;
        line-height: 1rem;
        height: 1rem;
    }
}
.app-wrapper .finish-item.summary-item table.table .status {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    margin: auto;
    background: #f2f3f4;
    box-shadow: rgba(10, 10, 10, 0.1) 0 0.15rem 0.25rem;
    border-radius: 50%;
    position: relative;
}
@media (max-width: 767px) {
    .app-wrapper .finish-item.summary-item table.table .status {
        margin: 0;
    }
}
.app-wrapper .finish-item.summary-item table.table .status:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1rem;
    height: 1rem;
    content: " ";
    border-radius: 50%;
}
.app-wrapper
    .finish-item.summary-item
    table.table
    .status.status-success:after {
    background: #ffffff;
}
.app-wrapper .finish-item.summary-item table.table .status.status-danger:after {
    background: #030c4b;
}
.app-wrapper
    .finish-item.summary-item
    table.table
    .status.status-warning:after {
    background: #030c4b;
}
.app-wrapper .custom-control {
    margin-right: 0.5rem;
}
.app-wrapper .custom-control:last-child {
    margin-right: 0;
}
.app-wrapper .custom-control.custom-radio {
    padding-left: 0;
    min-height: auto;
}
.app-wrapper .custom-control.custom-radio label {
    padding: 0.25rem 1rem;
    background: #f2f3f4;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 600;
    color: #1f1f1f;
    cursor: pointer;
}
.app-wrapper .custom-control.custom-radio label:before,
.app-wrapper .custom-control.custom-radio label:after {
    display: none;
}
.app-wrapper .custom-control.custom-radio label:hover {
    background: #ddd;
    border-color: #ddd;
}
.app-wrapper .custom-control.custom-radio label:active {
    background: #ccc;
    border-color: #ccc;
}
.app-wrapper .custom-control.custom-radio input:checked + label {
    background: #dee2ff;
    border-color: #030c4b;
    color: #030c4b;
}
.app-wrapper .custom-control.control-lg.custom-radio label {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}
@media (max-width: 767px) {
    .app-wrapper .custom-control.control-lg.custom-radio label {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
}
.app-wrapper .custom-control.control-md.custom-radio label {
    padding: 0.75rem 1.5rem;
}
@media (max-width: 767px) {
    .app-wrapper .custom-control.control-md.custom-radio label {
        font-weight: 400;
    }
}
.app-wrapper .custom-control.control-block {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: block;
}
.app-wrapper .custom-control.control-block + .custom-control {
    margin-top: 0.5rem;
}
.app-wrapper .custom-control.control-block.custom-radio label {
    width: 100%;
    display: block;
}
.app-wrapper .custom-control .flag-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 1rem;
    border: 1px solid #ddd;
    object-fit: cover;
    display: inline-block;
    vertical-align: middle;
}
.app-wrapper .custom-control span {
    display: inline-block;
    vertical-align: middle;
}
.app-wrapper .icon {
    display: inline-block;
    position: relative;
    width: 3rem;
    height: 3rem;
    border: 0.2rem solid #030c4b;
    border-radius: 50%;
}
.app-wrapper .icon.icon-lg {
    width: 8rem;
    height: 8rem;
    border-width: 0.4rem;
}
.app-wrapper .icon.icon-lg:before {
    border-width: 0.4rem !important;
}
.app-wrapper .icon.icon-check:before {
    position: absolute;
    top: 0;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: auto;
    width: 75%;
    height: 35%;
    border-bottom: 0.2rem solid #030c4b;
    border-left: 0.2rem solid #030c4b;
    content: " ";
    transform-origin: center;
    transform: rotate(-45deg);
}
.app-wrapper .btn {
    height: auto;
    padding: 1rem 1rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
}
.app-wrapper .btn.btn-primary {
    background: #d22322;
    border-color: #d22322;
}
.app-wrapper .btn.btn-primary:not(:disabled):hover,
.app-wrapper .btn.btn-primary:not(:disabled):focus {
    background: #d22322;
    border-color: #d22322;
    box-shadow: rgba(31, 31, 31, 0.15) 0 0.15rem 0.3rem;
}
.app-wrapper .btn.btn-primary:not(:disabled):active {
    background: #d22322;
    border-color: #d22322;
    box-shadow: rgba(31, 31, 31, 0.15) 0 0.15rem 0.3rem;
}
.app-wrapper .btn.btn-primary.flashing-effect,
.app-wrapper
    .custom-control.custom-radio
    input.flashing-effect
    + label.btn.btn-primary {
    color: #d22322 !important;
}
.app-wrapper .btn.btn-secondary {
    background: #d22322;
    border-color: #d22322;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}
.app-wrapper .btn.btn-secondary img {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    opacity: 0.5;
}
.app-wrapper .btn.btn-secondary span {
    display: inline-block;
    vertical-align: middle;
}
.app-wrapper .btn.btn-secondary:not(:disabled):hover,
.app-wrapper .btn.btn-secondary:not(:disabled):focus {
    background: #030c4b;
    border-color: #030c4b;
    box-shadow: rgba(31, 31, 31, 0.15) 0 0.15rem 0.3rem;
    color: #ffffff;
}
.app-wrapper .btn.btn-secondary:not(:disabled):hover img,
.app-wrapper .btn.btn-secondary:not(:disabled):focus img {
    filter: brightness(0) invert(1);
    opacity: 1;
}
.app-wrapper .btn.btn-secondary:not(:disabled):active {
    background: #030c4b;
    border-color: #030c4b;
    box-shadow: rgba(31, 31, 31, 0.15) 0 0.15rem 0.3rem;
}
.app-wrapper .btn.btn-secondary.flashing-effect,
.app-wrapper
    .custom-control.custom-radio
    input.flashing-effect
    + label.btn.btn-secondary {
    color: #dee2ff !important;
}
.app-wrapper .btn.btn-outline-primary {
    background: transparent;
    color: #030c4b;
    /* border-color: #030c4b; */
}
.app-wrapper .btn.btn-outline-primary:not(:disabled):hover,
.app-wrapper .btn.btn-outline-primary:not(:disabled):focus {
    background: #d22322;
    border-color: #d22322;
    box-shadow: rgba(31, 31, 31, 0.15) 0 0.15rem 0.3rem;
    color: #ffffff;
}
.app-wrapper .btn.btn-outline-primary:not(:disabled):active {
    background: #d22322;
    border-color: #d22322;
    box-shadow: rgba(31, 31, 31, 0.15) 0 0.15rem 0.3rem;
    color: #ffffff;
}
.app-wrapper .btn.btn-outline-primary.flashing-effect,
.app-wrapper
    .custom-control.custom-radio
    input.flashing-effect
    + label.btn.btn-outline-primary {
    color: #dee2ff !important;
}
.app-wrapper .btn:disabled {
    background: #ccc;
    border-color: #ccc;
    color: #1f1f1f;
    opacity: 0.5;
}
.app-wrapper .website-copyright {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(31, 31, 31, 0.5);
}

/*# sourceMappingURL=custom.css.map */
.next-button {
    margin-top: 10px;
}

.custom-text-other {
    border-radius: 8px;
    font-weight: 600;
    color: #1f1f1f;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}

.hide-other,
.hide-reason {
    display: none !important;
}

p.small {
    color: #999;
    font-size: 14px;
    margin-bottom: 0;
}

.custom-select {
    font-weight: 600 !important;
    color: #1f1f1f !important;
    cursor: pointer;
    font-size: 1.25rem !important;
}

#wrap-q12-1,
#wrap-q12-2,
#wrap-q19-1,
#wrap-q19-2,
#wrap-q26-1,
#wrap-q26-2,
#wrap-q28-1,
#wrap-q28-2,
#wrap-q28-3,
#wrap-q41-1,
#wrap-q41-2,
#wrap-q49-1,
#wrap-q49-2,
#wrap-q59-1,
#wrap-q59-2,
#wrap-q73-1 {
    padding-left: 15px;
    margin-top: 5px;
}

.question-item h5 {
    margin-bottom: 15px;
    font-weight: bold;
    color: #6c757d;
}

.wrap-q-vct,
.wrap-q-prep,
.wrap-q-pep,
.wrap-q-art,
.wrap-q-stis,
.wrap-q-mmt {
    display: none;
}

/* Optional: Customize the slider color */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

input[type="range"]:focus {
    background: #007bff;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
}

.question-answers .q-range-d-flex {
    width: 100%;
    clear: both;
}

.question-answers .q-range-form-range {
    width: 100%;
    margin-top: 10px;
}

.question-answers .q-range-form-label {
    font-weight: bold;
    margin-bottom: 10px;
}
