﻿
/*
    Sometimes the sub menus get too large for the page and prevent the menu from scrolling, limiting functionality
    A quick fix is to change .side-menu to

    -> position:absolute

    and uncomment the code below.
    You also need to uncomment

    -> <div class="absolute-wrapper"> </div> in the html file

    you also need to tweek the animation. Just uncomment the code in that section
    --------------------------------------------------------------------------------------------------------------------
    If you want to make it really neat i suggest you look into an alternative like http://areaaperta.com/nicescroll/
    This will allow the menu to say fixed on body scoll and scoll on the side bar if it get to large
*/
/*.absolute-wrapper{
    position: fixed;
    width: 300px;
    height: 100%;
    background-color: #f8f8f8;
    border-right: 1px solid #e7e7e7;
}*/

.side-menu {
    position: fixed;
    top: 0;
    width: 260px;
    height: 100%;
    background-color: #f8f8f8;
    border-right: 1px solid #e7e7e7;
    overflow-x: hidden;
}

    .side-menu .navbar {
        border: none;
    }

    .side-menu .navbar-header {
        width: 100%;
        border-bottom: 1px solid #e7e7e7;
    }

    .side-menu .navbar-nav .active a {
        background-color: transparent;
        margin-right: -1px;
        border-right: 5px solid #e7e7e7;
    }

    .side-menu .navbar-nav li {
        display: block;
        width: 100%;
        border-bottom: 1px solid #e7e7e7;
    }

        .side-menu .navbar-nav li a {
            padding: 15px;
            white-space: normal;
        }

            .side-menu .navbar-nav li a .glyphicon {
                padding-right: 10px;
            }

    .side-menu #dropdown {
        border: 0;
        margin-bottom: 0;
        border-radius: 0;
        background-color: transparent;
        box-shadow: none;
    }

        .side-menu #dropdown .caret {
            float: right;
            margin: 9px 5px 0;
        }

        .side-menu #dropdown .indicator {
            float: right;
        }

        .side-menu #dropdown > a {
            border-bottom: 1px solid #e7e7e7;
        }

        .side-menu #dropdown .panel-body {
            padding: 0;
            background-color: #f3f3f3;
        }

            .side-menu #dropdown .panel-body .navbar-nav {
                width: 100%;
            }

                .side-menu #dropdown .panel-body .navbar-nav li {
                    padding-left: 15px;
                    border-bottom: 1px solid #e7e7e7;
                }

                    .side-menu #dropdown .panel-body .navbar-nav li:last-child {
                        border-bottom: none;
                    }

            .side-menu #dropdown .panel-body .panel > a {
                margin-left: -20px;
                padding-left: 35px;
            }

            .side-menu #dropdown .panel-body .panel-body {
                margin-left: -15px;
            }

                .side-menu #dropdown .panel-body .panel-body li {
                    padding-left: 30px;
                }

                    .side-menu #dropdown .panel-body .panel-body li:last-child {
                        border-bottom: 1px solid #e7e7e7;
                    }

    .side-menu #search-trigger {
        background-color: #f3f3f3;
        border: 0;
        border-radius: 0;
        position: absolute;
        top: 0;
        right: 0;
        padding: 15px 18px;
    }

    .side-menu .brand-name-wrapper {
        min-height: 50px;
    }

        .side-menu .brand-name-wrapper .navbar-brand {
            display: block;
        }

    .side-menu #search {
        position: relative;
        z-index: 1000;
    }

        .side-menu #search .panel-body {
            padding: 0;
        }

            .side-menu #search .panel-body .navbar-form {
                padding: 0;
                padding-right: 50px;
                width: 100%;
                margin: 0;
                position: relative;
                border-top: 1px solid #e7e7e7;
            }

                .side-menu #search .panel-body .navbar-form .form-group {
                    width: 100%;
                    position: relative;
                }

                .side-menu #search .panel-body .navbar-form input {
                    border: 0;
                    border-radius: 0;
                    box-shadow: none;
                    width: 100%;
                    height: 50px;
                }

                .side-menu #search .panel-body .navbar-form .btn {
                    position: absolute;
                    right: 0;
                    top: 0;
                    border: 0;
                    border-radius: 0;
                    background-color: #f3f3f3;
                    padding: 15px 18px;
                }


/* Push member tabs to the right of fixed side menu */
.body-content > .nav-tabs {
    margin-left: 260px;
}

/* Main body section */
.side-body {
    margin-left: 310px;
}

#registrationCartSummary {
    margin-left: 260px;
}

