﻿/* =====================
       BRAND SYSTEM
    ====================== */
:root {
    --primary: #7030A0;
    --primary-dark: #4f1f73;
    --accent: #F28C8C;
    --disabled-btn: #e1cbcb;
    --bg: #f7f9fb;
    --surface: #ffffff;
    --footer: #1a1023;
    --text: #333;
    --text-light: #e6e6e6;
    --muted: #666;
    --border: #e6e6e6;
    --light-border: #f0f0f0;
    --form-btn: #3883ef;
    --progress-bar-bkg: #e0e0e0;
    --progress-bar: #3883ef;
    /* Bootstrap colors */
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --link-blue: #1bbef3;
}

body {
    margin: 0;
    font-family: "Avenir Next LT Pro", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: "Lora", serif;
}

/* =====================
       NAVBAR
    ====================== */
.lf-navbar {
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.lf-nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lf-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--primary);
}

    /* Logo sizing */
    .lf-nav-logo img {
        height: 28px; /* adjust this */
        width: auto;
    }

.lf-nav-menu {
    display: flex;
    list-style: none;
    margin-left: auto;
    gap: 25px;
}

    .lf-nav-menu a {
        text-decoration: none;
        color: var(--text);
        font-weight: 500;
    }

        .lf-nav-menu a:hover {
            color: var(--primary);
        }

.lf-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 20px;
}

    .lf-menu-toggle .bar {
        height: 3px;
        width: 25px;
        background: var(--text);
        margin: 4px 0;
    }

/* =====================
       HEADER
    ====================== */
header {
    background: var(--accent);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

    header p {
        max-width: 600px;
        margin: auto;
        font-size: 1.1rem;
    }

/* =====================
       LAYOUT
    ====================== */
.lf-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.lf-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

    .lf-section:nth-child(even) {
        direction: rtl;
    }

        .lf-section:nth-child(even) .lf-text {
            direction: ltr;
        }

.lf-align-start {
    align-items: start;
}

.lf-landing-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
}

/* =====================
       CTA
    ====================== */
.lf-cta {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 70px 20px;
    border-radius: 12px;
}

button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

    button:hover {
        background: #f2f2f2;
    }

/* =====================
       FOOTER
    ====================== */
.lf-site-footer {
    background: var(--footer);
    color: var(--text-light);
    padding-top: 50px;
    margin-top: 40px;
}

.lf-footer-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.lf-footer-logo img {
    max-width: 100px;
    height: auto;
    display: block;
}

.lf-footer-description {
    color: #cfcfcf;
    max-width: 280px;
}

.lf-footer-links {
    list-style: none;
    padding: 0;
}

    .lf-footer-links a {
        color: #cfcfcf;
        text-decoration: none;
    }

        .lf-footer-links a:hover {
            color: white;
        }

.lf-footer-bottom {
    border-top: 1px solid #2a1b3d;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: #aaa;
}

/* =====================
       MOBILE
    ====================== */
@media (max-width: 768px) {
    .lf-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lf-menu-toggle {
        display: flex;
    }

/* =====================
   MOBILE DRAWER MENU
   ===================== */

    .lf-nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.25);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
        z-index: 998;
    }

        .lf-nav-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

    .lf-nav-menu {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        width: 92%;
        max-width: 420px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: var(--footer);
        border-radius: 16px;
        padding: 15px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.35);
        gap: 10px;
        /* hidden state */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.25s ease;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        z-index: 999;
    }

        .lf-nav-menu.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        .lf-nav-menu li {
            list-style: none;
        }

        .lf-nav-menu a {
            display: block;
            padding: 14px 16px;
            border-radius: 10px;
            text-align: center;
            font-weight: 500;
            color: #333;
            background: white;
            transition: all 0.25s ease;
            border: 1px solid rgba(255,255,255,0.08);
        }

            .lf-nav-menu a:hover,
            .lf-nav-menu a:active {
                background: var(--footer);
                color: white;
                transform: scale(0.98);
            }


    .lf-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

        .lf-footer-container > div:first-child {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

    .lf-footer-column:first-child {
        align-items: center;
        text-align: center;
    }

    .lf-footer-logo img {
        display: block;
        margin: 0 auto 10px;
    }

    .lf-footer-description {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}

.lf-form {
    max-width: 500px;
    margin: auto;
}



@media (max-width: 768px) {
    .lf-form {
        width: 100%;
    }
}

.lf-manage-links {
    font-size: 16px;
}

.lf-table {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
}
    .lf-table td, th {
        border: 1px solid #ddd;
        padding: 8px;
    }

    .lf-table tr { 
    
    }
        .lf-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        .lf-table tr:hover {
            background-color: #ddd;
        }

    .lf-table th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        background-color: var(--accent);
        color: white;
    }

    .lf-table a {
        text-decoration: none;
        color: var(--link-blue);
    }

