/* =========================================================
   CP Marketing Assessment – Public Stylesheet
   ========================================================= */

/* ---- Reset / Base ---- */
.cpma-wrap *,
.cpma-wrap *::before,
.cpma-wrap *::after {
    box-sizing: border-box;
}

.cpma-wrap {
    font-family: Arial, sans-serif;
    color: #1e1e1e;
    line-height: 1.5;
}

.cpma-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Banner / scale guide ---- */
.cpma-banner {
    background: #0072BC;
    padding: 40px 20px 30px;
    text-align: center;
    color: #fff;
}

.cpma-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
}

.cpma-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
    color: rgba(255,255,255,.85);
}

.cpma-scale-bar {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin: 0 auto;
    max-width: 700px;
    position: relative;
}

.cpma-scale-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

.cpma-scale-item::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,.5);
    margin-bottom: 6px;
}

.cpma-scale-num {
    display: inline-block;
    background: #fff;
    color: #0072BC;
    font-weight: 700;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    font-size: 13px;
}

.cpma-scale-label {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,.9);
    margin-top: 4px;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    text-align: center;
}

/* ---- Form section ---- */
.cpma-form-section {
    padding: 40px 0;
}

.cpma-form-header h3 {
    font-size: 20px;
    color: #0072BC;
    margin-bottom: 24px;
    border-bottom: 2px solid #0072BC;
    padding-bottom: 10px;
}

.cpma-form-messages {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cpma-form-messages.cpma-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cpma-form-messages.cpma-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ---- Questions ---- */
.cpma-question-row {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.cpma-question-row:last-of-type {
    border-bottom: none;
}

.cpma-question-text {
    font-size: 16px;
    font-weight: 600;
    color: #1e1e1e;
    margin: 0 0 12px;
    line-height: 1.4;
}

.cpma-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cpma-radio-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.cpma-radio-item input[type="radio"] {
    display: none;
}

.cpma-radio-item label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s ease;
    color: #555;
}

.cpma-radio-item input[type="radio"]:checked + label {
    background: #0072BC;
    border-color: #0072BC;
    color: #fff;
}

.cpma-radio-item label:hover {
    border-color: #0072BC;
    color: #0072BC;
}

/* ---- Lead fields ---- */
.cpma-lead-fields {
    margin-top: 30px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.cpma-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media ( max-width: 600px ) {
    .cpma-field-row {
        grid-template-columns: 1fr;
    }
}

.cpma-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: border-color .2s;
}

.cpma-input:focus {
    outline: none;
    border-color: #0072BC;
    box-shadow: 0 0 0 2px rgba(0,114,188,.15);
}

.cpma-submit-row {
    margin-top: 20px;
    text-align: center;
}

.cpma-submit-btn {
    background: #0072BC;
    color: #fff;
    border: none;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: background .2s;
    font-family: Arial, sans-serif;
}

.cpma-submit-btn:hover {
    background: #005a96;
}

.cpma-submit-btn:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.cpma-response-msg {
    margin-top: 10px;
    font-size: 14px;
    color: #0072BC;
    min-height: 20px;
}

/* =========================================================
   Result page
   ========================================================= */

.cpma-result-section {
    padding: 40px 0;
}

.cpma-result-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    max-width: 860px;
    margin: 0 auto;
}

.cpma-result-greeting h3 {
    font-size: 24px;
    text-align: center;
    color: #0072BC;
    margin-bottom: 24px;
}

.cpma-coaching-format {
    background: #f8f9fa;
    border-left: 4px solid #0072BC;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
}

.cpma-report-titlebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cpma-result-title {
    font-size: 16px;
    font-weight: 700;
    color: #0072BC;
    letter-spacing: .5px;
    margin: 0;
}

.cpma-result-title span {
    color: #F27D0C;
}

.cpma-title-spaced {
    margin-bottom: 12px;
}

.cpma-download-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #F27D0C;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

.cpma-download-icon:hover {
    color: #c9640a;
}

