/**
 * FormCraft Public Styles
 *
 * Clean, accessible form styling that works well with most WordPress themes.
 * Uses .fc- prefix to avoid conflicts.
 */

/* =========================================================================
   Form Wrapper
   ========================================================================= */

.fc-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.fc-form {
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

/* =========================================================================
   Field Grid
   ========================================================================= */

.fc-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
}

.fc-field {
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Width classes */
.fc-fw-100 { width: 100%; }
.fc-fw-75  { width: calc(75% - 12px); }
.fc-fw-50  { width: calc(50% - 8px); }
.fc-fw-33  { width: calc(33.33% - 11px); }
.fc-fw-25  { width: calc(25% - 12px); }

/* Hidden by conditional logic */
.fc-field-hidden {
    display: none !important;
}

/* =========================================================================
   Labels
   ========================================================================= */

.fc-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #222;
}

.fc-required-mark {
    color: #d63638;
    margin-left: 2px;
}

/* Label position: left */
.fc-labels-left .fc-field:not(.fc-field-heading):not(.fc-field-paragraph):not(.fc-field-divider):not(.fc-field-html):not(.fc-field-hidden) {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fc-labels-left .fc-label {
    min-width: 140px;
    flex-shrink: 0;
    padding-top: 8px;
    margin-bottom: 0;
}

.fc-labels-left .fc-input-wrap {
    flex: 1;
}

/* Label position: hidden */
.fc-labels-hidden .fc-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================================
   Inputs
   ========================================================================= */

.fc-input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.5;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fc-input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.fc-input::placeholder {
    color: #999;
}

/* Textarea */
.fc-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Select */
.fc-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* Color input */
.fc-color {
    width: 60px;
    height: 40px;
    padding: 4px;
    cursor: pointer;
}

/* =========================================================================
   Radio & Checkbox
   ========================================================================= */

.fc-radio-group,
.fc-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fc-radio-label,
.fc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
}

.fc-radio-label input,
.fc-checkbox-label input {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    accent-color: #0073aa;
}

/* =========================================================================
   Toggle Switch
   ========================================================================= */

.fc-toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

.fc-toggle-switch {
    position: relative;
    display: inline-block;
}

.fc-toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.fc-toggle-track {
    display: inline-block;
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    position: relative;
    transition: background 0.2s ease;
}

.fc-toggle-thumb {
    display: block;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.fc-toggle-switch input:checked + .fc-toggle-track {
    background: #0073aa;
}

.fc-toggle-switch input:checked + .fc-toggle-track .fc-toggle-thumb {
    transform: translateX(20px);
}

.fc-toggle-switch input:focus-visible + .fc-toggle-track {
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.4);
}

/* =========================================================================
   Range Slider
   ========================================================================= */

.fc-range-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fc-range {
    flex: 1;
    padding: 0;
    height: auto;
    border: none;
    background: transparent;
    accent-color: #0073aa;
}

.fc-range:focus {
    box-shadow: none;
}

.fc-range-value {
    min-width: 36px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 4px;
}

/* =========================================================================
   Rating Stars
   ========================================================================= */

.fc-rating {
    display: flex;
    gap: 4px;
}

.fc-rating-star {
    background: none;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: #ddd;
    transition: color 0.15s ease;
    line-height: 1;
}

.fc-rating-star svg {
    fill: currentColor;
    display: block;
}

.fc-rating-star.fc-star-active,
.fc-rating-star.fc-star-hover {
    color: #f0b849;
}

.fc-rating-star:focus-visible {
    outline: 2px solid #0073aa;
    border-radius: 2px;
}

/* =========================================================================
   Likert Scale
   ========================================================================= */

.fc-likert-wrap {
    overflow-x: auto;
}

.fc-likert-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.fc-likert-table th,
.fc-likert-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.fc-likert-col-header {
    font-weight: 600;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
}

.fc-likert-row-label {
    text-align: left !important;
    font-weight: 500;
    color: #333;
    min-width: 160px;
}