.centre-text {
    text-align: center !important;
}

.page-link {
    text-decoration: none;
    color: var(--link-blue);
}

.form-btn {
    display:block;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--accent);
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 150px;
    height: 40px;
    margin: auto;
}

.link-btn {
    display: block;
    font-weight: 400;
    line-height: 1.9;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--accent);
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1.1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 180px;
    height: 32px;
    margin: auto;
}

@media (prefers-reduced-motion: reduce) {
    .form-btn {
        transition: none;
    }
}

.form-btn:hover {
    background-color: #f5bcbc;
}

.form-btn-danger {
    display: block;
    font-weight: 400;
    line-height: 1.5;
    color: #e9ecef;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #FF0000;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    width: 120px;
    height: 24px;
    margin: auto;  
}

    .form-btn-danger:hover {
        background-color: #CC0000;
    }

.wide-btn {
    width: 300px;
    height: 38px;
}

.jump-offset {
    scroll-margin-top: 100px;
}
/*
    ==========================================
              Bootstrap compatibility
    =========================================== 
*/
.text-success {
    color: var(--bs-success) !important;
}

.text-info {
    color: var(--bs-info) !important;
}

.text-warning {
    color: var(--bs-warning) !important;
}

.text-danger {
    color: var(--bs-danger) !important;
}


.form-floating {
    position: relative;
    box-sizing: border-box;
}

    .form-floating > .form-control,
    .form-floating > .form-select {
        height: calc(3.5rem + 2px);
        line-height: 1.25;
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        padding: 1rem 0.75rem;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 0 0;
        transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    }

@media (prefers-reduced-motion: reduce) {
    .form-floating > label {
        transition: none;
    }
}

.form-floating > .form-control {
    padding: 1rem 0.75rem;
}

    .form-floating > .form-control::-moz-placeholder {
        color: transparent;
    }

    .form-floating > .form-control::placeholder {
        color: transparent;
    }

    .form-floating > .form-control:not(:-moz-placeholder-shown) {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

    .form-floating > .form-control:-webkit-autofill {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-20 {
    margin-top: 20px;
}

.form-label {
    margin-bottom: 0.5rem;
}

.form-control {
    display: block;
    width: 100%;
    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 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control[type=file] {
    overflow: hidden;
}

    .form-control[type=file]:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.form-control::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control::file-selector-button {
        transition: none;
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    -webkit-margin-end: 0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none;
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

    .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
        padding-right: 0;
        padding-left: 0;
    }

.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

    .form-control-sm::file-selector-button {
        padding: 0.25rem 0.5rem;
        margin: -0.25rem -0.5rem;
        -webkit-margin-end: 0.5rem;
        margin-inline-end: 0.5rem;
    }

    .form-control-sm::-webkit-file-upload-button {
        padding: 0.25rem 0.5rem;
        margin: -0.25rem -0.5rem;
        -webkit-margin-end: 0.5rem;
        margin-inline-end: 0.5rem;
    }

.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

    .form-control-lg::file-selector-button {
        padding: 0.5rem 1rem;
        margin: -0.5rem -1rem;
        -webkit-margin-end: 1rem;
        margin-inline-end: 1rem;
    }

    .form-control-lg::-webkit-file-upload-button {
        padding: 0.5rem 1rem;
        margin: -0.5rem -1rem;
        -webkit-margin-end: 1rem;
        margin-inline-end: 1rem;
    }

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
}

textarea.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
    width: 3rem;
    height: auto;
    padding: 0.375rem;
}

    .form-control-color:not(:disabled):not([readonly]) {
        cursor: pointer;
    }

    .form-control-color::-moz-color-swatch {
        height: 1.5em;
        border-radius: 0.25rem;
    }

    .form-control-color::-webkit-color-swatch {
        height: 1.5em;
        border-radius: 0.25rem;
    }


.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 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: #212529;
}

