/* MBTI Checker Plugin Styles - Simplified Version */

/* ===== POPUP FORM STYLES ===== */
.mbti-checker-form-wrapper * {
    box-sizing: border-box !important;
}

.mbti-checker-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0;
}

.mbti-checker-button-wrapper button {
    background-color: #ED2939;
    color: #fff;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 6px;
    outline: none;
    border: none;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
}

.mbti-checker-button-wrapper button:hover {
    background-color: #C8102E;
}

.mbti-checker-form-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.mbti-checker-form {
    position: relative;
    background-color: #fff;
    padding: 30px 40px;
    max-height: calc(100% - 32px);
    overflow-y: auto;
    border-radius: 20px;
}

@media screen and (max-width: 1024px) {
    .mbti-checker-form {
        width: calc(100% - 32px);
        padding: 32px 16px;
    }
}

@media screen and (max-width: 768px) {
    .mbti-checker-form {
        width: 100vw;
        border-radius: 0;
    }
}

.mbti-checker-form > div {
    width: 870px;
}

@media screen and (max-width: 1024px) {
    .mbti-checker-form > div {
        width: 100%;
    }
}

#mbti-checker-form-close {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    #mbti-checker-form-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
    }
}

/* ===== SHARED STYLES (Popup & Inline) ===== */
#mbti-checker-timer-text {
    color: #5050ff;
}

.mbti-checker-timer {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mbti-checker-heading {
    font-size: 28px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    margin: 0 0 20px 0px !important;
    font-weight: 700 !important;
    color: #5050ff !important;
}

@media screen and (max-width: 1024px) {
    .mbti-checker-heading {
        font-size: 24px;
        margin: 0 0 14px 0px !important;
    }
}

.mbti-checker-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: inline;
}

@media screen and (max-width: 1024px) {
    .mbti-checker-title {
        font-size: 18px;
        margin: 0 0 8px 0;
    }
}

.mbti-checker-bold {
    font-weight: 700;
}

.mbti-checker-p {
    font-size: 18px;
    margin: 0 0 10px 0px !important;
    color: #333;
}

/* Popup form - Question title and text on same line */
.mbti-checker-form .mbti-checker-question .mbti-checker-p.mbti-checker-bold {
    display: inline;
    margin-left: 5px;
    color: #333;
}

@media screen and (max-width: 1024px) {
    .mbti-checker-p {
        font-size: 16px;
        margin: 0 0 8px 0px !important;
    }
}

/* Popup-specific Question Styles */
.mbti-checker-form .mbti-checker-question-wrapper {
    border-radius: 10px;
    background: #f5f5f5;
    padding: 12px 20px;
    border: 1px solid #d5d5d5;
}

.mbti-checker-form .mbti-checker-question {
    margin-bottom: 0;
}

.mbti-checker-form .mbti-checker-question label {
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.mbti-checker-form .mbti-checker-question input[type="radio"] {
    margin-bottom: 0;
    margin-right: 8px;
}

@media screen and (max-width: 1024px) {
    .mbti-checker-form .mbti-checker-question label {
        font-size: 16px;
    }
}

.mbti-checker-text-answers {
    display: flex;
    flex-direction: column;
}

.mbti-checker-question-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15.33px;
    margin-top: 30px;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .mbti-checker-question-pagination {
        gap: 8.7px;
        margin-top: 20px;
    }
}