.fc-likert-cell input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #0073aa;
}

/* =========================================================================
   NPS
   ========================================================================= */

.fc-nps {
    /* wrapper */
}

.fc-nps-scale {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.fc-nps-btn {
    flex: 1;
    padding: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #555;
    transition: all 0.15s ease;
    min-width: 0;
}

.fc-nps-btn:hover {
    border-color: #0073aa;
    color: #0073aa;
}

.fc-nps-btn.fc-nps-active {
    background: #0073aa;
    border-color: #0073aa;
    color: #fff;
}

.fc-nps-btn:focus-visible {
    outline: 2px solid #0073aa;
    outline-offset: 1px;
}

.fc-nps-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

/* =========================================================================
   Signature Pad
   ========================================================================= */

.fc-signature {
    position: relative;
}

.fc-signature-pad {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 6px;
    background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);
    cursor: crosshair;
    touch-action: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fc-signature-pad:hover {
    border-color: #999;
}

.fc-signature-pad:active,
.fc-signature.fc-signature-filled .fc-signature-pad {
    border-style: solid;
    border-color: #0073aa;
    background: #fff;
}

.fc-signature-clear {
    margin-top: 8px;
    background: #f7f7f7;
    border: 1px solid #ccc;
    color: #555;
}

.fc-signature-clear:hover {
    background: #eee;
    border-color: #999;
}

/* Signature line hint */
.fc-signature::before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
    pointer-events: none;
}

.fc-signature::after {
    content: 'Sign here';
    position: absolute;
    left: 20px;
    bottom: 54px;
    font-size: 11px;
    color: #bbb;
    pointer-events: none;
}

.fc-signature.fc-signature-filled::before,
.fc-signature.fc-signature-filled::after {
    display: none;
}

/* Required signature highlight */
.fc-field-required .fc-signature-pad {
    border-color: #ddd;
}

.fc-field-has-error .fc-signature-pad {
    border-color: #d63638;
}

/* =========================================================================
   Layout Elements
   ========================================================================= */

.fc-heading {
    margin: 8px 0 4px;
    color: #222;
}

.fc-paragraph {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.fc-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 8px 0;
}

.fc-html-block {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* =========================================================================
   Multi-step
   ========================================================================= */

.fc-step-progress {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    padding: 0;
}

.fc-step-indicator {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 13px;
    color: #999;
    transition: all 0.2s ease;
}

.fc-step-indicator.fc-step-active {
    background: #0073aa;
    color: #fff;
}

.fc-step-indicator.fc-step-complete {
    background: #e6f5ea;
    color: #00a32a;
}

.fc-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.fc-step-active .fc-step-number {
    background: rgba(255, 255, 255, 0.25);
}

.fc-step-complete .fc-step-number {
    background: #00a32a;
    color: #fff;
}

.fc-step-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================================================
   Buttons
   ========================================================================= */

.fc-submit-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 8px;
}

.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    line-height: 1.5;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}

.fc-btn-submit {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.fc-btn-submit:hover {
    background: #005f8d;
    border-color: #005f8d;
}

.fc-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fc-btn-prev,
.fc-btn-next {
    background: #f0f0f0;
    color: #333;
    border-color: #ccc;
}

.fc-btn-prev:hover,
.fc-btn-next:hover {
    background: #e0e0e0;
}

.fc-btn-sm {
    padding: 4px 12px;
    font-size: 13px;
}

/* =========================================================================
   Messages
   ========================================================================= */

.fc-success-message {
    padding: 40px 30px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #81c784;
    border-radius: 12px;
    color: #2e7d32;
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.15);
}