@media (max-width: 768px) {
    /* Onglets famille sous le header fixed */
    .body-content > .nav-tabs {
        margin-left: 0;
        margin-top: 59px;
    }

    #registrationCartSummary {
        margin-left: 0;
        margin-top: 25px;
    }

    /* Sur mobile, le menu latéral superpose le contenu (ne le pousse pas) */
    .row.accountPage > .container-fluid.minifenetre {
        margin-left: 0 !important;
    }
}
/* small screen */
@media (max-width: 768px) {
    .side-menu {
        position: fixed;
        top: 0;
        width: 100%;
        height: 59px;
        z-index: 1050;
        border-right: 0;
        border-bottom: 1px solid #e7e7e7;
    }

    /* Compense le header fixed : espace sous le menu */
    #registrationCartSummary {
        margin-bottom: 8px;
    }

    .body-content > .tab-content {
        padding-top: 12px;
    }
    /* Le .tab-content DANS le template ne doit PAS avoir ce padding */
    .container-fluid.minifenetre .tab-content {
        padding-top: 0;
    }

    .side-menu .brand-name-wrapper .navbar-brand {
        display: inline-block;
    }

    /* Hamburger button avec texte "Menu" sur mobile */
    .navbar-toggle.cnpi-navbar-toggle-mobile {
        display: flex !important;
        align-items: center;
        gap: 6px;
        margin: 8px 10px 8px 4px;
        float: left;
        border: 0;
    }

    .cnpi-hamburger-emoji {
        font-size: 22px;
        line-height: 1;
        color: #555;
        display: inline-block;
        vertical-align: middle;
        padding: 0 2px;
    }

    .cnpi-menu-label {
        font-size: 13px;
        font-weight: 600;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: normal;
        padding-left: 2px;
        white-space: nowrap;
    }
    /* Slide side menu : transition CSS au lieu de keyframes (plus fiable Chrome remote) */
    .side-menu-container > .navbar-nav {
        position: fixed;
        left: 0;
        width: 100%;
        top: 0;
        height: 100%;
        margin: 0;
        z-index: 1060;
        border-right: 1px solid #e7e7e7;
        background-color: #f8f8f8;
        transform: translateX(-100%);
        transition: transform 300ms;
    }

        .side-menu-container > .navbar-nav.slide-in {
            transform: translateX(0);
        }
    /* Uncomment for scrollable menu -> see top comment */
    /*.absolute-wrapper{
        width:285px;
        -moz-animation: slideout 300ms forwards;
        -o-animation: slideout 300ms forwards;
        -webkit-animation: slideout 300ms forwards;
        animation: slideout 300ms forwards;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }*/
    @-moz-keyframes bodyslidein {
        0% {
            left: 0;
        }

        100% {
            left: 300px;
        }
    }

    @-webkit-keyframes bodyslidein {
        0% {
            left: 0;
        }

        100% {
            left: 300px;
        }
    }

    @keyframes bodyslidein {
        0% {
            left: 0;
        }

        100% {
            left: 300px;
        }
    }

    @-moz-keyframes bodyslideout {
        0% {
            left: 300px;
        }

        100% {
            left: 0;
        }
    }

    @-webkit-keyframes bodyslideout {
        0% {
            left: 300px;
        }

        100% {
            left: 0;
        }
    }

    @keyframes bodyslideout {
        0% {
            left: 300px;
        }

        100% {
            left: 0;
        }
    }
    /* Slide side body*/
    .side-body {
        margin-left: 5px;
        margin-top: 10px;
        position: relative;
        -moz-animation: bodyslideout 300ms forwards;
        -o-animation: bodyslideout 300ms forwards;
        -webkit-animation: bodyslideout 300ms forwards;
        animation: bodyslideout 300ms forwards;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .accountPage .container-fluid.minifenetre {
        margin-top: 10px;
    }

    .body-slide-in {
        -moz-animation: bodyslidein 300ms forwards;
        -o-animation: bodyslidein 300ms forwards;
        -webkit-animation: bodyslidein 300ms forwards;
        animation: bodyslidein 300ms forwards;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    /* Hamburger */
    .navbar-toggle {
        border: 0;
        float: left;
        padding: 18px;
        margin: 0;
        border-radius: 0;
        background-color: #f3f3f3;
    }
    /* Search */
    #search .panel-body .navbar-form {
        border-bottom: 0;
    }

        #search .panel-body .navbar-form .form-group {
            margin: 0;
        }

    .navbar-header {
        /* this is probably redundant */
        position: relative;
        width: 100%;
        z-index: 1050;
        background-color: #f8f8f8;
    }
    /* Dropdown tweek */
    #dropdown .panel-body .navbar-nav {
        margin: 0;
    }

    .side-menu-container > .navbar-nav a {
        cursor: pointer;
    }

    /* ── Pills : résumé dossier en mode badges horizontaux ── */
    dl.cnpi-dossier-summary {
        display: flex !important;
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 0;
    }

        dl.cnpi-dossier-summary dt,
        dl.cnpi-dossier-summary dd {
            display: inline-block;
            font-size: 12px;
            margin: 0;
            padding: 3px 6px;
            line-height: 1.5;
        }

        dl.cnpi-dossier-summary dt {
            background: #dee2e6;
            border-radius: 14px 0 0 14px;
            padding-left: 12px;
            padding-right: 4px;
            font-weight: 600;
            color: #495057;
        }

        dl.cnpi-dossier-summary dd {
            background: #e9ecef;
            border-radius: 0 14px 14px 0;
            padding-left: 4px;
            padding-right: 12px;
            margin-right: 2px;
        }

            dl.cnpi-dossier-summary dd .label {
                font-size: 11px;
                padding: 2px 8px;
                margin: 0;
            }

    .cnpi-dossier-summary ~ .cnpi-health-step {
        margin-top: 12px;
    }

    /* ── Espacement panels réduit en mobile ── */
    .panel {
        margin-bottom: 8px;
    }

        .panel + .panel,
        .panel + .cnpi-dossier-panel,
        .cnpi-dossier-panel + .cnpi-health-step {
            margin-top: 4px;
        }

    .panel-info > .panel-heading {
        padding: 8px 12px;
        font-size: 14px;
    }

    .panel-info > .panel-body {
        padding: 8px;
    }

    /* ── Table : colonnes compactes, scrollbar cachée mais scrollable ── */
    .table-responsive::-webkit-scrollbar {
        height: 0;
        width: 0;
    }

    .table-responsive {
        -ms-overflow-style: none;
        scrollbar-width: none;
        position: relative;
    }

        .table-responsive .table th,
        .table-responsive .table td {
            padding: 4px 6px;
            font-size: 11px;
            white-space: nowrap;
        }

        .table-responsive .table .label {
            font-size: 9px;
            padding: 2px 4px;
        }

        .table-responsive .table .btn {
            padding: 2px 6px;
            font-size: 11px;
            min-height: 30px;
        }
}