.mbti-checker-question-pagination-button {
    border: 1px solid #d5d5d5;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
    .mbti-checker-question-pagination-button {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

.mbti-checker-question-pagination-button.current {
    background-color: #5050ff;
    color: #fff;
    border-color: #5050ff;
}

.mbti-checker-question-pagination-button.done {
    background-color: #3ace3a;
    color: #fff;
    border-color: #3ace3a;
}

/* Progress Bar */
.mbti-checker-progress-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px !important;
}

.mbti-checker-question-result {
    display: none;
    flex-direction: column;
}

.mbti-checker-instruction {
    text-align: center;
}

.mbti-checker-instruction-button {
    color: #5050ff;
    text-decoration: underline;
    cursor: pointer;
}

.mbti-checker-password-invalid {
    color: #ED2939;
    margin: 6px 0 10px 0;
    font-size: 16px;
    display: none;
}

input.mbti-checker-password {
    height: 40px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    padding: 0 20px;
    font-size: 18px;
    outline: none;
    margin: 0px !important;
}

@media screen and (max-width: 1024px) {
    input.mbti-checker-password {
        font-size: 16px;
    }
}

.mbti-checker-result-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.mbti-checker-result-buttons button,
#mbti-checker-start,
#mbti-checker-submit,
.mbti-submit-button {
    background-color: #ED2939;
    color: #fff;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 6px;
    outline: none;
    border: none;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    margin: 10px 0 0 0 !important;
}

.mbti-checker-result-buttons button:hover,
#mbti-checker-start:hover,
#mbti-checker-submit:hover,
.mbti-submit-button:hover {
    background-color: #C8102E;
}

/* Error and warning states */
.mbti-question-unchecked {
    border-color: #dc3545 !important;
}

.mbti-warning-text {
    color: #dc3545;
    margin-top: 12px;
    font-size: 14px;
    display: block;
}

/* Animation for validation shake */
@keyframes mbti-shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.mbti-shake {
    animation: mbti-shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
}

/* Result Styles */
.mbti-checker-result {
    border-radius: 10px;
    background-color: #f9f9ff;
    padding: 30px;
    margin-top: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(80, 80, 255, 0.1);
    border: 1px solid #e0e0ff;
}

.mbti-checker-result-title {
    font-weight: 700;
    font-size: 24px;
    color: #5050ff;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.mbti-checker-content {
    display: none;
    border-radius: 10px;
    background-color: #f5f5f5;
    padding: 12px 20px;
    margin: 20px 0 0 0;
}

.mbti-checker-content img {
    border-radius: 5px;
    width: 100%;
    margin: 0 0 16px 0;
}

.mbti-checker-content p {
    margin: 0 0 16px 0;
}

#mbti-checker-result {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #5050ff;
    padding: 15px;
    border: 2px dashed #5050ff;
    border-radius: 6px;
    background-color: #f5f5ff;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

#mbti-checker-result-text {
    margin: 20px 0;
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0ff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(80, 80, 255, 0.05);
}

#mbti-checker-result-text img {
    border-radius: 5px;
    width: 100%;
    margin: 0 0 16px 0;
}

#mbti-checker-result-text p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

#mbti-checker-result-text ul {
    margin: 0 0 20px 0;
    padding-left: 30px;
    list-style-type: disc;
}

#mbti-checker-result-text li {
    margin: 0 0 8px 0;
    line-height: 1.6;
    color: #333;
}

#mbti-checker-result-text h2,
#mbti-checker-result-text h3 {
    margin: 0 0 15px 0;
    color: #5050ff;
    font-weight: 600;
}

#mbti-checker-result-text h2 {
    font-size: 24px;
}

#mbti-checker-result-text h3 {
    font-size: 20px;
}

/* Progress Bar Animation */
@keyframes progress {
    0% {
        --percentage: 0;
    }
    100% {
        --percentage: var(--value);
    }
}

@property --percentage {
    syntax: '<number>';
    inherits: true;
    initial-value: 0;
}