.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
        box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
    }

    .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #0a58ca;
        border-color: #0a53be;
    }

        .btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
        }

    .btn-primary:disabled, .btn-primary.disabled {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

    .btn-close:hover {
        color: #000;
        text-decoration: none;
        opacity: 0.75;
    }

    .btn-close:focus {
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        opacity: 1;
    }

    .btn-close:disabled, .btn-close.disabled {
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        opacity: 0.25;
    }

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 3rem;
}

    .alert-dismissible .btn-close {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        padding: 1.25rem 1rem;
    }

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

    .alert-primary .alert-link {
        color: #06357a;
    }

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

    .alert-secondary .alert-link {
        color: #34383c;
    }

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

    .alert-success .alert-link {
        color: #0c4128;
    }

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

    .alert-info .alert-link {
        color: #04414d;
    }

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

    .alert-warning .alert-link {
        color: #523e02;
    }

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

    .alert-danger .alert-link {
        color: #6a1a21;
    }

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

    .alert-light .alert-link {
        color: #4f5050;
    }

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf;
}

    .alert-dark .alert-link {
        color: #101214;
    }

/*
    ==========================================
              SURVEY FORMATTING
    ===========================================
*/

.lf-nav-btn-bar {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    box-sizing: border-box;
}

.lf-nav-btn {
    width: 120px;
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    margin: 20px;
}
.lf-nav-btn:hover {
    background-color: var(--primary-dark)
}

.lf-nav-btn:disabled {
    background-color: var(--disabled-btn);
    cursor: not-allowed;
}

.lf-long-btn {
    width: 200px;
}

@media (max-width: 768px) {
    .lf-nav-btn-bar {
        width: 100%;
    }
    .lf-nav-btn {
        width: 80px;
        padding: 10px 10px;
    }
    .lf-long-btn {
        width: 200px;
    }
}

.lf-progress-text {
    width: 100%;
    text-align: right;
    margin-top: 4px;
    margin-bottom: 4px;
}

.lf-progress-bar {
    width: 100%;
    background-color: var(--progress-bar-bkg);
}

.lf-progress-fill {
    width: 0%;
    height: 30px;
    background-color: var(--progress-bar);
}

.lf-number-box {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: var(--light-border);
}

.lf-number-text {
    width: 85%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    float: left;
    box-sizing:border-box;
}

.lf-checkbox-item {
    width: 100%;
    overflow: hidden;
}

.lf-checkbox-tick {
    float: left;
}

.lf-checkbox-text {
    overflow: hidden;
}

.lf-radio-item {
    width: 100%;
    overflow: hidden;
}

.lf-radio-tick {
    float: left;
}

.lf-radio-text {
    overflow: hidden;
}

.lf-radio-unanswered {
    border: 2px solid red;
}

@media (max-width: 768px) {
    .lf-number-text {
        width: 75%;
    }
}

.lf-number-wrap {

}

.lf-number-input {
    width: 42px;
    margin: 5px;
    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 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    float: right;
    overflow: hidden;
}