/* Validation panel sticky */
.cnpi-validation-panel {
    position: sticky;
    bottom: 0;
    z-index: 100;
    border-top: 3px solid #5bc0de;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    background: #fff;
}

.cnpi-validation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
}

    .cnpi-validation-actions .btn {
        min-height: 44px;
        font-size: 1.1em;
        font-weight: 600;
    }

    .cnpi-validation-actions .btn-success {
        padding: 10px 24px;
    }

.cnpi-pending-banner {
    display: flex;
    align-items: center;
    font-size: 1em;
    padding: 10px 15px;
    border-left: 4px solid #31708f;
    margin-bottom: 0;
}

/* Cart badge in side menu */
.cnpi-cart-badge {
    background: #5cb85c;
    color: #fff;
    margin-left: 5px;
    font-size: 11px;
}

/* Contact cards */
.contact-card {
    background: #fafafa;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 10px;
}

    .contact-card:last-child {
        margin-bottom: 0;
    }

/* Modern form tweaks for BS3 */
.panel-heading .label {
    font-size: 11px;
}

.form-group label {
    font-weight: 600;
    color: #555;
}

@media (max-width: 767px) {
    .panel-body .row .form-group {
        margin-bottom: 10px;
    }

    .contact-card .row .form-group {
        margin-bottom: 8px;
    }

    .contact-card .text-right .btn {
        margin-top: 0;
    }
}

/* GPU-accelerated side menu for smoother mobile animation */
.side-menu-container > .navbar-nav {
    will-change: transform;
    backface-visibility: hidden;
}

    .side-menu-container > .navbar-nav.slide-in {
        will-change: transform;
        backface-visibility: hidden;
    }

/* Recap summary before validation */
.cnpi-recap {
    background: #f0f9f0;
    border: 1px solid #c3e6c3;
    border-radius: 4px;
    padding: 12px 16px;
    margin: 12px 0;
}

.cnpi-recap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.cnpi-recap-label {
    color: #555;
    font-size: 0.95em;
}

.cnpi-recap-value {
    font-weight: 600;
    font-size: 1em;
}

.cnpi-recap-total {
    border-top: 1px solid #c3e6c3;
    margin-top: 4px;
    padding-top: 8px;
}

    .cnpi-recap-total .cnpi-recap-value {
        font-size: 1.15em;
        color: #2d6a2d;
    }

/* Inscription status labels enhancement */
.cnpi-status-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

    .cnpi-status-labels .label {
        display: inline-block;
        padding: 4px 8px;
        font-size: 11px;
        margin: 0;
        border-radius: 3px;
        white-space: nowrap;
    }

.cnpi-health-panel {
    margin-top: 16px;
}

.cnpi-dossier-panel .cnpi-health-panel {
    display: none;
}

.cnpi-health-panel .alert {
    margin-bottom: 12px;
}

/* Moyens de règlement — pills cliquables */
.cnpi-cart-mep {
    margin: 14px 0;
    padding: 12px 16px;
    background: #f7fbfd;
    border: 1px solid #d9edf7;
    border-radius: 6px;
}

.cnpi-cart-mep-title {
    margin-bottom: 10px;
    font-weight: 700;
}

.cnpi-mep-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cnpi-mep-pill {
    display: inline-block;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    background: #e8e8e8;
    color: #555;
    border: 1px solid #ccc;
    transition: all 0.15s ease;
    line-height: 1.4;
}

    .cnpi-mep-pill:hover {
        background: #d5d5d5;
        border-color: #aaa;
    }

    .cnpi-mep-pill.active {
        background: #337ab7;
        color: #fff;
        border-color: #2e6da4;
    }

        .cnpi-mep-pill.active:hover {
            background: #286090;
            border-color: #204d74;
        }

    .cnpi-mep-pill.disabled {
        cursor: default;
        opacity: 0.65;
        background: #f0f0f0;
        border-color: #ddd;
        color: #888;
    }

        .cnpi-mep-pill.disabled.active {
            background: #b0c4de;
            border-color: #8aa9c9;
            color: #345;
            opacity: 0.65;
        }

.cnpi-cart-mep-locked {
    background: #fafafa;
    border-color: #e0e0e0;
}

