/**
 * EMB Baggerkonfigurator – Auswahlbereich des Frontend-Konfigurators
 * Version 2.05.72
 *
 * Enthält ausschließlich Darstellung und responsives Verhalten von:
 * - Kategorien und Unterkategorien
 * - Ausstattungsoptionen und Preisen
 * - neutralisierten jScrollPane-Containern im Auswahlbereich
 *
 * Geschäftslogik und Knockout-Bindings bleiben in den bestehenden Dateien.
 */

#konfiguration #configuration_categories {
    grid-area: categories;
    position: static;
    width: 100%;
    height: auto;
    min-height: 360px;
    margin: 0;
    padding: 16px;
    overflow: visible;
    border: 1px solid var(--fe-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 29, 40, .07);
    box-sizing: border-box;
}

#konfiguration #configuration_categories .jspContainer,
#konfiguration #configuration_categories .jspPane {
    position: static;
    width: 100%;
    height: auto;
    overflow: visible;
}

#konfiguration #configuration_categories .jspVerticalBar,
#konfiguration #configuration_categories .jspHorizontalBar {
    display: none;
}

#konfiguration .configuration_category,
#konfiguration .configuration_subcategory {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    margin: 0 0 7px;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--fe-ink);
    font: 700 14px/1.3 Arial, Helvetica, sans-serif;
    text-decoration: none;
    box-sizing: border-box;
}

#konfiguration .configuration_subcategory {
    min-height: 42px;
    padding-left: 28px;
    color: var(--fe-muted);
    font-weight: 650;
}

#konfiguration .configuration_category:hover,
#konfiguration .configuration_subcategory:hover {
    background: #eef6f7;
    color: var(--fe-accent-dark);
}

#konfiguration .configuration_category.active,
#konfiguration .configuration_subcategory.active {
    background: var(--fe-accent);
    color: #fff;
}

#konfiguration #configuration_objects {
    grid-area: objects;
    position: static;
    width: 100%;
    height: auto;
    min-height: 360px;
    margin: 0;
    padding: 16px;
    overflow: visible;
    border: 1px solid var(--fe-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 29, 40, .07);
    box-sizing: border-box;
}

#konfiguration #objectlist {
    display: grid;
    gap: 9px;
    width: 100%;
}

#konfiguration #objectlist > div,
#konfiguration #objectlist > div > div {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #e8eef0;
    border-radius: 13px;
    background: #fafcfc;
    box-sizing: border-box;
}

#konfiguration #objectlist input[type="checkbox"],
#konfiguration #objectlist input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--fe-accent);
}

#konfiguration #objectlist label {
    margin: 0;
    color: var(--fe-ink);
    font: 650 15px/1.35 Arial, Helvetica, sans-serif;
    cursor: pointer;
}

#konfiguration #objectlist .objectprice {
    min-width: 100px;
    color: var(--fe-ink);
    font-size: 14px;
    font-weight: 750;
    text-align: right;
    white-space: nowrap;
}

#konfiguration #objectlist .excluded {
    opacity: .42;
}

@media (max-width: 900px) {
    #konfiguration #configuration_categories {
        min-height: 0;
        padding: 12px;
    }

#konfiguration #configuration_categories > div,
#konfiguration #configuration_categories .jspPane {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

#konfiguration #configuration_categories br {
        display: none;
    }

#konfiguration .configuration_category,
#konfiguration .configuration_subcategory {
        flex: 0 0 auto;
        width: auto;
        min-width: max-content;
        margin: 0;
        padding: 10px 14px;
    }

#konfiguration .configuration_subcategory {
        padding-left: 14px;
    }
}

@media (max-width: 560px) {
    #konfiguration #configuration_objects,
#konfiguration #configuration_categories {
        border-radius: 15px;
    }

#konfiguration #objectlist > div,
#konfiguration #objectlist > div > div {
        grid-template-columns: auto minmax(0, 1fr);
    }

#konfiguration #objectlist .objectprice {
        grid-column: 2;
        min-width: 0;
        text-align: left;
    }
}

#konfiguration .configuration_category,
#konfiguration .configuration_subcategory {
    border: 1px solid transparent;
    background: #f3f6f8;
    color: var(--fe-ink);
}

#konfiguration .configuration_subcategory {
    background: #fafcfc;
    border-color: #e9eef0;
    color: var(--fe-muted);
}

#konfiguration .configuration_category:hover,
#konfiguration .configuration_subcategory:hover {
    background: #e8f4f5;
    border-color: #cfe8eb;
    color: var(--fe-accent-dark);
}

#konfiguration .configuration_category.active,
#konfiguration .configuration_subcategory.active {
    border-color: var(--fe-accent);
    background: var(--fe-accent);
    color: #fff;
    box-shadow: 0 8px 20px rgba(27, 168, 181, .18);
}

#konfiguration #configuration_objects {
    min-height: 0;
    padding: 18px;
    overflow: visible;
}

#konfiguration #objectlist {
    position: relative;
    display: grid;
    gap: 10px;
}

#konfiguration #objectlist::before,
#konfiguration #objectlist::after,
#konfiguration #objectlist > div::before,
#konfiguration #objectlist > div::after,
#konfiguration #objectlist > div > div::before,
#konfiguration #objectlist > div > div::after {
    content: none;
    display: none;
}