.cpma-overall-score {
    font-size: 20px;
    margin: 20px 0 10px;
}

.cpma-score-num {
    font-size: 28px;
    font-weight: 700;
}

/* Band colours */
.cpma-band-red    { color: #e74c3c; }
.cpma-band-yellow { color: #d4a017; }
.cpma-band-orange { color: #e67e22; }
.cpma-band-green  { color: #27ae60; }

/* Progress bar */
.cpma-result-bar-wrapper {
    height: 18px;
    background: #e0e0e0;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 20px;
}

.cpma-result-bar {
    height: 100%;
    border-radius: 9px;
    transition: width .6s ease;
}

.cpma-result-bar.cpma-band-red    { background: #e74c3c; }
.cpma-result-bar.cpma-band-yellow { background: #f1c40f; }
.cpma-result-bar.cpma-band-orange { background: #e67e22; }
.cpma-result-bar.cpma-band-green  { background: #27ae60; }

/* Interpretation table */
.cpma-summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cpma-table-header th {
    background: #0072BC;
    color: #fff;
    padding: 10px 12px;
    text-align: left;
}

.cpma-summary-table td {
    padding: 9px 12px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.cpma-summary-table tr:nth-child(even) td {
    background: #f8f8f8;
}

.cpma-active-band td {
    font-weight: 700;
    background: #fff9e0 !important;
}

/* Question breakdown */
.cpma-question-breakdown {
    margin-top: 24px;
}

.cpma-q-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cpma-q-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.cpma-q-num {
    font-weight: 700;
    min-width: 28px;
    color: #0072BC;
}

.cpma-q-label {
    flex: 1;
}

.cpma-q-score {
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 12px;
    background: #e0e0e0;
    font-size: 13px;
    white-space: nowrap;
}

.cpma-q-score.cpma-band-red    { background: #fdecea; color: #c0392b; }
.cpma-q-score.cpma-band-yellow { background: #fef9e7; color: #9a7a00; }
.cpma-q-score.cpma-band-orange { background: #fef0e7; color: #b05c0d; }
.cpma-q-score.cpma-band-green  { background: #eafbea; color: #1e8449; }

/* Result actions */
.cpma-result-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cpma-btn {
    display: inline-block;
    padding: 11px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: none;
    font-family: Arial, sans-serif;
}

.cpma-btn-primary {
    background: #0072BC;
    color: #fff;
}

.cpma-btn-primary:hover {
    background: #005a96;
    color: #fff;
}

.cpma-btn-download {
    background: #F27D0C;
    color: #fff;
}

.cpma-btn-download:hover {
    background: #c9640a;
    color: #fff;
}

/* Not-found state */
.cpma-not-found {
    text-align: center;
    padding: 60px 20px;
}

.cpma-not-found h1 {
    color: #e74c3c;
}

/* Notice */
.cpma-notice {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
}

@media ( max-width: 600px ) {
    .cpma-result-card { padding: 16px; }
    .cpma-summary-table { font-size: 12px; }
    .cpma-result-actions { flex-direction: column; }
    .cpma-q-row { flex-wrap: wrap; }
}


/* =========================================================
   RESULT PAGE – REDESIGNED UI
   ========================================================= */

/* Hero Banner */
.cpma-result-hero {
    background: linear-gradient(135deg, #0A1628 0%, #0072BC 100%);
    padding: 48px 20px 52px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
}

.cpma-result-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}

.cpma-result-hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 280px; height: 280px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}

.cpma-result-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cpma-result-greeting-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin: 0 0 10px;
    font-weight: 600;
}

.cpma-result-name {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
    line-height: 1.2;
}

.cpma-result-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin: 0;
    line-height: 1.6;
}

/* Full-width override — break out of theme container aggressively */
.cpma-wrap.cpma-result-wrap,
#cpma-pdf-content {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    transform: translateX(0);
}

/* Body Container */
.cpma-result-body {
    max-width: 960px;
    margin: 0 auto;
    padding: 36px 32px 60px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Score Card */
.cpma-score-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: center;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    border: 1px solid #e8e8e8;
}

.cpma-score-card-left {
    flex-shrink: 0;
}

.cpma-score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid currentColor;
    position: relative;
}

.cpma-score-card.cpma-band-red    .cpma-score-circle { border-color: #e74c3c; color: #e74c3c; background: #fdecea; }
.cpma-score-card.cpma-band-yellow .cpma-score-circle { border-color: #d4a017; color: #d4a017; background: #fef9e7; }
.cpma-score-card.cpma-band-orange .cpma-score-circle { border-color: #e67e22; color: #e67e22; background: #fef0e7; }
.cpma-score-card.cpma-band-green  .cpma-score-circle { border-color: #27ae60; color: #27ae60; background: #eafbea; }

.cpma-score-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.cpma-score-max {
    font-size: 13px;
    font-weight: 600;
    opacity: .7;
}

.cpma-score-card-right {
    flex: 1;
}

.cpma-band-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 800;
    color: #0A1628;
    margin-bottom: 8px;
}

.cpma-band-interpretation {
    font-size: 15px;
    color: #555;
    margin: 0 0 18px;
    line-height: 1.6;
}

.cpma-progress-track {
    height: 12px;
    background: #eee;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.cpma-progress-fill {
    height: 100%;
    border-radius: 6px;
    transition: width .8s ease;
}

.cpma-score-card.cpma-band-red    .cpma-progress-fill { background: #e74c3c; }
.cpma-score-card.cpma-band-yellow .cpma-progress-fill { background: #f1c40f; }
.cpma-score-card.cpma-band-orange .cpma-progress-fill { background: #e67e22; }
.cpma-score-card.cpma-band-green  .cpma-progress-fill { background: #27ae60; }

.cpma-progress-label {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    display: none;
}

/* Download Bar */
.cpma-download-bar {
    background: linear-gradient(135deg, #0A1628, #0072BC);
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cpma-download-note {
    color: rgba(255,255,255,.75);
    font-size: 14px;
    margin: 0;
}

.cpma-btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F27D0C;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.cpma-btn-pdf:hover {
    background: #c9640a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(242,125,12,.4);
}

/* Section Cards */
.cpma-section-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    border: 1px solid #e8e8e8;
}

.cpma-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.cpma-section-icon {
    font-size: 22px;
    line-height: 1;
}

.cpma-section-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0A1628;
    margin: 0;
}

/* Interpretation Table */
.cpma-interp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cpma-interp-table thead th {
    background: #0A1628;
    color: #fff;
    padding: 12px 14px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}

.cpma-interp-table thead th:first-child { border-radius: 8px 0 0 0; }
.cpma-interp-table thead th:last-child  { border-radius: 0 8px 0 0; }

.cpma-interp-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    color: #444;
    line-height: 1.5;
}

.cpma-interp-table tbody tr:last-child td { border-bottom: none; }
.cpma-interp-table tbody tr:nth-child(even) td { background: #fafafa; }

.cpma-row-active td {
    background: #fffbf0 !important;
    font-weight: 600;
    color: #0A1628 !important;
}

.cpma-range-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.cpma-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.cpma-you-badge {
    display: inline-block;
    background: #0072BC;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

/* Question List */
.cpma-q-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cpma-q-item {
    padding: 4px 0;
}

.cpma-q-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.cpma-q-number {
    background: #0072BC;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cpma-q-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.cpma-q-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.cpma-q-bar-track {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-left: 38px;
}

.cpma-q-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width .6s ease;
}

/* Bottom CTA Bar */
.cpma-cta-bar {
    background: #f8f9fa;
    border: 2px dashed #0072BC;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cpma-cta-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0A1628;
    margin: 0 0 6px;
}

.cpma-cta-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cpma-btn-pdf-lg {
    padding: 15px 32px;
    font-size: 16px;
}

/* Not found */
.cpma-not-found-wrap {
    text-align: center;
    padding: 80px 20px;
}

.cpma-not-found-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.cpma-not-found-wrap h1 {
    font-size: 28px;
    color: #0A1628;
    margin-bottom: 12px;
}

.cpma-not-found-wrap p {
    color: #666;
    margin-bottom: 24px;
    font-size: 16px;
}

/* =========================================================
   RESPONSIVE – Tablet (max 768px)
   ========================================================= */
@media ( max-width: 768px ) {
    .cpma-result-body {
        padding: 24px 16px 40px;
        gap: 20px;
    }

    .cpma-result-hero {
        padding: 36px 16px 40px;
    }

    .cpma-result-name { font-size: 28px; }
    .cpma-result-hero-sub { font-size: 14px; }

    .cpma-score-card {
        padding: 24px 20px;
        gap: 20px;
    }

    .cpma-section-card {
        padding: 22px 20px;
    }

    .cpma-download-bar {
        padding: 18px 20px;
        gap: 12px;
    }

    .cpma-interp-table { font-size: 13px; }
    .cpma-interp-table thead th,
    .cpma-interp-table tbody td { padding: 10px 10px; }
}

/* =========================================================
   RESPONSIVE – Mobile (max 480px)
   ========================================================= */
@media ( max-width: 480px ) {

    /* ── Banner ── */
    .cpma-banner   { padding: 24px 12px 20px; }
    .cpma-title    { font-size: 22px; }
    .cpma-subtitle { font-size: 13px; margin-bottom: 16px; }

    /* ── Scale bar: 5+5 compact grid (MOBILE ONLY) ── */
    .cpma-scale-bar {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 8px !important;
        max-width: 100% !important;
        padding: 4px 0 !important;
        align-items: start !important;
        justify-items: center !important;
    }

    .cpma-scale-item {
        flex: unset !important;
        width: 100% !important;
        padding-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        position: relative !important;
    }

    /* Hide the horizontal connector line on mobile */
    .cpma-scale-item::before { display: none !important; }

    .cpma-scale-num {
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
        font-size: 14px !important;
    }

    /* Hide all labels on mobile — replaced by banner text */
    .cpma-scale-label { display: none !important; }

    /* ── Question radio buttons: 5 per row ── */
    .cpma-radio-group {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 8px 6px !important;
    }

    .cpma-radio-item {
        width: 100% !important;
        justify-content: center !important;
    }

    .cpma-radio-item label {
        width: 40px !important;
        height: 40px !important;
        font-size: 13px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* ── Result page ── */
    .cpma-result-hero    { padding: 28px 16px 32px; }
    .cpma-result-name    { font-size: 24px; }
    .cpma-result-hero-sub{ font-size: 13px; }
    .cpma-result-body    { padding: 16px 12px 32px; gap: 16px; }

    .cpma-score-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 16px;
        gap: 16px;
    }
    .cpma-score-circle { width: 96px; height: 96px; }
    .cpma-score-number { font-size: 34px; }
    .cpma-band-badge   { justify-content: center; font-size: 18px; }
    .cpma-band-interpretation { font-size: 13px; }

    .cpma-download-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 16px;
        gap: 12px;
    }
    .cpma-btn-pdf {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .cpma-section-card  { padding: 16px 14px; }
    .cpma-section-header h2 { font-size: 16px; }

    .cpma-interp-table          { font-size: 12px; }
    .cpma-interp-table thead th,
    .cpma-interp-table tbody td { padding: 8px 6px; }
    .cpma-range-pill { font-size: 11px; padding: 2px 6px; }

    .cpma-q-top    { flex-wrap: wrap; gap: 6px; }
    .cpma-q-num    { width: 24px; height: 24px; font-size: 10px; }
    .cpma-q-text   { font-size: 13px; flex-basis: calc(100% - 34px); }
    .cpma-q-badge  { font-size: 12px; padding: 2px 10px; }
    .cpma-q-bar-track { margin-left: 30px; }
}