.cnpi-cart-mep-locked-msg {
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 12px;
    color: #856404;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    line-height: 1.4;
}

.cnpi-cart-mep-validated-msg {
    color: #285f8f;
    background: #edf7fc;
    border-color: #b7dff2;
}

.cnpi-cart-autre-msg {
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 12px;
    color: #8a6d3b;
    background: #fffae6;
    border: 1px solid #ffe58f;
    border-radius: 4px;
    line-height: 1.4;
}

/* Modale panier plus large */
.cnpi-cart-modal .modal-dialog {
    width: 95%;
    max-width: 1100px;
}

.cnpi-health-questions {
    margin: 10px 0 14px 18px;
    padding-left: 16px;
}

.cnpi-health-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .cnpi-health-actions .btn {
        margin-bottom: 6px;
        white-space: normal;
        text-align: left;
    }

.cnpi-dossier-panel {
    margin-top: 15px;
}

.cnpi-dossier-summary {
    margin-bottom: 0;
}

    .cnpi-dossier-summary dt,
    .cnpi-dossier-summary dd {
        font-size: 14px;
        line-height: 1.6;
    }

    .cnpi-dossier-summary dt {
        font-weight: 600;
        color: #495057;
    }

    .cnpi-dossier-summary dd .label {
        font-size: 12px;
        padding: 3px 10px;
        vertical-align: middle;
    }

.cnpi-health-step {
    margin: 16px 0;
    padding: 18px;
    border: 1px solid #d7e6f2;
    border-left: 5px solid #337ab7;
    border-radius: 8px;
    background: #f8fbfe;
}

    .cnpi-health-step li:hover {
        background: #d7e3ef;
        border-radius: 4px;
        padding-left: 13px;
    }

.cnpi-health-step--complete {
    border-color: #c9e6cf;
    border-left-color: #3c9d58;
    background: #f8fdf9;
}

.cnpi-health-step__status {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .cnpi-health-step__status > .glyphicon {
        flex: 0 0 auto;
        color: #337ab7;
        font-size: 26px;
        line-height: 1;
    }

.cnpi-health-step--complete .cnpi-health-step__status > .glyphicon {
    color: #3c9d58;
}

.cnpi-health-step__eyebrow {
    margin: 0 0 4px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.cnpi-health-step h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
}

.cnpi-health-step__version {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 4px;
    background: #e8f2fb;
    color: #285f8f;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.cnpi-health-question-list {
    margin: 14px 0;
    padding-left: 22px;
}

    .cnpi-health-question-list li {
        display: flex;
        gap: 12px;
        justify-content: space-between;
        padding: 10px 0;
        border-top: 1px solid #e2edf5;
    }

.cnpi-health-question-list__answers {
    flex: 0 0 auto;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.cnpi-health-complete,
.cnpi-health-certificate {
    margin-top: 12px;
    padding: 12px;
    border-radius: 6px;
}

.cnpi-health-complete {
    background: #eaf7ed;
    color: #2f7d45;
}

.cnpi-health-certificate {
    background: #edf7fc;
}

.cnpi-health-step__note {
    margin: 10px 0 0;
    color: #667085;
    font-size: 12px;
}
/* Toast notifications */
.cnpi-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: cnpiToastIn 0.3s ease-out;
}

@keyframes cnpiToastIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cnpi-toast.cnpi-toast-success {
    border-left: 4px solid #28a745;
}

.cnpi-toast.cnpi-toast-danger {
    border-left: 4px solid #dc3545;
}

.cnpi-toast.cnpi-toast-info {
    border-left: 4px solid #17a2b8;
}
/* ══════════════════════════════════════════════════════════════════
   AUTH CARD — login / register wrappers
   ══════════════════════════════════════════════════════════════════ */
.mainbox {
    margin-top: 50px;
}

.auth-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid #e4e8f0;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.auth-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 0;
    flex-wrap: wrap;
    gap: 8px;
}

.auth-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #18212f;
}

.auth-browser-notice {
    margin: 6px 24px 0;
    font-size: 13px;
    color: #e67e22;
}

.auth-card__body {
    padding: 20px 24px 24px;
}

.auth-card__sub {
    border: 1px solid #e4e8f0;
    border-radius: 14px;
    background: #f8fafc;
    padding: 16px 18px;
}

.auth-card__sub-header {
    font-size: 13px;
    font-weight: 700;
    color: #495057;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}

.auth-field {
    position: relative;
    margin-bottom: 16px;
}

.auth-field__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #91a0b7;
    z-index: 2;
    font-size: 16px;
    pointer-events: none;
}

.auth-field input.form-control {
    max-width: none;
    padding-left: 44px;
    border-radius: 12px;
    border-color: #cfd9ea;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
    height: 48px;
    font-size: 15px;
}

.auth-field input.form-control:focus {
    border-color: #4b86f0;
    box-shadow: 0 0 0 3px rgba(75, 134, 240, 0.12);
}

.auth-link {
    font-size: 13px;
    font-weight: 600;
    color: #4b86f0;
    text-decoration: none;
    white-space: nowrap;
}

.auth-link:hover {
    color: #2d6bd4;
    text-decoration: underline;
}

.auth-btn.btn {
    min-height: 48px;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    width: 100%;
}