#konfiguration #objectlist > div,
#konfiguration #objectlist > div > div {
    grid-template-columns: 24px minmax(0, 1fr) minmax(92px, auto);
    gap: 14px;
    min-height: 64px;
    padding: 13px 16px;
    border: 1px solid #dfe8eb;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 29, 40, .035);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

#konfiguration #objectlist > div:hover,
#konfiguration #objectlist > div > div:hover {
    border-color: #b9dde1;
    background: #fbfefe;
    box-shadow: 0 8px 22px rgba(15, 29, 40, .065);
    transform: translateY(-1px);
}

#konfiguration #objectlist input[type="checkbox"],
#konfiguration #objectlist input[type="radio"] {
    width: 20px;
    height: 20px;
    align-self: center;
}

#konfiguration #objectlist label {
    display: block;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: var(--fe-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#konfiguration #objectlist label .info,
#konfiguration #objectlist label img {
    vertical-align: middle;
}

#konfiguration #objectlist .objectprice {
    min-width: 92px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

#konfiguration #objectlist > div:has(input:checked),
#konfiguration #objectlist > div > div:has(input:checked) {
    border-color: rgba(27, 168, 181, .55);
    background: #f2fbfc;
    box-shadow: 0 8px 22px rgba(27, 168, 181, .10);
}

#konfiguration #objectlist > div:has(input:disabled),
#konfiguration #objectlist > div > div:has(input:disabled) {
    background: #f6f8f9;
    box-shadow: none;
}

#konfiguration #objectlist input:disabled,
#konfiguration #objectlist input:disabled + label,
#konfiguration #objectlist input:disabled ~ .objectprice {
    opacity: .46;
    cursor: not-allowed;
}

@media (max-width: 700px) {
    #konfiguration #configuration_objects {
        padding: 12px;
    }

#konfiguration #objectlist > div,
#konfiguration #objectlist > div > div {
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 10px;
        min-height: 58px;
        padding: 12px;
    }

#konfiguration #objectlist label {
        font-size: 14px;
        white-space: normal;
    }

#konfiguration #objectlist .objectprice {
        grid-column: 2;
        min-width: 0;
        margin-top: -4px;
        font-size: 14px;
        text-align: left;
    }
}

#konfiguration #objectlist > div {
    position: relative;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) minmax(92px, auto);
    align-items: center;
    gap: 14px;
    min-height: 64px;
    margin: 0;
    padding: 13px 16px;
    overflow: visible;
}

#konfiguration #objectlist > div > div {
    display: contents;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

#konfiguration #objectlist input[type="checkbox"],
#konfiguration #objectlist input[type="radio"] {
    position: static;
    left: auto;
    top: auto;
    display: block;
    visibility: visible;
    opacity: 1;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    background: none;
    appearance: auto;
    -webkit-appearance: auto;
}

#konfiguration #objectlist label,
#konfiguration #objectlist input + label {
    position: static;
    display: block;
    visibility: visible;
    opacity: 1;
    width: auto;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: none;
    color: var(--fe-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#konfiguration #objectlist .objectprice {
    position: static;
    display: block;
    visibility: visible;
    opacity: 1;
    float: none;
    min-width: 92px;
    margin: 0;
    color: var(--fe-ink);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

#konfiguration #objectlist > div:has(input:disabled) {
    opacity: .5;
}

#konfiguration #objectlist > div:has(input:disabled) label,
#konfiguration #objectlist > div:has(input:disabled) .objectprice,
#konfiguration #objectlist > div:has(input:disabled) input {
    opacity: 1;
}

@media (max-width: 700px) {
    #konfiguration #objectlist > div {
        grid-template-columns: 22px minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 58px;
        padding: 12px;
    }

#konfiguration #objectlist label,
#konfiguration #objectlist input + label {
        font-size: 14px;
        white-space: normal;
    }

#konfiguration #objectlist .objectprice {
        grid-column: 3;
        min-width: 78px;
        margin: 0;
        font-size: 14px;
        text-align: right;
    }
}

