<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --new-result-color: #3e68b1;
}

.color-urgent {
    color: #A62A1E;
}

.color-abnormal {
    color: #D42A1E;
}

.color-normal {
    color: #03662A;
}

.color-other {
    color: #1478BC;
}

.color-physical {
    color: #1478BC;
}

.background-color-urgent {
    background-color: #A62A1E;
}

.background-color-abnormal {
    background-color: #D42A1E;
}

.background-color-normal {
    background-color: #03662A;
}

.background-color-other {
    background-color: #1478BC;
}

.background-color-physical {
    background-color: #1478BC;
}

.color-sedentary-activity {
    background-color: #000000;
}

.color-physical-activity {
    background-color: #00A0A0;
}

.color-sleep-duration {
    background-color: #000094;
}

.icon-panel {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 4px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
}

/* Dashboard */

#dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 15px;
}

#dashboard-header-left {
    display: flex;
    align-items: center;
    max-width: 800px;
}

#dashboard-survey-name {
    font-family: inherit;
    font-size: 32px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 8px;
}

.dashboard-header-result {
    margin-top: 4px;
    margin-bottom: 4px;
    text-align: right;
}

.dashboard-count {
    display: inline-block;
    width: 48px;
    border-radius: 4px;
    text-align: center;
    color: white;
    margin-top: 4px;
}

.dashboard-section {
    margin-top: 16px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.dashboard-section[open] {
    border-radius: 0 !important;
}

.dashboard-section summary {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    list-style-type: none !important;
    text-decoration: none !important;
    color: black !important;
    background-color: white;
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    .dashboard-section summary {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

.dashboard-section summary:hover {
    background-color: white;
}

.dashboard-section summary:focus {
    background-color: white;
}

.dashboard-section .mdi-triangle-down:before {
    display: inline-block;
    margin-left: 8px;
}

.dashboard-section[open] .mdi-triangle-down:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dashboard-section .dashboard-section-right .mdi-information-outline {
    font-size: 24px;
}

.dismiss-all-section {
    display: inline-block;
}

.dashboard-section .dismiss {
    font-weight: normal;
}

.dashboard-section .dismiss:hover {
    text-decoration: underline;
}

.dashboard-section table {
    table-layout: fixed;
}

.dismiss-section {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

@media (max-width: 768px) {
    .dismiss-section {
        flex-direction: column;
        align-items: center;
    }
}

.dashboard-section-left {
    display: flex !important;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

.dashboard-section-icon {
    font-size: 64px;
}

.dashboard-section-title {
    font-size: 28px;
    font-weight: bold;
    margin-left: 8px;
}

.dashboard-section a {
    text-decoration: none;
    color: inherit;
}

.dashboard-section .rrp-info-note {
    background-color: #f5f5f5
}

.dashboard-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: bold;
    border: 2px solid #a0a0a0;
    border-radius: 4px;
    padding: 8px;
    margin-top: 16px;
    cursor: pointer;
}

.dashboard-panel-left {
    flex: 1;
    overflow-x: auto;
    padding-bottom: 2px;
}

.dashboard-panel-right {
    display: inline-block;
}

.dashboard-new {
    display: inline-block;
    padding: 0 8px;
    border: 2px solid var(--new-result-color);
    border-radius: 4px;
    color: var(--new-result-color);
    font-weight: bold;
    text-align: center;
}

.new-result-border {
    border-color: var(--new-result-color);
}

.new-result-text {
    color: var(--new-result-color);
}

/* Result section style */

.result-section {
    margin-top: 32px;
}

.result-section-title {
    padding-bottom: 8px;
    border-bottom: 2px solid black;
    margin-bottom: 8px;
}

.result-section-title h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
}

/* Result panel styles */

.result-panel {
    margin-top: 16px;
    background-color: white;
}

.result-panel details {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.result-panel details[open] {
    border-radius: 0 !important;
}

.result-panel summary {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    list-style-type: none !important;
    text-decoration: none !important;
    color: black !important;
    background-color: white;
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 0 !important;
}

.result-panel .title-left .mdi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-right: 4px;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
}

.result-panel .title-left .mdi-check-circle-outline {
    background-color: #03662A;
}

.result-panel .title-left .mdi-flag-variant {
    background-color: #A62A1E;
}

.result-panel .title-left .mdi-alert-circle-outline {
    background-color: #D42A1E;
}

.result-panel .title-left .mdi-file-document {
    background-color: #1478BC;
}

.result-panel .title-left .mdi-weight-lifter {
    background-color: #1478BC;
}

.result-panel .title-left .title-left-text {
    vertical-align: middle;
}

.result-panel .title-right .mdi-information-outline {
    font-size: 24px;
    margin-right: 6px;
}

.result-table-details {
    margin-top: 16px;
    margin-bottom: 16px;
}

.result-panel-details[open] .result-panel-summary .mdi-triangle-down:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.result-table-details[open] .result-table-summary .mdi-triangle-down:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.chart-analyte {
    height: 180px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.chart-analyte-title {
    font-weight: bold;
}

.chart-analyte-subtitle {
    color: #6E7079;
}

.collection-published-date {
    margin-top: 24px;
}

/* Report of measurements and physical activity */

.body-measure-results {
    padding-top: 16px;
}

.table-body-measures {
    border-collapse: collapse;
}

.table-body-measures th {
    background-color: #dddddd;
    padding-left: 16px;
}

.table-body-measures td, .table-body-measures th {
    color: #173048;
    border: 2px solid #173048 !important;
}

#anthropometry:focus, #anthropometrie:focus {
    outline: none;
}

#blood-pressure:focus, #tension-arterielle:focus {
    outline: none;
}

#activity-monitor-results:focus, #resultats-moniteur-activite:focus {
    outline: none;
}

.column-header-color td:first-child {
    background-color: #f0f0f0;
}

.row-header-color thead&gt;tr {
    background-color: #f0f0f0;
}

.physical-activity-chart-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    font-size: 16px;
}