.auth-notice {
    margin-top: 16px;
    border-radius: 12px;
}

@media (max-width: 767px) {
    .auth-card__header {
        padding: 16px 18px 0;
    }

    .auth-browser-notice {
        margin: 4px 18px 0;
        font-size: 12px;
    }

    .auth-card__body {
        padding: 16px 18px 18px;
    }

    .auth-card__title {
        font-size: 19px;
    }

    .auth-field input.form-control {
        height: 44px;
        font-size: 16px;
    }

    .auth-btn.btn {
        min-height: 44px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .auth-card {
        border-radius: 14px;
    }

    .auth-card__header {
        padding: 14px 14px 0;
    }

    .auth-browser-notice {
        margin: 4px 14px 0;
    }

    .auth-card__body {
        padding: 14px;
    }
}

/* ── Password grid: 2 colonnes pour mot de passe + confirmation ── */
.account-form-grid--password {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ── Formulaire d'inscription : aération desktop ──
   .account-section et .account-detail gèrent leur propre padding,
   mais on l'augmente pour le signup (col-md-8) afin d'aérer l'ensemble. */
#signupbox .account-detail {
    gap: 20px;
}

#signupbox .account-section {
    padding: 24px 32px;
}

/* auth-card__body : top=0 (les sections gèrent leur padding),
   side+bottom pour l'alerte et le bouton. */
#signupbox .auth-card__body {
    padding: 0 32px 28px;
}

@media (max-width: 767px) {
    #signupbox .auth-card__body {
        padding: 0 20px 16px;
    }

    #signupbox .account-section {
        padding: 16px 18px;
    }

    #signupbox .account-detail {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    #signupbox .auth-card__body {
        padding: 0 14px 12px;
    }

    #signupbox .account-section {
        padding: 12px;
    }

    #signupbox .account-detail {
        gap: 10px;
    }
}

/* Account detail revamp */
.js-enabled .accountPage--fallback {
    display: none;
}

.account-detail {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
}

.account-section,
.account-hero {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid #e4e8f0;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    padding: 16px 18px;
}

.account-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

    .account-hero h2 {
        margin-top: 4px;
        margin-bottom: 6px;
        font-size: 28px;
        font-weight: 700;
        color: #18212f;
    }

.account-section__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
}

.account-section__lead,
.account-section__meta,
.account-section__header p {
    margin: 4px 0 0;
    color: #5f6b7a;
}

.account-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}

.account-section__header--stack {
    align-items: center;
}

.account-section__header--compact {
    margin-bottom: 10px;
}

.account-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

    .account-section__actions .btn,
    .account-section__actions .account-chip {
        min-height: 34px;
    }

.account-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 16px;
}

.account-form-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.account-form-field--wide {
    grid-column: 1 / -1;
}

.account-form-field label {
    margin-bottom: 6px;
}

.account-readonly-value {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid #dde4ef;
    border-radius: 12px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
    color: #1b2432;
    font-size: 16px;
    font-weight: 600;
    box-shadow: inset 0 1px 1px rgba(15, 23, 42, 0.03);
}

.account-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #d7dde8;
    background: #f8fafc;
    color: #425466;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

    .account-chip .glyphicon {
        font-size: 14px;
        line-height: 1;
        top: 0;
    }

.account-chip--soft {
    background: #eefbf2;
    border-color: #ccebd3;
    color: #1f6f3f;
}

.account-chip--success {
    background: #e9f8ee;
    border-color: #cdeed7;
    color: #1f7a43;
}

.account-chip--warning {
    background: #fff6e6;
    border-color: #f2d6a2;
    color: #916300;
}

.account-address-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e1e8f3;
    border-radius: 18px;
    padding: 18px;
}

.account-address-card__label {
    display: block;
    margin-bottom: 10px;
}

.address-autocomplete-shell {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: none;
    float: none;
    clear: both;
}

.address-autocomplete-shell,
.address-autocomplete__field,
.address-autocomplete__input {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
    float: none !important;
}

.account-section .address-autocomplete-shell,
.account-section .address-autocomplete__field,
.account-section .address-autocomplete__input {
    width: 100% !important;
    max-width: none !important;
}

.account-section__meta--compact {
    margin-top: 10px;
}

.address-autocomplete {
    position: relative;
}

.address-autocomplete__field {
    position: relative;
}

.address-autocomplete__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #91a0b7;
    z-index: 2;
}

.address-autocomplete__input {
    width: 100%;
    padding-left: 44px;
    padding-right: 20px;
    border-radius: 16px;
    border-color: #cfd9ea;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.address-autocomplete__field .form-control:focus {
    border-color: #4b86f0;
    box-shadow: 0 0 0 3px rgba(75, 134, 240, 0.12);
}

.address-autocomplete__spinner {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #607086;
    font-size: 12px;
}

.address-autocomplete__status {
    min-height: 28px;
    margin-top: 10px;
}

.address-autocomplete__status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 700;
}

.address-autocomplete__status-pill--success {
    background: #e8f6ec;
    color: #1f7a43;
}

.address-autocomplete__status-pill--info {
    background: #eef4ff;
    color: #2954b7;
}

.address-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    border: 1px solid #d6deea;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