/*
 * 2.05.58 – Vereinheitlichter Kategorie- und Ausstattungsbereich
 *
 * Beide Spalten verwenden dieselbe Karten- und Zeilenlogik. Die Auswahl
 * wächst mit ihrem Inhalt und nutzt keine internen Scrollbereiche.
 */

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_objects {
    position: static;
    top: auto;
    align-self: start;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 12px;
    overflow: visible;
    border: 1px solid var(--fe-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: none;
    box-sizing: border-box;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories {
    grid-area: categories;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_objects {
    grid-area: objects;
    display: block;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories > div,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories .jspPane {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories br {
    display: none;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_category,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_subcategory {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    min-height: 64px;
    margin: 0;
    padding: 14px 18px;
    border: 1px solid #e4eaed;
    border-radius: 12px;
    background: var(--fe-soft);
    color: var(--fe-ink);
    box-shadow: none;
    font: 750 16px/1.3 Arial, Helvetica, sans-serif;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
    box-sizing: border-box;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_subcategory {
    min-height: 56px;
    padding-left: 24px;
    border-left: 3px solid var(--fe-line);
    background: #fafcfc;
    color: var(--fe-muted);
    font-size: 14px;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_category:hover,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_subcategory:hover {
    border-color: #b9dfe3;
    background: #eef8f9;
    color: var(--fe-accent-dark);
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_category:focus-visible,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_subcategory:focus-visible {
    outline: 3px solid rgba(34, 170, 184, .24);
    outline-offset: 2px;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_category.active {
    border-color: var(--fe-accent);
    background: var(--fe-accent);
    color: #fff;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_subcategory.active {
    border-color: #9ed9df;
    border-left-color: var(--fe-accent);
    background: #e9f8fa;
    color: var(--fe-accent-dark);
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .jspPane {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    box-sizing: border-box;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist > div {
    position: relative;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) minmax(92px, auto);
    align-items: center;
    gap: 14px;
    width: 100%;
    min-width: 0;
    min-height: 64px;
    margin: 0;
    padding: 13px 16px;
    overflow: visible;
    border: 1px solid #e4eaed;
    border-radius: 12px;
    background: #f8fafb;
    box-shadow: none;
    transform: none;
    transition: border-color .18s ease, background .18s ease;
    box-sizing: border-box;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist > div > div {
    display: contents;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist > div:hover {
    border-color: #bddfe3;
    background: #f3fafb;
    box-shadow: none;
    transform: none;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist > div:has(input:checked) {
    border-color: #a9dce1;
    background: #eaf8fa;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist > div:has(input:disabled),
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist > div:has(.excluded) {
    border-color: #edf0f2;
    background: #f5f7f8;
    box-shadow: none;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist input[type="checkbox"],
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist input[type="radio"] {
    position: static;
    left: auto;
    top: auto;
    display: block;
    visibility: visible;
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
    opacity: 1;
    accent-color: var(--fe-accent);
    appearance: auto;
    -webkit-appearance: auto;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist label,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist input + label {
    position: static;
    display: -webkit-box;
    visibility: visible;
    min-width: 0;
    max-width: none;
    max-height: calc(1.35em * 2);
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: none;
    color: var(--fe-ink);
    font: 700 15px/1.35 Arial, Helvetica, sans-serif;
    text-align: left;
    text-overflow: clip;
    white-space: normal;
    opacity: 1;
    cursor: pointer;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .objectprice {
    position: static;
    display: block;
    align-self: center;
    min-width: 92px;
    margin: 0;
    color: var(--fe-ink);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
    opacity: 1;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist input:disabled,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist input:disabled + label,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist input:disabled ~ .objectprice,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .excluded,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .excluded ~ .objectprice {
    opacity: .46;
    cursor: not-allowed;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist > .configuration-option--mandatory {
    border-color: #9fd5da;
    background: #eef9fa;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .configuration-option--mandatory input:disabled,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .configuration-option--mandatory input:disabled + label,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .configuration-option--mandatory input:disabled ~ .objectprice {
    opacity: 1;
    cursor: default;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .configuration-option--mandatory label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    max-height: none;
    -webkit-line-clamp: initial;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .configuration-option--mandatory label::after {
    content: "Pflichtausstattung";
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 2px 8px;
    border: 1px solid #9fd5da;
    border-radius: 999px;
    background: #dff3f5;
    color: #176a72;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories .jspContainer,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_objects .jspContainer {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories .jspVerticalBar,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories .jspHorizontalBar,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_objects .jspVerticalBar,
body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_objects .jspHorizontalBar {
    display: none;
}

body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration-option--nested {
    margin-left: 16px;
}

@media (max-width: 900px) {
    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories,
    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_objects {
        position: static;
        width: 100%;
        padding: 10px;
    }

    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories > div,
    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories .jspPane {
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    }

    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_category,
    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend .configuration_subcategory {
        min-width: 0;
        margin: 0;
    }
}

@media (max-width: 620px) {
    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories > div,
    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #configuration_categories .jspPane {
        grid-template-columns: minmax(0, 1fr);
    }

    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist > div {
        grid-template-columns: 22px minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 60px;
        padding: 12px;
    }

    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist label,
    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist input + label {
        font-size: 14px;
    }

    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .objectprice {
        min-width: 76px;
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist > div {
        grid-template-columns: 22px minmax(0, 1fr);
    }

    body.app-body--frontend #content.frontend-main #konfiguration.configuration-page--highend #objectlist .objectprice {
        grid-column: 2;
        min-width: 0;
        text-align: left;
    }
}


/*
 * Version 2.05.72
 * Kompakte Info-Dokument-Symbole ohne Legacy-Hintergrundfläche.
 */
body.app-body--frontend #content.frontend-main
#konfiguration #objectlist label a.infodoc {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    min-width: 17px;
    height: 17px;
    margin: 0 0 0 6px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    vertical-align: -3px;
}

body.app-body--frontend #content.frontend-main
#konfiguration #objectlist label a.infodoc img {
    position: static;
    top: auto;
    left: auto;
    display: block;
    width: 15px;
    min-width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    object-fit: contain;
}