/* Progress Bar Styles */
[role="progressbar"] {
    --percentage: var(--value);
    --primary: #3ace3a;
    --secondary: #ddd;
    --size: 100px;
    animation: progress 2s 0.5s forwards;
    width: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

[role="progressbar"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(var(--primary) calc(var(--percentage) * 1%), var(--secondary) 0);
    mask: radial-gradient(white 55%, transparent 0);
    mask-mode: alpha;
    -webkit-mask: radial-gradient(#0000 55%, #000 0);
    -webkit-mask-mode: alpha;
}

[role="progressbar"]::after {
    counter-reset: percentage var(--value);
    content: counter(percentage) '%';
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(var(--size) / 5);
    color: var(--primary);
}

.mbti-checker-answers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

/* ===== INLINE FORM SPECIFIC STYLES ===== */
.mbti-checker-container.mbti-isolate {
    /* Basic container setup without all: unset */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    box-sizing: border-box;
    
    /* Custom properties */
    --mbti-primary-color: #5050ff;
    --mbti-text-color: #333;
    --mbti-bg-color: #fff;
    --mbti-border-color: #ddd;
    --mbti-spacing: 20px;
    --mbti-spacing-small: 8px;
    --mbti-border-radius: 5px;
    
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: var(--mbti-spacing) 0;
}

/* Inline form elements - Simplified without all: unset */
.mbti-checker-container.mbti-isolate * {
    box-sizing: border-box;
}

/* Typography for Inline Form */
.mbti-checker-container.mbti-isolate h2,
.mbti-checker-container.mbti-isolate h3 {
    display: block;
    margin: 0 0 var(--mbti-spacing) 0;
    font-weight: bold;
    line-height: 1.4;
    color: var(--mbti-text-color);
}

.mbti-checker-container.mbti-isolate h2 {
    font-size: 24px;
}

.mbti-checker-container.mbti-isolate h3 {
    font-size: 18px;
}

.mbti-checker-container.mbti-isolate p {
    display: block;
    margin: 0 0 var(--mbti-spacing-small) 0;
    line-height: 1.6;
    color: var(--mbti-text-color);
}

.mbti-checker-container.mbti-isolate p:last-child {
    margin-bottom: 0;
}

.mbti-checker-container.mbti-isolate strong {
    font-weight: bold;
}

/* Inline form sections */
.mbti-checker-container.mbti-isolate .mbti-checker-intro {
    display: block;
    margin-bottom: var(--mbti-spacing);
    padding: var(--mbti-spacing);
    background: #f9f9f9;
    border-radius: var(--mbti-border-radius);
    border: 1px solid var(--mbti-border-color);
}

.mbti-checker-container.mbti-isolate .mbti-checker-timer {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: var(--mbti-spacing) 0;
    color: var(--mbti-primary-color);
}

/* Question section for Inline Form */
.mbti-checker-container.mbti-isolate .mbti-checker-question {
    display: block;
    margin-bottom: var(--mbti-spacing);
    padding: var(--mbti-spacing);
    background: #f9f9f9;
    border-radius: var(--mbti-border-radius);
    border: 1px solid var(--mbti-border-color);
}

.mbti-checker-container.mbti-isolate .mbti-checker-question-wrapper {
    margin-bottom: var(--mbti-spacing);
}

/* Answer options for Inline Form */
.mbti-checker-container.mbti-isolate .mbti-checker-answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--mbti-spacing);
}

.mbti-checker-container.mbti-isolate .mbti-checker-answer {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Checkbox styling for Inline Form */
.mbti-checker-container.mbti-isolate input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--mbti-border-color);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    background-color: #fff;
    margin: 0;
}

.mbti-checker-container.mbti-isolate input[type="checkbox"]:checked {
    border-color: var(--mbti-primary-color);
}

.mbti-checker-container.mbti-isolate input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--mbti-primary-color);
    border-radius: 50%;
}

.mbti-checker-container.mbti-isolate label {
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.4;
    flex: 1;
    margin: 0;
    color: var(--mbti-text-color);
    font-weight: 400;
}

/* Submit button for Inline Form */
.mbti-checker-container.mbti-isolate .mbti-checker-submit {
    margin-top: var(--mbti-spacing);
    text-align: center;
}

/* Password section for Inline Form */
.mbti-checker-container.mbti-isolate .mbti-checker-password-section {
    margin-top: var(--mbti-spacing);
    padding: var(--mbti-spacing);
    background: #f9f9f9;
    border-radius: var(--mbti-border-radius);
    border: 1px solid var(--mbti-border-color);
}

.mbti-checker-container.mbti-isolate .mbti-password-instruction {
    margin-bottom: var(--mbti-spacing);
}

/* Password input for inline form */
.mbti-checker-container.mbti-isolate #mbti_password,
.mbti-checker-container.mbti-isolate input[type="password"],
.mbti-checker-container.mbti-isolate input[type="text"] {
    height: 40px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    padding: 0 20px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    background-color: #fff;
    color: #333;
    display: block;
    margin: 10px 0;
}

/* Submit button in inline form */
.mbti-checker-container.mbti-isolate .mbti-submit-button,
.mbti-checker-container.mbti-isolate button[type="submit"],
.mbti-checker-container.mbti-isolate button {
    background-color: #ED2939;
    color: #fff;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 6px;
    outline: none;
    border: none;
    font-weight: 700;
    font-size: 17px;
    font-family: inherit;
    cursor: pointer;
    margin: 10px 0 0 0;
    min-width: 150px;
}

.mbti-checker-container.mbti-isolate .mbti-submit-button:hover,
.mbti-checker-container.mbti-isolate button:hover {
    background-color: #C8102E;
}

/* Modal for instruction popup */
.mbti-instruction-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbti-instruction-modal-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    border-radius: 10px;
}

.mbti-instruction-modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
}

/* Progress Bar for Inline Form */
.mbti-checker-container.mbti-isolate .mbti-checker-progress-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
}

/* Error styles for inline form */
.mbti-checker-container.mbti-isolate .mbti-question-unchecked {
    border: 2px solid #dc3545 !important;
}