.fc-success-message::before {
    content: "✓";
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 20px;
    background: #4caf50;
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.fc-form-errors {
    padding: 12px 16px;
    background: #fef0f0;
    border: 1px solid #f5c6c6;
    border-radius: 4px;
    color: #d63638;
    font-size: 14px;
    margin-top: 12px;
}

.fc-field-error {
    font-size: 13px;
    color: #d63638;
    margin-top: 4px;
    min-height: 0;
}

.fc-field-error:empty {
    display: none;
}

/* Error state on inputs */
.fc-field-has-error .fc-input,
.fc-field-has-error .fc-select {
    border-color: #d63638;
}

.fc-field-has-error .fc-input:focus,
.fc-field-has-error .fc-select:focus {
    box-shadow: 0 0 0 2px rgba(214, 54, 56, 0.2);
}

/* =========================================================================
   Payment Fields & Stripe
   ========================================================================= */

.fc-payment {
    padding: 12px;
    background: #f9f9f9;
    border-radius: 4px;
}

.fc-payment-amount {
    font-size: 16px;
}

.fc-payment-value {
    font-weight: 700;
    color: #333;
}

.fc-payment-input-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fc-payment-symbol {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

.fc-payment-input {
    max-width: 120px;
}

.fc-product-option {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 4px;
}

.fc-product-option:hover {
    border-color: #0073aa;
}

.fc-product-price {
    font-weight: 600;
    color: #0073aa;
}

.fc-payment-quantity {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.fc-payment-unit-price {
    font-size: 14px;
    color: #666;
}

.fc-quantity-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fc-quantity-input {
    width: 80px;
}

.fc-payment-subtotal {
    font-size: 15px;
}

.fc-subtotal-value {
    font-weight: 700;
    color: #0073aa;
}

/* Payment Summary */
.fc-payment-summary {
    padding: 16px;
    background: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 16px;
}

.fc-payment-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 2px solid #ddd;
    font-size: 18px;
}

.fc-summary-value {
    font-weight: 700;
    font-size: 20px;
    color: #0073aa;
}

/* Stripe Card Element */
.fc-stripe-card-element {
    padding: 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fc-stripe-card-element:focus-within {
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.fc-stripe-card-errors {
    color: #d63638;
    font-size: 13px;
    margin-top: 6px;
}

.fc-stripe-card-errors:empty {
    display: none;
}

/* Payment form submit button */
.fc-has-payment .fc-btn-submit {
    background: #00a32a;
    border-color: #00a32a;
}

.fc-has-payment .fc-btn-submit:hover {
    background: #008a20;
    border-color: #008a20;
}

/* Payment Method Tabs */
.fc-payment-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.fc-payment-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.15s ease;
}

.fc-payment-tab:hover {
    border-color: #999;
    color: #333;
}

.fc-payment-tab-active {
    border-color: #0073aa;
    background: #f0f7fc;
    color: #0073aa;
}

.fc-payment-tab svg {
    flex-shrink: 0;
}

/* PayPal Buttons Container */
.fc-paypal-buttons {
    min-height: 45px;
}

.fc-paypal-errors {
    color: #d63638;
    font-size: 13px;
    margin-top: 8px;
}

.fc-paypal-errors:empty {
    display: none;
}

/* Hide submit button when PayPal is selected */
.fc-payment-method-paypal:not([style*="display: none"]) ~ .fc-submit-wrap .fc-btn-submit {
    /* PayPal buttons handle submission */
}

/* =========================================================================
   Discount Codes
   ========================================================================= */

.fc-discount-code-wrap {
    margin-bottom: 16px;
}

.fc-discount-code-toggle {
    margin-bottom: 8px;
}

.fc-discount-code-btn {
    background: none;
    border: none;
    padding: 0;
    color: #0073aa;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
}

.fc-discount-code-btn:hover {
    color: #005f8d;
}

.fc-discount-code-field {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.fc-discount-code-field .fc-input {
    flex: 1;
    max-width: 200px;
    text-transform: uppercase;
}

.fc-discount-apply {
    background: #f0f0f0;
    border: 1px solid #ccc;
    color: #333;
    white-space: nowrap;
}

.fc-discount-apply:hover:not(:disabled) {
    background: #e0e0e0;
    border-color: #999;
}

.fc-discount-apply:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fc-discount-code-message {
    font-size: 13px;
    margin-bottom: 4px;
}

.fc-discount-code-message.fc-discount-error {
    color: #d63638;
}

.fc-discount-code-message.fc-discount-success {
    color: #00a32a;
}

.fc-discount-code-applied {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #e6f5ea;
    border: 1px solid #b5e5c0;
    border-radius: 4px;
    font-size: 14px;
    color: #1a7a2e;
}

.fc-discount-applied-text {
    flex: 1;
    font-weight: 500;
}

.fc-discount-remove {
    background: none;
    border: none;
    padding: 0 4px;
    font-size: 18px;
    line-height: 1;
    color: #999;
    cursor: pointer;
}

.fc-discount-remove:hover {
    color: #d63638;
}

/* Payment summary discount line */
.fc-payment-summary-discount {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
    color: #00a32a;
}

.fc-discount-value {
    font-weight: 600;
}

/* =========================================================================
   Field Description
   ========================================================================= */

.fc-field-description {
    font-size: 13px;
    color: #666;
    margin: 2px 0 6px;
    line-height: 1.4;
}

/* =========================================================================
   File Upload
   ========================================================================= */

.fc-file-upload {
    /* wrapper */
}

.fc-file-dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 20px;
    background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);
    border: 2px dashed #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.fc-file-dropzone:hover,
.fc-file-dropzone.fc-dragover {
    border-color: #0073aa;
    background: #f0f7fc;
}

.fc-file-dropzone:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.fc-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    /* Hide native file input button in all browsers */
    font-size: 0;
}

.fc-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.fc-file-input::file-selector-button {
    visibility: hidden;
}

.fc-file-dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    pointer-events: none;
}

.fc-file-icon {
    font-size: 32px;
    color: #999;
}

.fc-file-text {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.fc-file-hint {
    font-size: 12px;
    color: #999;
}

/* File List */
.fc-file-list {
    margin-top: 12px;
}

.fc-file-list:empty {
    display: none;
}

/* Hide dropzone content when files are selected */
.fc-file-upload.fc-has-files .fc-file-dropzone {
    min-height: auto;
    padding: 12px;
    border-style: solid;
    border-color: #00a32a;
    background: #f0faf0;
}

.fc-file-upload.fc-has-files .fc-file-dropzone-content {
    display: none;
}

.fc-file-upload.fc-has-files .fc-file-dropzone::after {
    content: '+ Add more files';
    font-size: 13px;
    color: #00a32a;
    font-weight: 500;
}

.fc-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 2px solid #00a32a;
    border-radius: 6px;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0, 163, 42, 0.1);
}