.lf-text-input {
    width: 100%;
    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 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

.lf-checkbox {
    width: 20px;
    height: 20px;
    margin-left: 20px;
    margin-right: 10px;
}

.lf-radio {
    width: 20px;
    height: 20px;
    margin-left: 20px;
    margin-right: 10px;
}

.lf-checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.lf-label {
    font-weight: 500;
    vertical-align:top;
}

.lf-question-txt {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.lf-item-text {
    font-size: 1rem;
}

hr.lf-hr {
    border: 1px solid var(--light-border);
    margin-top: 20px;
    margin-bottom: 20px;
}

.lf-answered-txt {
    text-align: center;
    font-style: italic;
}

.lf-required {
    color: red;
    font-weight: bold;
    font-size: 22px;
}

.lf-show-unanswered-toggle {
    margin: auto;
    text-align: center;
    padding: 0px;
}

    .lf-show-unanswered-toggle input[type=checkbox] {
        width: 18px;
        height: 18px;
        vertical-align: middle;
    }

    .lf-show-unanswered-toggle label {
        padding-top: 4px;
        display: inline-block;
        vertical-align: middle;
    }
/*
    ==========================================
                REPORT FORMATTING
    ===========================================
*/
.report-logo {
    display: block;
    width: 20%;
    margin: auto;
}

.report-subtitle {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: #ba6fb8;
    text-align: center;
}

.lf-contents-box {
    width: 100%;
    text-align: center;
    color: var(--link-blue);
}

.lf-contents-item {
    font-weight: bold;
    font-size: 18px;
}
    .lf-contents-item:hover {
        cursor: pointer;
        color: var(--primary-dark);
    }

.report-flex-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
}

.report-score {
    width: 300px;
    float: left;
    margin: 20px 30px 20px 30px;
}

.report-summary-score {
    width: 240px;
    margin: 20px 40px 20px 40px;
}

.report-work-score {
    width: 400px;
    margin: 20px 30px 20px 30px;
    border: 5px solid var(--light-border);
}

.report-work-score-box {
    width: 50%;
    margin: auto;
}

.report-summary-score-text {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
}

.report-work-score-text {
    text-align: center;
    font-size: 16px;
}

.report-text {
    width: 500px;
    margin: 60px 20px 30px 20px;
    font-size: 18px;
}

.report-stressor-icon {
    width: 40px;
}

.report-stressor-bar {
    width: 500px;
}

.report-stressor-text {
    text-align: center;
    font-size: 16px;
    width: 500px;
    margin: auto;
    margin-bottom: 30px;
}

.report-chart-area {
    width: 90%;
    border: 5px solid var(--light-border);
    margin: auto;
    margin-bottom: 30px;
}

.report-diet-piechart {
    width: 300px;
    margin: 20px;   
}

.report-diet-piechart-key {
    width: 500px;
}

.report-key-table {
    border-spacing: 10px;
    margin: auto;
}

.report-bmi-table {
    width: 80%;
    border-spacing: 8px;
    table-layout: fixed;
    margin: auto;
    text-align: center;
    color: #FFFFFF;
    font-size: 22px;
}

@media (max-width: 768px) {
    .report-bmi-table {
        width: 100%;
        font-size: 14px;
    }
}

.report-bmi-td {
    height: 50px;
}

.report-bmi-pointer {
    color: #000000;
}

.report-bmr-table {
    width: 60%;
    border-spacing: 8px;
    margin: auto;
    text-align: center;
    color: #FFFFFF;
    font-size: 22px;
}

.report-bmr-td {
    height: 50px;
}

.report-bmr-th {
    color: #000000;
}

.report-bmr-pointer {
    color: #000000;
}

@media (max-width: 768px) {
    .report-bmr-table {
        width: 80%;
        font-size: 14px;
    }
}

.report-key-box {
    width: 150px;
    height: 50px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 20px;
}

.report-key-label {
    height: 50px;
    margin: 20px;
}

.report-insights-area {
    width: 90%;
    background-color: #dfcefa;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

.report-insights-title-bar {
    margin: 0px;
    display: inline-block;
    width: 100%;
}

.report-insights-icon-box {
    width: 50px;
    margin: 10px;
    float: left;
}

.report-insights-title {
    padding-top: 1px;
}

.report-insights-list-box {
    font-size: 20px;
    padding-left: 10px;
    padding-bottom: 10px;
}

.report-key-strengths-area {
    width: 90%;
    padding-top:1px;
    background-color: #c6e8c8;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

.report-growth-area {
    width: 90%;
    padding-top: 1px;
    background-color: #ffd99b;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

.report-takeaway-title {
    text-align: center;
    margin-top: 4px;
    margin-bottom: 0px;
}

.report-key-strengths-table {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    border-spacing: 10px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .report-key-strengths-area {
        width: 100%;
    }

    .report-key-strengths-table {
        font-size: 16px;
    }
}

.report-takeaway-icon-box {
    width: 50px;
}

.report-alcohol-table {
    width: 80%;
    border-spacing: 8px;
    table-layout: fixed;
    margin: auto;
    text-align: center;
    color: #FFFFFF;
    font-size: 18px;
}

@media (max-width: 768px) {
    .report-alcohol-table {
        width: 100%;
        font-size: 11px;
    }
}

.report-alcohol-td {
    height: 50px;
}

.report-alcohol-th {
    color: #000000;
}

.report-alcohol-pointer {
    color: #000000;
}

.report-top-goal-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
}

.report-top-goal-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58%;
    color: #4a10a5;
    font-size: 40px;
}

@media (max-width: 768px) {
    .report-logo {
        width: 30%;
    }
    .report-text {
        width: 100%;
        margin: 20px 20px 20px 20px;
    }
    .report-stressor-text {
        width: 100%;
    }
    .report-top-goal-text {
        font-size: 22px;
    }
}

.test-content {
    width: 500px;
    margin: auto;
    overflow: hidden;
}

@media (max-width: 768px) {
    .test-content {
        width: 100%;
    }
}