.mbti-checker-container.mbti-isolate .mbti-warning-text {
    color: #dc3545;
    margin-top: 12px;
    font-size: 14px;
    display: block;
}

.mbti-checker-container.mbti-isolate .mbti-shake {
    animation: mbti-shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
}

.mbti-checker-container.mbti-isolate #mbti_password.mbti-validation-error {
    border: 2px solid #ED2939 !important;
    animation: shake 0.5s;
}

@keyframes shake {
    0% { margin-left: 0; }
    25% { margin-left: -10px; }
    50% { margin-left: 10px; }
    75% { margin-left: -10px; }
    100% { margin-left: 0; }
}

/* Result section for inline form */
.mbti-checker-container.mbti-isolate .mbti-checker-result {
    border-radius: 10px;
    background-color: #f9f9ff;
    padding: 30px;
    border: 1px solid #e0e0ff;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(80, 80, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}

.mbti-checker-container.mbti-isolate .mbti-checker-result.fadeIn,
.mbti-checker-container.mbti-isolate .mbti-checker-result[style*="display: flex"] {
    display: flex !important;
}

.mbti-checker-container.mbti-isolate .mbti-checker-result-title {
    font-weight: 700;
    font-size: 24px;
    color: #5050ff;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    display: block;
    width: 100%;
    line-height: 1.2;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #5050ff;
    padding: 15px;
    border: 2px dashed #5050ff;
    border-radius: 6px;
    background-color: #f5f5ff;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 20px auto;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text {
    margin: 20px 0;
    padding: 20px;
    width: 100%;
    display: block;
    background-color: #ffffff;
    border: 1px solid #e0e0ff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(80, 80, 255, 0.05);
    box-sizing: border-box;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text p {
    margin: 0 0 16px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: left;
    display: block;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text ul,
.mbti-checker-container.mbti-isolate #mbti-checker-result-text ol {
    margin: 0 0 20px 0;
    padding-left: 30px;
    display: block;
    text-align: left;
    width: 100%;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text ul {
    list-style-type: disc;
    list-style-position: outside;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text ol {
    list-style-type: decimal;
    list-style-position: outside;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text li {
    margin: 0 0 8px 0;
    line-height: 1.6;
    color: #333;
    display: list-item;
    text-align: left;
    list-style: inherit;
    padding-left: 5px;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text h2,
.mbti-checker-container.mbti-isolate #mbti-checker-result-text h3 {
    margin: 20px 0 15px 0;
    color: #5050ff;
    font-weight: 600;
    display: block;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text h2 {
    font-size: 24px;
}

.mbti-checker-container.mbti-isolate #mbti-checker-result-text h3 {
    font-size: 20px;
}

/* Animation for result appearance */
.mbti-checker-container.mbti-isolate .mbti-checker-result {
    animation: fadeInResult 0.5s ease-in-out;
}

@keyframes fadeInResult {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for Inline Form */
@media (max-width: 768px) {
    .mbti-checker-container.mbti-isolate {
        padding: var(--mbti-spacing) var(--mbti-spacing-small);
    }

    .mbti-checker-container.mbti-isolate .mbti-checker-question,
    .mbti-checker-container.mbti-isolate .mbti-checker-intro,
    .mbti-checker-container.mbti-isolate .mbti-checker-result {
        padding: var(--mbti-spacing-small);
    }

    .mbti-checker-container.mbti-isolate .mbti-submit-button {
        width: 100%;
    }

    .mbti-checker-container.mbti-isolate .mbti-checker-result {
        padding: 20px !important;
    }
    
    .mbti-checker-container.mbti-isolate .mbti-checker-password-section {
        padding: var(--mbti-spacing-small);
    }
}

/* Payment section styles */
.mbti-checker-form-wrapper .mbti-checker-payment-section h3 {
    font-size: 24px;
}

.mbti-payment-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin: -15px 0 20px 0;
}

/* Payment section mobile styles */
@media screen and (max-width: 1024px) {
    .mbti-checker-form-wrapper .mbti-checker-payment-section h3 {
        font-size: 20px !important;
    }
    
    .mbti-checker-form-wrapper .mbti-payment-details p {
        font-size: 14px !important;
    }
    
    .mbti-checker-form-wrapper .mbti-checker-payment-section {
        margin: 0 !important;
    }
    
    .mbti-payment-subtitle {
        font-size: 14px;
        margin: -20px 0 10px 0;
    }
    
    #mbti-checker-form-close {
        top: 0px;
        right: 0px;
        width: 32px;
        height: 32px;
    }
}