.fc-file-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6f5ea;
    border-radius: 6px;
    color: #00a32a;
    font-size: 18px;
}

.fc-file-item-info {
    flex: 1;
    min-width: 0;
}

.fc-file-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-file-item-size {
    font-size: 12px;
    color: #999;
}

.fc-file-item-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00a32a;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.fc-file-item-remove {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 4px 8px;
    font-size: 20px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    border-radius: 4px;
}

.fc-file-item-remove:hover {
    background: #fee;
    color: #d63638;
}

/* File upload error state */
.fc-field-has-error .fc-file-dropzone {
    border-color: #d63638;
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media screen and (max-width: 600px) {
    .fc-fw-75,
    .fc-fw-50,
    .fc-fw-33,
    .fc-fw-25 {
        width: 100%;
    }

    .fc-labels-left .fc-field {
        flex-direction: column;
        gap: 4px;
    }

    .fc-labels-left .fc-label {
        padding-top: 0;
        min-width: auto;
    }

    .fc-step-progress {
        flex-direction: column;
    }

    .fc-nps-scale {
        flex-wrap: wrap;
    }

    .fc-nps-btn {
        flex: 0 0 calc(20% - 4px);
    }

    .fc-likert-table {
        font-size: 12px;
    }

    .fc-likert-col-header {
        font-size: 10px;
    }
}