.address-suggestion {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 12px 16px;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #edf1f6;
    text-align: left;
}

    .address-suggestion:last-child {
        border-bottom: 0;
    }

    .address-suggestion:hover,
    .address-suggestion.active {
        background: #f2f7ff;
    }

.address-suggestion__title {
    font-weight: 700;
    color: #1b2432;
}

.address-suggestion__meta {
    color: #6c7787;
    font-size: 12px;
}

.address-autocomplete__feedback {
    margin-top: 8px;
    color: #7a8698;
    font-size: 12px;
}

.account-help {
    margin-bottom: 10px;
    border-radius: 14px;
}

.account-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-section--contacts .account-section__actions {
    align-items: center;
}

.account-section--contacts .account-help {
    margin-bottom: 10px;
}

.account-section--contacts .row {
    margin-left: -8px;
    margin-right: -8px;
}

    .account-section--contacts .row > [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }

.contact-row {
    display: block;
}

.contact-field {
    margin-bottom: 10px;
}

.contact-field--type,
.contact-field--phone {
    display: flex;
    flex-direction: column;
}

.contact-field .form-control,
.contact-field .iti {
    width: 100%;
}

.contact-card {
    background: #fff;
    border: 1px solid #e4e8f0;
    border-radius: 16px;
    padding: 10px 12px;
    margin-bottom: 0;
}

.contact-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

    .contact-card__header h4 {
        margin: 0;
        font-size: 15px;
        font-weight: 700;
        color: #1b2432;
    }

    .contact-card__header p {
        margin: 2px 0 0;
        color: #6b7280;
    }

.contact-card__delete {
    padding-top: 0;
    padding-bottom: 0;
}

.contact-card .form-group {
    margin-bottom: 10px;
}

.contact-card .form-control {
    min-height: 38px;
}

.contact-card .iti {
    display: block;
    width: 100%;
    margin: 0;
}

    .contact-card .iti .form-control {
        width: 100%;
    }

.consent-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.consent-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    margin: 0;
    background: #fff;
    border: 1px solid #e4e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .consent-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
        border-color: #cdd8e8;
    }

    .consent-card input {
        margin-top: 4px;
        width: 18px;
        height: 18px;
        flex: 0 0 auto;
    }

.consent-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.consent-card__title {
    font-weight: 700;
    color: #1b2432;
}

.consent-card__text {
    color: #6b7280;
}

@media (max-width: 767px) {
    .account-section,
    .account-hero {
        padding: 16px;
        border-radius: 16px;
    }

        .account-hero h2 {
            font-size: 23px;
        }

    .account-section__header {
        flex-direction: column;
    }

    .account-form-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .account-form-field--wide {
        grid-column: auto;
    }

    .account-form-field--address {
        margin-top: 0;
    }

    .account-readonly-value {
        min-height: 44px;
        font-size: 15px;
    }

    .account-section__actions {
        justify-content: flex-start;
    }

    .account-section--contacts .account-section__actions {
        margin-top: 8px;
    }

    .account-section--contacts .row {
        margin-left: -6px;
        margin-right: -6px;
    }

        .account-section--contacts .row > [class*="col-"] {
            padding-left: 6px;
            padding-right: 6px;
        }

    .contact-row {
        display: block;
    }

    .contact-card {
        padding: 12px;
    }

    .contact-card__header {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-card__delete {
        align-self: flex-start;
    }

    .consent-grid {
        grid-template-columns: 1fr;
    }

    .address-autocomplete__input {
        padding-right: 16px;
    }
}
/* ── 5.10 Mobile : famille nav-tabs ── */
@media (max-width: 767px) {
    .body-content > .nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 1px solid #ddd;
        position: sticky;
        top: 59px;
        z-index: 1040;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
        scroll-snap-type: x proximity;
    }

        .body-content > .nav-tabs::-webkit-scrollbar {
            display: none;
        }

        .body-content > .nav-tabs > li {
            flex-shrink: 0;
            white-space: nowrap;
            scroll-snap-align: start;
        }

            .body-content > .nav-tabs > li > a {
                padding: 10px 12px;
                font-size: 14px;
            }

            .body-content > .nav-tabs > li:last-child > a {
                padding: 10px 14px;
            }
}
/* ── 5.10 Mobile : touch targets (≥ 44px) ── */
@media (max-width: 767px) {
    .btn {
        min-height: 44px;
        padding: 10px 16px;
        font-size: 15px;
    }

    .btn-xs, .btn-sm {
        min-height: 36px;
        padding: 6px 12px;
        font-size: 13px;
    }

    .input-lg, .form-control {
        min-height: 44px;
        font-size: 16px; /* empêche le zoom iOS */
    }

    select.form-control {
        min-height: 44px;
    }
}

@media (max-width: 767px) {
    #registrationCartSummary {
        position: sticky;
        top: 108px;
        z-index: 1035;
        padding: 0 6px 8px;
        background: linear-gradient(180deg, rgba(248, 248, 248, 0.98) 0%, rgba(248, 248, 248, 0.92) 100%);
    }

        #registrationCartSummary .cnpi-registration-cart-summary {
            margin-bottom: 0;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
        }

        #registrationCartSummary .cnpi-registration-cart-summary__body {
            padding: 12px;
        }

        #registrationCartSummary .cnpi-registration-cart-summary__amounts {
            width: 100%;
            justify-content: space-between;
        }

    #registrationCartButton {
        width: 100%;
    }

    .cnpi-validation-panel {
        bottom: env(safe-area-inset-bottom, 0px);
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 4px);
    }

    .cnpi-validation-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .cnpi-health-question-list__answers {
        width: 100%;
        justify-content: flex-end;
        gap: 6px;
    }

    .cnpi-health-toggle {
        min-width: 48px;
        min-height: 36px;
    }
}
/* ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ──
   Health toggle buttons (moved from inline style)
   ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── ── */