.physical-activity-chart-legend .legend-text-item {
    margin-left: 8px;
    margin-right: 8px;
}

.physical-activity-chart-legend .legend-marker {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Page styles */

.respondent-results .item-analyte {
    margin-top: 1.5rem;
}

.respondent-results .download-all {
    display: flex;
    justify-content: flex-end;
}

.rrp-info-note {
    margin-top: 8px;
    padding-left: 16px;
    padding-right: 16px;
    background-color: #d7faff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.rrp-info-note .mdi-information-outline {
    color: #269abc;
}

.rrp-data-table {
    display: none;
    border-bottom: none !important;
}

.rrp-data-table thead th {
    border-bottom: none !important;
}

.rrp-data-table tbody tr {
    background-color: inherit !important;
}

.jumbotron {
    background-color: rgb(56, 65, 77);
    color: white;
}

.jumbotron-heading {
    border-bottom: none;
    font-size: 96px !important;
}

.panel-primary {
    border-color: black;
    background-color: rgb(245, 245, 245);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.panel-primary &gt; .panel-heading {
    background-color: rgb(56, 65, 77)
}

.panel-primary .panel-title {
    font-weight: bold;
}

.panel-body .count-results {
    display: inline-block;
    color: white;
    padding: 0 16px;
    border-radius: 4px;
    font-size: 22px;
}

.panel-body .count-results-text {
    font-size: 26px;
    font-weight: bold;
    margin-left: 8px;
}

label.required:before {
    margin-left: 0;
}

.mrp-full-width {
    width: 100%;
}

.application-bar .container {
    padding-top: 4px;
    padding-bottom: 4px;
    font-family: Lato, sans-serif;
    font-size: 29px;
    font-weight: bold;
}

.application-bar a {
    color: white;
    text-decoration: none;
}

.application-bar a:hover {
    text-decoration: underline;
}

.panel-heading h1 {
    border: none;
    font-weight: bold;
    padding: 0;
}

.alert h2 {
    font-size: 1.2em;
}

.privacy-notice {
    text-align: justify;    
}
</pre></body></html>