.cnpi-health-toggle {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    line-height: 1.6;
    min-width: 36px;
    text-align: center;
}

    .cnpi-health-toggle:hover {
        border-color: #337ab7;
        color: #337ab7;
    }

.cnpi-health-toggle--active {
    border-color: #337ab7;
    color: #337ab7;
}

.cnpi-health-toggle--yes.cnpi-health-toggle--active {
    background: #eaf7ed;
    border-color: #2f7d45;
    color: #2f7d45;
}

.cnpi-health-toggle--no.cnpi-health-toggle--active {
    background: #fef0f0;
    border-color: #c0392b;
    color: #c0392b;
}

.cnpi-health-toggle-sep {
    color: #cbd5e1;
    font-size: 12px;
    user-select: none;
}

/* ── Certificat preview ── */
.cnpi-health-file-btn {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.cnpi-health-upload {
    margin: 10px 0;
}

.cnpi-health-preview {
    margin: 10px 0;
}

.cnpi-health-preview__info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.cnpi-health-preview__frame {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px;
    background: #fafafa;
    margin-bottom: 10px;
    max-width: 100%;
    overflow: hidden;
}

.cnpi-health-preview__image {
    display: block;
    max-width: 100%;
    max-height: 400px;
    margin: 0 auto;
}

.cnpi-health-preview__frame--pdf {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 12px;
    background: #fff3e0;
    border-color: #ffb74d;
}

.cnpi-health-preview__pdf-icon {
    font-size: 40px;
    color: #e65100;
}

.cnpi-health-preview__pdf-label {
    font-size: 14px;
    font-weight: 600;
    color: #bf360c;
}

.cnpi-health-preview__actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

    .cnpi-health-preview__actions .btn-sm {
        min-height: 34px;
    }

@media (max-width: 767px) {
    .cnpi-health-preview__image {
        max-height: 250px;
    }
    .cnpi-health-preview__actions {
        flex-direction: column;
    }
    .cnpi-health-preview__actions .btn-sm {
        width: 100%;
    }
}

/* ── 5.10 Mobile : changement mot de passe ── */
@media (max-width: 767px) {
    #changementMdp .form-horizontal .form-group {
        margin-left: 0;
        margin-right: 0;
    }

    #changementMdp .form-horizontal .control-label {
        text-align: left;
        padding-bottom: 4px;
    }

    #changementMdp .btn {
        width: 100%;
        margin-top: 12px;
    }

    #changementMdp .panel-body {
        padding: 16px;
    }

    #changementMdp .infosBase {
        padding-top: 10px !important;
    }
}
/* ── 5.10 Mobile : inscription activité ── */
@media (max-width: 767px) {
    .inscriptionForm .col_md-4,
    .inscriptionForm .col-sm-4 {
        width: 100%;
        margin-bottom: 8px;
        padding-left: 0;
        padding-right: 0;
    }

        .inscriptionForm .col_md-4 .btn,
        .inscriptionForm .col-sm-4 .btn {
            width: 100%;
        }

    .inscriptionForm .panel-body {
        padding: 12px;
    }
    /* Table crénaux scrollable horizontalement */
    .inscriptionForm .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .inscriptionForm .table th,
    .inscriptionForm .table td {
        white-space: nowrap;
        padding: 8px 10px;
        font-size: 13px;
    }

    .inscriptionForm .table .btn {
        font-size: 1.4em;
        min-height: 40px;
        min-width: 40px;
        padding: 4px 10px;
    }
}
/* ── 5.10 Mobile : petits téléphones (≤ 480px) ── */
@media (max-width: 480px) {
    .account-section,
    .account-hero {
        padding: 12px;
    }

        .account-hero h2 {
            font-size: 20px;
        }

    .account-form-grid {
        gap: 6px;
    }

    .account-form-field label {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .panel-body {
        padding: 12px;
    }

    .panel-heading {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 14px;
    }

    .nav-tabs > li > a {
        padding: 8px 10px;
        font-size: 13px;
    }
}
/* ══════════════════════════════════════════════════════════════════
   INSCRIPTIONS TABLE — compact, desktop table + mobile cards
   ══════════════════════════════════════════════════════════════════ */
.table-responsive[data-bind] {
    border: 0;
    margin: 0;
}
    /* ─── Desktop : table compacte ─── */
    .table-responsive[data-bind] .table {
        margin-bottom: 12px;
        border-collapse: separate;
        border-spacing: 0;
        font-size: 14px;
    }

        .table-responsive[data-bind] .table thead th {
            background: #f4f6f8;
            border-bottom: 2px solid #dee2e6;
            padding: 8px 10px;
            font-size: 12px;
            font-weight: 700;
            color: #495057;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            white-space: nowrap;
        }

        .table-responsive[data-bind] .table tbody th {
            padding: 8px 10px;
            font-weight: 600;
            color: #212529;
            vertical-align: middle;
            border-top: none;
            white-space: nowrap;
        }

        .table-responsive[data-bind] .table tbody td {
            padding: 8px 6px;
            vertical-align: middle;
            border-top: none;
            font-size: 13px;
        }

        .table-responsive[data-bind] .table tbody tr {
            transition: background 0.1s;
        }

            .table-responsive[data-bind] .table tbody tr:hover {
                background: #f8f9fa;
            }

            .table-responsive[data-bind] .table tbody tr + tr td {
                border-top: 1px solid #e9ecef;
            }
    /* Badges statut : minuscules et compacts (desktop) */
    .table-responsive[data-bind] .cnpi-status-labels {
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
    }

        .table-responsive[data-bind] .cnpi-status-labels .label {
            display: inline-flex;
            align-items: center;
            gap: 2px;
            margin: 0;
            padding: 3px 8px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 10px;
            line-height: 1.4;
        }

            .table-responsive[data-bind] .cnpi-status-labels .label .glyphicon {
                font-size: 8px;
            }
    /* Bouton supprimer : icône subtile */
    .table-responsive[data-bind] .table tbody td .btn.btn-default.btn-sm {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        padding: 0;
        border-radius: 6px;
        border: 1px solid transparent;
        background: transparent;
        color: #adb5bd;
        font-size: 13px;
        transition: all 0.12s;
    }

        .table-responsive[data-bind] .table tbody td .btn.btn-default.btn-sm:hover:not(.disabled-btn) {
            color: #dc3545;
            background: #fff0f0;
            border-color: #f5c6cb;
        }

        .table-responsive[data-bind] .table tbody td .btn.btn-default.btn-sm.disabled-btn {
            color: #dee2e6;
            cursor: not-allowed;
        }
/* Boutons sous tableau : discrets */
.panel-info > .panel-body > form > .btn,
.panel-info > .panel-body > .btn {
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 6px;
    margin: 1px;
}

.panel-info > .panel-body > form {
    display: inline;
}
/* ══════════════════════════════════════════════════════════════════
   MOBILE — cartes compactes
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .table-responsive[data-bind] table,
    .table-responsive[data-bind] thead,
    .table-responsive[data-bind] tbody,
    .table-responsive[data-bind] tr,
    .table-responsive[data-bind] th,
    .table-responsive[data-bind] td {
        display: block;
    }

    .table-responsive[data-bind] thead {
        display: none;
    }
    /* Carte */
    .table-responsive[data-bind] tbody tr {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 10px;
        margin-bottom: 8px;
    }

        .table-responsive[data-bind] tbody tr + tr {
            border-top: 1px solid #e9ecef;
        }
    /* Titre */
    .table-responsive[data-bind] tbody th {
        font-size: 15px;
        font-weight: 700;
        color: #212529;
        padding: 0 0 4px 0;
        margin-bottom: 2px;
    }
    /* Créneau (1er td) · Piscine (2e td) : inline sur une ligne */
    .table-responsive[data-bind] tbody td:nth-of-type(1),
    .table-responsive[data-bind] tbody td:nth-of-type(2) {
        display: inline;
        padding: 0;
        font-size: 13px;
        border: none;
        color: #6c757d;
    }

        .table-responsive[data-bind] tbody td:nth-of-type(1)::after {
            content: " · ";
            color: #ccc;
        }
    /* Bouton supprimer (3e td) : à droite */
    .table-responsive[data-bind] tbody td:nth-of-type(3) {
        display: inline;
        padding: 0;
        border: none;
        float: right;
    }
    /* Statuts badges (4e td) : ligne séparée en dessous */
    .table-responsive[data-bind] tbody td:nth-of-type(4) {
        display: flex;
        flex-wrap: wrap;
        gap: 3px;
        padding: 4px 0 0 0;
        margin-top: 2px;
        clear: both;
    }

    .table-responsive[data-bind] .cnpi-status-labels .label {
        font-size: 11px;
        padding: 3px 8px;
        border-radius: 10px;
    }
    /* Bouton supprimer : petit à droite */
    .table-responsive[data-bind] .table tbody td .btn.btn-default.btn-sm {
        width: 28px;
        height: 28px;
        padding: 0;
        border-radius: 6px;
        font-size: 12px;
        background: transparent;
        border: 1px solid transparent;
        color: #adb5bd;
    }

        .table-responsive[data-bind] .table tbody td .btn.btn-default.btn-sm:hover:not(.disabled-btn) {
            color: #dc3545;
            background: #fff0f0;
            border-color: #f5c6cb;
        }

        .table-responsive[data-bind] .table tbody td .btn.btn-default.btn-sm.disabled-btn {
            color: #dee2e6;
        }
    /* Boutons sous tableau full-width mais compacts */
    .panel-info > .panel-body > form > .btn,
    .panel-info > .panel-body > .btn {
        width: 100%;
        justify-content: center;
        padding: 8px 14px;
        font-size: 13px;
        margin: 3px 0;
    }

    .panel-info > .panel-body > form {
        display: block;
    }
}
