@import"https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@300;400;500;600;700;800&display=swap";:root{--font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;--color-red: #ff4f4f;--color-orange: #ff8800;--color-blue: #007bff;--color-green: #59ff59;--color-gray-100: #f1f1f1;--color-gray-200: #ececec;--color-gray-300: #d9d9d9;--color-gray-400: #bfbfbf;--color-gray-500: #808080;--color-gray-600: #444;--color-white: #ffffff;--color-black: #000000;--jl-primary-color: var(--color-red);--jl-secondary-color: var(--color-blue);--jl-border-radius: 4px;--jl-transition: .3s;--jl-spacing: 1rem;--jl-font-size-base: .9rem;--tab-font-size: .9rem;--tab-padding-vertical: .75rem;--tab-padding-horizontal: 1.5rem;--tab-active-color: var(--color-blue);--tab-inactive-color: #555;--tab-hover-bg: rgba(0, 112, 243, .1);--panel-padding: 1rem;font-family:var(--font-family)}.j-flex{display:flex}.j-flex-column{flex-direction:column}.j-flex-justify-start{justify-content:flex-start}.j-flex-justify-end{justify-content:flex-end}.j-flex-justify-center{justify-content:center}.j-flex-justify-between{justify-content:space-between}.j-flex-justify-evenly{justify-content:space-evenly}.j-flex-align-center{align-items:center}.j-flex-align-start{align-items:flex-start}.j-flex-align-end{align-items:flex-end}.j-flex-wrap{flex-wrap:wrap}.j-flex-gap-1{gap:.2rem}.j-flex-gap-2{gap:.5rem}.j-flex-gap-3{gap:1rem}.j-flex-gap-4{gap:1.5rem}.j-flex-gap-5{gap:2rem}.j-flex-grow-1{flex-grow:1}.j-flex-grow-0{flex-grow:0}.jbButton{background-color:var(--jb-button-bg, var(--jl-primary-color));color:var(--jb-button-color, var(--color-white));border-radius:var(--jl-border-radius);padding:.4rem .5rem;border:none;cursor:pointer;display:flex;align-items:center;gap:.5rem;justify-content:center;font-size:var(--jl-font-size-base);transition:filter var(--jl-transition)}.jbButton:not([disabled]):hover{filter:brightness(1.6)}.jbButton[disabled]{background-color:var(--jb-button-disabled-bg, var(--color-gray-400));cursor:not-allowed}body.dialog-open{overflow:hidden}.jbDialog-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background-color:#0006;z-index:99;display:flex;justify-content:center;padding:2rem 1rem;overflow:auto;align-items:flex-start}.jbDialog-dialog{background-color:var(--dialog-bg, var(--color-white));width:100%;border-radius:var(--jl-border-radius);position:relative;border:none;animation:openDialog forwards .5s;display:flex;flex-direction:column;overflow:visible;box-shadow:0 10px 30px #00000026;max-width:700px}.jbDialog-title{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1rem 1rem .5rem}.jbDialog-title h3{margin:.4rem 0 0;font-size:1.25rem;display:flex;align-items:center;gap:6px}.jbDialog-closeButton{background:none!important;border:none;font-size:1.1rem;cursor:pointer;line-height:1;padding:.25rem}.jbDialog-closeButton:hover{color:#d3d3d3}.jbDialog-separator{width:100%;margin:.8rem 0;opacity:.4;border:none;border-top:1px solid currentColor}.jbDialog-content{padding:0 1rem 1rem}.jbAlert{z-index:102!important}.jbAlert-backdrop{z-index:101!important}.jbAlert button{background-color:var(--alert-btn-bg, var(--color-white));color:inherit}.jbAlert button:last-child{background-color:var(--jl-primary-color);color:var(--color-white)}.jbAlert-info h3{color:#008dd8}.jbAlert-error h3{color:#dc0300}.jbAlert-warning h3{color:#cf8100}.jbAlert-success h3{color:#009304}.jbSnackbar{z-index:9999;position:fixed;top:20px;left:50%;transform:translate(-50%);padding:.8rem 2rem;display:flex;align-items:center;overflow:hidden;width:clamp(300px,fit-content,700px);border-radius:var(--jl-border-radius);transition:var(--jl-transition);margin-top:-4em;opacity:0;box-shadow:#00000026 0 15px 25px,#0000000d 0 5px 10px;color:var(--color-white)}.jbSnackbar-animate{margin-top:0;opacity:1}.jbSnackbar-success{background-color:var(--color-green)}.jbSnackbar-info{background-color:var(--color-blue)}.jbSnackbar-warning{background-color:var(--color-orange)}.jbSnackbar-error{background-color:var(--color-red)}.jbSnackbar-progress{position:absolute;bottom:0;left:0;height:100%;background-color:#6c757d99;animation:progress linear;opacity:.3;border-radius:0 1em 1em 0}@keyframes progress{0%{width:100%}to{width:0}}.jb-table{position:relative;width:100%;font-size:.9rem;border-radius:var(--jl-border-radius)}.jb-table-disabled:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;cursor:wait}.jb-table tbody tr:not(:last-child) td,.jb-table thead th{border-bottom:1px solid var(--color-gray-300)}.jb-table tbody tr:last-child td:first-child{border-radius:0 0 0 var(--jl-border-radius)}.jb-table tbody tr:last-child td:last-child{border-radius:0 0 var(--jl-border-radius) 0}.jb-table tbody tr.onClickAction:hover td{background-color:#e6e6e6!important;cursor:pointer}.jb-table td,.jb-table th{padding-left:1rem;padding-block:.5rem;text-align:left}.jb-table td:last-child,.jb-table th:last-child{padding-right:1rem}.jb-table td{font-size:.9rem}.jb-table-striped tbody tr:nth-child(odd) td{background-color:var(--color-gray-100)}.jb-form-control{display:flex;flex-direction:column;flex-grow:1}.jb-form-control>label{font-weight:700;font-size:.9rem}.jbDateField input,.jbNumberField input,.jbStringField input,.jbSelectField select{border:1px solid var(--color-gray-300);border-radius:var(--jl-border-radius);padding:.4rem .5rem;cursor:pointer;font-size:1rem}.jbNumberField input.pending{border-color:var(--color-gray-500)}select{height:2rem;border-radius:var(--jl-border-radius);border:1px solid var(--color-gray-300)}.jbDateField>div{display:flex}.jbDateField-closeButton{border:1px solid var(--jl-primary-color);background-color:var(--color-gray-400);color:var(--color-white);border-radius:0 var(--jl-border-radius) var(--jl-border-radius) 0;cursor:pointer}.jbDateField-closeButton:hover{filter:brightness(1.6)}.jbDateField:has(:last-child.jbDateField-closeButton) input{border-radius:var(--jl-border-radius) 0 0 var(--jl-border-radius)}.jbColorPicker input,.jbMultiSelectField>div>div:nth-child(3){border:1px solid var(--color-gray-300);border-radius:var(--jl-border-radius);padding:0;min-height:unset;cursor:pointer;box-shadow:none}.jbDropdownContainer{position:relative}.jbDropdownButton{border:none;border-radius:var(--jl-border-radius);padding:.45rem;display:flex;font-size:.9rem;cursor:pointer}.jbDropdownButton:hover{background-color:var(--color-gray-100)}.jbDropdownElements{position:absolute;display:none;bottom:0;transform:translateY(100%);right:0;background-color:var(--color-white);border-radius:var(--jl-border-radius);border:1px solid var(--color-gray-300);z-index:99;flex-direction:column}.jbDropdownElements a{padding:.5rem 1rem;white-space:nowrap}.jbDropdownElements a:hover{background-color:var(--color-gray-100)}.dropdownShow{display:flex!important}.jbDropdownContainer-disabled{background-color:var(--color-gray-200);cursor:not-allowed!important;text-decoration:none}.jb-badge{--badge-background: #8080ff;background-color:var(--badge-background);padding:2px 6px;border-radius:4px;font-size:.7rem;font-weight:700;color:var(--color-white);display:inline-block}.jbSelectField>div>div:nth-child(3){color:var(--color-black);min-height:30px;height:35px;border:1px solid var(--color-gray-300)}.jbSelectField>div>div:nth-child(3)>div:first-child{padding-block:0}.jbSelectField>div>div:nth-child(4){color:var(--color-black)}.sortable-column{position:relative}.sortable-column:hover:after{position:absolute;content:"";z-index:0;background-color:red;bottom:0;height:2px;width:100%;left:0}.jbTabs{display:flex;flex-direction:column;width:100%;font-family:var(--font-family);color:var(--tab-inactive-color);flex-grow:1}.jbTabs-head{display:flex;border-bottom:2px solid #eaeaea;background-color:#fafafa;flex-wrap:wrap;position:sticky!important;top:0;z-index:2;padding-block:.5rem}.jbTabs-head-title{background:none;border:none;cursor:pointer;padding:var(--tab-padding-vertical) var(--tab-padding-horizontal);font-size:var(--tab-font-size);color:var(--tab-inactive-color);display:flex;align-items:center;position:relative;transition:color var(--jl-transition),background var(--jl-transition)}.jbTabs-head-title:hover{background-color:var(--tab-hover-bg)}.jbTabs-head-title.active{color:var(--tab-active-color)}.jbTabs-head-title.active:after{content:"";position:absolute;bottom:-2px;left:50%;transform:translate(-50%);width:50%;height:2px;background:var(--tab-active-color);border-radius:2px 2px 0 0}.jbTabs-head-icon{margin-right:.5rem;display:flex;align-items:center;font-size:1.2em}.jbTabs-content{padding:var(--panel-padding);background-color:var(--color-white);flex-grow:1;display:flex}.jbTabs-panel{animation:fadeIn var(--jl-transition) ease-in-out;flex-grow:1}@keyframes fadeIn{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}.jbTabs-head-title:disabled,.jbTabs-head-title.disabled{cursor:not-allowed;opacity:.5;color:var(--tab-inactive-color);background-color:transparent;pointer-events:none}.jbTabs-head-title:disabled:hover,.jbTabs-head-title.disabled:hover{background-color:transparent}.jbStringField__wrap{position:relative}.jbStringField__input{width:100%;box-sizing:border-box}.jbStringField__input[type=password]::-ms-reveal,.jbStringField__input[type=password]::-ms-clear,.jbStringField__input[type=password]::-webkit-credentials-auto-fill-button{display:none!important}.jbStringField__eyeBtn{position:absolute;right:.7rem;top:50%;transform:translateY(-50%);display:inline-flex;align-items:center;justify-content:center;border:none;background:transparent;padding:0;cursor:pointer;color:#6b7280}.jbStringField__eyeBtn:hover{color:#374151}.jbStringField__eyeBtn:disabled{opacity:.5;cursor:not-allowed}:root{--jl-primary-color: #1e3a86;--jl-secondary-color: #649abc;--jl-table-row-hover-color: rgb(105, 167, 239, .2);--jl-border-radius: 4px;--regelnw: rgb(255, 244, 213);--anteilnw: rgb(211, 255, 211);--zubehnw: rgb(210, 210, 255)}.primary{background-color:var(--jl-primary-color)}.secondary{background-color:var(--jl-secondary-color)}.primary-outline{color:var(--jl-primary-color);background-color:#fff;outline:1px solid var(--jl-primary-color);outline-offset:-1px}.secondary-outline{color:var(--jl-secondary-color);background-color:#fff;outline:1px solid var(--jl-secondary-color);outline-offset:-1px}*{box-sizing:border-box;margin:0;padding:0}body{font-family:Segoe UI,Roboto,sans-serif;font-size:16px;font-weight:400;line-height:1.6;color:#333;background-color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0}h1{font-size:2.5rem;font-weight:600;margin-bottom:1rem}h2{font-size:2rem;font-weight:600;margin-bottom:.75rem}h3{font-size:1.5rem;font-weight:600;margin-bottom:.6rem}h4{font-size:1.25rem;font-weight:600;margin-bottom:.5rem}h5{font-size:1.125rem;font-weight:600;margin-bottom:.4rem}h6{font-size:1rem;font-weight:600;margin-bottom:.3rem}p{margin-bottom:1rem;font-size:1rem}table tbody tr:hover{background-color:var(--jl-table-row-hover-color)!important;cursor:pointer}.deleteBtn{background-color:#ff5e5e;aspect-ratio:1 / 1;padding:5px;justify-self:flex-end}.cuthere{width:100%;height:0;margin:0;padding:0;border:none}._container_li73j_2{display:flex;flex-direction:column;min-height:100dvh;background-color:#fff}._mainContent_li73j_9{display:block;flex-grow:1;width:100%;min-width:0}._mainContent_li73j_9>*{width:100%;min-width:0}.app-notification-stack{position:fixed;z-index:5000;top:1rem;right:1rem;display:grid;gap:.6rem;width:min(390px,calc(100vw - 2rem));pointer-events:none}.app-notification{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:.75rem;align-items:start;padding:.8rem .85rem .8rem 1rem;border:1px solid rgba(14,26,43,.18);border-left:4px solid #0e1a2b;border-radius:10px;background:#fff;color:#0e1a2b;box-shadow:0 14px 32px #0e1a2b2e;font-size:.93rem;line-height:1.35;pointer-events:auto;animation:app-notification-in .16s ease-out both}.app-notification--success{border-left-color:#146e37}.app-notification--warning{border-left-color:#a16207}.app-notification--error{border-left-color:#b42318}.app-notification-message{padding-top:.05rem}.app-notification button{width:1.55rem;height:1.55rem;padding:0;border:0;border-radius:6px;background:transparent;color:#0e1a2b;font:inherit;font-size:1.35rem;line-height:1;cursor:pointer}.app-notification button:hover,.app-notification button:focus-visible{background:#edf2f7}@keyframes app-notification-in{0%{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}@media(max-width:640px){.app-notification-stack{top:.6rem;right:.6rem;width:calc(100vw - 1.2rem)}.app-notification{gap:.55rem;padding:.62rem .65rem .62rem .75rem;font-size:.86rem}}._projectList_od4od_2{padding:1rem;background-color:#f9f9f9;width:100%}._pageHeader_od4od_8{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;flex-wrap:wrap}._heading_od4od_16{margin:0;font-size:1.5rem}._globalContingentInline_od4od_21{display:flex;flex-wrap:nowrap;justify-content:flex-end;gap:8px 12px;align-items:center;margin-left:auto}._globalContingentCountPill_od4od_30{display:inline-flex;align-items:center;width:max-content;font-size:.78rem;font-weight:600;border-radius:999px;padding:.12rem .45rem;white-space:nowrap}._globalContingentCountPillOk_od4od_41{color:#1f6d2b;background:#e3f7e6;border:1px solid #bfe6c6}._globalContingentCountPillWarning_od4od_47{color:#8a5418;background:#fff1dc;border:1px solid #f2cf9c}._columnHeaderInfo_od4od_53{display:inline-flex;align-items:center;gap:6px}._infoIconBtn_od4od_59{border:1px solid #d6e4f7;background:#eef4ff;color:#4c78b7;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;width:1.55rem;height:1.55rem;padding:0;border-radius:999px;flex:0 0 1.55rem}._infoIconBtn_od4od_59:hover{color:#355f9d;background:#e4eeff}._billingLinkBtn_od4od_79{border:none;background:transparent;color:#35516d;border-radius:999px;padding:2px 0;font-size:.76rem;font-weight:600;cursor:pointer;white-space:nowrap}._billingLinkBtn_od4od_79:hover{color:#17335f;text-decoration:underline}._tabBar_od4od_96{margin-top:1.5rem;display:flex;flex-wrap:wrap;gap:.65rem;border-bottom:1px solid #e5e7eb;padding-bottom:.35rem}._tabButton_od4od_105{border:none;border-radius:8px 8px 0 0;padding:.45rem .95rem;font-size:.85rem;font-weight:600;background-color:transparent;color:#334155;cursor:pointer;display:inline-flex;align-items:center;gap:.35rem;transition:background-color .2s ease,color .2s ease}._tabButton_od4od_105:hover{background-color:#eef2f7}._tabButtonActive_od4od_124{background-color:#fff;color:#0f172a;box-shadow:inset 0 -2px #0f172a}._tabCount_od4od_130{font-size:.75rem;background-color:#e2e8f0;border-radius:6px;padding:.1rem .45rem}._headerControls_od4od_137{display:flex;justify-content:flex-end;align-items:center;gap:.5rem;margin-bottom:1rem}._search_od4od_145{padding:.5rem;border:1px solid #ccc;border-radius:4px;font-size:.9rem;width:100%}._newButton_od4od_153{background-color:var(--jl-primary-color);color:#fff;padding:.5rem 1rem;border:none;border-radius:4px;font-size:.9rem;display:flex;align-items:center;gap:6px;cursor:pointer;white-space:nowrap}._newButton_od4od_153:hover{background-color:#172b67}._loadingRow_od4od_171{margin:1rem 0 .5rem;display:flex;align-items:center;gap:.6rem;color:#334155;font-weight:600}._loadingSpinner_od4od_180{width:18px;height:18px;border:2px solid #cbd5e1;border-top-color:#1f2937;border-radius:50%;animation:_projectListSpin_od4od_1 .8s linear infinite}._table_od4od_189{font-size:.95rem}._title_od4od_193{font-weight:600;font-size:.9rem}._exportInProgress_od4od_198{display:inline-flex;align-items:center;gap:.35rem;margin-top:.25rem;color:#475569;font-size:.78rem;font-weight:500}._exportSpinner_od4od_208{width:12px;height:12px;border:2px solid #cbd5e1;border-top-color:#1f4dbf;border-radius:50%;animation:_projectListSpin_od4od_1 .8s linear infinite}._exportDownloadLink_od4od_217{display:inline-flex;margin-top:.25rem;padding:0;border:none;background:transparent;color:#1f4dbf;cursor:pointer;font-size:.78rem;font-weight:600;text-decoration:underline}._changedAtInline_od4od_230{color:#0f172a;white-space:nowrap}@media(max-width:950px){._table_od4od_189 th:nth-child(4),._table_od4od_189 td:nth-child(4){display:none}}@media(max-width:840px){._table_od4od_189 th:nth-child(5),._table_od4od_189 td:nth-child(5){display:none}}@media(max-width:720px){._globalContingentInline_od4od_21{width:100%;justify-content:flex-start;flex-wrap:wrap;margin-left:0}}._address_od4od_258{font-size:.7rem;color:#666}._pagination_od4od_263{margin-top:1rem;display:flex;align-items:center;justify-content:space-between;gap:.75rem;flex-wrap:wrap;font-size:.9rem;color:#374151}._paginationInfo_od4od_274{flex:1;min-width:180px}._paginationButtons_od4od_279{display:flex;align-items:center;gap:.25rem;flex-wrap:wrap;justify-content:flex-end}._paginationButton_od4od_279{border:1px solid #cbd5f5;background-color:#fff;color:#111827;padding:.25rem .9rem;border-radius:4px;font-size:.85rem;cursor:pointer;transition:background-color .2s ease}._paginationButton_od4od_279:hover:not(:disabled){background-color:#eef2ff}._paginationButton_od4od_279:disabled{opacity:.4;cursor:not-allowed}._pageIndicator_od4od_307{font-weight:600;margin:0 .3rem}@keyframes _projectListSpin_od4od_1{to{transform:rotate(360deg)}}._pageWrap_yqmi3_1{width:100%;max-width:1200px;margin:0 auto}._tabs_yqmi3_7{top:0;z-index:5;display:flex;gap:.25rem;padding:.5rem .5rem 0;background:#f8fafc;border-bottom:1px solid #e5e7eb;flex-wrap:wrap}._tab_yqmi3_7{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:1px solid transparent;border-bottom:none;background:transparent;padding:.5rem .9rem;font-weight:600;font-size:.95rem;color:#475569;cursor:pointer;border-top-left-radius:.5rem;border-top-right-radius:.5rem}._tab_yqmi3_7:hover{background:#e3e6ec}._tabActive_yqmi3_36{color:#fff;background:var(--jl-primary-color);border-color:#e5e7eb;box-shadow:0 -1px #e5e7eb inset}._lockWrap_yqmi3_43{margin-left:auto;display:inline-flex;align-items:center;gap:.35rem}._lockBtn_yqmi3_50{border:1px solid #d1d5db;background:#fff;color:#374151;border-radius:6px;padding:.35rem .6rem;font-size:.85rem;font-weight:600;display:inline-flex;align-items:center;gap:.35rem;cursor:pointer}._lockBtn_yqmi3_50:hover{background:#f3f4f6}._fixedBadge_yqmi3_68{border:1px solid #bbf7d0;background:#f0fdf4;color:#166534;border-radius:6px;padding:.35rem .6rem;font-size:.85rem;font-weight:600;display:inline-flex;align-items:center;gap:.35rem}._lockInfoBtn_yqmi3_81{border:1px solid #d1d5db;background:#fff;color:#4b5563;border-radius:50%;width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;padding:0}._lockInfoBtn_yqmi3_81:hover{background:#f3f4f6}@media(max-width:900px){._tabs_yqmi3_7{overflow-x:auto;gap:.5rem}._tab_yqmi3_7{white-space:nowrap}}:root{--bg:#ffffff;--text:#111827;--muted:#6b7280;--border:#e5e7eb;--border-strong:#cbd5e1;--surface:#f8fafc;--radius:12px;--gap-1:.5rem;--gap-2:.75rem;--gap-3:1rem}._section_1mp59_14{display:grid;gap:var(--gap-3);background:var(--bg);border-radius:var(--radius);padding:1.25rem;box-shadow:0 1px 3px #0000000a}._header_1mp59_23{display:flex;align-items:center;justify-content:space-between}._title_1mp59_24{margin:0;font-size:1.1rem;font-weight:700;color:var(--text)}._btnPrimary_1mp59_26,._btnDanger_1mp59_27{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:8px;padding:.45rem .75rem;font-weight:600;cursor:pointer;border:1px solid transparent}._btnPrimary_1mp59_26{background:#f8fafc;border-color:var(--border-strong)}._btnPrimary_1mp59_26:hover{background:#eef2f7}._btnDanger_1mp59_27{background:#ef4444;color:#fff;border-color:#ef4444}._btnDanger_1mp59_27:hover{filter:brightness(.97)}._empty_1mp59_40{border:1px dashed var(--border-strong);border-radius:var(--radius);color:var(--muted);background:var(--surface);padding:.9rem;text-align:center}._list_1mp59_49{display:grid;gap:var(--gap-2)}._card_1mp59_51{border:1px solid var(--border);border-radius:var(--radius);background:var(--bg);padding:.5rem .65rem}._litRow_1mp59_58{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:var(--gap-2);align-items:end}._rowRefShort_1mp59_65{display:grid;grid-template-columns:minmax(0,1fr);gap:var(--gap-2)}._rowLongActions_1mp59_70{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:var(--gap-2);align-items:end;margin-top:.5rem}@media(max-width:900px){._rowLongActions_1mp59_70{grid-template-columns:1fr}}._dragHandle_1mp59_84{cursor:grab;font-size:1.25rem;color:var(--muted);-webkit-user-select:none;user-select:none;display:flex;align-items:center;justify-content:center;padding:0 .5rem;border-right:1px solid var(--border);margin-right:.5rem;transition:background .2s ease,color .2s ease}._dragHandle_1mp59_84:hover{background:var(--surface);color:var(--text)}._dragHandle_1mp59_84:active{cursor:grabbing}._card_1mp59_51{display:flex;align-items:stretch;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg);padding:.5rem .65rem;transition:transform .15s ease,box-shadow .15s ease,background .15s ease}._card_1mp59_51:hover{box-shadow:0 2px 5px #0000000f;transform:translateY(-1px)}._cardContent_1mp59_122{flex:1}@media(max-width:900px){._litRow_1mp59_58{grid-template-columns:1fr;align-items:start}}._dragging_1mp59_133{opacity:.6;transform:scale(.98);background:#f8fafc}._dragOver_1mp59_139{border:2px dashed var(--border-strong);background:#f1f5f9}:root{--bg: #ffffff;--text: #111827;--muted: #6b7280;--border: #e5e7eb;--border-strong: #cbd5e1;--surface: #f8fafc;--radius: 12px;--gap-1: .5rem;--gap-2: .75rem;--gap-3: 1rem;--gap-4: 1.25rem}._section_wtidx_29{background:var(--bg);border-radius:var(--radius);padding:1.25rem;box-shadow:0 1px 3px #0000000a;display:grid;gap:1.25rem}._header_wtidx_42{display:flex;align-items:center;justify-content:space-between}._title_wtidx_44{margin:0;font-size:1.1rem;font-weight:700;color:var(--text)}._gridTwo_wtidx_48{display:grid;gap:var(--gap-3);grid-template-columns:repeat(2,minmax(0,1fr))}._planLayout_wtidx_53{display:flex;justify-content:flex-start;width:100%}._planPreviewCol_wtidx_58{display:flex;flex-direction:column;gap:var(--gap-2);width:100%;max-width:640px}._planPreviewCol_wtidx_58 ._btnDanger_wtidx_65{align-self:flex-start}._planImage_wtidx_68{width:100%;max-width:100%;height:auto;max-height:520px;object-fit:contain;display:block}@media(max-width:900px){._gridTwo_wtidx_48{grid-template-columns:1fr}._planLayout_wtidx_53{justify-content:center}}._field_wtidx_82{display:flex;flex-direction:column;gap:.35rem}._label_wtidx_84{font-weight:600;color:var(--text)}._hint_wtidx_86{font-size:.8rem;color:var(--muted)}._block_wtidx_90{display:grid;gap:var(--gap-3)}._blockHeader_wtidx_92{display:flex;align-items:center;justify-content:space-between;gap:var(--gap-2)}._subtitle_wtidx_104{margin:0;font-size:1rem;font-weight:700;color:var(--text)}._dropzone_wtidx_108{border:2px dashed var(--border-strong);border-radius:var(--radius);background:var(--surface);padding:1rem;min-height:120px;display:flex;align-items:center;justify-content:center}._preview_wtidx_130{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:var(--bg);padding:.5rem;max-width:100%}._preview_wtidx_130 img{display:block;max-width:100%;height:auto}._previewActions_wtidx_139{display:flex;gap:var(--gap-2);align-items:end;flex-wrap:wrap}._replace_wtidx_141{display:grid;gap:.35rem}._cardList_wtidx_145{display:grid;gap:var(--gap-2)}._card_wtidx_145{border:1px solid var(--border);border-radius:16px;background:var(--bg);padding:var(--gap-2)}._cardHeader_wtidx_153{display:flex;align-items:center;justify-content:space-between;gap:var(--gap-2)}._cardTitle_wtidx_155{font-weight:600;color:var(--text)}._empty_wtidx_159{border:1px dashed var(--border-strong);border-radius:var(--radius);color:var(--muted);background:var(--surface);padding:.85rem;text-align:center}._btnPrimary_wtidx_177,._btnDanger_wtidx_65{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:8px;padding:.45rem .75rem;font-weight:600;cursor:pointer;border:1px solid transparent}._btnPrimary_wtidx_177{background:#f8fafc;border-color:var(--border-strong)}._btnPrimary_wtidx_177:hover{background:#eef2f7}._btnDanger_wtidx_65{background:#ef4444;color:#fff;border-color:#ef4444}._btnDanger_wtidx_65:hover{filter:brightness(.97)}._chips_10kk6_3{display:flex;flex-wrap:wrap;gap:.5rem;align-items:center;border:1px solid #ccc;border-radius:5px;padding:0 .5rem;min-height:42px;background:#fafafa}._tagInput_10kk6_15{flex:1 1 160px;min-width:120px;outline:none;border:none;background:transparent;font-size:.95rem}._chip_10kk6_3{display:inline-flex;align-items:center;gap:.35rem;padding:.25rem .5rem;border-radius:999px;background:#eef2ff;border:1px solid #c7d2fe;font-size:.85rem}._chipRemove_10kk6_35{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;background:transparent;cursor:pointer;font-size:1rem;line-height:1;color:#555}._tagHint_10kk6_45{margin-top:.35rem;font-size:.8rem;color:#666}._dragOver_kfr1k_1{background-color:var(--alwaysBlue);color:#fff}._imageDropper_kfr1k_6{border:1px dashed lightgrey;display:grid;place-items:center;border-radius:.5rem;padding:.5rem;text-align:center;flex-grow:1;font-weight:400;font-size:.9rem}._overlay_1f1sj_1{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#00000080;display:flex;justify-content:center;align-items:center;z-index:1000;pointer-events:none}._spinner_1f1sj_15{color:#fff;font-size:24px;font-weight:700;pointer-events:auto}:root{--gap-1:.5rem;--gap-2:.75rem;--radius:12px}._ok_6bx7l_7{color:green}._error_6bx7l_11{color:red}._container_6bx7l_16{display:grid;gap:var(--gap-2)}._containerDense_6bx7l_20{display:grid;gap:var(--gap-1)}._rowStreet_6bx7l_26{display:grid;grid-template-columns:minmax(0,1fr) minmax(90px,160px);gap:var(--gap-2)}._rowZipCity_6bx7l_33{display:grid;grid-template-columns:minmax(7ch,120px) minmax(0,1fr);gap:var(--gap-2)}._rowCountry_6bx7l_40{display:grid}@media(max-width:900px){._rowStreet_6bx7l_26,._rowZipCity_6bx7l_33{grid-template-columns:1fr}}:root{--bg:#ffffff;--text:#111827;--muted:#6b7280;--border:#e5e7eb;--border-strong:#cbd5e1;--surface:#f8fafc;--radius:12px;--gap-1:.5rem;--gap-2:.75rem;--gap-3:1rem;--gap-4:1.25rem}._section_1nreo_15{background:var(--bg);border-radius:var(--radius);padding:1.25rem;box-shadow:0 1px 3px #0000000a;display:grid;gap:var(--gap-3)}._header_1nreo_24{display:flex;align-items:center;justify-content:space-between}._title_1nreo_25{margin:0;font-size:1.1rem;font-weight:700;color:var(--text)}._gridTwo_1nreo_27{display:grid;gap:var(--gap-3);grid-template-columns:repeat(2,minmax(0,1fr))}@media(max-width:900px){._gridTwo_1nreo_27{grid-template-columns:1fr}}._block_1nreo_34{display:grid;gap:var(--gap-3)}._blockHeader_1nreo_35{display:flex;align-items:center;justify-content:space-between;gap:var(--gap-2)}._subtitle_1nreo_36{margin:0;font-size:1rem;font-weight:700;color:var(--text)}._help_1nreo_37{font-size:.9rem;color:var(--muted)}._cardList_1nreo_39{display:grid;gap:var(--gap-2)}._card_1nreo_39{border:1px solid var(--border);border-radius:16px;background:var(--bg);padding:var(--gap-2)}._cardHeader_1nreo_46{display:flex;align-items:center;justify-content:space-between;gap:var(--gap-2)}._cardTitle_1nreo_47{font-weight:600;color:var(--text)}._checkboxRow_1nreo_49{display:flex;align-items:center;gap:.5rem;margin:.25rem 0}._checkboxLabel_1nreo_55{cursor:pointer;color:var(--text);font-weight:700;font-size:.8rem}._empty_1nreo_62{border:1px dashed var(--border-strong);border-radius:var(--radius);color:var(--muted);background:var(--surface);padding:.85rem;text-align:center}._btnPrimary_1nreo_71,._btnDanger_1nreo_71{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:8px;padding:.45rem .75rem;font-weight:600;cursor:pointer;border:1px solid transparent}._btnPrimary_1nreo_71{background:#f8fafc;border-color:var(--border-strong)}._btnPrimary_1nreo_71:hover{background:#eef2f7}._btnDanger_1nreo_71{background:#ef4444;color:#fff;border-color:#ef4444}._btnDanger_1nreo_71:hover{filter:brightness(.97)}._subBlock_1nreo_84{display:grid;gap:var(--gap-2);border:1px solid var(--border);border-radius:var(--radius);background:var(--surface);padding:var(--gap-3)}._label_1nreo_93{font-weight:600;color:var(--text);margin:0 0 .25rem;font-size:.9rem;display:inline-block}._previewRow_1nreo_101{display:grid;gap:var(--gap-2)}._preview_1nreo_101{border:1px solid var(--border);border-radius:var(--radius);background:var(--bg);display:flex;justify-content:center;align-items:center;padding:var(--gap-3);overflow:hidden;max-width:100%;max-height:220px}._preview_1nreo_101 img{object-fit:contain;max-width:100%;max-height:200px;border-radius:4px}._logoGrid_1nreo_126{display:grid;gap:var(--gap-3)}._logoItem_1nreo_131{display:grid;gap:var(--gap-2);padding:var(--gap-3);border:1px solid var(--border);border-radius:var(--radius);background:var(--surface)}._logoHeader_1nreo_140{display:flex;align-items:center;justify-content:space-between}._logoHeader_1nreo_140 h4{margin:0;font-size:1rem;font-weight:600;color:var(--text)}._textarea_1nreo_153{width:100%;border:1px solid var(--border);border-radius:var(--radius);padding:var(--gap-2);font-family:Arial,sans-serif;font-size:11pt;color:var(--text);background:var(--bg);text-align:justify;resize:vertical;min-height:80px;transition:border-color .15s ease,box-shadow .15s ease}._textarea_1nreo_153:focus{outline:none;border-color:var(--border-strong);box-shadow:0 0 0 2px #3b82f633}._brandingToolbar_1nreo_174{display:flex;flex-wrap:wrap;gap:var(--gap-2);align-items:flex-end}._brandingDropdown_1nreo_181{flex:1;min-width:220px}._presetSelect_1nreo_186{width:100%;border:1px solid var(--border);border-radius:var(--radius);padding:.55rem .65rem;min-height:2.65rem;height:auto;line-height:1.3;font-size:.95rem;background:var(--bg)}._presetPreview_1nreo_198{border:1px solid var(--border);border-radius:var(--radius);padding:var(--gap-2);display:flex;gap:var(--gap-2);background:var(--surface);align-items:center}._presetLogos_1nreo_208{display:flex;gap:.5rem;flex-wrap:wrap}._presetLogos_1nreo_208 img{height:42px;border-radius:4px;background:#fff;padding:.2rem;border:1px solid var(--border)}._presetInfo_1nreo_222{font-size:.9rem;color:var(--muted)}._presetInfo_1nreo_222 strong{display:block;color:var(--text);margin-bottom:.15rem}._errorText_1nreo_233{color:#c53030;font-size:.8rem;margin-top:.25rem}._presetEmpty_1nreo_239{border:1px dashed var(--border-strong);border-radius:var(--radius);padding:var(--gap-3);color:var(--muted);text-align:center;background:#fff}._signatureSection_1nreo_248{margin-top:1.5rem;display:grid;gap:var(--gap-3)}._signaturePreview_1nreo_254{border:1px solid var(--border);border-radius:var(--radius);padding:var(--gap-3);background:var(--surface);display:grid;gap:var(--gap-2);justify-items:center;text-align:center}._signatureImage_1nreo_265{max-width:240px;max-height:140px;object-fit:contain;border-radius:8px;background:#fff;border:1px dashed var(--border-strong);padding:var(--gap-2)}._signatureImagePlaceholder_1nreo_275{width:100%;max-width:240px;min-height:80px;border-radius:8px;border:1px dashed var(--border-strong);display:flex;align-items:center;justify-content:center;color:var(--muted);background:#fff}._signatureName_1nreo_288{font-weight:600;color:var(--text);margin:0}._previewWrapper_1nreo_294{display:grid;gap:var(--gap-2)}._previewPage_1nreo_299{width:100%;max-width:420px;margin:0 auto;background:#fff;border:1px solid #dfe3e8;border-radius:12px;padding:1rem;box-shadow:0 15px 35px #0f172a1f}._previewHeader_1nreo_310{display:flex;justify-content:space-between;align-items:center;gap:1rem;min-height:60px}._previewLogo_1nreo_318{flex:1;display:flex;justify-content:center;align-items:center;border:1px dashed #e5e7eb;border-radius:8px;padding:.35rem;min-height:50px;background:#f8fafc}._previewLogo_1nreo_318 img{max-height:50px;max-width:100%;object-fit:contain}._previewPlaceholder_1nreo_336{font-size:.8rem;color:#9ca3af}._previewBody_1nreo_341{margin:1rem 0;border:1px solid #e4e7eb;border-radius:8px;padding:1.5rem;background:#f5f7fb}._previewContent_1nreo_349{height:140px;border-radius:6px;border:1px dashed #d0d7e1;background:repeating-linear-gradient(0deg,#fff,#fff 18px,#e5e7eb 18px,#e5e7eb 19px)}._previewFooter_1nreo_362{border-top:1px solid #e5e7eb;padding-top:.75rem}._previewFooterText_1nreo_367{margin:0;font-size:.85rem;color:#4b5563;white-space:pre-wrap}._previewLegend_1nreo_374{text-align:center;color:#6b7280;font-size:.85rem}._wrapper_1aeao_1{display:grid;gap:.65rem;--page-width: clamp(200px, 24vw, 300px)}._pagesRow_1aeao_7{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center}._pageContainer_1aeao_14{display:flex;flex-direction:column;gap:.35rem;align-items:center}._pageTitle_1aeao_21{font-size:.85rem;color:#4b5563}._page_1aeao_7{width:var(--page-width);aspect-ratio:210 / 297;background:#fff;border:1px solid #d1d5db;border-radius:10px;padding:.8rem;box-shadow:0 12px 30px #3741512e;display:flex;flex-direction:column;justify-content:space-between}._page_1aeao_7._small_1aeao_39{width:var(--page-width)}._logoRow_1aeao_43{display:flex;justify-content:flex-end;padding-right:1.2rem}._logoBoxLarge_1aeao_49,._logoBoxSmall_1aeao_50{border-radius:8px;background:transparent;display:flex;justify-content:flex-end;align-items:flex-start}._logoBoxLarge_1aeao_49{width:70%;height:40%}._logoBoxSmall_1aeao_50{width:50%;height:26%}._logoBoxLarge_1aeao_49 img,._logoBoxSmall_1aeao_50 img{max-width:100%;max-height:100%;object-fit:contain;margin-left:auto}._pageSpacer_1aeao_76{flex:1}._footerArea_1aeao_80{border-top:1px solid #e5e7eb;padding-top:.35rem;min-height:20px}._footerText_1aeao_86{margin:0;font-size:.35rem;line-height:.45rem;color:#1f2937;white-space:pre-wrap;text-align:left}._placeholder_1aeao_95{font-size:.2rem;color:#9ca3af}._legend_1aeao_100{font-size:.85rem;color:#6b7280;text-align:center}._legend_1aeao_100 strong{color:#1f2937;display:block;margin-bottom:.1rem}._sidebarWrapper_1x0tf_1{position:sticky;top:5rem;align-self:flex-start;height:calc(100vh - 5rem);max-height:calc(100vh - 5rem);background:#fff}._container_1x0tf_10{display:flex;width:100%;flex-grow:1;gap:1.5rem;align-items:flex-start;background:#fff}._main_1x0tf_19{flex:1;position:relative;padding:0 24px;box-sizing:border-box;background:#fff;overflow:visible;min-height:calc(100vh - 5rem)}._lockedOverlay_1x0tf_29{position:absolute;top:0;right:0;bottom:0;left:0;background:#ffffffb8;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);display:flex;align-items:center;justify-content:center;z-index:5;padding:24px;text-align:center}._lockedOverlayCard_1x0tf_42{max-width:720px;width:100%;background:#ffffffeb;border:1px solid rgba(17,24,39,.12);border-radius:14px;padding:22px 22px 18px;box-shadow:0 20px 50px #1118271f,inset 0 0 0 1px #ffffffb3;display:flex;flex-direction:column;gap:14px;align-items:center}._lockedOverlayText_1x0tf_58{font-size:1.18rem;line-height:1.5;color:#111827}._lockedOverlayTitle_1x0tf_64{font-weight:800;font-size:1.25rem;margin-bottom:6px}._lockedOverlaySub_1x0tf_70{font-size:1.05rem;color:#374151}._lockedOverlayLink_1x0tf_75{border:none;background:#0b5ed71a;padding:10px 14px;border-radius:10px;color:#0b5ed7;cursor:pointer;font-size:1rem;font-weight:600}._parkingWarning_1x0tf_86{display:flex;flex-wrap:wrap;align-items:center;gap:12px;border:1px solid #f6a000;background:#fff5e6;border-radius:8px;padding:12px 16px;margin-bottom:16px;color:#8c4a00;font-weight:600;cursor:pointer}@media(max-width:768px){._container_1x0tf_10{flex-direction:column-reverse;gap:1rem}._sidebarWrapper_1x0tf_1,._main_1x0tf_19{width:100%}}._summaryCard_17tr0_1{display:grid;grid-template-columns:1fr;gap:12px;align-items:start;background:#fff;padding:0}._cardTitle_17tr0_11{grid-column:1 / -1;margin-top:0;border-bottom:1px dashed var(--jl-primary-color)}@media(min-width:1000px){._summaryCard_17tr0_1{grid-template-columns:1fr 1fr}}._leftPane_17tr0_23,._rightPane_17tr0_27{display:block}._sectionDivider_17tr0_32{display:none}._resultGrid_17tr0_35{display:grid;grid-auto-rows:minmax(36px,auto);gap:0;border:1px solid #e3e8f2;border-radius:6px;overflow:hidden;background:#fff}._gridRow_17tr0_45{display:grid;grid-template-columns:64px 1fr 40px minmax(120px,auto);align-items:center;padding:6px 10px}._resultGrid_17tr0_35 ._gridRow_17tr0_45:nth-child(odd){background:#fff}._colAction_17tr0_54{display:flex;gap:8px;align-items:center}._formulaRow_17tr0_59 ._colVal_17tr0_57{font-variant-numeric:tabular-nums}._underlineSingle_17tr0_62{border-top:1px solid #1b1f2a14}._underlineDouble_17tr0_63{border-top:3px double #1b1f2a33}._section_17tr0_32>h3,._section_17tr0_32>div>h3{border-bottom:1px dashed var(--jl-primary-color)}._rwwert_17tr0_69>div>div:nth-child(3){background-color:var(--regelnw)!important}._addNwValueContainer_17tr0_73{display:flex;gap:5px;flex-wrap:wrap}._select_17tr0_75{flex:1;min-width:200px;cursor:pointer}._smallerColumn_17tr0_77{margin-top:0!important}._resultsTable_17tr0_80{width:100%;border-collapse:collapse;background:#fff;border-radius:6px;overflow:hidden}._resultsTable_17tr0_80 td{padding:6px 10px;vertical-align:middle}._resultsTable_17tr0_80 tr:nth-child(odd) td{background:#fff}._valueRow_17tr0_84{display:flex;align-items:center;justify-content:space-between;gap:8px;width:100%}._noPadCell_17tr0_92{padding:0!important}._dragCell_17tr0_95{cursor:grab;-webkit-user-select:none;user-select:none;line-height:1}._draggableRow_17tr0_96:active ._dragCell_17tr0_95{cursor:grabbing}._iconBtn_17tr0_98{border:0;background:transparent;cursor:pointer;line-height:1;padding:0}._selectRow_17tr0_107{display:flex;flex-direction:column;justify-content:center;gap:12px}@media(min-width:700px){._selectRow_17tr0_107{grid-template-columns:1fr 1fr}}._field_17tr0_120 label{font-size:.9rem;font-weight:600;margin-bottom:4px;display:block}._colorAbZu_17tr0_127>div>div{background-color:var(--anteilnw)!important}._colorReg_17tr0_134>div>div{background-color:var(--regelnw)!important}._sectionDivider_17tr0_32{border:0;border-top:1px solid #e3e8f2;margin:12px 0 6px}._borderRadiusGroup_17tr0_71{border-radius:5px}._eqRow_17tr0_151{border-top:1px solid #e6ebf5}._eqStrong_17tr0_152{border-top:3px double #cfd6e6}._colOp_17tr0_56{text-align:center;font-weight:600;width:40px}._colVal_17tr0_57{text-align:right;font-variant-numeric:tabular-nums}._zubehnw_1uqhj_9>div>div:nth-child(3){background-color:var(--zubehnw)!important}._sidebar_1fen3_1{width:280px;margin-inline:auto;background:#f5f5f5;padding:16px;height:100%;max-height:100%;overflow-y:auto;scrollbar-gutter:stable;border-radius:8px}._objectList_1fen3_13{list-style:none}._objectItem_1fen3_17{padding:8px;background-color:#b8b8b833;border-radius:4px;cursor:pointer;margin-bottom:5px}._activeObjectHeader_1fen3_25{background-color:#a2c6ff8f}._objectTitle_1fen3_29{display:flex;flex-direction:column}._objectTitleRow_1fen3_34{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap}._navList_1fen3_42{list-style:none;padding:0;margin-top:.5rem}._navItem_1fen3_48{display:flex;align-items:center;padding:6px;border-radius:4px;cursor:pointer;margin-bottom:4px;background-color:#fff;font-size:.9rem}._navItem_1fen3_48:hover{background:#f1f1f1}._activeNavItem_1fen3_63{background:#36c!important;color:#fff}._badge_1rms0_1{display:inline-flex;align-items:center;gap:6px;padding:2px 10px;border-radius:999px;border:1px solid #f6a000;background:#fff5e6;color:#8c4a00;font-size:.78rem;font-weight:600;white-space:nowrap;line-height:1.2;transition:transform .15s ease}._badge_1rms0_1 svg{width:.9rem;height:.9rem}._interactive_1rms0_22{cursor:pointer}._interactive_1rms0_22:focus-visible{outline:2px solid #f6a000;outline-offset:2px}._interactive_1rms0_22:hover{transform:translateY(-1px)}._tooltip_1rms0_35{background:#1e1e1ef2;color:#fff;border-radius:6px;box-shadow:0 6px 18px #00000047}._tooltip_1rms0_35 .tooltip-inner{background:transparent;color:inherit;padding:8px 12px}._tooltip_1rms0_35 .tooltip-arrow{display:none}._grid_1l997_1{display:grid;grid-template-columns:1fr;gap:16px;padding:16px;width:100%;max-width:1200px;margin:0 auto}@media(max-width:800px){._grid_1l997_1{grid-template-columns:1fr}}._panel_1l997_16{--panel-accent: var(--jl-primary-color);--panel-bg: transparent;border:1px solid #d5dbe3;border-radius:6px;display:flex;flex-direction:column;background:#f7f7f7}._header_1l997_26{background:var(--panel-accent);border-bottom:1px solid #d5dbe3;padding:10px 14px;font-weight:600;font-size:.95rem;color:#1f2937}._headerRow_1l997_35{display:flex;align-items:center;justify-content:space-between;gap:12px}._headerTitle_1l997_42{font-weight:600}._headerButton_1l997_46{display:inline-flex;align-items:center;gap:6px;font-size:.85rem;color:#fff!important}._body_1l997_54{padding:12px 14px 16px}._smallerColumn_1l997_57{margin-top:0!important}._smallerColumn_1l997_57 table{table-layout:fixed;width:100%}._smallerColumn_1l997_57 th,._smallerColumn_1l997_57 td{overflow:hidden;text-overflow:ellipsis}._smallerColumn_1l997_57 th:nth-child(1),._smallerColumn_1l997_57 td:nth-child(1){width:36px;padding:0 8px;text-align:center;white-space:nowrap}._smallerColumn_1l997_57 th:nth-child(2),._smallerColumn_1l997_57 td:nth-child(2){width:60%}._smallerColumn_1l997_57 th:nth-child(3),._smallerColumn_1l997_57 td:nth-child(3){width:30%}._smallerColumn_1l997_57 th:nth-child(4),._smallerColumn_1l997_57 td:nth-child(4){width:80px;text-align:right;white-space:nowrap}._hasSwitch_1l997_74._smallerColumn_1l997_57 th:nth-child(3),._hasSwitch_1l997_74._smallerColumn_1l997_57 td:nth-child(3){width:22%}._hasSwitch_1l997_74._smallerColumn_1l997_57 th:nth-child(4),._hasSwitch_1l997_74._smallerColumn_1l997_57 td:nth-child(4){width:120px;text-align:center;white-space:nowrap}._hasSwitch_1l997_74._smallerColumn_1l997_57 th:nth-child(5),._hasSwitch_1l997_74._smallerColumn_1l997_57 td:nth-child(5){width:80px;text-align:right;white-space:nowrap}._valueInputWrap_1l997_82{display:flex;align-items:center;gap:6px;width:100%;min-width:0}._percentLabel_1l997_85{flex:0 0 auto}._textInput_1l997_87,._numberInput_1l997_87{width:100%;min-width:0;box-sizing:border-box}._numberInput_1l997_87{flex:1 1 auto}._deleteBtn_1l997_89{flex:0 0 auto;white-space:nowrap}._addBlankBtn_1l997_91{display:flex;justify-content:center;margin-top:12px}._nameWithIcon_1l997_97{display:flex;align-items:center;gap:4px}._switchWrap_1l997_103{display:flex;align-items:center;justify-content:center;gap:6px}._switchLabel_1l997_110{font-size:.8rem;color:#4b5563}._switch_1l997_103{position:relative;display:inline-block;width:42px;height:24px}._switch_1l997_103 input{opacity:0;width:0;height:0}._slider_1l997_128{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#d1d5db;transition:.2s;border-radius:34px}._slider_1l997_128:before{position:absolute;content:"";height:20px;width:20px;left:2px;bottom:2px;background-color:#fff;transition:.2s;border-radius:50%;box-shadow:0 1px 3px #00000040}._switch_1l997_103 input:checked+._slider_1l997_128{background-color:#4ade80}._switch_1l997_103 input:checked+._slider_1l997_128:before{transform:translate(18px)}._modalOverlay_1l997_161{position:fixed;top:0;right:0;bottom:0;left:0;background:#1118278c;display:flex;align-items:center;justify-content:center;padding:16px;z-index:1200}._modalCard_1l997_172{background:#fff;border-radius:12px;width:100%;max-width:720px;max-height:90vh;display:flex;flex-direction:column;box-shadow:0 24px 60px #0f172a40;overflow:hidden}._modalHeader_1l997_184{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;padding:16px 18px;border-bottom:1px solid #e5e7eb}._modalTitleRow_1l997_193{display:flex;align-items:center;gap:8px;color:#111827}._modalTitle_1l997_193{font-size:1rem;font-weight:700;color:#111827}._modalSubtitle_1l997_206{font-size:.85rem;color:#6b7280;margin-top:4px}._modalClose_1l997_212{border:none;background:transparent;color:#4b5563;padding:4px;cursor:pointer}._modalBody_1l997_220{padding:12px 18px 16px;overflow:auto}._searchLabel_1l997_225{font-size:.85rem;font-weight:600;color:#374151}._searchRow_1l997_231{display:flex;gap:8px;margin-top:6px}._searchInput_1l997_237{width:100%;border:1px solid #d1d5db;border-radius:8px;padding:8px 12px;font-size:.95rem}._infoBox_1l997_245{margin-top:10px;padding:10px 12px;border-radius:8px;background:#eef2ff;color:#3730a3;font-size:.85rem;line-height:1.4}._resultsStatus_1l997_255{margin-top:10px;font-size:.85rem;color:#6b7280;min-height:20px}._resultsStatusError_1l997_262{color:#b91c1c}._resultsList_1l997_266{display:flex;flex-direction:column;gap:8px;margin-top:12px;min-height:240px}._resultItem_1l997_274{display:flex;gap:8px;align-items:stretch;padding:8px 10px;border-radius:8px;border:1px solid #e5e7eb;background:#f9fafb;cursor:pointer}._resultItem_1l997_274 input{margin-top:4px}._resultItemActive_1l997_289{border-color:#2563eb;background:#eff6ff}._resultContent_1l997_294{display:flex;flex-direction:column;gap:6px;width:100%}._resultTitleRow_1l997_301{display:flex;align-items:baseline;justify-content:space-between;gap:10px}._resultTitleActions_1l997_308{display:inline-flex;align-items:center;gap:6px}._resultTitle_1l997_301{font-size:.9rem;font-weight:600;color:#111827}._resultValue_1l997_320{font-size:.85rem;font-weight:600;color:#1f2937;white-space:nowrap}._expandToggle_1l997_327{border:none;background:transparent;padding:2px;display:inline-flex;align-items:center;justify-content:center;color:#4b5563;cursor:pointer}._expandToggle_1l997_327:hover{color:#111827}._resultDetails_1l997_342{display:block}._resultMetaGrid_1l997_346{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:6px 12px}._resultMetaItem_1l997_352{display:flex;flex-direction:column;gap:2px}._resultMetaLabel_1l997_358{font-size:.7rem;text-transform:uppercase;letter-spacing:.04em;color:#6b7280}._resultMetaValue_1l997_365{font-size:.82rem;color:#111827;word-break:break-word}._resultEmpty_1l997_371{padding:16px;border:1px dashed #d1d5db;border-radius:8px;color:#6b7280;font-size:.85rem;text-align:center}._resultSkeleton_1l997_380{position:relative;overflow:hidden}._skeletonCheck_1l997_385{width:16px;height:16px;border-radius:4px;background:#e5e7eb;margin-top:4px;flex:0 0 auto}._skeletonLine_1l997_394,._skeletonValue_1l997_395,._skeletonLineSmall_1l997_396{height:10px;border-radius:999px;background:#e5e7eb;position:relative;overflow:hidden}._skeletonLine_1l997_394{width:60%}._skeletonValue_1l997_395{width:80px;height:12px}._skeletonLineSmall_1l997_396{width:100%;height:8px}._skeletonLine_1l997_394:after,._skeletonValue_1l997_395:after,._skeletonLineSmall_1l997_396:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;transform:translate(-100%);background:linear-gradient(90deg,transparent,rgba(255,255,255,.6),transparent);animation:_shimmer_1l997_1 1.4s infinite}@keyframes _shimmer_1l997_1{to{transform:translate(100%)}}._modalFooter_1l997_435{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 18px;border-top:1px solid #e5e7eb;flex-wrap:wrap}._selectedCount_1l997_445{font-size:.9rem;color:#374151}._modalActions_1l997_450{display:flex;gap:8px;align-items:center;flex-wrap:wrap}@media(max-width:640px){._headerRow_1l997_35{flex-direction:column;align-items:flex-start}._modalCard_1l997_172{max-height:95vh}._modalBody_1l997_220{padding:12px 14px 14px}._resultTitleRow_1l997_301{flex-direction:column;align-items:flex-start}._resultMetaGrid_1l997_346{grid-template-columns:1fr}}._projectDetailsTabs_1rznk_1{padding:1rem;background-color:#fff;width:100%}._objectBlocked_1rznk_7{pointer-events:none;opacity:.45;filter:grayscale(.15)}#jbPanel-6{justify-content:center}#jbPanel-2{padding-right:0!important;margin-right:0!important;width:100%!important;flex:1 1 auto}#jbPanel-2>div:first-child{width:100%!important}#jbPanel-3,#jbPanel-4{background:#fff!important;align-items:flex-start;width:100%;min-height:calc(100vh - 180px)}._wrapper_yn380_1{display:flex;flex-direction:column;gap:16px;width:100%}._wrapper_yn380_1>div:first-child{width:100%}._tableWrap_yn380_12,._tableWrap_yn380_12 .jb-table{width:100%}._header_yn380_20{display:flex;flex-direction:column;gap:8px}._typeDesc_yn380_26 input{font-size:.9rem!important}._quickBewert_yn380_30{background-color:#d3d8ff;color:#000;white-space:nowrap}._confirmBtn_yn380_36{color:var(--jl-primary-color);outline:1px solid var(--jl-primary-color);background-color:#fff}._card_yn380_42{border-radius:6px;padding:0;box-shadow:0 1px 2px #0000000a;width:100%}._topActionRow_yn380_49{display:flex;justify-content:flex-start;width:100%;margin-bottom:10px}._addButtonRow_yn380_56{display:flex;justify-content:center;width:100%;margin-top:2rem;padding-bottom:1.5rem}._stepper_yn380_64{list-style:none;display:flex;gap:8px;padding:0;margin:0}._step_yn380_64{display:flex}._stepBtn_yn380_76{display:flex;gap:6px;align-items:center;background:#f5f5f5;border:1px solid #ddd;border-radius:4px;padding:8px 10px;cursor:pointer;font-size:14px}._rowWrap_yn380_88{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:12px;align-items:start}._rowWrapDialog_yn380_95{grid-template-columns:1fr}._viewerWrapper_yn380_99{width:100%;max-height:80vh;position:sticky;top:7rem;display:flex;justify-content:center;padding-left:8px;padding-right:8px}._viewerWrapper_yn380_99 svg{max-width:220px}._viewerWrapperDialog_yn380_114{position:static;max-height:none;justify-content:center}@media(max-width:768px){._viewerWrapper_yn380_99{display:none}._rowWrap_yn380_88{grid-template-columns:1fr}}@media(max-width:900px){._hideColumnsOnMobile_yn380_132 td:nth-child(4),._hideColumnsOnMobile_yn380_132 th:nth-child(4),._hideColumnsOnMobile_yn380_132 td:nth-child(5),._hideColumnsOnMobile_yn380_132 th:nth-child(5),._hideColumnsOnMobile_yn380_132 td:nth-child(7),._hideColumnsOnMobile_yn380_132 th:nth-child(7),._hideColumnsOnMobile_yn380_132 td:nth-child(8),._hideColumnsOnMobile_yn380_132 th:nth-child(8),._hideColumnsCompact_yn380_140 td:nth-child(6),._hideColumnsCompact_yn380_140 th:nth-child(6){display:none}}._stepIndex_yn380_147{width:22px;height:22px;display:inline-grid;place-items:center;border-radius:50%;background:#ddd;font-size:12px}._done_yn380_157 ._stepBtn_yn380_76{background:#e8f5e9}._active_yn380_161 ._stepBtn_yn380_76{outline:2px solid #111}._colStack_yn380_165{display:grid;gap:12px}._metaGrid_yn380_170{display:grid;gap:12px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));margin-bottom:10px}._metaCard_yn380_177{border:1px dashed #e2e4ea;border-radius:6px;padding:10px 12px;background:#fafbff}._fieldHint_yn380_184{margin-top:6px;font-size:.82rem;color:#5b5b66;line-height:1.3}._floorPills_yn380_191{display:flex;flex-wrap:wrap;gap:6px}._floorPill_yn380_191{background:#eef2ff;color:#233a8f;border-radius:999px;padding:3px 8px;font-size:.78rem;font-weight:600}._floorPillSelect_yn380_206{border:1px solid transparent;cursor:pointer}._floorPillSelected_yn380_211{background:#233a8f;color:#fff}._floorPillsManage_yn380_216{margin-top:8px}._floorPillRemove_yn380_220{margin-left:6px;border:0;background:transparent;color:inherit;font-weight:700;cursor:pointer;padding:0;line-height:1}._floorEmpty_yn380_231{font-size:.85rem;color:#777}._fieldLabel_yn380_236{font-size:.85rem;font-weight:600;color:#4a4a4a;margin-bottom:4px;display:block}._duplicateDialog_yn380_244{display:grid;grid-template-columns:1.15fr .85fr;gap:14px;align-items:start}._dialogIntro_yn380_251{display:flex;flex-direction:column;gap:6px;color:#3d3d3d}._infoHint_yn380_258{display:flex;align-items:center;gap:8px;color:#4a4a4a;font-size:.92rem}._infoBubble_yn380_266{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;background:#eef2ff;color:#304ffe}._numberRow_yn380_277{display:grid;gap:10px;grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}._previewBox_yn380_283{border:1px dashed #d8d8d8;border-radius:6px;padding:12px;background:#fafafa;min-width:0}._previewHeader_yn380_291{font-weight:600;margin-bottom:4px}._previewList_yn380_296{margin:6px 0 6px 16px;padding:0;line-height:1.4}._previewHint_yn380_302{color:#555;font-size:.92rem;margin-top:4px}._errorText_yn380_308{color:#b3261e;font-size:.92rem}._infoExample_yn380_313{background:#f7f7fb;border:1px solid #e5e5f0;border-radius:6px;padding:10px 12px;line-height:1.4}._infoExample_yn380_313 ul{margin:8px 0 0 18px;padding:0}._infoNote_yn380_326{color:#4a4a4a;font-size:.95rem}._actionWithInfo_yn380_331{display:inline-flex;align-items:center;gap:6px;flex-wrap:wrap}._helpIcon_yn380_338{border:1px solid #e5e7eb;background:#f7f8ff;border-radius:50%;width:26px;height:26px;display:inline-flex;align-items:center;justify-content:center;color:#3f3f46;cursor:pointer;padding:0}._helpIcon_yn380_338:hover{background:#eef2ff;color:#1d2ea4}._noticeBox_yn380_357{display:flex;gap:8px;align-items:flex-start;font-size:.9rem;padding:10px 12px;border-radius:6px;margin-bottom:10px}._noticeWarning_yn380_367{background:#fff8e5;border:1px solid #f6a000;color:#6b3a00}._noticeError_yn380_373{background:#fde7e7;border:1px solid #f87171;color:#7f1d1d}._floorCell_yn380_379{display:flex;flex-direction:column;gap:4px}._floorCellMissing_yn380_385{border:1px solid #f6a000;background:#fffdf4;padding:6px;border-radius:6px}._missingFloorSelect_yn380_392{border:1px solid #f6a000;background:#fffdf4}._floorCellHint_yn380_397{display:inline-flex;align-items:center;gap:6px;font-size:.85rem;color:#a16207}._switch_yn380_405{display:inline-flex;align-items:center;cursor:pointer}._switchInput_yn380_411{position:absolute;opacity:0;width:0;height:0}._switchTrack_yn380_418{width:40px;height:22px;background:#d1d5db;border-radius:999px;position:relative;transition:background .2s ease;box-shadow:inset 0 0 0 1px #00000014}._switchTrack_yn380_418:after{content:"";position:absolute;top:2px;left:2px;width:18px;height:18px;background:#fff;border-radius:999px;transition:transform .2s ease;box-shadow:0 1px 2px #00000040}._switchInput_yn380_411:checked+._switchTrack_yn380_418{background:var(--jl-primary-color)}._switchInput_yn380_411:checked+._switchTrack_yn380_418:after{transform:translate(18px)}._switchInput_yn380_411:focus-visible+._switchTrack_yn380_418{outline:2px solid #111;outline-offset:2px}@media(max-width:900px){._duplicateDialog_yn380_244{grid-template-columns:1fr}}._contingentPanel_yn380_460{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:8px;padding:8px 10px;border-radius:6px;background:#f6f7fb;margin-bottom:10px}._contingentLabel_yn380_470{font-size:.8rem;color:#555}._contingentValue_yn380_475{font-weight:600;margin-top:1px;font-size:.92rem}._contingentSubline_yn380_481{color:#666;font-size:.78rem;margin-top:1px}._contingentRight_yn380_487{display:flex;align-items:center;justify-content:flex-end}._contingentHint_yn380_493{color:#666;font-size:.8rem}._pendingAddCell_yn380_498{background:#e7f8ec;border-radius:6px;box-shadow:inset 0 0 0 1px #b7e5c4}._focusRow_yn380_504 td{background:#fff8e5!important;box-shadow:inset 0 0 0 1px #f6a000}@keyframes _focusPulse_yn380_1{0%{filter:brightness(1)}50%{filter:brightness(.98)}to{filter:brightness(1)}}._focusRow_yn380_504 td{animation:_focusPulse_yn380_1 1.2s ease-in-out 0s 3}._countsBadge_yn380_519,._ignoredBadge_yn380_520{display:inline-flex;align-items:center;justify-content:center;min-width:62px;padding:2px 6px;border-radius:999px;font-size:.7rem;font-weight:600}._countsBadge_yn380_519{background:#e8f6ec;color:#1f6b35;border:1px solid #b8debf}._ignoredBadge_yn380_520{background:#f4f5f6;color:#555;border:1px solid #d8dde3}._pendingDeleteBox_yn380_543{margin-top:10px;border:1px solid #efc8c8;background:#fff7f7;border-radius:6px;padding:10px 12px}._pendingDeleteTitle_yn380_551{color:#7d2f26;font-size:.85rem;margin-bottom:6px;font-weight:600}._pendingDeleteList_yn380_558{display:flex;flex-wrap:wrap;gap:6px 8px}._pendingDeleteItem_yn380_564{color:#8a3a31;text-decoration:line-through;font-size:.85rem}._pendingChangeItem_yn380_570{color:#8a3a31;font-size:.85rem;font-weight:600}._contingentError_yn380_576{color:#b3261e;font-size:.8rem}._contingentDialog_yn380_581{display:grid;gap:12px}._contingentGrid_yn380_586{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px}._contingentWarning_yn380_592{background:#fff3cd;border:1px solid #ffe59a;padding:10px 12px;border-radius:6px;color:#7a5a00}._contingentLink_yn380_600{border:none;background:transparent;padding:0;color:inherit;font-weight:600;text-decoration:underline;cursor:pointer;font:inherit}._tierMiniTable_yn380_611{display:grid;gap:6px;border-top:1px solid #eee;padding-top:8px}._tierMiniRow_yn380_618{display:grid;grid-template-columns:1fr auto auto;gap:8px;font-size:.9rem}@media(max-width:700px){._contingentRight_yn380_487{justify-content:flex-start}}._grid_uag2x_1{display:grid;gap:16px;grid-template-columns:repeat(auto-fill,minmax(400px,1fr));align-items:end}._gridCompact_uag2x_8{grid-template-columns:1fr;justify-items:center}._card_uag2x_13{border:1px solid #e0e0e0;border-radius:12px;padding:12px;background:#fff;display:flex;flex-direction:column}._header_uag2x_22{display:flex;justify-content:space-between;margin-bottom:8px;font-size:14px}._floorLabel_uag2x_29{font-size:12px;fill:#263238;dominant-baseline:middle;font-weight:500}._sidebarWrapper_1echf_1{position:sticky;top:1rem;align-self:flex-start;height:calc(100vh - 1rem);max-height:calc(100vh - 1rem);background:#fff}._container_1echf_10{display:flex;width:100%;flex-grow:1;gap:1.5rem;align-items:flex-start;background:#fff}._main_1echf_19{flex:1;padding:0 24px;background:#fff;overflow:visible}@media(max-width:768px){._container_1echf_10{flex-direction:column-reverse}._sidebarWrapper_1echf_1,._main_1echf_19{width:100%}}._sharesArea_1echf_40{margin-block:1rem;padding:8px 1rem;border:1px solid lightgray;border-radius:5px;background:#fff}._areaDefTab_1echf_48 .activeObjectHeader{background-color:#a2c6ff8f}._addEntryButton_1yxkn_2{width:100%;display:flex;justify-content:center;margin-top:1rem}._actionColumn_1yxkn_9{display:flex;justify-content:flex-end;gap:.25rem;height:50px}._actionColumn_1yxkn_9>button{width:30px;height:auto}._calculatedFromSubareas_1yxkn_21{font-style:italic;color:#888;font-size:.9em}._dialogBackdrop_4hr46_1{position:fixed;top:0;left:0;width:100%;height:100%;background:#00000073;display:flex;align-items:center;justify-content:center;z-index:1000}._dialog_4hr46_1{background:#fff;border-radius:8px;padding:1.5rem;min-width:480px;width:min(920px,calc(100vw - 3rem));max-width:100%;max-height:80vh;overflow-y:auto;box-shadow:0 4px 20px #00000040;display:flex;flex-direction:column;gap:1rem}._dialog_4hr46_1 h4{margin:0 0 .5rem;font-size:1.2rem;font-weight:600}._additionalAreaRow_4hr46_35{display:flex;align-items:center;gap:.5rem}._additionalAreaRow_4hr46_35 input{flex:1}._dialogActions_4hr46_45{display:flex;justify-content:flex-end;gap:.75rem;margin-top:1rem}._dialogActions_4hr46_45 button{min-width:100px}._additionalAreasTable_4hr46_56{width:100%}._additionalAreasTable_4hr46_56 table{width:100%;table-layout:auto}._additionalAreasTable_4hr46_56 th:nth-child(4),._additionalAreasTable_4hr46_56 td:nth-child(4){min-width:180px}._additionalAreasTable_4hr46_56 th,._additionalAreasTable_4hr46_56 td{padding-left:.75rem;padding-right:.75rem}._additionalAreasTable_4hr46_56 input,._additionalAreasTable_4hr46_56 select{width:100%}._additionalAreasTable_4hr46_56 tbody tr td:last-child{width:56px;text-align:right}._totalRow_4hr46_86{display:flex;justify-content:flex-end;align-items:center;gap:.5rem;margin-top:1rem;font-weight:600}._subareasColumn_4hr46_95{text-align:center;width:140px}._subareasCell_4hr46_100{display:flex;justify-content:center}._subareasBadge_4hr46_105{background:#007bff;color:#fff;border-radius:10px;padding:0 6px;font-size:.75rem;margin-left:6px;line-height:1.2}@media(max-width:640px){._dialog_4hr46_1{min-width:auto;width:calc(100vw - 2rem);padding:1.25rem}}:root{--font: "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;--bg: #ffffff;--accent: #5a5a5a;--accent-tint: #ededed;--accent-tint-strong: #dcdcdc;--border: #c8c8c8;--text: #000000;--text-muted: #595959;--radius: 0;--pad-y: 8px;--pad-x: 12px;--shadow: 0 4px 16px rgba(0,0,0,.08);--summary-col-name: 30%;--summary-col-location: 14%;--summary-col-measure: 22%}._layout_15ixz_20{max-width:900px;width:100%}._toolbar_15ixz_25{display:flex;justify-content:flex-end;gap:.5rem;margin-bottom:.75rem}._wrapper_15ixz_32{border:1px solid var(--border);border-radius:0;background:var(--bg);overflow:hidden;max-width:900px;width:100%}._content_15ixz_41{padding:20px;font-size:14px;line-height:1.5;color:var(--text);max-width:100%;display:block}._padless_15ixz_49{padding:0}._content_15ixz_41 h3{margin:0 0 12px;font-size:18px;font-weight:700;color:#000}._objectSection_15ixz_58{padding-top:24px;margin-bottom:32px}._objectSection_15ixz_58:first-of-type{padding-top:0}._objectCalculationSection_15ixz_67,._objectCalculationSection_15ixz_67 ._objectHeadline_15ixz_68{background:#fff}._objectHeadline_15ixz_68{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin:0 0 12px;font-size:18px;font-weight:700;color:#000}._snapshotRoot_15ixz_84 ._objectSection_15ixz_58{padding-top:24px}._snapshotRoot_15ixz_84 ._objectSection_15ixz_58:first-of-type{padding-top:24px}._snapshotRoot_15ixz_84,._snapshotRoot_15ixz_84 [data-export-tab],._snapshotRoot_15ixz_84 ._objectCalculationSection_15ixz_67{background-color:#fff}._tabBar_15ixz_101{display:flex;align-items:center;gap:.25rem;padding:.5rem .5rem 0;background:#f8fafc;border-bottom:1px solid var(--border);flex-wrap:wrap}._exportButton_15ixz_111{flex:0 0 auto}._exportActions_15ixz_115{display:inline-flex;align-items:stretch;overflow:hidden;border-radius:.45rem;box-shadow:0 1px 2px #0f172a29}._exportActions_15ixz_115 ._exportButton_15ixz_111,._exportActions_15ixz_115 ._exportStopButton_15ixz_124,._exportActions_15ixz_115 ._exportDownloadButton_15ixz_125{border-radius:0}._exportActions_15ixz_115 ._exportButton_15ixz_111{box-shadow:none}._exportStopButton_15ixz_124{--jb-button-bg: #b42318;--jb-button-disabled-bg: #d58a84;min-width:6.7rem;border-left:1px solid rgba(255,255,255,.38)!important;box-shadow:none}._exportDownloadButton_15ixz_125{border-left:1px solid rgba(255,255,255,.38)!important;box-shadow:none}._exportStopButton_15ixz_124:not([disabled]):hover{filter:brightness(1.12)!important}._exportHint_15ixz_151{padding:0 12px 10px;font-size:.85rem;color:#6b7280}._exportInfoBtn_15ixz_157{border:1px solid var(--border);background:#fff;color:#4b5563;border-radius:50%;width:30px;height:30px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;padding:0}._exportInfoBtn_15ixz_157:hover{background:var(--accent-tint)}._tab_15ixz_101{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:1px solid transparent;border-bottom:none;background:transparent;padding:.5rem .9rem;font-size:.95rem;font-weight:600;color:#475569;cursor:pointer;border-top-left-radius:.5rem;border-top-right-radius:.5rem;transition:background .2s ease,color .2s ease,border-color .2s ease}._tab_15ixz_101:hover{background:#e3e6ec;color:#475569}._active_15ixz_195{background:var(--jl-primary-color);color:#fff;font-weight:600;border-color:#e5e7eb;box-shadow:0 -1px #e5e7eb inset}._copyBtn_15ixz_203{margin-left:auto;padding:8px 12px;border:1px solid var(--border);border-radius:0;background:var(--accent);font-size:13px;color:#fff;cursor:pointer}._copyBtn_15ixz_203:hover{background:var(--accent);opacity:.9}._tableCard_15ixz_216{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:var(--bg)}._table_15ixz_216{width:100%;border-collapse:collapse;table-layout:auto;font-size:14px}._summaryAlignedTable_15ixz_230{table-layout:fixed}._summaryNameCol_15ixz_234{width:var(--summary-col-name)}._summaryLocationCol_15ixz_238{width:var(--summary-col-location)}._summaryMeasureCol_15ixz_242{width:var(--summary-col-measure)}._appraisalValueTable_15ixz_246 ._appraisalBewertungCol_15ixz_246{width:auto}._appraisalValueTable_15ixz_246 ._appraisalNutzwertCol_15ixz_250{width:16%}._objectCalculationTable_15ixz_254 ._objectCalcAreaCol_15ixz_254{width:10%}._objectCalculationTable_15ixz_254 ._objectCalcNutzwertCol_15ixz_258{width:auto}._objectCalculationTable_15ixz_254 ._objectCalcEinzelnutzwertCol_15ixz_262,._objectCalculationTable_15ixz_254 ._objectCalcGesamtnutzwertCol_15ixz_266{width:12%}._objectSumTable_15ixz_270{table-layout:fixed}._objectSumTable_15ixz_270 ._th_15ixz_274{white-space:nowrap}._objectSumTable_15ixz_270 th:not(:first-child),._objectSumTable_15ixz_270 td:not(:first-child){white-space:nowrap;text-align:right}._objectSumTable_15ixz_270 ._objectSumNameCol_15ixz_284{width:calc(var(--summary-col-name) + var(--summary-col-location))}._objectSumTable_15ixz_270 ._objectSumAreaCol_15ixz_288,._objectSumTable_15ixz_270 ._objectSumAnteileCol_15ixz_292,._objectSumTable_15ixz_270 ._objectSumAnteile2Col_15ixz_293,._objectSumTable_15ixz_270 ._objectSumPercentCol_15ixz_297{width:16%}._theadRow_15ixz_301{background:var(--accent-tint)}._th_15ixz_274,._td_15ixz_302{padding:var(--pad-y) var(--pad-x) var(--pad-y) 12px;vertical-align:top;border-bottom:1px solid var(--border)}._table_15ixz_216 tr:has(.cuthere)>td{height:0;padding:0;border:0}._th_15ixz_274{text-align:left;font-weight:600;color:var(--text)}._th_15ixz_274{white-space:nowrap}._thRight_15ixz_318,._tdRight_15ixz_319{text-align:right}._sectionRow_15ixz_321>td,._sectionRow_15ixz_321>th{padding:var(--pad-y) var(--pad-x);font-weight:700;background:var(--accent-tint);border-top:1px solid var(--border);border-bottom:1px solid var(--border);color:var(--text)}._sumRow_15ixz_331>td{font-weight:700}._totalRow_15ixz_333{font-weight:700;background:var(--accent-tint);border-top:1px solid var(--border);color:var(--text)}._striped_15ixz_340 tbody tr:nth-child(odd){background:var(--accent-tint)}._tableWrapper_15ixz_343{width:100%;margin-bottom:2rem;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:var(--bg)}._gridRow_15ixz_351{display:grid;grid-template-columns:var(--summary-col-name) var(--summary-col-location) var(--summary-col-measure) 17% 17%;font-size:14px;background:var(--bg);border-bottom:1px solid var(--border)}._gridRow_15ixz_351>div{padding:6px var(--pad-x)}._headerRow_15ixz_365{background:var(--accent-tint);font-weight:600;color:var(--text)}._headerRow_15ixz_365>div{white-space:nowrap}._sectionRow_15ixz_321{background:var(--accent-tint);font-weight:600;color:var(--text)}._sumRow_15ixz_331{font-weight:700;background:var(--accent-tint-strong);color:var(--text)}._objectCalcTotalRow_15ixz_387{background:transparent}._fullRow_15ixz_391{grid-column:1 / -1}._right_15ixz_392{text-align:right}._recapRow_15ixz_395{display:flex;gap:12px;padding:8px;border:1px solid var(--border);border-radius:0;margin-top:0;background:var(--bg)}._recapLeft_15ixz_405{flex:0 0 calc(var(--summary-col-name) + var(--summary-col-location));font-weight:700}._recapRight_15ixz_409{flex:1;display:flex;flex-direction:column;gap:4px;align-items:flex-start;padding-left:0!important;padding-right:0!important}._recapLine_15ixz_418{display:flex;justify-content:space-between;width:100%;gap:12px}._objectCellRow_15ixz_424{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap}._objectFloorRow_15ixz_431{margin-top:4px;display:flex;gap:4px;flex-wrap:wrap;font-size:13px;color:var(--text-muted)}._objectFloorLabel_15ixz_439{font-weight:600;color:var(--text)}._innerLabel_15ixz_443,._innerValue_15ixz_443{white-space:nowrap}._innerTotal_15ixz_444{font-weight:700}._muted_15ixz_447{color:var(--text-muted)}._nowrap_15ixz_448{white-space:nowrap}._bold_15ixz_449{font-weight:700}._normalWeight_15ixz_450{font-weight:400}._subRow_15ixz_452{font-size:.9em;opacity:.9}._subName_15ixz_457{padding-left:2rem!important}._progressContainer_15ixz_465{width:100%;padding:.8rem 1rem .9rem;background:linear-gradient(135deg,#f8fbff,#f1f6fc);border-bottom:1px solid #d8e2ee;color:#1e293b}._progressMeta_15ixz_473{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:.55rem;font-size:.82rem}._progressStatus_15ixz_482{display:inline-flex;align-items:center;min-width:0;gap:.48rem;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._progressDot_15ixz_493{width:.5rem;height:.5rem;flex:0 0 auto;border-radius:50%;background:#2f81c5;box-shadow:0 0 #2f81c566;animation:_progressPulse_15ixz_1 1.7s ease-out infinite}._progressPercent_15ixz_503{color:#285f92;font-variant-numeric:tabular-nums}._progressTrack_15ixz_508{height:.5rem;overflow:hidden;border-radius:999px;background:#d9e5f1;box-shadow:inset 0 1px 2px #0f172a1f}._progressFill_15ixz_516{height:100%;border-radius:inherit;background:linear-gradient(90deg,#1669a8,#2f81c5 48%,#5aa9e6);box-shadow:0 1px 3px #1565a842;transition:width .28s cubic-bezier(.2,.8,.2,1)}._progressUploading_15ixz_524{background-size:180% 100%;animation:_progressShimmer_15ixz_1 2.2s linear infinite}@keyframes _progressShimmer_15ixz_1{0%{background-position:180% 0}to{background-position:-40% 0}}@keyframes _progressPulse_15ixz_1{0%{box-shadow:0 0 #2f81c56b}70%{box-shadow:0 0 0 .42rem #2f81c500}to{box-shadow:0 0 #2f81c500}}._exportButtonContent_15ixz_544{display:inline-flex;align-items:center;gap:8px}._exportCachedIcon_15ixz_550{display:inline-flex;align-items:center;color:#fff}._exportSpinner_15ixz_556{width:14px;height:14px;border-radius:50%;border:2px solid rgba(255,255,255,.7);border-top-color:#2b579ae6;animation:_exportSpin_15ixz_556 .8s linear infinite}@keyframes _exportSpin_15ixz_556{0%{transform:rotate(0)}to{transform:rotate(360deg)}}._subSumRow_15ixz_572{font-size:.9em}._subSumLabel_15ixz_576{text-align:left;opacity:.9}._subBlock_15ixz_580{display:flex;flex-direction:column;gap:2px}._subRow_15ixz_452{display:grid;grid-template-columns:1fr auto;align-items:baseline}._subLabel_15ixz_592{text-align:left;color:var(--text-muted)}._subValue_15ixz_570{text-align:right}._subRow_15ixz_452._bold_15ixz_449 ._subLabel_15ixz_592{color:var(--text);font-weight:700}._subRow_15ixz_452._bold_15ixz_449 ._subValue_15ixz_570{font-weight:700}._pdfColumn_1hvep_3{flex:0 0 50%;max-width:800px;display:flex;flex-direction:column;gap:1rem}._sectionLabel_1hvep_11{font-size:1.08rem;font-weight:700;margin-bottom:.5rem;color:#000;letter-spacing:.01em}._container_1hvep_19{min-height:100vh;background:linear-gradient(180deg,#eef3f8,#f8fafc 28%,#eef2f7);padding:2rem;width:100%;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;display:flex;gap:2rem;justify-content:center;align-items:flex-start;flex-wrap:wrap;flex-direction:row;box-sizing:border-box}._simpleList_1hvep_35{flex:1 1 32rem;display:flex;flex-direction:column;gap:1.75rem;max-width:58rem;min-width:24rem;box-sizing:border-box}._sectionBlock_1hvep_45{display:flex;flex-direction:column;gap:.8rem;width:100%;margin:0 auto}._documentFrame_1hvep_53{width:min(100%,calc(72ch + 10rem));margin:0 auto;background:linear-gradient(180deg,#fff,#fbfcfe);border:1px solid #d6dee8;border-radius:1rem;box-shadow:0 1px 2px #0f172a0f,0 16px 40px #0f172a14;overflow:hidden}._documentChrome_1hvep_65{display:flex;align-items:center;gap:.45rem;padding:.95rem 1.3rem;border-bottom:1px solid #e6ebf2;background:linear-gradient(180deg,#f8fafc,#f0f4f8)}._documentDot_1hvep_74{width:.58rem;height:.58rem;border-radius:999px;background:#c2ccd8}._textarea_1hvep_81{width:min(100%,calc(72ch + 6.75rem));min-height:30rem;display:block;margin:0 auto;font-family:Arial,Helvetica,sans-serif;font-size:1.08rem;line-height:1.15;white-space:pre-wrap;word-wrap:normal;overflow-wrap:normal;word-break:normal;-webkit-hyphens:auto;hyphens:auto;overflow-x:hidden;overflow-y:auto;-moz-tab-size:4;tab-size:4;padding:2.5rem 3.375rem 3rem;border:0;border-radius:0;resize:vertical;box-sizing:border-box;text-align:justify;text-justify:inter-word;text-align-last:left;letter-spacing:normal;font-kerning:normal;text-rendering:optimizeLegibility;color:#1f2937;background:#fffefc;caret-color:#1f4dbf;outline:none}._textarea_1hvep_81::placeholder{color:#9aa5b4;font-style:italic}._textarea_1hvep_81:focus{box-shadow:inset 0 0 0 2px #3b82f61f}._toolbar_1hvep_123{display:flex;flex-direction:column;gap:.75rem}._bulkActions_1hvep_129{display:flex;align-items:center;gap:.6rem;flex-wrap:wrap}._abortButton_1hvep_136{border:1px solid #c03f3f;color:#8f2020;background:#fff2f2;border-radius:.35rem;padding:.42rem .7rem;font-weight:600;cursor:pointer}._progressWrap_1hvep_146{display:flex;flex-direction:column;gap:.35rem}._progressText_1hvep_152{font-size:.9rem;color:#334155}._progressBarTrack_1hvep_157{width:100%;height:.5rem;border-radius:999px;background:#e5eaf2;overflow:hidden}._progressBarFill_1hvep_165{height:100%;background:linear-gradient(90deg,#2b4eaf,#4a78d9);transition:width .2s ease}._fieldTopRow_1hvep_171{display:flex;justify-content:space-between;align-items:flex-end;gap:.75rem;flex-wrap:wrap}._inlineError_1hvep_179{color:#b00020;font-size:.95rem}._modalContent_1hvep_184{display:flex;flex-direction:column;gap:1rem;max-height:70vh;overflow-y:auto}._reviewDialog_1hvep_192{max-width:875px!important}._modalActions_1hvep_196{display:flex;gap:.5rem;flex-wrap:wrap}._fieldCard_1hvep_202{border:1px solid #ddd;border-radius:8px;padding:.75rem;display:flex;flex-direction:column;gap:.75rem}._fieldHeader_1hvep_211{display:flex;justify-content:space-between;align-items:center;gap:.75rem;flex-wrap:wrap}._fieldTitle_1hvep_219{font-weight:700;color:#1e293b}._pendingBadge_1hvep_224{font-size:.82rem;color:#7a8392;font-weight:500;cursor:pointer;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px}._fieldHeaderActions_1hvep_234{display:flex;gap:.5rem;flex-wrap:wrap}._sentenceList_1hvep_240{display:flex;flex-direction:column;gap:.75rem}._sentenceCard_1hvep_246{border:1px solid #eee;border-radius:6px;padding:.75rem;display:flex;flex-direction:column;gap:.5rem;background:#fafafa}._sentenceMain_1hvep_256{display:flex;gap:.75rem;align-items:stretch}._reason_1hvep_262{font-size:.9rem;color:#333}._reasonDetail_1hvep_267{font-size:.84rem;color:#657086;line-height:1.35}._reasonInfoRow_1hvep_273{display:flex;justify-content:flex-start}._reasonInfoButton_1hvep_278{width:1.5rem;height:1.5rem;border-radius:999px;border:1px solid #9bb5d6;background:#edf4ff;color:#1f4dbf;font-weight:700;cursor:pointer;line-height:1;padding:0}._reasonInfoButton_1hvep_278:hover{background:#dfeeff}._diffWrap_1hvep_295{flex:1}._combinedDiff_1hvep_299{border:1px solid #d4d8de;border-radius:6px;overflow:hidden;background:#f8f9fb}._diffRow_1hvep_306{display:grid;grid-template-columns:3rem 3rem 1.6rem 1fr;align-items:stretch}._diffRow_1hvep_306+._diffRow_1hvep_306{border-top:1px solid #eceff3}._diffRowContext_1hvep_316{background:#f8f9fb}._diffRowRemove_1hvep_320{background:#fff1f1}._diffRowAdd_1hvep_324{background:#ebfff0}._diffLineNo_1hvep_328{font-family:Consolas,Liberation Mono,Menlo,monospace;font-size:.78rem;color:#7a8494;text-align:right;padding:.45rem .35rem;border-right:1px solid #e6e9ee;-webkit-user-select:none;user-select:none}._diffSign_1hvep_338{font-family:Consolas,Liberation Mono,Menlo,monospace;font-size:.9rem;padding:.45rem .35rem;border-right:1px solid #e6e9ee;color:#4c566a;-webkit-user-select:none;user-select:none}._diffText_1hvep_347{margin:0;padding:.45rem .6rem;white-space:pre-wrap;word-break:break-word;font-family:Consolas,Liberation Mono,Menlo,monospace;font-size:.9rem;line-height:1.4}._diffPartRemove_1hvep_357{background:#f7bcbc;border-radius:2px}._diffPartAdd_1hvep_362{background:#ace0b9;border-radius:2px}._sentenceActions_1hvep_367{display:flex;flex-direction:column;gap:.4rem;justify-content:flex-start}._actionToggle_1hvep_374{display:inline-flex;align-items:center;gap:.35rem;padding:.45rem .7rem;border-radius:.35rem;border:1px solid #9fb1d3;background:#f6f9ff;color:#223a75;font-weight:600;cursor:pointer}._actionToggleActiveAccept_1hvep_387{border-color:#2f8f52;background:#e7f7ed;color:#1d6c3c}._actionToggleActiveReject_1hvep_393{border-color:#b13d3d;background:#fdeeee;color:#8a2525}._actionState_1hvep_399{font-size:.82rem;color:#4f5b73}._noChanges_1hvep_404{color:#555;font-size:.95rem}._footerActions_1hvep_409{display:flex;justify-content:flex-end;gap:.5rem;margin-top:.5rem}._reasonPopupText_1hvep_416{white-space:pre-wrap;line-height:1.45;color:#1b1b1b}@media(max-width:900px){._container_1hvep_19{padding:1.25rem}._simpleList_1hvep_35{min-width:0}._documentFrame_1hvep_53{border-radius:.8rem}._documentChrome_1hvep_65{padding:.7rem .9rem}._textarea_1hvep_81{width:100%;min-height:22rem;padding:1.5rem 1.25rem 2rem;font-size:1rem;line-height:1.15}._sentenceMain_1hvep_256{flex-direction:column}._sentenceActions_1hvep_367{flex-direction:row;flex-wrap:wrap}}._wrapper_4skuq_1{max-width:1280px;margin:0 auto;padding:28px 24px 40px;width:100%}._header_4skuq_8{margin-bottom:18px}._title_4skuq_12{font-size:1.6rem;font-weight:700;margin-bottom:4px}._subtitle_4skuq_18{color:#5f6368;font-size:.95rem}._stepper_4skuq_23{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;margin:18px 0 16px;width:100%}._stepItem_4skuq_31{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:1px solid #e6e6e6;border-radius:10px;padding:10px 12px;display:flex;align-items:center;gap:10px;background:#fafafa;cursor:pointer;text-align:left;width:100%;font:inherit;color:inherit}._stepItemActive_4skuq_47{border-color:#1f4dbf;background:#f3f7ff}._stepItem_4skuq_31:disabled{cursor:not-allowed;opacity:.6;background:#f0f0f0}._stepIndex_4skuq_58{width:28px;height:28px;border-radius:50%;background:#1f4dbf;color:#fff;display:inline-flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem}._stepText_4skuq_71{display:flex;flex-direction:column;gap:2px;font-size:.95rem}._stepOptional_4skuq_78{font-size:.75rem;color:#6c757d}._card_4skuq_83{background:#fff;border:1px solid #e6e6e6;border-radius:12px;padding:18px;width:100%;box-sizing:border-box}._stepBody_4skuq_92{display:flex;flex-direction:column;gap:18px}._gridTwo_4skuq_98{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}._block_4skuq_104{border:1px solid #ececec;border-radius:10px;padding:14px;background:#fcfcfc}._blockTitle_4skuq_111{font-weight:700;margin-bottom:8px}._blockHint_4skuq_116{color:#5f6368;font-size:.9rem;margin-bottom:10px}._field_4skuq_122{display:flex;flex-direction:column;gap:6px}._label_4skuq_128{font-weight:600;font-size:.9rem}._hint_4skuq_133{color:#5f6368;font-size:.8rem}._actionsRow_4skuq_138{display:flex;gap:10px;margin-top:12px}._objectSummary_4skuq_144{display:flex;justify-content:space-between;gap:10px;font-size:.95rem}._footer_4skuq_151{display:flex;justify-content:space-between;align-items:center;margin-top:18px;gap:12px}._footerRight_4skuq_159{display:flex;gap:8px;align-items:center}._simpleText_4skuq_166{color:#5f6368;font-size:.92rem}._simpleError_4skuq_171{color:#b00020;font-size:.92rem}._previewGrid_4skuq_176{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:8px}._importSection_4skuq_183{margin-top:8px;display:flex;gap:16px;padding:20px;border:1px solid #dbe5f5;border-radius:14px;background:linear-gradient(135deg,#f8fbff,#f3f7ff)}._importIcon_4skuq_193{width:46px;height:46px;flex:0 0 46px;display:grid;place-items:center;border-radius:12px;background:#e3ecff;color:#1f4dbf;font-size:1.5rem}._importContent_4skuq_205{min-width:0;flex:1}._importHeading_4skuq_206{font-size:1.05rem;font-weight:750;margin-bottom:3px}._importText_4skuq_207{color:#5f6368;font-size:.9rem}._importActions_4skuq_208{display:flex;flex-wrap:wrap;gap:9px;margin-top:14px}._fileInput_4skuq_209{display:none}._selectedFile_4skuq_211{margin-top:12px;display:inline-flex;align-items:center;gap:8px;max-width:100%;padding:8px 10px;border-radius:9px;background:#fff;border:1px solid #cbd8ee;color:#244a92;font-size:.9rem}._selectedFile_4skuq_211 span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._selectedFile_4skuq_211 button{border:0;background:transparent;color:#5f6368;display:grid;padding:2px;cursor:pointer}._spin_4skuq_228{animation:_importSpin_4skuq_1 .9s linear infinite}@keyframes _importSpin_4skuq_1{to{transform:rotate(360deg)}}._importCheckSuccess_4skuq_234{margin-top:12px;display:flex;align-items:center;gap:7px;padding:10px 11px;border:1px solid #b9dfc6;border-radius:9px;background:#f0faf3;color:#21683a;font-size:.88rem}._importIssuePanel_4skuq_247{margin-top:12px;padding:12px;border-radius:10px;background:#ffffffd1}._importIssuePanelError_4skuq_254{border:1px solid #efc4c4}._importIssuePanelWarning_4skuq_255{border:1px solid #efdda9}._importIssueTitle_4skuq_257{margin-bottom:9px;font-size:.92rem;font-weight:750}._importIssueTitleError_4skuq_263{color:#8f1717}._importIssueTitleWarning_4skuq_264{color:#735400}._reviewLayout_4skuq_266{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:16px;align-items:start}._reviewMain_4skuq_273{display:flex;flex-direction:column;gap:16px;min-width:0}._reviewAside_4skuq_274{position:sticky;top:18px}._metricGrid_4skuq_276{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:9px}._metric_4skuq_276{padding:14px 12px;border:1px solid #e2e7ef;background:#fff;border-radius:11px;display:flex;flex-direction:column;gap:3px}._metric_4skuq_276 strong{font-size:1.45rem;line-height:1}._metric_4skuq_276 span{color:#68707d;font-size:.78rem}._reviewCard_4skuq_295{background:#fff;border:1px solid #e2e5e9;border-radius:12px;padding:17px}._reviewTitle_4skuq_302{font-size:1.02rem;font-weight:750;margin-bottom:13px}._issueList_4skuq_303{display:flex;flex-direction:column;gap:8px}._objectList_4skuq_304{display:flex;flex-direction:column;gap:14px}._issueError_4skuq_305,._issueWarning_4skuq_305{display:grid;grid-template-columns:65px minmax(0,1fr) auto;gap:8px;align-items:center;padding:9px 10px;border-radius:8px;font-size:.88rem}._issueError_4skuq_305{color:#8f1717;background:#fff2f2;border:1px solid #f1caca}._issueWarning_4skuq_305{color:#735400;background:#fff9e8;border:1px solid #efdda9}._issueError_4skuq_305 small,._issueWarning_4skuq_305 small{opacity:.75}._valueColumns_4skuq_310{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}._valueGroup_4skuq_311{border:1px solid #e7e9ed;border-radius:10px;padding:11px;min-width:0}._valueGroup_4skuq_311 h3{font-size:.9rem;margin:0 0 8px;display:flex;justify-content:space-between}._valueGroup_4skuq_311 h3 span{color:#5d6d87;font-weight:600}._valueRow_4skuq_314{display:flex;justify-content:space-between;gap:8px;padding:6px 0;border-top:1px solid #f0f1f3;font-size:.84rem}._valueRow_4skuq_314 span{overflow:hidden;text-overflow:ellipsis}._valueRow_4skuq_314 strong{white-space:nowrap}._empty_4skuq_317{color:#7a7f87;font-size:.85rem;padding:7px 0}._objectItem_4skuq_319{border:1px solid #d7deea;border-left:4px solid #8ba9df;border-radius:11px;overflow:hidden;background:#fff;box-shadow:0 2px 7px #22344f0f}._objectItem_4skuq_319[open]{border-color:#9fb5d9;border-left-color:#315fae}._objectItem_4skuq_319 summary{list-style:none;cursor:pointer;padding:14px 15px;display:flex;justify-content:space-between;gap:16px;align-items:center;background:#f7f9fc}._objectItem_4skuq_319 summary:hover{background:#f0f4fa}._objectItem_4skuq_319 summary::-webkit-details-marker{display:none}._objectIdentity_4skuq_331{display:flex;flex-direction:column;gap:2px;min-width:0}._objectIdentity_4skuq_331 strong{font-size:.96rem}._objectItem_4skuq_319 summary small{color:#69717c}._objectNumber_4skuq_334{color:#315fae!important;font-size:.68rem;font-weight:750;letter-spacing:.04em;text-transform:uppercase}._objectSummaryMeta_4skuq_335{color:#5a6472;font-size:.82rem;white-space:nowrap;display:flex;align-items:center;gap:10px}._objectChevron_4skuq_336{flex:0 0 auto;font-size:1rem;transition:transform .18s ease}._objectItem_4skuq_319[open] ._objectChevron_4skuq_336{transform:rotate(180deg)}._connectionList_4skuq_338{padding:8px 14px 13px;border-top:1px solid #e7ebf1}._connectionRow_4skuq_339{display:grid;grid-template-columns:78px minmax(120px,1.2fr) minmax(110px,.8fr) minmax(150px,1fr);gap:9px;align-items:center;padding:8px 0;border-bottom:1px solid #eff1f4;font-size:.83rem}._connectionRow_4skuq_339:last-child{border-bottom:0}._kindShare_4skuq_341,._kindAdditional_4skuq_341{width:fit-content;border-radius:99px;padding:3px 7px;font-size:.75rem;font-weight:700}._kindShare_4skuq_341{background:#e8f0ff;color:#244f9e}._kindAdditional_4skuq_341{background:#efe9ff;color:#5c3695}._blockedNotice_4skuq_344{margin-top:12px;padding:10px;border-radius:8px;background:#fff2f2;color:#971c1c;font-size:.88rem}._reviewFooter_4skuq_345{grid-column:1 / -1;padding:14px 16px;background:#fff;border:1px solid #e2e5e9;border-radius:12px;margin-top:0}@media(max-width:1050px){._reviewLayout_4skuq_266{grid-template-columns:1fr}._reviewAside_4skuq_274{position:static}._metricGrid_4skuq_276{grid-template-columns:repeat(3,1fr)}}@media(max-width:720px){._wrapper_4skuq_1{padding:20px 12px 30px}._metricGrid_4skuq_276{grid-template-columns:repeat(2,1fr)}._valueColumns_4skuq_310{grid-template-columns:1fr}._connectionRow_4skuq_339{grid-template-columns:74px 1fr}._connectionRow_4skuq_339>span:nth-child(n+3){grid-column:2}._issueError_4skuq_305,._issueWarning_4skuq_305{grid-template-columns:60px 1fr}._issueError_4skuq_305 small,._issueWarning_4skuq_305 small{grid-column:2}._objectItem_4skuq_319 summary{align-items:flex-start}._objectSummaryMeta_4skuq_335{white-space:normal;text-align:right}}._previewLabel_4skuq_365{font-size:.85rem;color:#5f6368}._previewValue_4skuq_370{font-size:1rem;font-weight:600;margin-top:2px}._previewList_4skuq_376{margin-top:10px;font-size:.92rem;color:#4b4f55;display:flex;flex-direction:column;gap:6px}._contingentGrid_4skuq_385{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:14px}._contingentLabel_4skuq_392{font-size:.85rem;color:#5f6368}._contingentValue_4skuq_397{font-size:1rem;font-weight:600;margin-top:2px}._contingentSubline_4skuq_403{font-size:.88rem;color:#5f6368;margin-top:4px}._tierUpgradeNotice_4skuq_409{font-size:.88rem;color:#8a5a00;margin-top:6px;font-weight:600}._tierUpgradeBlocked_4skuq_416{font-size:.88rem;color:#b00020;margin-top:6px;font-weight:600}._contingentLink_4skuq_423{border:none;background:transparent;color:#1f4dbf;text-decoration:underline;font-weight:600;cursor:pointer;padding:0}@media(max-width:900px){._stepper_4skuq_23{grid-template-columns:repeat(2,minmax(0,1fr))}._gridTwo_4skuq_98,._contingentGrid_4skuq_385{grid-template-columns:1fr}._objectDialog_4skuq_446{min-width:0;width:100%}}._myProfileContainer_10521_1{padding:1rem;width:100%;display:flex;flex-direction:column;gap:1.25rem}._headerRow_10521_9{display:flex;flex-wrap:wrap;align-items:center;gap:1rem}._headerRow_10521_9 h3{margin:0}._subline_10521_20{margin:.15rem 0 0;color:#6b7280;font-size:.9rem}._settingsLayout_10521_26{display:grid;grid-template-columns:minmax(220px,260px) minmax(0,1fr);gap:1.25rem;align-items:start}._sideNav_10521_33{position:sticky;top:1rem;display:grid;gap:.75rem}.jbButton._backNavButton_10521_40{padding:.62rem .95rem;border-radius:6px}._sideNavMenu_10521_45{display:grid;gap:.45rem;padding:.55rem;border:1px solid #e4e7eb;border-radius:8px;background:linear-gradient(180deg,#fafbfd,#fff)}._sideNavItem_10521_54{width:100%;border:none;border-radius:5px;background:transparent;color:#455468;padding:.8rem .9rem;text-align:left;font-size:.95rem;font-weight:600;cursor:pointer;transition:background-color .2s ease,color .2s ease,transform .2s ease}._sideNavItem_10521_54:hover{background:#f4f7fb;color:#17335f;transform:translate(2px)}._sideNavItemActive_10521_74{background:#eef4ff;color:#143b75;box-shadow:inset 0 0 0 1px #c9d9f3}._settingsContent_10521_80{min-width:0}._infoTab_10521_84{display:flex;flex-direction:column;gap:1.25rem}._dataCard_10521_90{background:#fff;border:1px solid #e4e7eb;border-radius:12px;padding:1rem;display:flex;flex-direction:column;gap:1rem}._dataSectionHeader_10521_100 h5{margin:0}._dataSectionHeader_10521_100 p{margin:.2rem 0 0}._addressHeader_10521_108 h5{margin:0}._dataProfileGrid_10521_112{display:grid;grid-template-columns:minmax(0,1fr) 1px minmax(0,1fr);gap:1rem;align-items:start}._dataColumn_10521_119{min-width:0}._dataProfileDivider_10521_123{align-self:stretch;justify-self:center;width:1px;margin:2.2rem 0;background:#e5e7eb}._profileFieldGrid_10521_131{display:grid;gap:.85rem}._profileFieldsSection_10521_136{margin-top:.5rem}._personContainer_10521_140{display:grid;grid-template-columns:120px 1fr;gap:1rem;align-items:center}._personIcon_10521_147{font-size:6rem;color:#d1d5db;justify-self:center}._personFields_10521_153{display:flex;flex-direction:column;gap:.75rem}._infoStat_10521_159{border:1px solid #e4e7eb;border-radius:12px;padding:1rem;display:flex;justify-content:space-between;align-items:center;background:#fff;font-size:.95rem}._infoStat_10521_159 strong{font-size:1.4rem}._infoHint_10521_174{margin:0;color:#4b5563;font-size:.9rem}._label_10521_180{font-size:.85rem;font-weight:600;display:block;margin-bottom:.25rem}._logoField_10521_187{margin-top:.95rem;margin-bottom:.25rem}._logoFieldLabel_10521_192{display:block;font-size:.9rem;font-weight:700}._brandingTab_10521_198{display:flex;flex-direction:column;gap:1.25rem}._templatesTab_10521_204{display:flex;flex-direction:column;gap:1rem}._templatesHero_10521_210{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;flex-wrap:wrap;background:linear-gradient(180deg,#f6f9fc,#fff);border:1px solid #e4e7eb;border-radius:14px;padding:1rem 1.1rem}._templatesHero_10521_210 h5{margin:0}._templatesLead_10521_226{margin:.35rem 0 0;color:#556274;max-width:48rem}._templatesHeroStats_10521_232{display:flex;gap:.75rem;flex-wrap:wrap}._templateStat_10521_238{min-width:110px;padding:.8rem .9rem;border-radius:12px;background:#fff;border:1px solid #dce4ee;display:flex;flex-direction:column;gap:.15rem}._templateStat_10521_238 strong{font-size:1.25rem;color:#10243d}._templateStat_10521_238 span{font-size:.82rem;color:#5f6d80}._templateSections_10521_259{display:grid;gap:1rem}._templateSectionCard_10521_264{background:#fff;border:1px solid #e4e7eb;border-radius:14px;padding:1rem;display:grid;gap:1rem}._templateSectionHeader_10521_273{display:flex;justify-content:space-between;align-items:flex-start;gap:.75rem;flex-wrap:wrap}._templateSectionHeader_10521_273 h6{margin:0;font-size:1rem}._templateWorkspace_10521_286{display:grid;grid-template-columns:minmax(260px,340px) minmax(0,1fr);gap:1rem;align-items:start}._templateListCard_10521_293,._templateEditorCard_10521_294{border:1px solid #e7ebf0;border-radius:12px;padding:.9rem;background:#fbfcfd}._templateEditorCard_10521_294{display:grid;gap:1rem;background:#fff}._templateEditorCard_10521_294 h6{margin:0;font-size:.98rem}._templateListCard_10521_293{min-height:220px}._templateEmptyState_10521_316{margin:0;border:1px dashed #d8e0ea;border-radius:10px;background:#fff;color:#687588;padding:1rem}._addressHeader_10521_108{display:flex;justify-content:space-between;align-items:flex-start;gap:.75rem;flex-wrap:wrap}._addressMeta_10521_333{border:1px solid #d7deea;border-radius:999px;padding:.3rem .7rem;font-size:.8rem;font-weight:600;color:#35516d;background:#f7fafd}._addressError_10521_343{color:#c62828;font-size:.85rem}._addressSuccess_10521_348{color:#1f6f43;font-size:.85rem}._brandingTopRow_10521_353{display:flex;justify-content:space-between;flex-wrap:wrap;gap:.75rem;align-items:center}._brandingNotice_10521_361{font-size:.85rem;color:#616161}._brandingSection_10521_366{display:flex;flex-wrap:wrap;gap:1rem}._brandingList_10521_372,._brandingForm_10521_373{flex:1;min-width:280px;background:#fff;border:1px solid #e4e7eb;border-radius:10px;padding:1rem;display:flex;flex-direction:column;gap:1rem}._brandingLoading_10521_385{display:flex;justify-content:center;padding:1.5rem 0}._presetList_10521_391{display:flex;flex-direction:column;gap:.5rem;max-height:430px;overflow:auto;padding-right:.15rem}._presetCard_10521_400{border:1px solid #e0e6ed;background:#fafbfc;border-radius:8px;padding:.75rem;cursor:pointer;text-align:left;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease}._presetCard_10521_400:hover{transform:translateY(-1px)}._presetCardActive_10521_414{border-color:#4f46e5;box-shadow:0 0 0 2px #4f46e526;background:#fff}._presetCardTopRow_10521_420{display:flex;justify-content:space-between;align-items:center;gap:.6rem;margin-bottom:.35rem}._presetName_10521_428{font-weight:600;margin-bottom:0}._presetTypeBadge_10521_433{border-radius:999px;background:#eef4ff;color:#34527c;border:1px solid #d6e1f5;padding:.18rem .55rem;font-size:.72rem;font-weight:700}._presetPreviewRow_10521_443{display:flex;gap:.5rem;flex-wrap:wrap;font-size:.8rem;color:#6b7280}._presetPreviewRow_10521_443 img{height:36px;border-radius:4px;background:#fff;padding:.15rem;border:1px solid #e4e7eb}._signatureNamePreview_10521_459{font-size:.85rem;color:#4b5563;font-weight:500;display:flex;align-items:center}._presetPlaceholder_10521_467{font-style:italic}._brandingField_10521_471{display:grid;gap:.5rem}._logoGrid_10521_476{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem}._logoPreview_10521_482{display:flex;justify-content:space-between;align-items:center;border:1px solid #e4e7eb;border-radius:8px;padding:.5rem;background:#fafbfc;gap:.5rem}._logoPreview_10521_482 img{max-height:60px;max-width:80%;object-fit:contain}._logoGuidelines_10521_499{margin-top:.5rem;border:1px dashed #dfe3e8;border-radius:8px;padding:.5rem;display:flex;flex-wrap:wrap;gap:.5rem;align-items:center}._logoGuidelinesText_10521_510{font-size:.8rem;color:#4b5563;flex:1}._logoGuidelinesButton_10521_516{border:1px solid #4f46e5;border-radius:6px;padding:.4rem .8rem;font-size:.8rem;color:#4f46e5;background:#fff;font-weight:600;cursor:pointer}._removeButton_10521_527{border:none;background:transparent;color:#ff6262;cursor:pointer;font-weight:600}._brandingPreviewWrapper_10521_535{margin-top:.5rem}._signatureShowcase_10521_539{display:grid;gap:.45rem}._signatureShowcaseLabel_10521_544{margin:0;font-size:.84rem;font-weight:600;color:#516173}._signaturePreviewCard_10521_551{border:1px solid #e4e7eb;border-radius:12px;padding:1rem;background:linear-gradient(180deg,#f8fbfe,#fff);display:grid;gap:.75rem;justify-items:center;text-align:center}._signatureNamePreviewLarge_10521_562{margin:0;font-size:1rem;font-weight:600;color:#17283f}._signaturePreviewImage_10521_569{max-width:280px;max-height:140px;object-fit:contain;border-radius:10px;background:#fff;border:1px solid #dde4ec;padding:.75rem}._signaturePreviewPlaceholder_10521_579{width:100%;max-width:280px;min-height:96px;border-radius:10px;border:1px dashed #d6dde7;background:#fff;color:#7a8595;display:flex;align-items:center;justify-content:center;padding:.75rem}._textarea_10521_593{width:100%;min-height:120px;border:1px solid #dfe3e8;border-radius:8px;padding:.6rem;resize:vertical;font-size:.95rem;font-family:inherit}._brandingError_10521_604{color:#c62828;font-size:.85rem}._brandingActions_10521_609{display:flex;flex-wrap:wrap;gap:.5rem}._addressActions_10521_615{margin-top:.85rem}@media(max-width:700px){._settingsLayout_10521_26{grid-template-columns:1fr}._sideNav_10521_33{position:static}._sideNavMenu_10521_45,._dataProfileGrid_10521_112{grid-template-columns:1fr}._dataProfileDivider_10521_123{display:none}._personContainer_10521_140{grid-template-columns:1fr;text-align:center}._personFields_10521_153{align-items:stretch}._templateWorkspace_10521_286{grid-template-columns:1fr}._presetList_10521_391{max-height:none}}._container_1mfm3_1{display:flex;flex-direction:column;gap:1.25rem}._header_1mfm3_7{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;flex-wrap:wrap}._header_1mfm3_7 h5{margin:0}._subline_1mfm3_19{margin:.35rem 0 0;color:#6b7280;font-size:.85rem}._formCard_1mfm3_25{display:grid;grid-template-columns:minmax(0,1fr);gap:1rem;width:100%;max-width:500px;padding:1rem;border-radius:12px;border:1px solid #e4e7eb;background:#fff;align-items:start}._formTitle_1mfm3_38{margin:0}._formField_1mfm3_42{display:flex;flex-direction:column;gap:.4rem;min-width:0}._formField_1mfm3_42 label,._formLabel_1mfm3_50{font-size:.85rem;font-weight:600;color:#374151}._formHint_1mfm3_56{font-size:.8rem;color:#6b7280}._textInput_1mfm3_61{border:1px solid #d1d5db;border-radius:8px;padding:.55rem .7rem;font-size:.95rem;width:100%;box-sizing:border-box;background:#fff}._permissionOptions_1mfm3_71{display:flex;flex-wrap:wrap;gap:.75rem;font-size:.9rem}._checkboxLabel_1mfm3_78{display:inline-flex;align-items:center;gap:.35rem;font-weight:500}._formActions_1mfm3_85{display:flex;flex-direction:column;gap:.45rem;align-items:stretch;min-width:0}._formSubmitButton_1mfm3_93{width:100%}._formError_1mfm3_97{color:#c62828;font-size:.85rem}._tableWrap_1mfm3_102{overflow-x:auto}._table_1mfm3_102{width:100%;border-collapse:collapse;min-width:760px}._table_1mfm3_102 th,._table_1mfm3_102 td{padding:12px 14px;border-bottom:1px solid #e8edf3;text-align:left;vertical-align:top;transition:background-color .2s ease-in-out}._table_1mfm3_102 td{font-size:.88rem}._table_1mfm3_102 th{padding-top:9px;padding-bottom:9px;border-top:none;border-bottom:none;font-size:.8rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#64748b;background:#f8fafc;white-space:nowrap}._table_1mfm3_102 th:first-child{border-top-left-radius:10px;border-bottom-left-radius:10px}._table_1mfm3_102 th:last-child{border-top-right-radius:10px;border-bottom-right-radius:10px}._table_1mfm3_102 tbody tr:hover{background:#2563eb0b}._table_1mfm3_102 tbody tr:last-child td{border-bottom:none}._table_1mfm3_102 tbody tr:hover td:first-child{border-top-left-radius:10px;border-bottom-left-radius:10px}._table_1mfm3_102 tbody tr:hover td:last-child{border-top-right-radius:10px;border-bottom-right-radius:10px}._userField_1mfm3_167{display:flex;align-items:center;color:#1f2937;font-size:.95rem;font-weight:500;white-space:nowrap}._permissionCell_1mfm3_176{text-align:center}._permissionCell_1mfm3_176 input{transform:scale(1.1)}._actionsCell_1mfm3_184{text-align:right;width:1%;white-space:nowrap}._removeButton_1mfm3_190{border:1px solid #d1d5db;background:#fff;color:#b42318;font-weight:400;cursor:pointer;padding:.35rem .6rem;border-radius:8px;font-size:.85rem;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._removeButton_1mfm3_190:hover{border-color:#9ca3af;background:#f3f4f6;color:#9f2f2f}._resetButton_1mfm3_208{border:1px solid #d1d5db;background:#fff;color:#1f2937;font-weight:400;cursor:pointer;padding:.35rem .6rem;border-radius:8px;font-size:.85rem;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._resetButton_1mfm3_208:hover{border-color:#9ca3af;background:#f3f4f6}._emptyState_1mfm3_225{text-align:center;color:#6b7280;padding:1rem .5rem}._modalBackdrop_1mfm3_231{position:fixed;top:0;right:0;bottom:0;left:0;background:#1118278c;display:flex;align-items:center;justify-content:center;padding:1.5rem;z-index:50}._modalCard_1mfm3_242{background:#fff;border-radius:14px;padding:1.5rem;max-width:420px;width:100%;box-shadow:0 20px 40px #0f172a33;display:flex;flex-direction:column;gap:.75rem}._modalHint_1mfm3_254{margin:0;color:#6b7280;font-size:.9rem}._modalInfoBox_1mfm3_260{padding:12px 14px;border:1px solid #e5e7eb;border-radius:10px;background:#f9fafb}._modalInfoText_1mfm3_267{color:#374151;font-size:.92rem;line-height:1.5}._modalLabel_1mfm3_273{font-size:.85rem;font-weight:600;color:#374151}._modalActions_1mfm3_279{display:flex;gap:.75rem;justify-content:flex-end;margin-top:.5rem}._secondaryButton_1mfm3_286{border:1px solid #d1d5db;background:#fff;color:#1f2937;font-weight:400;cursor:pointer;padding:.5rem .9rem;border-radius:8px;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._secondaryButton_1mfm3_286:hover{border-color:#9ca3af;background:#f3f4f6}._primaryButton_1mfm3_302{border:none;background:var(--jl-primary-color);color:#fff;font-weight:400;cursor:pointer;padding:.5rem .9rem;border-radius:8px;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._primaryButton_1mfm3_302:hover{background:var(--jl-primary-color);filter:brightness(.92)}@media(max-width:700px){._formCard_1mfm3_25{grid-template-columns:1fr}._formActions_1mfm3_85{align-items:stretch}._table_1mfm3_102{min-width:0}._table_1mfm3_102 thead{display:none}._table_1mfm3_102,._table_1mfm3_102 tbody,._table_1mfm3_102 tr,._table_1mfm3_102 td{display:block;width:100%}._table_1mfm3_102 tr{border:1px solid #e4e7eb;border-radius:12px;background:#fff;padding:.2rem 0}._table_1mfm3_102 td{position:relative;border-bottom:1px solid #eef2f7;padding:.85rem 1rem .85rem 8.6rem;min-height:48px;white-space:normal}._table_1mfm3_102 td:before{content:attr(data-label);position:absolute;left:1rem;top:.88rem;font-size:.72rem;font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:#64748b}._table_1mfm3_102 td:last-child{border-bottom:none}._actionsCell_1mfm3_184{text-align:left;width:auto;white-space:normal}._userField_1mfm3_167{white-space:normal}._resetButton_1mfm3_208,._removeButton_1mfm3_190{width:100%}}._wrapper_1nq1p_1{display:flex;flex-direction:column;gap:18px}._headerRow_1nq1p_7{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}._headerActions_1nq1p_14{display:flex;gap:10px;flex-wrap:wrap}._pricingPageLink_1nq1p_20{color:#35516d;border-radius:999px;padding:2px 0;font-size:.76rem;font-weight:600;text-decoration:none;white-space:nowrap}._pricingPageLink_1nq1p_20:hover{color:#17335f;text-decoration:underline}._activationPriceIntro_1nq1p_35{color:#374151;line-height:1.45}._activationPricingLink_1nq1p_40{color:#35516d;font-size:.8rem;font-weight:600;text-decoration:none}._activationPricingLink_1nq1p_40:hover{color:#17335f;text-decoration:underline}._firstStepCallout_1nq1p_52{margin:8px auto 18px;width:min(760px,100%);padding:22px 24px;border-radius:10px;border:1px solid #b7cbe6;background:#e8f1fb;text-align:center}._firstStepTitle_1nq1p_62{margin:0;font-size:1.15rem;color:#0b3f90}._firstStepText_1nq1p_68{margin:10px auto 0;max-width:620px;color:#1f2937}._firstStepButtonWrap_1nq1p_74{margin-top:16px;display:flex;justify-content:center}._firstStepButtonWrapInline_1nq1p_80{gap:8px;flex-wrap:wrap}._paymentMethodCardPlaceholder_1nq1p_85{margin:14px auto 0;width:min(420px,100%);border-radius:10px;border:1px solid #b9c9db;background:linear-gradient(135deg,#17335f,#22589c);color:#fff;padding:14px 16px;text-align:left;box-shadow:0 8px 18px #132e573d}._paymentMethodCardTop_1nq1p_97{display:flex;align-items:center;justify-content:space-between;font-size:.85rem;opacity:.95}._paymentMethodCardNumber_1nq1p_105{margin-top:12px;font-size:1.05rem;font-weight:700;letter-spacing:.06em}._paymentMethodCardMeta_1nq1p_112{margin-top:10px;font-size:.82rem;opacity:.95}._paymentMethodPrimary_1nq1p_118{background:#0f4fb6!important;border:1px solid #0b3f90!important;color:#fff!important;font-weight:400!important;box-shadow:0 6px 14px #0f4fb647;padding:.6rem 1.1rem!important;font-size:.98rem!important;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._paymentMethodPrimary_1nq1p_118:hover:not(:disabled){background:#0b3f90!important;border-color:#08316f!important}._subline_1nq1p_134{margin:.35rem 0 0;color:#6b7280;font-size:.85rem}._loadingWrap_1nq1p_140{padding:20px}._card_1nq1p_144{border-radius:6px;padding:16px;background:#fff;box-shadow:none}._cardBoxed_1nq1p_151{border:1px solid #e4e7eb;border-radius:12px}._cardHeaderInline_1nq1p_156{display:flex;align-items:center;justify-content:space-between;gap:10px}._creditSummary_1nq1p_163{margin:10px 0 12px}._creditHeader_1nq1p_167{display:flex;align-items:center;justify-content:space-between;font-size:.95rem;margin-bottom:8px}._creditBar_1nq1p_175{width:100%;height:12px;border-radius:999px;overflow:hidden;background:#ececec;display:flex}._creditBarFree_1nq1p_184{background:#2f7d32;min-width:0}._creditBarSubscription_1nq1p_189{background:#2d659f;min-width:0}._creditLegend_1nq1p_194{margin-top:8px;display:flex;flex-wrap:wrap;gap:8px 16px;color:#555;font-size:.85rem}._grid_1nq1p_203{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px}._subscriptionGrid_1nq1p_209{display:grid;grid-template-columns:1fr;gap:8px;margin-top:10px}._subscriptionGrid_1nq1p_209 span{font-size:.85rem;color:#666;display:block}._subscriptionGrid_1nq1p_209 strong{display:block;font-size:.98rem;margin-top:2px}._subscriptionTimeline_1nq1p_228{min-width:240px}._subscriptionTimelineTrack_1nq1p_232{margin-top:8px;display:flex;align-items:center;gap:8px}._subscriptionTimelineDot_1nq1p_239{width:10px;height:10px;border-radius:999px;background:#9ca3af;display:inline-block;flex:0 0 auto}._subscriptionTimelineDotHighlight_1nq1p_248{background:#1d4ed8}._subscriptionTimelineLine_1nq1p_252{height:2px;flex:1;background:linear-gradient(90deg,#9ca3af,#1d4ed8)}._subscriptionTimelineLabels_1nq1p_258{margin-top:8px;display:grid;gap:4px}._subscriptionTimelineRenewal_1nq1p_264{font-weight:400;color:#1f2937}._paymentMethodRow_1nq1p_269{display:flex;align-items:center;gap:10px;flex-wrap:wrap}._paymentMethodLine_1nq1p_276{border:1px solid #d6e0eb;background:#f8fbff;border-radius:6px;padding:6px 10px;font-size:.9rem;color:#1f2937}._noticeBox_1nq1p_285{padding:10px 12px;background:#f5f5f5;border-radius:6px;color:#444}._paymentMethodMissingHint_1nq1p_292{font-size:.82rem;margin-bottom:10px}._warningBox_1nq1p_297{padding:10px 12px;background:#fff7db;border:1px solid #f2d28a;border-radius:6px;color:#7a5a18}._billingDataLink_1nq1p_305{display:block;width:fit-content;margin-top:6px;color:inherit;font-weight:700;text-decoration:underline}._criticalBox_1nq1p_314{padding:10px 12px;background:#ffe8e6;border:1px solid #f1b4ae;border-radius:6px;color:#7d2f26}._subscriptionCanceledNotice_1nq1p_322{padding:14px 16px;background:#fff3e8;border:1px solid #f1c9a8;border-radius:8px;color:#7a4a1d;display:grid;gap:6px;line-height:1.4;font-size:.88rem}._keyDateBadge_1nq1p_334,._keyDayBadge_1nq1p_335,._keyCountBadge_1nq1p_336{display:inline-flex;align-items:center;border-radius:999px;padding:1px 7px;font-size:.78rem;font-weight:600;line-height:1.2;white-space:nowrap}._keyDateBadge_1nq1p_334{background:#eef6ff;border:1px solid #bfd8f5;color:#1e4f8d}._keyDayBadge_1nq1p_335{background:#fff1dc;border:1px solid #f2cf9c;color:#8a5418}._keyCountBadge_1nq1p_336{background:#ffe8e6;border:1px solid #f1b4ae;color:#7d2f26}._statusBadge_1nq1p_365{display:inline-flex;align-items:center;padding:2px 8px;border-radius:999px;font-size:.85rem;font-weight:600;width:max-content}._statusBadgeSmall_1nq1p_375{font-size:.66rem;padding:1px 5px;line-height:1.2}._statusActive_1nq1p_381{background:#e3f7e6;color:#1f6d2b;border:1px solid #bfe6c6}._statusInactive_1nq1p_387{background:#ffe8e6;color:#7d2f26;border:1px solid #f1b4ae}._statusPending_1nq1p_393{background:#fff6dd;color:#8a5418;border:1px solid #f2cf9c}._errorBox_1nq1p_399{background:#ffe8e6;border:1px solid #f1b4ae;padding:10px 12px;border-radius:6px;color:#7d2f26}._readOnlyBanner_1nq1p_407{background:#fff7df;border:1px solid #f2d28a;padding:10px 12px;border-radius:6px;color:#7a5a18}._legalNotice_1nq1p_415{background:#f5f8ff;border:1px solid #ccd8ef;padding:10px 12px;border-radius:6px;color:#334155;font-size:.88rem}._legalNotice_1nq1p_415 a{color:#1d4ed8;text-decoration:underline}._cancelSection_1nq1p_429{border:none;background:snow}._cancelHeading_1nq1p_434{color:#b42318}.jbDialog-dialog._cancelDialog_1nq1p_438{max-width:420px;border-radius:14px;margin-top:auto;margin-bottom:auto}.jbDialog-dialog._activationDialog_1nq1p_445{max-width:min(920px,calc(100vw - 32px))}._cancelActionWrap_1nq1p_449{margin-top:14px;display:flex;justify-content:flex-end}._cancelOutlineButton_1nq1p_455{background:#f6f6f6!important;border:1px solid #e5e7eb!important;color:#333!important;font-weight:400!important;padding:.5rem .9rem!important;font-size:.93rem!important;border-radius:8px!important;box-shadow:none!important;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._cancelOutlineButton_1nq1p_455:hover:not(:disabled){background:#ebebeb!important;border-color:#d6d6d6!important;color:#333!important;box-shadow:none!important}.jbButton._cancelOutlineButton_1nq1p_455:not([disabled]):hover{filter:none!important}._cancelOutlineButton_1nq1p_455:disabled{opacity:.55;box-shadow:none}._cancelWarningText_1nq1p_483{color:#374151;font-size:.92rem;line-height:1.5}._cancelWarningBox_1nq1p_489{margin-top:4px;padding:12px 14px;border:1px solid #e5e7eb;border-radius:10px;background:#f9fafb}._cancelIntroText_1nq1p_497{margin-bottom:6px}._cancelInfoText_1nq1p_501{color:#7f1d1d;font-size:.92rem;line-height:1.5}._tierTable_1nq1p_507{display:grid;gap:8px;margin-top:10px}._tierRow_1nq1p_513{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:6px 12px;padding:7px 9px;border-radius:6px;background:#f7f7f7;align-items:center}._tierName_1nq1p_523{display:inline-flex;align-items:center;gap:8px;min-width:0;white-space:nowrap;font-weight:600}._tierCurrentBadge_1nq1p_532{font-size:.72rem;color:#1d4ed8;border:1px solid #b7d3f2;background:#eef6ff;border-radius:999px;padding:1px 6px;flex:0 0 auto}._tierPrice_1nq1p_542{white-space:nowrap;font-weight:600;justify-self:end}._tierCount_1nq1p_548{grid-column:1 / -1;color:#4b5563;font-size:.86rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._tierRowActive_1nq1p_557{background:#eaf4ff;border:1px solid #b7d3f2}@media(max-width:640px){._tierRow_1nq1p_513{grid-template-columns:1fr;gap:4px}._tierPrice_1nq1p_542{justify-self:start}}._detailsStack_1nq1p_573{display:grid;gap:16px;margin-top:12px}._invoiceList_1nq1p_579,._eventList_1nq1p_580,._tierHistoryList_1nq1p_581{display:grid;gap:10px;margin-top:10px}._projectList_1nq1p_587{display:grid;gap:8px;margin-top:10px}._projectRow_1nq1p_593{display:flex;justify-content:space-between;gap:12px;padding:8px 10px;border-radius:6px;background:#f7f7f7}._invoiceRow_1nq1p_602,._eventRow_1nq1p_603,._tierHistoryRow_1nq1p_604{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:8px 10px;border-radius:6px;background:#f7f7f7}._invoiceNumber_1nq1p_614{font-weight:600}._invoiceMeta_1nq1p_618,._eventMeta_1nq1p_619{color:#666;font-size:.85rem}._invoiceDateMeta_1nq1p_624{margin-top:4px;color:#666;font-size:.76rem;line-height:1.2;white-space:nowrap}._invoiceActions_1nq1p_632{display:flex;gap:8px;flex-wrap:wrap}._invoiceTableWrap_1nq1p_638{margin-top:10px;overflow-x:auto}._invoiceTable_1nq1p_638{width:100%;border-collapse:collapse;min-width:760px}._invoiceTable_1nq1p_638 th,._invoiceTable_1nq1p_638 td{padding:12px 14px;border-bottom:1px solid #e8edf3;text-align:left;vertical-align:top;transition:background-color .2s ease-in-out}._invoiceTable_1nq1p_638 td{font-size:.88rem}._invoiceTable_1nq1p_638 th{padding-top:9px;padding-bottom:9px;border-top:none;border-bottom:none;font-size:.8rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#64748b;background:#f8fafc;white-space:nowrap}._invoiceTable_1nq1p_638 th:first-child{border-top-left-radius:10px;border-bottom-left-radius:10px}._invoiceTable_1nq1p_638 th:last-child{border-top-right-radius:10px;border-bottom-right-radius:10px}._invoiceTable_1nq1p_638 tbody tr:hover{background:#2563eb0b}._invoiceTable_1nq1p_638 tbody tr:last-child td{border-bottom:none}._invoiceTable_1nq1p_638 tbody tr:hover td:first-child{border-top-left-radius:10px;border-bottom-left-radius:10px}._invoiceTable_1nq1p_638 tbody tr:hover td:last-child{border-top-right-radius:10px;border-bottom-right-radius:10px}._invoiceTable_1nq1p_638 td:last-child{width:1%;white-space:nowrap}._invoiceAmountCell_1nq1p_709{font-weight:600;white-space:nowrap}._secondaryButton_1nq1p_714{border:1px solid #e5e7eb!important;background:#f6f6f6!important;color:#333!important;font-weight:400!important;padding:.5rem .9rem!important;font-size:.93rem!important;border-radius:8px!important;box-shadow:none!important;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._secondaryButton_1nq1p_714:hover:not(:disabled){background:#ebebeb!important;border-color:#d6d6d6!important;color:#333!important;box-shadow:none!important}.jbButton._secondaryButton_1nq1p_714:not([disabled]):hover{filter:none!important}._activateButton_1nq1p_737{background:#e3f7e6!important;border:1px solid #bfe6c6!important;color:#1f6d2b!important;font-weight:400!important;padding:.5rem .9rem!important;font-size:.93rem!important;border-radius:8px!important;box-shadow:none!important;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._activateButton_1nq1p_737:hover:not(:disabled){background:#d9f0dd!important;border-color:#b2dcb9!important;color:#1f6d2b!important;box-shadow:none!important}.jbButton._activateButton_1nq1p_737:not([disabled]):hover{filter:none!important}._activateButton_1nq1p_737:disabled{background:#edf8ef!important;border-color:#d5ead9!important;color:#1f6d2ba6!important}._confirmBtn_1nq1p_766{background:#1f6d2b!important;color:#fff!important}._dialogActionsRow_1nq1p_771{margin-top:12px;display:flex;gap:.75rem;justify-content:flex-end}._cancelPasswordBlock_1nq1p_778{margin-top:8px;display:grid;gap:8px}._cancelPasswordHelp_1nq1p_784{color:#6b7280;font-size:.9rem;line-height:1.45}._cancelPasswordLabel_1nq1p_790{font-size:.85rem;font-weight:600;color:#374151}._cancelPasswordInput_1nq1p_796{width:100%;border:1px solid #d1d5db;border-radius:8px;padding:.72rem .8rem;font-size:.96rem;background:#fff;color:#111827}._cancelPasswordInput_1nq1p_796:focus{outline:none;border-color:#1d4ed8;box-shadow:0 0 0 3px #1d4ed81f}._cancelPasswordError_1nq1p_812{color:#c62828;font-size:.85rem}._dialogSecondaryButton_1nq1p_817{border:1px solid #d1d5db!important;background:#fff!important;color:#1f2937!important;font-weight:400!important;cursor:pointer;padding:.5rem .9rem!important;border-radius:8px!important;min-width:120px;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._dialogSecondaryButton_1nq1p_817:hover:not(:disabled){border-color:#9ca3af!important;background:#f3f4f6!important}._dialogPrimaryButton_1nq1p_834{border:none!important;background:var(--jl-primary-color)!important;color:#fff!important;font-weight:400!important;cursor:pointer;padding:.5rem .9rem!important;border-radius:8px!important;min-width:150px;transition:background-color .2s ease,border-color .2s ease,color .2s ease,filter .2s ease}._dialogPrimaryButton_1nq1p_834:hover:not(:disabled){background:var(--jl-primary-color)!important;filter:brightness(.92)}._eventTitle_1nq1p_851{font-weight:600}._eventRight_1nq1p_855{text-align:right;color:#555;font-size:.85rem}._projectLink_1nq1p_861{color:#1a4d8f;font-weight:600;text-decoration:none}._projectLink_1nq1p_861:hover{text-decoration:underline}._projectMeta_1nq1p_871{color:#666;font-size:.85rem;margin-top:2px}._projectNumbers_1nq1p_877{text-align:right;color:#555;font-size:.9rem}._formLabel_1nq1p_883{display:flex;flex-direction:column;gap:6px;font-size:.9rem;color:#444}._formInput_1nq1p_891{border:1px solid #d4d4d4;border-radius:6px;padding:8px 10px;font-size:.95rem}@media(max-width:700px){._headerRow_1nq1p_7{flex-direction:column;align-items:stretch}._invoiceRow_1nq1p_602,._eventRow_1nq1p_603,._tierHistoryRow_1nq1p_604,._projectRow_1nq1p_593{flex-direction:column;align-items:flex-start}._eventRight_1nq1p_855,._projectNumbers_1nq1p_877{text-align:left}._invoiceTable_1nq1p_638{min-width:0}._invoiceTable_1nq1p_638 thead{display:none}._invoiceTable_1nq1p_638,._invoiceTable_1nq1p_638 tbody,._invoiceTable_1nq1p_638 tr,._invoiceTable_1nq1p_638 td{display:block;width:100%}._invoiceTable_1nq1p_638 tr{padding:10px 0;border-bottom:1px solid #e8edf3}._invoiceTable_1nq1p_638 td{display:grid;grid-template-columns:112px minmax(0,1fr);gap:10px;padding:6px 0;border-bottom:none;align-items:start}._invoiceTable_1nq1p_638 td:before{content:attr(data-label);font-size:.76rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#64748b}._invoiceTable_1nq1p_638 td:last-child{width:100%;white-space:normal}}._pricingList_b7oym_1{color:#0e1a2b}._grid_b7oym_2{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:1rem;margin-top:1rem}._card_b7oym_3{background:#fff;padding:1.15rem 1.25rem;border-radius:14px;border:1px solid rgba(15,35,75,.12);box-shadow:0 8px 20px #0f234b0f;display:flex;flex-direction:column;gap:.45rem;min-height:166px}._tier_b7oym_4{display:inline-block;padding:.25rem .7rem;border-radius:999px;background:#1f6feb1a;color:#1149a8;font-weight:800;width:fit-content}._kind_b7oym_5{margin:.15rem 0 0;color:#5f6b7a;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em}._value_b7oym_6{margin:0;font-size:1.55rem;font-weight:800;line-height:1.1;letter-spacing:-.02em}._detail_b7oym_7{margin:0;color:#1149a8;font-size:1rem;font-weight:700;line-height:1.3}._total_b7oym_8{margin:-.1rem 0 .1rem;color:#5f6b7a;font-size:.82rem;font-weight:600;line-height:1.25}._footnote_b7oym_9,._taxNote_b7oym_9,._note_b7oym_9{margin-bottom:0;line-height:1.4}._footnote_b7oym_9{margin-top:.9rem;color:#5f6b7a;font-size:.82rem}._taxNote_b7oym_9{margin-top:.45rem;font-size:.82rem;font-weight:700}._note_b7oym_9{margin-top:.8rem;color:#5f6b7a;font-size:.88rem}._compact_b7oym_14 ._grid_b7oym_2{grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:.65rem;margin-top:.5rem}._compact_b7oym_14 ._card_b7oym_3{min-height:126px;padding:.75rem .85rem;border-radius:10px;gap:.25rem}._compact_b7oym_14 ._tier_b7oym_4{padding:.18rem .5rem;font-size:.8rem}._compact_b7oym_14 ._kind_b7oym_5{margin-top:0;font-size:.64rem}._compact_b7oym_14 ._value_b7oym_6{font-size:1.12rem}._compact_b7oym_14 ._detail_b7oym_7{font-size:.8rem}._compact_b7oym_14 ._total_b7oym_8{margin:0;font-size:.68rem}._compact_b7oym_14 ._footnote_b7oym_9,._compact_b7oym_14 ._taxNote_b7oym_9,._compact_b7oym_14 ._note_b7oym_9{font-size:.72rem}._compact_b7oym_14 ._footnote_b7oym_9{margin-top:.6rem}._compact_b7oym_14 ._taxNote_b7oym_9{margin-top:.3rem}._compact_b7oym_14 ._note_b7oym_9{margin-top:.5rem}._form_1ld58_1{display:grid;gap:.9rem}._grid_1ld58_6{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.8rem}._fullWidth_1ld58_12{grid-column:1 / -1}@media(max-width:720px){._grid_1ld58_6{grid-template-columns:1fr}._fullWidth_1ld58_12{grid-column:auto}}._page_1dbxc_1{padding:24px;max-width:none;margin:0 auto;width:100%}._header_1dbxc_8{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:16px}._title_1dbxc_17{font-size:1.7rem;font-weight:700;color:#1f2937;margin:0 0 6px}._subtitle_1dbxc_24{margin:0;color:#4b5563;font-size:1rem}._headerActions_1dbxc_30{display:flex;gap:10px;flex-wrap:wrap}._loadingWrap_1dbxc_36{padding:32px;display:flex;justify-content:center}._errorBox_1dbxc_42{background:#fee2e2;border:1px solid #fecaca;color:#7f1d1d;padding:12px 16px;border-radius:10px;margin-bottom:16px;font-size:.95rem}._infoBox_1dbxc_52{background:#eff6ff;border:1px solid #bfdbfe;color:#1e3a8a;padding:12px 16px;border-radius:10px;margin-bottom:18px;font-size:.95rem}._tabBar_1dbxc_62{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin-bottom:18px}._tabButton_1dbxc_70{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;border-radius:999px;border:1px solid #d1d5db;background:#fff;color:#374151;font-weight:600;cursor:pointer;transition:background .15s ease,color .15s ease,border-color .15s ease}._tabButtonActive_1dbxc_84{background:#111827;color:#fff;border-color:#111827}._tabCount_1dbxc_90{background:#1118271f;color:#111827;font-size:.75rem;padding:2px 8px;border-radius:999px}._tabButtonActive_1dbxc_84 ._tabCount_1dbxc_90{background:#fff3;color:#fff}._typeSection_1dbxc_103{border:none;border-radius:12px;padding:16px;margin-bottom:24px;background:#fff}._typeHeader_1dbxc_111{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;margin-bottom:12px}._typeHeaderActions_1dbxc_120{display:flex;align-items:center;gap:10px;flex-wrap:wrap;width:100%;justify-content:space-between}._typeSearch_1dbxc_129{min-width:220px;margin-left:auto;position:relative}._typeMeta_1dbxc_135{color:#6b7280;font-size:.9rem;margin-right:auto}._typeTitle_1dbxc_141{margin:0 0 4px;font-size:1.2rem;color:#111827}._typeDescription_1dbxc_147{margin:0;color:#6b7280;font-size:.95rem}._tableWrap_1dbxc_153{overflow-x:visible}._valueTable_1dbxc_157{width:100%;border-collapse:collapse;font-size:.95rem;table-layout:fixed}._colOrder_1dbxc_164{width:44px}._colCategory_1dbxc_168{width:450px}._colCode_1dbxc_172{width:105px}._colValue_1dbxc_176{width:110px}._colTypeSmall_1dbxc_180{width:56px}._colEdit_1dbxc_184{width:110px}._colAction_1dbxc_188{width:140px}._valueTable_1dbxc_157 th,._valueTable_1dbxc_157 td{padding:10px;border-bottom:1px solid #e5e7eb;vertical-align:top;text-align:left;word-break:break-word}._valueTable_1dbxc_157 th{background:#f3f4f6;font-weight:600;color:#374151;white-space:normal}._orderCell_1dbxc_208{display:flex;gap:8px;align-items:center;justify-content:center;min-height:42px}._dragHandle_1dbxc_216{cursor:grab;color:#6b7280;display:inline-flex;align-items:center;justify-content:center;-webkit-user-select:none;user-select:none;padding:0;border-radius:6px;transition:background .15s ease,color .15s ease;width:32px;height:32px;font-size:1rem}._dragHandle_1dbxc_216:hover{background:#eef2f7;color:#111827}._textInput_1dbxc_236 input,._numberInput_1dbxc_237 input,._searchInput_1dbxc_238 input{width:100%;min-width:0;height:32px;padding:4px 8px;font-size:.9rem}._searchInput_1dbxc_238 input{padding-right:28px}._clearSearch_1dbxc_250{position:absolute;right:6px;top:50%;transform:translateY(-50%);border:none;background:transparent;color:#6b7280;font-size:.85rem;cursor:pointer;padding:2px 4px}._clearSearch_1dbxc_250:hover{color:#111827}._actionCell_1dbxc_267{white-space:nowrap;text-align:right}._typeCell_1dbxc_272{text-align:center}._typeHeaderCell_1dbxc_276{font-size:.75rem;color:#6b7280;white-space:nowrap;text-align:center}._editDialog_1dbxc_283{display:flex;flex-direction:column;gap:14px}._editRow_1dbxc_289{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px;align-items:end}._primaryButton_1dbxc_296,._secondaryButton_1dbxc_297,._dangerButton_1dbxc_298{display:inline-flex;align-items:center;gap:6px}._secondaryButton_1dbxc_297{background:#fff;color:#111827}._editButton_1dbxc_309{background:#fff;border:1px solid #d1d5db;padding:4px 6px;font-size:.9rem;line-height:1;height:30px;width:30px;justify-content:center;color:#111827}._outlineButton_1dbxc_321{background:#fff;border:1px solid #d1d5db;color:#111827}._dangerButton_1dbxc_298{background:#fee2e2;border-color:#fecaca;color:#991b1b}._emptyState_1dbxc_333{padding:12px;color:#6b7280;font-style:italic}._draggableRow_1dbxc_339:active ._dragHandle_1dbxc_216{cursor:grabbing}._dragging_1dbxc_343{opacity:.7;background:#eef2ff}._dragOver_1dbxc_348{outline:2px dashed #94a3b8;outline-offset:-2px}._newRowHighlight_1dbxc_353{animation:_newRowFlash_1dbxc_1 3s ease-in-out}@keyframes _newRowFlash_1dbxc_1{0%{background-color:#fef9c3}40%{background-color:#fef3c7}to{background-color:transparent}}._saveDialog_1dbxc_369{display:flex;flex-direction:column;gap:16px}._saveDialogText_1dbxc_375{margin:0;color:#374151}._dialogActions_1dbxc_380{display:flex;justify-content:flex-end;gap:8px;flex-wrap:wrap}@media(max-width:900px){._page_1dbxc_1{padding:16px}._valueTable_1dbxc_157 th,._valueTable_1dbxc_157 td{padding:8px;font-size:.9rem}._textInput_1dbxc_236 input,._numberInput_1dbxc_237 input{height:30px}._valueTable_1dbxc_157{table-layout:auto}._valueTable_1dbxc_157 thead{display:none}._valueTable_1dbxc_157 tbody{display:grid;gap:12px}._valueTable_1dbxc_157 tr{display:grid;gap:8px;border:1px solid #e5e7eb;border-radius:12px;padding:10px;background:#fff}._valueTable_1dbxc_157 td{display:grid;grid-template-columns:minmax(0,1fr);gap:6px;border-bottom:none;padding:0}._valueTable_1dbxc_157 td:before{content:attr(data-label);font-size:.75rem;font-weight:600;color:#6b7280;text-transform:uppercase;letter-spacing:.04em}._orderCell_1dbxc_208{flex-direction:row;justify-content:flex-start}._actionCell_1dbxc_267{text-align:left}._typeHeaderActions_1dbxc_120{align-items:flex-start}._typeSearch_1dbxc_129{width:100%;margin-left:0}._typeMeta_1dbxc_135{margin-right:0}}._page_oh5yh_1{padding:24px;max-width:none;margin:0 auto;width:100%}._header_oh5yh_8{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:16px}._title_oh5yh_17{font-size:1.7rem;font-weight:700;color:#1f2937;margin:0 0 6px}._subtitle_oh5yh_24{margin:0;color:#4b5563;font-size:1rem}._headerActions_oh5yh_30{display:flex;gap:10px;flex-wrap:wrap;align-items:center}._searchWrap_oh5yh_37{min-width:320px}._searchInput_oh5yh_41{width:100%;min-height:40px;border:1px solid #d1d5db;border-radius:10px;padding:10px 12px;font-size:.95rem;background:#fff}._infoBox_oh5yh_51{background:#eff6ff;border:1px solid #bfdbfe;color:#1e3a8a;padding:12px 16px;border-radius:10px;margin-bottom:18px;font-size:.95rem}._actionBox_oh5yh_61{background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46;padding:12px 16px;border-radius:10px;margin-bottom:18px;font-size:.95rem}._actionBoxError_oh5yh_71{background:#fee2e2;border-color:#fecaca;color:#7f1d1d}._loadingWrap_oh5yh_77{padding:32px;display:flex;justify-content:center}._errorBox_oh5yh_83,._emptyBox_oh5yh_84,._noticeBox_oh5yh_85{border-radius:10px;padding:14px 16px;font-size:.95rem}._errorBox_oh5yh_83{background:#fee2e2;border:1px solid #fecaca;color:#7f1d1d}._emptyBox_oh5yh_84,._noticeBox_oh5yh_85{background:#f9fafb;border:1px solid #e5e7eb;color:#4b5563}._retryWrap_oh5yh_104{margin-top:12px}._list_oh5yh_108{display:flex;flex-direction:column;gap:16px}._accordion_oh5yh_114{background:#fff;border:1px solid #e5e7eb;border-radius:14px;overflow:hidden}._accordionHeader_oh5yh_121{width:100%;border:none;background:transparent;padding:18px 20px;display:flex;justify-content:space-between;gap:20px;align-items:center;text-align:left;cursor:pointer}._accordionHeader_oh5yh_121:hover{background:#f9fafb}._headerIdentity_oh5yh_138{min-width:0;flex:1 1 auto}._headerTitleRow_oh5yh_143{display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-bottom:6px}._headerTitle_oh5yh_143{font-size:1.15rem;font-weight:700;color:#111827}._badge_oh5yh_157{display:inline-flex;align-items:center;padding:4px 10px;border-radius:999px;background:#e5e7eb;color:#374151;font-size:.8rem;font-weight:600}._headerMeta_oh5yh_168{display:flex;flex-wrap:wrap;gap:8px 16px;color:#6b7280;font-size:.92rem}._headerStats_oh5yh_176{display:flex;align-items:center;justify-content:flex-end;flex-wrap:wrap;gap:10px;flex:0 0 auto}._statPill_oh5yh_185{min-width:118px;padding:8px 12px;background:#f3f4f6;border-radius:10px;display:flex;flex-direction:column;gap:4px;color:#4b5563;font-size:.82rem}._statPill_oh5yh_185 strong{color:#111827;font-size:.98rem}._chevron_oh5yh_202{color:#4b5563;display:inline-flex;align-items:center;justify-content:center;font-size:1.1rem}._accordionBody_oh5yh_210{border-top:1px solid #e5e7eb;padding:20px;display:flex;flex-direction:column;gap:18px;background:linear-gradient(180deg,#fff,#fbfdff)}._metricCard_oh5yh_219,._sectionCard_oh5yh_220{background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:16px}._metricLabel_oh5yh_227{color:#6b7280;font-size:.85rem;margin-bottom:8px}._metricValue_oh5yh_233{color:#111827;font-size:1.3rem;font-weight:700}._sectionGrid_oh5yh_239{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}._sectionTitle_oh5yh_245{margin:0 0 14px;font-size:1rem;color:#111827}._detailList_oh5yh_251{display:flex;flex-direction:column;gap:10px}._detailRow_oh5yh_257{display:flex;justify-content:space-between;gap:16px;padding-bottom:10px;border-bottom:1px solid #f3f4f6;color:#4b5563}._detailRow_oh5yh_257 strong{color:#111827;text-align:right}._itemList_oh5yh_271{display:flex;flex-direction:column;gap:10px}._itemRow_oh5yh_277{display:flex;justify-content:space-between;gap:14px;align-items:flex-start;padding:12px 0;border-bottom:1px solid #f3f4f6}._itemRow_oh5yh_277:last-child,._detailRow_oh5yh_257:last-child{border-bottom:none;padding-bottom:0}._itemTitle_oh5yh_292{font-weight:600;color:#111827;margin-bottom:4px}._itemMeta_oh5yh_298{color:#6b7280;font-size:.92rem}._itemRight_oh5yh_303{text-align:right;color:#4b5563;font-size:.92rem;display:flex;flex-direction:column;gap:4px;white-space:nowrap}._actionRow_oh5yh_313{display:flex;justify-content:flex-end;gap:10px;flex-wrap:wrap}._grantButton_oh5yh_320{background:#0f766e;border-color:#0f766e;color:#fff}._grantButton_oh5yh_320:hover,._grantButton_oh5yh_320:focus{background:#115e59;border-color:#115e59}._deleteButton_oh5yh_332{background:#b91c1c;border-color:#b91c1c;color:#fff}._deleteButton_oh5yh_332:hover,._deleteButton_oh5yh_332:focus{background:#991b1b;border-color:#991b1b}._dialogContent_oh5yh_344{display:flex;flex-direction:column;gap:14px;min-width:min(460px,100%)}._dialogHint_oh5yh_351{color:#4b5563;font-size:.95rem}._formField_oh5yh_356{display:flex;flex-direction:column;gap:6px;color:#374151;font-size:.92rem}._formInput_oh5yh_364{width:100%;min-height:40px;border:1px solid #d1d5db;border-radius:10px;padding:10px 12px;font-size:.95rem;background:#fff}._dialogActions_oh5yh_374{display:flex;justify-content:flex-end;gap:10px;flex-wrap:wrap}@media(max-width:1100px){._sectionGrid_oh5yh_239{grid-template-columns:1fr 1fr}._accordionHeader_oh5yh_121{flex-direction:column;align-items:stretch}._headerStats_oh5yh_176{justify-content:flex-start}}@media(max-width:720px){._page_oh5yh_1{padding:16px}._searchWrap_oh5yh_37{min-width:0;width:100%}._headerActions_oh5yh_30{width:100%}._sectionGrid_oh5yh_239{grid-template-columns:1fr}._detailRow_oh5yh_257,._itemRow_oh5yh_277{flex-direction:column}._itemRight_oh5yh_303{text-align:left;white-space:normal}}._wrapper_1fe58_1{display:grid;width:100%;min-width:0;box-sizing:border-box;gap:1rem;padding:1rem 1.25rem}._adminShell_1fe58_10,._editorCard_1fe58_11,._listCard_1fe58_12,._emptyCard_1fe58_13{background:#fff;border:1px solid rgba(15,35,75,.12);border-radius:18px;box-shadow:0 10px 24px #0f234b14}._editorCard_1fe58_11,._listCard_1fe58_12,._emptyCard_1fe58_13{padding:1rem}._plainEmpty_1fe58_26{display:grid;gap:.75rem;padding:1rem 0}._plainEmpty_1fe58_26 h3,._plainEmpty_1fe58_26 p{margin:0}._heroTop_1fe58_37{display:flex;justify-content:space-between;gap:1rem;align-items:flex-start;flex-wrap:wrap}._heroTop_1fe58_37 h3{margin:0}._muted_1fe58_49{color:#5f6b7a}._actions_1fe58_53{display:flex;gap:.75rem;flex-wrap:wrap}._bookingActions_1fe58_59{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem}._bookingActions_1fe58_59 .jbButton{width:100%;justify-content:center;white-space:normal;text-align:center}._adminShell_1fe58_10{display:grid;grid-template-columns:minmax(300px,360px) minmax(0,1fr);overflow:hidden}._listCard_1fe58_12{width:min(1280px,100%);margin:0 auto;display:grid;gap:.75rem;border-radius:8px;box-shadow:none}._editorCard_1fe58_11,._wizardEditor_1fe58_96{width:min(1320px,100%);margin:0 auto;display:grid;gap:1.2rem}._embeddedSection_1fe58_103{display:grid;gap:1rem;padding-top:1.2rem;border-top:1px solid rgba(15,35,75,.1)}._seminarList_1fe58_110{display:grid;gap:0;border:1px solid rgba(15,35,75,.1);border-radius:8px;overflow:visible}._seminarListHeader_1fe58_119,._seminarListItem_1fe58_120{display:grid;grid-template-columns:minmax(120px,.75fr) minmax(130px,.8fr) minmax(300px,2fr) minmax(150px,.8fr) 76px 58px;gap:.75rem;align-items:center}._seminarListHeader_1fe58_119{min-height:38px;padding:0 .9rem;background:#f8fafc;border-bottom:1px solid rgba(15,35,75,.1);color:#5f6b7a;font-size:.78rem;font-weight:800;letter-spacing:.02em;text-transform:uppercase}._seminarListItem_1fe58_120{position:relative;width:100%;text-align:left;background:#fff;border:0;border-bottom:1px solid rgba(15,35,75,.08);border-radius:0;padding:.85rem .9rem;cursor:pointer;font:inherit;color:#0e1a2b}._seminarListItem_1fe58_120:has(._rowActionMenu_1fe58_153){z-index:2}._rowActionWrap_1fe58_157{position:relative;display:flex;justify-content:flex-end;z-index:3}._rowActionButton_1fe58_164{width:34px;height:34px;border:1px solid rgba(15,35,75,.12);border-radius:8px;background:#fff;color:#334155;font-size:1.35rem;line-height:1;cursor:pointer}._rowActionButton_1fe58_164:hover,._rowActionButton_1fe58_164:focus-visible{border-color:#1f6feb59;background:#eef4ff;outline:none}._rowActionMenu_1fe58_153{position:absolute;right:0;top:calc(100% + .35rem);z-index:10;min-width:150px;padding:.35rem;border-radius:10px;border:1px solid rgba(15,35,75,.12);background:#fff;box-shadow:0 14px 30px #0f234b24;display:grid;gap:.15rem}._rowActionMenu_1fe58_153 button{width:100%;border:0;border-radius:8px;background:transparent;padding:.6rem .7rem;text-align:left;font:inherit;color:#0e1a2b;cursor:pointer}._rowActionMenu_1fe58_153 button:hover,._rowActionMenu_1fe58_153 button:focus-visible{background:#eef4ff;outline:none}._seminarListItem_1fe58_120:last-child{border-bottom:0}._seminarListItem_1fe58_120:hover,._seminarListItem_1fe58_120:focus-visible{background:#f8fbff;outline:none}._seminarListItemActive_1fe58_226{border-color:#1e3a8659;box-shadow:inset 0 0 0 1px #1e3a8626;background:#eef4ff}._seminarListTopic_1fe58_232,._seminarListDate_1fe58_233,._seminarListCapacity_1fe58_234{min-width:0;color:#5f6b7a;font-size:.92rem}._seminarListTitle_1fe58_240{min-width:0;overflow-wrap:anywhere}._seminarListCapacity_1fe58_234{text-align:right;font-variant-numeric:tabular-nums}._pill_1fe58_250{display:inline-flex;width:fit-content;padding:.22rem .55rem;border-radius:999px;background:#1f6feb1a;color:#1149a8;font-size:.78rem;font-weight:700}._pillSecondary_1fe58_261{display:inline-flex;width:fit-content;padding:.22rem .55rem;border-radius:999px;background:#0f234b14;color:#334155;font-size:.78rem;font-weight:700}._formGrid_1fe58_272{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;align-items:start}._wizardSteps_1fe58_279{display:flex;justify-content:center;gap:.45rem;flex-wrap:wrap;padding-bottom:.2rem}._wizardStep_1fe58_279,._wizardStepActive_1fe58_288{display:inline-flex;align-items:center;gap:.45rem;border:0;border-radius:999px;padding:.48rem .8rem;background:transparent;color:#5f6b7a;font:inherit;font-weight:700;cursor:pointer}._wizardStep_1fe58_279 span,._wizardStepActive_1fe58_288 span{display:grid;place-items:center;width:1.4rem;height:1.4rem;border-radius:50%;background:#e2e8f0;color:#334155;font-size:.78rem}._wizardStep_1fe58_279:hover,._wizardStep_1fe58_279:focus-visible{background:#f1f5f9;outline:none}._wizardStepActive_1fe58_288{background:#eef4ff;color:#1149a8}._wizardStepActive_1fe58_288 span{background:#1f6feb;color:#fff}._wizardPage_1fe58_330{min-height:330px}._formatTiles_1fe58_334{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;width:min(760px,100%);margin:2rem auto}._formatTile_1fe58_334,._formatTileActive_1fe58_343{min-height:190px;border:2px solid rgba(15,35,75,.12);border-radius:16px;padding:1.4rem;background:#fff;color:#0e1a2b;text-align:left;font:inherit;cursor:pointer;display:grid;align-content:center;gap:.7rem}._formatTile_1fe58_334 strong,._formatTileActive_1fe58_343 strong{font-size:1.12rem}._formatTile_1fe58_334 span,._formatTileActive_1fe58_343 span{color:#5f6b7a;line-height:1.45}._formatTile_1fe58_334:hover,._formatTile_1fe58_334:focus-visible{border-color:#1f6feb80;background:#f8fbff;outline:none}._formatTileActive_1fe58_343{border-color:#1f6feb;box-shadow:0 0 0 3px #1f6feb21;background:#eef4ff}._formatTile_1fe58_334:disabled,._formatTileActive_1fe58_343:disabled{cursor:default;opacity:.72}._requiredHint_1fe58_382{margin:0;color:#5f6b7a;font-size:.85rem}._requiredField_1fe58_388>label:after,._requiredField_1fe58_388 .jbStringField__label:after,._requiredField_1fe58_388 .seminar-rich-editor-field>label:after,._requiredField_1fe58_388._sessionSection_1fe58_391>._heroTop_1fe58_37>label:after,._requiredLabel_1fe58_392:after{content:" *";color:#dc2626}._requiredLabel_1fe58_392{display:block;margin-top:1rem}._formatLockHint_1fe58_402{display:block;color:#5f6b7a;margin-top:.75rem}._scheduleState_1fe58_408{color:#5f6b7a;font-size:.78rem;line-height:1.35}._statusLine_1fe58_414 ._scheduleState_1fe58_408{display:block;margin-top:.35rem}._scheduleDialog_1fe58_419{display:grid;gap:1rem;min-width:min(480px,80vw)}._scheduleDialog_1fe58_419 p{margin:0;color:#5f6b7a}._scheduleDialog_1fe58_419 ol{display:grid;gap:.8rem;margin:0;padding-left:1.4rem}._scheduleDialog_1fe58_419 li{display:grid;gap:.2rem}._scheduleDialog_1fe58_419 li span{color:#5f6b7a}._wizardActions_1fe58_446{display:flex;justify-content:flex-end;gap:.75rem}._addressField_1fe58_452{display:grid;gap:.35rem}._addressField_1fe58_452 label{font-weight:700;color:#0e1a2b}._addressField_1fe58_452 input{min-height:38px;box-sizing:border-box;border:1px solid rgba(15,35,75,.18);border-radius:10px;padding:.6rem .75rem;font:inherit}._addressField_1fe58_452 small{color:#5f6b7a}._addressMap_1fe58_466{width:100%}._detailTile_1fe58_470{display:grid;align-content:start;gap:.8rem;padding:1rem;border:1px solid rgba(15,35,75,.1);border-radius:14px;background:#f8fbff}._bookingTile_1fe58_480{grid-template-columns:repeat(2,minmax(0,1fr));grid-column:span 2}._venueTile_1fe58_485{grid-column:1 / -1;grid-template-columns:minmax(0,.8fr) minmax(320px,1.2fr);align-items:start}._teamsVenueTile_1fe58_491{grid-column:1 / -1;grid-template-columns:repeat(3,minmax(0,1fr))}._venueTile_1fe58_485>:first-child{grid-column:1}._venueTile_1fe58_485 ._addressField_1fe58_452,._venueTile_1fe58_485>:not(:first-child){grid-column:2}._venueTile_1fe58_485 .jbStringField{min-width:0}._fullWidth_1fe58_509{grid-column:1 / -1}._textareaField_1fe58_513{display:grid;gap:.35rem}._textareaField_1fe58_513 label{font-weight:700;color:#0e1a2b}._textareaField_1fe58_513 textarea{min-height:118px;resize:vertical;border:1px solid rgba(15,35,75,.18);border-radius:10px;padding:.75rem .85rem;font:inherit;color:#0e1a2b;background:#fff}._editorCard_1fe58_11 input:disabled,._editorCard_1fe58_11 textarea:disabled,._editorCard_1fe58_11 select:disabled{background:#f1f5f9!important;color:#64748b!important;border-color:#0f234b1f!important;cursor:default}._editorCard_1fe58_11 label:has(+textarea:disabled){color:#64748b}._textareaField_1fe58_513 small{color:#5f6b7a}._materialSection_1fe58_551{display:grid;gap:.6rem}._materialSection_1fe58_551>label{font-weight:700;color:#0e1a2b}._materialDropzone_1fe58_561{min-height:76px;border:1px dashed rgba(15,35,75,.24);border-radius:10px;background:#f8fbff;display:grid;place-items:center;padding:1rem;color:#334155;cursor:pointer;text-align:center}._materialDropzone_1fe58_561:hover,._materialDropzone_1fe58_561:focus-within{border-color:#1f6feb73;background:#eef4ff}._materialDropzoneDisabled_1fe58_580{cursor:default;background:#f1f5f9;color:#64748b}._materialList_1fe58_586{display:grid;gap:.55rem}._materialItem_1fe58_591{display:flex;justify-content:space-between;gap:1rem;align-items:center;min-width:0;padding:.75rem .85rem;border:1px solid rgba(15,35,75,.1);border-radius:10px;background:#fff}._materialItem_1fe58_591>div{display:grid;gap:.15rem;min-width:0}._materialItem_1fe58_591 strong{min-width:0;overflow-wrap:anywhere}._materialItem_1fe58_591 span{color:#5f6b7a;font-size:.88rem}._materialRemove_1fe58_619{width:30px;height:30px;border:0;border-radius:999px;background:#fee2e2;color:#b91c1c;font-size:1.15rem;line-height:1;cursor:pointer;flex:0 0 auto}._materialRemove_1fe58_619:hover,._materialRemove_1fe58_619:focus-visible{background:#fecaca;outline:none}._sessionSection_1fe58_391{display:grid;gap:.8rem}._sessionCard_1fe58_643{padding:1rem;border-radius:14px;background:#f8fbff;border:1px solid rgba(15,35,75,.08);display:grid;gap:.8rem}._sessionHeader_1fe58_652{display:flex;justify-content:space-between;gap:1rem;align-items:center}._sessionGrid_1fe58_659{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.8rem}._helper_1fe58_665{margin:0;color:#5f6b7a;font-size:.92rem}._bookingsGrid_1fe58_671{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,360px),1fr));gap:.9rem}._mySeminarGrid_1fe58_677{display:grid;width:100%;grid-template-columns:repeat(3,minmax(0,360px));justify-content:start;gap:1rem}._materialPanel_1fe58_685{display:flex;padding:0;border-radius:10px;border:1px solid rgba(15,35,75,.08);background:#f8fbff;overflow:hidden}._materialPanelHeader_1fe58_694{display:flex;justify-content:space-between;gap:.75rem;align-items:baseline;flex-wrap:wrap}._materialPanelHeader_1fe58_694 span,._materialNotice_1fe58_703{color:#5f6b7a;font-size:.9rem}._materialNotice_1fe58_703{margin:0}._materialDownloadList_1fe58_712{display:grid;gap:.45rem}._materialDownloadButton_1fe58_717{width:100%;border:1px solid rgba(15,35,75,.1);border-radius:8px;background:#fff;padding:.55rem .65rem;display:flex;justify-content:space-between;gap:.8rem;align-items:center;text-align:left;color:#0e1a2b;cursor:pointer}._materialDownloadButton_1fe58_717:hover,._materialDownloadButton_1fe58_717:focus-visible{border-color:#1f6feb59;background:#eef4ff;outline:none}._materialDownloadButton_1fe58_717 span{min-width:0;overflow-wrap:anywhere;font-weight:700}._materialDownloadButton_1fe58_717 small{color:#5f6b7a;white-space:nowrap}._materialZipButton_1fe58_750{width:100%;min-height:46px;border:0;background:transparent;display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:.65rem;align-items:center;padding:.72rem .8rem;color:#0e1a2b;cursor:pointer;text-align:left;font:inherit}._materialZipButton_1fe58_750 svg{width:18px;height:18px;color:#0b4fb3}._materialZipButton_1fe58_750 span{font-weight:750}._materialZipButton_1fe58_750 small{color:#5f6b7a;font-size:.82rem;white-space:nowrap}._materialZipButton_1fe58_750:hover,._materialZipButton_1fe58_750:focus-visible{background:#eef4ff;outline:none}._materialZipButton_1fe58_750:disabled{cursor:not-allowed;color:#64748b;background:#f1f5f9}._materialZipButton_1fe58_750:disabled svg{color:#64748b}._summaryGrid_1fe58_798{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}._summaryCard_1fe58_804{background:#fff;border:1px solid rgba(15,35,75,.12);border-radius:18px;box-shadow:0 10px 24px #0f234b14;padding:1.5rem;display:grid;gap:1rem}._manualBookingPanel_1fe58_814{display:grid;gap:.8rem;padding:.9rem;border:1px solid rgba(15,35,75,.12);border-radius:8px;background:#f8fafc}._sectionHeader_1fe58_823{display:flex;align-items:end;justify-content:space-between;gap:1rem;flex-wrap:wrap}._sectionHeader_1fe58_823 h4,._sectionHeader_1fe58_823 p{margin:0}._sectionHeader_1fe58_823 p{margin-top:.25rem;color:#5f6b7a;font-size:.9rem}._paymentChoice_1fe58_835,._userMultiSelect_1fe58_835{display:grid;gap:.35rem}._paymentChoice_1fe58_835 label,._userMultiSelect_1fe58_835 label{font-size:.82rem;font-weight:700}._paymentChoice_1fe58_835 select,._userMultiSelect_1fe58_835 input,._participantToolbar_1fe58_837 input,._participantToolbar_1fe58_837 select{min-height:34px;box-sizing:border-box;border:1px solid rgba(15,35,75,.18);border-radius:6px;padding:.35rem .5rem;background:#fff;font:inherit}._userMultiSelect_1fe58_835{max-width:620px}._userOptionList_1fe58_848,._selectedUserChips_1fe58_848{display:flex;gap:.35rem;flex-wrap:wrap}._userOptionList_1fe58_848{display:grid;border:1px solid rgba(15,35,75,.12);border-radius:6px;background:#fff;padding:.35rem}._userOption_1fe58_848{display:flex;gap:.5rem;padding:.4rem;align-items:start;cursor:pointer}._userOption_1fe58_848 small{display:block;color:#5f6b7a;margin-top:.1rem}._selectedUserChips_1fe58_848 button{border:0;border-radius:999px;padding:.25rem .55rem;background:#e8f0ff;color:#1149a8;cursor:pointer}._participantToolbar_1fe58_837{display:grid;grid-template-columns:minmax(220px,1fr) 180px auto;align-items:center;gap:.6rem}._participantToolbar_1fe58_837 span{color:#5f6b7a;font-size:.85rem;white-space:nowrap}._participantTableWrap_1fe58_861{overflow-x:auto;border:1px solid rgba(15,35,75,.12);border-radius:8px}._participantTable_1fe58_861{width:100%;min-width:1040px;border-collapse:collapse;font-size:.88rem}._participantTable_1fe58_861 th,._participantTable_1fe58_861 td{padding:.55rem .65rem;border-bottom:1px solid rgba(15,35,75,.08);text-align:left;vertical-align:middle}._participantTable_1fe58_861 th{background:#f8fafc;color:#475569;font-size:.75rem;text-transform:uppercase;letter-spacing:.02em;white-space:nowrap}._participantTable_1fe58_861 td strong,._participantTable_1fe58_861 td span{display:block}._participantTable_1fe58_861 td>span{color:#5f6b7a;font-size:.82rem}._tableSelect_1fe58_867{min-height:30px;border:1px solid rgba(15,35,75,.18);border-radius:5px;background:#fff;font:inherit}._invoiceButton_1fe58_868,._invoiceRetryButton_1fe58_868{border:1px solid rgba(31,111,235,.28);border-radius:6px;padding:.3rem .5rem;background:#eef4ff;color:#1149a8;font:inherit;font-size:.82rem;cursor:pointer;white-space:nowrap}._invoiceRetryButton_1fe58_868{background:#fff;color:#334155;border-color:#0f234b2e}._invoiceButton_1fe58_868:hover,._invoiceRetryButton_1fe58_868:hover{background:#dce9ff}._invoiceRetryButton_1fe58_868:disabled{opacity:.6;cursor:wait}._summaryRows_1fe58_873{display:grid;gap:.75rem}._summaryRow_1fe58_873{display:flex;justify-content:space-between;gap:1rem;color:#334155}._searchBox_1fe58_885{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:.8rem;align-items:end}._searchResults_1fe58_892{display:grid;gap:.65rem}._searchResultItem_1fe58_897{width:100%;text-align:left;padding:.85rem 1rem;border-radius:14px;border:1px solid rgba(15,35,75,.08);background:#f8fbff;display:grid;gap:.2rem}._searchResultItemActive_1fe58_908{border-color:#1e3a8659;box-shadow:inset 0 0 0 1px #1e3a8626;background:#eef4ff}._selectedUserCard_1fe58_914{padding:.9rem 1rem;border-radius:14px;border:1px solid rgba(15,35,75,.08);background:#f8fbff;display:grid;gap:.2rem}._bookingItem_1fe58_923{padding:1rem 1.1rem;border-radius:14px;background:#f8fbff;border:1px solid rgba(15,35,75,.08);display:grid;gap:.5rem}._bookingMeta_1fe58_932{display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;color:#5f6b7a;font-size:.92rem}._statusLine_1fe58_414{display:flex;gap:.6rem;align-items:center;flex-wrap:wrap}._statusBadge_1fe58_948{display:inline-flex;flex:0 0 auto;padding:.24rem .55rem;border-radius:999px;background:#146e371f;color:#146e37;font-weight:700;font-size:.78rem;line-height:1.2;white-space:nowrap}._previewTitle_1fe58_961{margin:0 0 .8rem}._previewCard_1fe58_965{max-width:min(520px,100%)}._previewCard_1fe58_965 a{cursor:pointer}._modalBackdrop_1fe58_973{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2000;background:#0f172a6b;display:grid;place-items:center;padding:1rem}._modalCard_1fe58_983{width:min(620px,100%);max-height:min(760px,92vh);overflow:auto;background:#fff;border-radius:12px;border:1px solid rgba(15,35,75,.12);box-shadow:0 20px 44px #0f234b38;padding:1.25rem;display:grid;gap:1rem}._modalClose_1fe58_996{border:0;background:transparent;color:#0e1a2b;font-size:1.6rem;line-height:1;cursor:pointer}@media(max-width:1160px){._adminShell_1fe58_10{grid-template-columns:1fr}._formGrid_1fe58_272{grid-template-columns:repeat(2,minmax(0,1fr))}._mySeminarGrid_1fe58_677{grid-template-columns:repeat(2,minmax(0,360px))}}@media(max-width:780px){._formGrid_1fe58_272,._sessionGrid_1fe58_659,._summaryGrid_1fe58_798,._searchBox_1fe58_885,._bookingsGrid_1fe58_671,._mySeminarGrid_1fe58_677{grid-template-columns:1fr}._wrapper_1fe58_1{padding:.75rem}._seminarList_1fe58_110{border:0;border-radius:0;gap:.7rem;overflow:visible}._seminarListHeader_1fe58_119{display:none}._seminarListItem_1fe58_120{grid-template-columns:1fr;gap:.45rem;border:1px solid rgba(15,35,75,.08);border-radius:8px;padding:.9rem;background:#f8fbff}._seminarListCapacity_1fe58_234{text-align:left}._rowActionWrap_1fe58_157{justify-content:flex-start}._bookingActions_1fe58_59{grid-template-columns:1fr}._formatTiles_1fe58_334{grid-template-columns:1fr;margin:.75rem auto}._wizardActions_1fe58_446{justify-content:space-between}._bookingTile_1fe58_480,._venueTile_1fe58_485,._teamsVenueTile_1fe58_491{grid-column:auto;grid-template-columns:1fr}._venueTile_1fe58_485>:first-child,._venueTile_1fe58_485 ._addressField_1fe58_452,._venueTile_1fe58_485>:not(:first-child){grid-column:auto}}.seminar-page-intro{max-width:760px}.seminar-page-shell{padding-top:2.2rem;padding-bottom:3.2rem}.seminar-page-title{margin-top:0;margin-bottom:1rem;font-size:clamp(2rem,3.2vw,3rem);line-height:1.18}.seminar-page-actions{margin-top:2rem;display:flex;gap:.8rem;flex-wrap:wrap}.seminar-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.4rem}.seminar-card{position:relative;display:grid;grid-template-rows:210px minmax(0,1fr);color:inherit;text-decoration:none;background:var(--card);border:1px solid var(--outline);border-radius:14px;overflow:hidden;box-shadow:0 12px 26px #0f234b14;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;width:100%;max-width:none;min-height:100%}.seminar-preview-card-label,.seminar-preview-detail-label{position:absolute;left:.85rem;top:.85rem;z-index:5;display:inline-flex;align-items:center;min-height:28px;padding:.25rem .7rem;border-radius:999px;background:#ffe066;color:#5b3b00;border:1px solid #e1b900;font-size:.78rem;font-weight:900;letter-spacing:.03em;text-transform:uppercase;box-shadow:0 6px 14px #5b3b0029}.seminar-preview-banner{margin-bottom:1rem;display:flex;gap:.75rem;align-items:center;flex-wrap:wrap;padding:.75rem 1rem;border-radius:8px;border:1px solid #e1b900;background:#fff4b8;color:#5b3b00}.seminar-preview-banner strong{text-transform:uppercase;letter-spacing:.04em}.seminar-detail-panel{position:relative}.seminar-card:hover,.seminar-card:focus-visible{transform:translateY(-3px);box-shadow:0 20px 42px #0f234b24;border-color:#1f6feb3d;outline:none}.seminar-cover{position:relative;width:100%;height:210px;min-height:210px;aspect-ratio:12 / 7;background:#eef4ff;overflow:hidden}.seminar-cover.has-image:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:none;background:linear-gradient(180deg,#0d31701a,#0d317033),radial-gradient(circle at 18% 0%,rgba(255,255,255,.22),transparent 38%)}.seminar-cover-gallery-count{position:absolute;right:.85rem;bottom:.85rem;z-index:2;padding:.3rem .65rem;border-radius:999px;background:#0e1a2bb8;color:#fff;font-size:.78rem;font-weight:700}.seminar-cover img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}.seminar-cover-fallback{position:absolute;top:0;right:0;bottom:0;left:0;display:grid;align-content:end;gap:.45rem;padding:1.3rem;color:#fff;background:radial-gradient(circle at top right,rgba(255,255,255,.22),transparent 35%),linear-gradient(135deg,#0f2d59,#1f6feb)}.seminar-cover-fallback span{width:fit-content;padding:.32rem .7rem;border-radius:999px;border:1px solid rgba(255,255,255,.25);background:#ffffff24;font-size:.74rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase}.seminar-cover-fallback strong{font-family:"DM Serif Display",Georgia,serif;font-size:1.6rem;line-height:1.1}.seminar-card-body{display:flex;flex-direction:column;gap:.95rem;padding:1.15rem}.seminar-card-topline{display:flex;justify-content:space-between;gap:.75rem;align-items:flex-start}.seminar-card-format{min-width:0;color:var(--brand-dark);font-size:.82rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.seminar-status-badge{display:inline-flex;align-items:center;justify-content:center;min-height:28px;padding:.3rem .75rem;border-radius:999px;font-size:.8rem;font-weight:700;white-space:nowrap}.seminar-status-badge[data-tone=positive]{background:#146e371a;color:#146e37}.seminar-status-badge[data-tone=warning]{background:#b453091f;color:#9a5a04}.seminar-status-badge[data-tone=danger]{background:#b91c1c1a;color:#b91c1c}.seminar-card-title{margin:0;font-size:1.22rem;line-height:1.25;height:3.75em;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden}.seminar-card-meta{display:grid;gap:.65rem}.seminar-card-meta-row{display:flex;justify-content:space-between;gap:1rem;font-size:.95rem}.seminar-card-meta-label{color:var(--muted);font-weight:600}.seminar-card-meta-value{color:var(--ink);font-weight:700;text-align:right}.seminar-card-footer{display:flex;justify-content:space-between;gap:1rem;align-items:end;margin-top:auto;padding-top:.9rem;border-top:1px solid rgba(15,35,75,.1)}.seminar-public-cta,.seminar-action-button{border-radius:10px!important;font-weight:750!important;letter-spacing:0!important;box-shadow:none!important}.seminar-public-cta{min-width:min(100%,240px);min-height:48px!important;padding:.78rem 1.15rem!important;font-size:1rem!important;font-weight:800!important;background:#0e1a2b!important;border:1px solid #0e1a2b!important;color:#fff!important}.seminar-action-button{min-height:40px!important;padding:.55rem .75rem!important;font-size:.92rem!important;line-height:1.18!important}.seminar-booking-opening-button{white-space:pre-line!important}.seminar-action-primary{background:#0e1a2b!important;border:1px solid #0e1a2b!important;color:#fff!important}.seminar-action-secondary{background:#fff!important;border:1px solid rgba(15,35,75,.16)!important;color:#0e1a2b!important}.seminar-action-button:disabled{background:#f1f5f9!important;border-color:#0f234b14!important;color:#64748b!important;opacity:1!important}.seminar-summary-card .seminar-action-button{width:100%;justify-content:center}.seminar-card-price{display:grid;gap:.15rem}.seminar-card-price strong{font-size:1.35rem;line-height:1}.seminar-card-price span{color:var(--muted);font-size:.86rem}.seminar-card-availability{color:var(--brand-dark);font-size:.88rem;font-weight:700;text-align:right}.seminar-filter-toolbar{display:grid;gap:1rem;margin-top:1.5rem;margin-bottom:1.5rem}.seminar-filter-search{display:grid;gap:.4rem}.seminar-filter-search label,.seminar-filter-group label{font-weight:700;color:var(--ink)}.seminar-filter-search input,.seminar-filter-group select{min-height:46px;padding:.8rem .95rem;border-radius:12px;border:1px solid rgba(15,35,75,.18);background:#fff;font:inherit;color:var(--ink)}.seminar-filter-search input:focus,.seminar-filter-group select:focus{outline:2px solid rgba(31,111,235,.2);outline-offset:1px;border-color:#1f6feb7a}.seminar-filter-toggle{display:none;min-height:44px;width:fit-content;padding:.65rem 1rem;border-radius:999px;border:1px solid rgba(15,35,75,.12);background:#fff;color:var(--ink);font:inherit;font-weight:700;cursor:pointer}.seminar-filter-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.seminar-filter-group{display:grid;gap:.4rem}.seminar-empty-state{padding:2.2rem;border-radius:20px;border:1px solid var(--outline);background:#fff;box-shadow:0 14px 30px #0f234b14;text-align:center}.seminar-empty-state h3{margin-top:0}.seminar-empty-state p{margin-bottom:0}.seminar-empty-state-actions{margin-top:1.4rem;display:flex;justify-content:center}.seminar-detail-section,.seminar-page-shell{padding-top:0!important;margin-top:2rem}.seminar-detail-inner{max-width:1420px}.seminar-back-link{display:inline-flex;margin-bottom:.8rem;color:var(--brand-dark);font-size:.92rem;font-weight:750;text-decoration:none}.seminar-back-link:hover,.seminar-back-link:focus-visible{text-decoration:underline}.seminar-detail-grid{display:grid;grid-template-columns:minmax(0,960px) minmax(320px,350px);gap:1.25rem;align-items:start;justify-content:center}.seminar-detail-main{display:grid;gap:0}.seminar-detail-aside{display:grid;gap:.75rem}.seminar-detail-mobile-summary{display:none}.seminar-detail-panel{background:#fff;border-radius:12px;border:1px solid var(--outline);box-shadow:0 10px 22px #0f234b0f;overflow:hidden}.seminar-detail-main>.seminar-detail-panel:first-child{border-bottom:0;border-radius:12px 12px 0 0}.seminar-detail-reading-panel{border-top:0;border-radius:0 0 12px 12px}.seminar-detail-reading-panel+.seminar-detail-panel{margin-top:.75rem}.seminar-detail-panel-body{padding:1.2rem 1.55rem}.seminar-detail-main>.seminar-detail-panel:first-child .seminar-detail-panel-body{padding:1.35rem 1.7rem}.seminar-detail-panel-body h1,.seminar-detail-panel-body h2,.seminar-detail-panel-body h3,.seminar-detail-reading-section h2{margin-top:0}.seminar-detail-panel-body h1{margin-bottom:.6rem;font-size:clamp(1.45rem,2.3vw,2.05rem);line-height:1.16}.seminar-detail-panel-body h2,.seminar-detail-reading-section h2,.seminar-summary-block h3{margin-bottom:.3rem;font-size:clamp(1.1rem,1.35vw,1.35rem);line-height:1.2}.seminar-rich-copy h2:not(:first-child){margin-top:.6rem}.seminar-detail-kicker{margin-bottom:.55rem;color:var(--brand-dark);font-size:.82rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.seminar-detail-speaker-line{margin:.4rem 0 0;color:var(--muted);font-size:.92rem;font-weight:650}.seminar-rich-copy{display:grid;gap:.45rem}.seminar-rich-copy p,.seminar-rich-copy ul{margin:0}.seminar-rich-copy ul{margin:.2rem 0 .65rem;padding-left:1.25rem}.seminar-rich-copy li{margin:.15rem 0;padding-left:.1rem}.seminar-rich-copy li p{margin:0}.seminar-detail-reading-section{padding:1.2rem 1.7rem}.seminar-detail-reading-section+.seminar-detail-reading-section{border-top:1px solid rgba(15,35,75,.1)}.seminar-detail-reading-section>:not(h2):not(.seminar-section-heading){margin-left:.8rem;margin-right:.8rem}.seminar-preserve-lines{white-space:pre-wrap}.seminar-gallery-strip{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(160px,210px);gap:.8rem;overflow-x:auto;padding-bottom:.4rem;scroll-snap-type:x mandatory}.seminar-gallery-item{border:0;padding:0;cursor:zoom-in;border-radius:16px;overflow:hidden;outline:1px solid rgba(15,35,75,.08);background:#eef4ff;aspect-ratio:4 / 3;scroll-snap-align:start}.seminar-gallery-item img{width:100%;height:100%;object-fit:cover;display:block}.seminar-gallery-item:hover,.seminar-gallery-item:focus-visible{outline:2px solid rgba(31,111,235,.45);outline-offset:2px}.seminar-session-list{display:grid;gap:.65rem;padding:0;list-style:none;margin:0}.seminar-session-list li{padding:.75rem .85rem;border-radius:10px;background:#f2f5f8d9;border:1px solid rgba(15,35,75,.08)}.seminar-agenda-list{display:grid;gap:0;margin:0;padding:0;list-style:none;counter-reset:agenda-item}.seminar-agenda-list li{display:grid;grid-template-columns:1.8rem minmax(0,1fr);gap:.65rem;align-items:baseline;padding:.7rem 0;border-top:1px solid rgba(15,35,75,.1);color:#263a57;line-height:1.5}.seminar-agenda-list li:first-child{padding-top:.15rem;border-top:0}.seminar-agenda-list li:before{content:counter(agenda-item,decimal-leading-zero);counter-increment:agenda-item;color:var(--brand-dark);font-size:.75rem;font-weight:850;letter-spacing:.05em}.seminar-detail-tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:.65rem}.seminar-detail-tags span{padding:.2rem .5rem;border-radius:999px;background:#f1f5f9;color:#475569;font-size:.82rem;font-weight:650}.seminar-section-heading{display:flex;justify-content:space-between;gap:1rem;align-items:baseline;margin-bottom:.4rem}.seminar-section-heading h2{margin-bottom:0}.seminar-section-heading span{color:var(--muted);font-size:.86rem;font-weight:650}.seminar-schedule-list{display:grid;gap:.45rem;padding:0;margin:0;list-style:none}.seminar-schedule-list li{display:grid;grid-template-columns:2.2rem minmax(0,1fr);gap:.65rem;align-items:center;padding:.6rem 0;border-top:1px solid rgba(15,35,75,.08)}.seminar-schedule-list li:first-child{border-top:0}.seminar-schedule-index{display:grid;place-items:center;width:2rem;height:2rem;border-radius:50%;background:#1f6feb14;color:var(--brand-dark);font-size:.78rem;font-weight:800}.seminar-schedule-list div{display:grid;gap:.1rem}.seminar-schedule-list span:not(.seminar-schedule-index){color:var(--muted);font-size:.9rem}.seminar-summary-card{display:grid;gap:1rem;padding:1rem;background:#fff;border-radius:12px;border:1px solid var(--outline);box-shadow:0 14px 30px #0f234b14}.seminar-summary-block{display:grid;gap:.55rem}.seminar-summary-row{display:flex;justify-content:space-between;gap:1rem;align-items:flex-start}.seminar-summary-row strong{font-size:1.05rem}.seminar-summary-label{color:var(--muted);font-weight:600}.seminar-summary-value{text-align:right;font-weight:700;line-height:1.25}.seminar-summary-date-range{display:grid;gap:.1rem}.seminar-venue{display:grid;gap:.35rem;padding-top:.2rem}.seminar-venue-divider{width:100%;height:1px;margin:.65rem 0;border:0;background:#0f234b24}.seminar-venue address{color:#0e1a2b;font-style:normal}.seminar-summary-address{display:grid;gap:.1rem}.seminar-map{width:100%}.seminar-map-frame{position:relative;width:100%;height:180px;overflow:hidden;border-radius:10px}.seminar-map-canvas{width:100%}.seminar-map-attribution{display:block;margin-top:0;color:var(--muted);font-size:.68rem;line-height:1.2;text-decoration:none}.seminar-map-attribution:hover{text-decoration:underline}.seminar-detail-cover{min-height:340px;height:clamp(340px,38vw,460px)}.seminar-lightbox{position:fixed;top:0;right:0;bottom:0;left:0;z-index:3000;background:#060d1cdb;display:grid;place-items:center;padding:1.25rem;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.seminar-lightbox-figure{margin:0;width:min(1120px,100%);max-height:min(82vh,820px);display:grid;gap:.75rem;justify-items:center}.seminar-lightbox-figure img{max-width:100%;max-height:calc(82vh - 2.5rem);object-fit:contain;border-radius:10px;box-shadow:0 24px 70px #0000006b;background:#0f172a}.seminar-lightbox-figure figcaption{color:#ffffffd1;font-weight:700}.seminar-lightbox-close,.seminar-lightbox-nav{position:fixed;border:1px solid rgba(255,255,255,.24);background:#ffffff1f;color:#fff;display:grid;place-items:center;cursor:pointer;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.seminar-lightbox-close{right:1.2rem;top:1.2rem;width:42px;height:42px;border-radius:999px;font-size:1.7rem;line-height:1}.seminar-lightbox-nav{top:50%;width:52px;height:64px;border-radius:999px;transform:translateY(-50%);font-size:2.8rem;line-height:1}.seminar-lightbox-prev{left:1.1rem}.seminar-lightbox-next{right:1.1rem}.seminar-lightbox-close:hover,.seminar-lightbox-close:focus-visible,.seminar-lightbox-nav:hover,.seminar-lightbox-nav:focus-visible{background:#fff3;outline:none}.seminar-inline-note{margin:0;color:var(--muted);font-size:.92rem}.seminar-rich-editor-field,.seminar-tag-field,.seminar-image-field{display:grid;gap:.45rem}.seminar-rich-editor-field label,.seminar-tag-field label,.seminar-image-field label{font-weight:700;color:#0e1a2b}.seminar-rich-editor-shell{border-radius:12px;border:1px solid rgba(15,35,75,.18);background:#fff;overflow:hidden}.seminar-rich-editor-shell.is-disabled,.seminar-image-dropzone.is-disabled,.seminar-tag-box.is-disabled{background:#f8fafc;color:#64748b}.seminar-rich-editor-shell.is-disabled{border-color:#0f234b1f}.seminar-rich-editor-toolbar{display:flex;gap:.25rem;flex-wrap:wrap;align-items:center;min-height:42px;padding:.35rem .45rem;background:#f8fbff;border-bottom:1px solid rgba(15,35,75,.1)}.seminar-rich-editor-button{width:34px;height:32px;border:1px solid transparent;background:transparent;border-radius:8px;padding:0;display:inline-grid;place-items:center;font:inherit;font-weight:700;color:#334155;cursor:pointer}.seminar-rich-editor-button.is-active{background:#fff;border-color:#1f6feb59;color:var(--brand-dark);box-shadow:0 3px 8px #0f234b14}.seminar-rich-editor-button:hover,.seminar-rich-editor-button:focus-visible{background:#fff;border-color:#0f234b1f;outline:none}.seminar-rich-editor-button:disabled{color:#94a3b8;cursor:default;background:transparent;border-color:transparent;box-shadow:none}.seminar-rich-editor{min-height:220px;line-height:1.65}.seminar-rich-editor .ProseMirror{min-height:220px;padding:.9rem 1rem;outline:none}.seminar-rich-editor .ProseMirror p{margin:0 0 .8rem}.seminar-rich-editor .ProseMirror h3{margin:1rem 0 .45rem;font-size:1.1rem;line-height:1.28}.seminar-rich-editor .ProseMirror h3:first-child{margin-top:0}.seminar-rich-editor .ProseMirror ul{margin:.35rem 0 .85rem;padding-left:1.3rem;list-style-position:outside}.seminar-rich-editor .ProseMirror li{margin:.25rem 0;padding-left:.1rem}.seminar-rich-editor .ProseMirror li p{margin:0}.seminar-rich-editor .ProseMirror p.is-editor-empty:first-child:before{content:attr(data-placeholder);color:#94a3b8;float:left;height:0;pointer-events:none}.seminar-tag-box{min-height:52px;border-radius:12px;border:1px solid rgba(15,35,75,.18);background:#fff;padding:.5rem;display:flex;flex-wrap:wrap;gap:.45rem;align-items:center}.seminar-tag-box input{border:0;outline:none;min-width:180px;flex:1 1 180px;font:inherit}.seminar-tag-box.is-disabled{border-color:#0f234b1f}.seminar-tag-box.is-disabled input{background:transparent;color:#64748b;cursor:default}.seminar-tag-pill{display:inline-flex;align-items:center;gap:.35rem;padding:.35rem .7rem;border-radius:999px;background:#1f6feb1a;color:var(--brand-dark);font-weight:700}.seminar-tag-pill button{border:0;background:transparent;color:inherit;cursor:pointer;font-size:1rem;line-height:1}.seminar-image-dropzone{position:relative;border:1px dashed rgba(15,35,75,.24);border-radius:14px;background:#f8fbff;padding:1rem;overflow:hidden}.seminar-image-dropzone.is-disabled{cursor:default;border-style:solid}.seminar-image-dropzone input[type=file]{position:absolute;top:0;right:0;bottom:0;left:0;opacity:0;cursor:pointer}.seminar-image-dropzone-copy{display:inline-flex;align-items:center;gap:.6rem;color:#334155;font-weight:600}.seminar-image-dropzone.is-disabled .seminar-image-dropzone-copy{color:#64748b}.seminar-image-preview{margin-top:1rem;position:relative;width:min(320px,100%);border-radius:16px;overflow:hidden}.seminar-image-preview img{width:100%;height:220px;object-fit:cover;display:block}.seminar-image-preview button{position:absolute;right:.55rem;top:.55rem;border:0;border-radius:999px;background:#dc2626;color:#fff;width:30px;height:30px;display:grid;place-items:center;cursor:pointer}.seminar-admin-gallery-list{margin-top:1rem;display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:.9rem}.seminar-admin-gallery-item{position:relative;border-radius:14px;overflow:hidden;border:1px solid rgba(15,35,75,.12);background:#fff}.seminar-admin-gallery-item img{display:block;width:100%;height:150px;object-fit:cover}.seminar-admin-gallery-item button{position:absolute;right:.45rem;top:.45rem;width:30px;height:30px;border:0;border-radius:999px;background:#dc2626;color:#fff;padding:0;font:inherit;font-size:1.25rem;line-height:1;display:grid;place-items:center;cursor:pointer;box-shadow:0 6px 14px #7f1d1d3d}.seminar-admin-gallery-item button:disabled,.seminar-tag-pill button:disabled{cursor:default;opacity:.45}.seminar-landing-header{display:flex;justify-content:space-between;gap:1rem;align-items:end;margin-bottom:1.6rem}.seminar-landing-header p{max-width:720px;margin-bottom:0}.seminar-landing-footer{margin-top:1.6rem;display:flex;justify-content:center}@media(max-width:900px){.seminar-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.seminar-detail-grid{grid-template-columns:1fr}.seminar-detail-main{grid-template-columns:1fr;gap:.75rem}.seminar-detail-main>.seminar-detail-panel:first-child,.seminar-detail-reading-panel{border:1px solid var(--outline);border-radius:12px}.seminar-detail-reading-panel+.seminar-detail-panel{margin-top:0}.seminar-detail-aside{display:none}.seminar-detail-mobile-summary{display:block}.seminar-landing-header{align-items:start;flex-direction:column}}@media(max-width:720px){.seminar-grid{grid-template-columns:minmax(0,1fr)}.seminar-card{width:100%;max-width:390px;justify-self:center}.seminar-filter-toggle{display:inline-flex;align-items:center;justify-content:center}.seminar-filter-grid{display:none;grid-template-columns:1fr}.seminar-filter-grid.is-open{display:grid}.seminar-card-footer,.seminar-summary-row,.seminar-card-meta-row{flex-direction:column;align-items:flex-start}.seminar-card-meta-value,.seminar-card-availability,.seminar-summary-value{text-align:left}.seminar-detail-cover{min-height:260px;height:260px}.seminar-detail-main>.seminar-detail-panel:first-child .seminar-detail-panel-body,.seminar-detail-panel-body,.seminar-detail-reading-section{padding:1.15rem}.seminar-detail-reading-section>:not(h2):not(.seminar-section-heading){margin-left:.35rem;margin-right:.35rem}.seminar-gallery-strip{grid-auto-columns:minmax(76vw,1fr)}.seminar-lightbox{padding:.75rem}.seminar-lightbox-nav{top:auto;bottom:1rem;width:46px;height:46px;font-size:2.2rem;transform:none}.seminar-lightbox-prev{left:calc(50% - 58px)}.seminar-lightbox-next{right:calc(50% - 58px)}.seminar-lightbox-close{right:.8rem;top:.8rem}}.seminar-checkout-inner{width:min(1040px,100%)}.seminar-booking-pending{border-color:#1f6feb47}.seminar-booking-pending-notice{display:flex;align-items:flex-start;gap:.55rem;margin-bottom:.85rem;padding:.65rem .75rem;border-radius:9px;background:#eef4ff;color:#174ea6;font-size:.86rem;font-weight:700}.seminar-booking-pending-spinner{flex:0 0 auto;width:.9rem;height:.9rem;border:2px solid rgba(23,78,166,.24);border-top-color:#174ea6;border-radius:50%;animation:seminar-booking-spin .8s linear infinite}@keyframes seminar-booking-spin{to{transform:rotate(360deg)}}.seminar-checkout-layout{display:grid;grid-template-columns:minmax(240px,.75fr) minmax(0,1.25fr);gap:1.5rem;align-items:start}.seminar-checkout-card.seminar-detail-panel{margin:0;border:1px solid rgba(26,65,116,.12);border-radius:20px;box-shadow:0 18px 40px #13356114;overflow:hidden}.seminar-checkout-card .seminar-detail-panel-body{padding:1.5rem}.seminar-checkout-card h1{margin:0;font-size:clamp(1.45rem,2vw,1.85rem);line-height:1.2;letter-spacing:-.02em}.seminar-checkout-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:1rem}.seminar-reservation-pill{flex:0 0 auto;border-radius:999px;background:#edf4f8;color:#27546b;font-size:.78rem;font-weight:600;padding:.4rem .65rem;white-space:nowrap}.seminar-checkout-card h1+p{margin:.45rem 0 0;color:#536b8f;line-height:1.5}.seminar-checkout-summary .seminar-card{width:100%;max-width:none}.seminar-checkout-summary .seminar-card-static{cursor:default;pointer-events:none}.seminar-checkout-summary .seminar-card-static:hover,.seminar-checkout-summary .seminar-card-static:focus-visible{transform:none;box-shadow:0 12px 26px #0f234b14;border-color:var(--outline)}.seminar-checkout-form{display:grid;gap:.8rem;margin-top:1rem}.seminar-checkout-form-section{display:grid;gap:.6rem;padding-top:.8rem;border-top:1px solid rgba(15,35,75,.1)}.seminar-checkout-form-section h2{margin:0;font-size:.96rem;letter-spacing:.01em}.seminar-checkout-password-grid,.seminar-checkout-email-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}.seminar-checkout-required .jbStringField__label:after,.seminar-checkout-billing-fields label:after{content:" *";color:#d92d20;font-weight:800}.seminar-checkout-field-error{display:block;margin-top:.28rem;color:#b42318;font-size:.76rem;line-height:1.35}.seminar-checkout-terms{display:flex;gap:.55rem;align-items:flex-start;color:#536174;font-size:.84rem;font-style:italic;line-height:1.5}.seminar-checkout-terms input{margin-top:.25rem;flex:0 0 auto}.seminar-checkout-terms a{color:inherit}.seminar-checkout-terms span:after{content:" *";color:#d92d20;font-weight:800}.seminar-checkout-terms label{cursor:pointer}.seminar-multi-seat-notice-link{padding:0;border:0;background:transparent;color:inherit;font:inherit;font-style:inherit;text-decoration:underline;cursor:pointer}.seminar-multi-seat-notice-link:hover,.seminar-multi-seat-notice-link:focus-visible{color:#1557ad}.jbDialog-backdrop:has(.seminar-multi-seat-notice-dialog){z-index:1300;align-items:center;background:#081831ad;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}.jbDialog-dialog.seminar-multi-seat-notice-dialog{max-width:560px;border-radius:16px;box-shadow:0 24px 70px #0110275c}.seminar-multi-seat-notice-content{display:grid;gap:1rem;color:#27364b;line-height:1.5}.seminar-multi-seat-notice-content p{margin:0}.seminar-multi-seat-notice-lead{color:#10233e;font-weight:750}.seminar-multi-seat-notice-content ul{display:grid;gap:.5rem;margin:0;padding-left:1.15rem}.seminar-multi-seat-notice-actions{display:flex;justify-content:flex-end;gap:.75rem;margin-top:.35rem}.seminar-multi-seat-info-button{margin-left:.35rem;padding:0;border:0;background:transparent;color:#1557ad;font-size:1rem;line-height:1;cursor:pointer}.seminar-multi-seat-info-button:hover,.seminar-multi-seat-info-button:focus-visible{color:#0d3f82}.seminar-checkout-form .seminar-checkout-buy-button,.seminar-checkout-card .seminar-checkout-buy-button{width:100%;min-height:48px;justify-content:center;border-radius:12px;font-size:1rem;font-weight:800;box-shadow:0 8px 18px #1557ad33}.seminar-checkout-error{padding:.75rem .9rem;border-radius:8px;background:#fef2f2;color:#b91c1c}.seminar-checkout-login-note{margin:1rem 0 0;font-size:.9rem;color:#536174}.seminar-checkout-login-note button{padding:0;border:0;background:transparent;color:#1557ad;font:inherit;font-weight:700;text-decoration:underline;cursor:pointer}@media(max-width:780px){.seminar-checkout-layout,.seminar-checkout-password-grid,.seminar-checkout-email-grid{grid-template-columns:1fr}.seminar-checkout-card .seminar-detail-panel-body{padding:1.1rem}}.seminar-booking-subuser-note{margin:0;color:#5f6b7a;line-height:1.5}.seminar-summary-price-value{display:grid;gap:6px}.seminar-summary-price-value hr{width:100%;margin:0;border:0;border-top:1px solid #c9d4e3}.seminar-seat-label{display:flex;align-items:center;gap:8px}.seminar-seat-inline-controls{display:inline-flex;align-items:center;overflow:hidden;border:1px solid #c9d4e3;border-radius:999px;background:#fff;color:#10233e}.seminar-seat-inline-controls button{width:28px;height:28px;border:0;background:transparent;color:inherit;font-size:18px;line-height:1;cursor:pointer}.seminar-seat-inline-controls strong{min-width:26px;padding:0 5px;border-inline:1px solid #c9d4e3;text-align:center;font-size:.9rem}.seminar-seat-inline-controls button:disabled{opacity:.45;cursor:not-allowed}.maplibregl-map{font:12px/20px Helvetica Neue,Arial,Helvetica,sans-serif;overflow:hidden;position:relative;-webkit-tap-highlight-color:rgb(0 0 0/0)}.maplibregl-canvas{position:absolute;left:0;top:0}.maplibregl-map:fullscreen{width:100%;height:100%}.maplibregl-ctrl-group button.maplibregl-ctrl-compass{touch-action:none}.maplibregl-canvas-container.maplibregl-interactive,.maplibregl-ctrl-group button.maplibregl-ctrl-compass{cursor:grab;-webkit-user-select:none;-moz-user-select:none;user-select:none}.maplibregl-canvas-container.maplibregl-interactive.maplibregl-track-pointer{cursor:pointer}.maplibregl-canvas-container.maplibregl-interactive:active,.maplibregl-ctrl-group button.maplibregl-ctrl-compass:active{cursor:grabbing}.maplibregl-canvas-container.maplibregl-touch-zoom-rotate,.maplibregl-canvas-container.maplibregl-touch-zoom-rotate .maplibregl-canvas{touch-action:pan-x pan-y}.maplibregl-canvas-container.maplibregl-touch-drag-pan,.maplibregl-canvas-container.maplibregl-touch-drag-pan .maplibregl-canvas{touch-action:pinch-zoom}.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan,.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan .maplibregl-canvas{touch-action:none}.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures,.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures .maplibregl-canvas{touch-action:pan-x pan-y}.maplibregl-ctrl-bottom-left,.maplibregl-ctrl-bottom-right,.maplibregl-ctrl-top-left,.maplibregl-ctrl-top-right{position:absolute;pointer-events:none;z-index:2}.maplibregl-ctrl-top-left{top:0;left:0}.maplibregl-ctrl-top-right{top:0;right:0}.maplibregl-ctrl-bottom-left{bottom:0;left:0}.maplibregl-ctrl-bottom-right{right:0;bottom:0}.maplibregl-ctrl{clear:both;pointer-events:auto;transform:translate(0)}.maplibregl-ctrl-top-left .maplibregl-ctrl{margin:10px 0 0 10px;float:left}.maplibregl-ctrl-top-right .maplibregl-ctrl{margin:10px 10px 0 0;float:right}.maplibregl-ctrl-bottom-left .maplibregl-ctrl{margin:0 0 10px 10px;float:left}.maplibregl-ctrl-bottom-right .maplibregl-ctrl{margin:0 10px 10px 0;float:right}.maplibregl-ctrl-group{border-radius:4px;background:#fff}.maplibregl-ctrl-group:not(:empty){box-shadow:0 0 0 2px #0000001a}@media(forced-colors:active){.maplibregl-ctrl-group:not(:empty){box-shadow:0 0 0 2px ButtonText}}.maplibregl-ctrl-group button{width:29px;height:29px;display:block;padding:0;outline:none;border:0;box-sizing:border-box;background-color:transparent;cursor:pointer}.maplibregl-ctrl-group button+button{border-top:1px solid #ddd}.maplibregl-ctrl button .maplibregl-ctrl-icon{display:block;width:100%;height:100%;background-repeat:no-repeat;background-position:50%}@media(forced-colors:active){.maplibregl-ctrl-icon{background-color:transparent}.maplibregl-ctrl-group button+button{border-top:1px solid ButtonText}}.maplibregl-ctrl button::-moz-focus-inner{border:0;padding:0}.maplibregl-ctrl-attrib-button:focus,.maplibregl-ctrl-group button:focus{box-shadow:0 0 2px 2px #0096ff}.maplibregl-ctrl button:disabled{cursor:not-allowed}.maplibregl-ctrl button:disabled .maplibregl-ctrl-icon{opacity:.25}@media(hover:hover){.maplibregl-ctrl button:not(:disabled):hover{background-color:#0000000d}}.maplibregl-ctrl button:not(:disabled):active{background-color:#0000000d}.maplibregl-ctrl-group button:focus:focus-visible{box-shadow:0 0 2px 2px #0096ff}.maplibregl-ctrl-group button:focus:not(:focus-visible){box-shadow:none}.maplibregl-ctrl-group button:focus:first-child{border-radius:4px 4px 0 0}.maplibregl-ctrl-group button:focus:last-child{border-radius:0 0 4px 4px}.maplibregl-ctrl-group button:focus:only-child{border-radius:inherit}.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5'/%3E%3C/svg%3E")}@media(forced-colors:active){.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5'/%3E%3C/svg%3E")}}@media(forced-colors:active)and (prefers-color-scheme:light){.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5'/%3E%3C/svg%3E")}}.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1z'/%3E%3C/svg%3E")}@media(forced-colors:active){.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1z'/%3E%3C/svg%3E")}}@media(forced-colors:active)and (prefers-color-scheme:light){.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1z'/%3E%3C/svg%3E")}}.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E")}@media(forced-colors:active){.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E")}}@media(forced-colors:active)and (prefers-color-scheme:light){.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E")}}.maplibregl-ctrl button.maplibregl-ctrl-globe .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='%23333' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='8.5'/%3E%3Cpath d='M17.5 11c0 4.819-3.02 8.5-6.5 8.5S4.5 15.819 4.5 11 7.52 2.5 11 2.5s6.5 3.681 6.5 8.5Z'/%3E%3Cpath d='M13.5 11c0 2.447-.331 4.64-.853 6.206-.262.785-.562 1.384-.872 1.777-.314.399-.58.517-.775.517s-.461-.118-.775-.517c-.31-.393-.61-.992-.872-1.777C8.831 15.64 8.5 13.446 8.5 11s.331-4.64.853-6.206c.262-.785.562-1.384.872-1.777.314-.399.58-.517.775-.517s.461.118.775.517c.31.393.61.992.872 1.777.522 1.565.853 3.76.853 6.206Z'/%3E%3Cpath d='M11 7.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138q.07-.058.224-.138c.299-.151.763-.302 1.379-.434C7.378 5.666 9.091 5.5 11 5.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138q-.07.058-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428Zm0 9c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138 1.3 1.3 0 0 1 .224-.138c.299-.151.763-.302 1.379-.434C7.378 14.666 9.091 14.5 11 14.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138a1.3 1.3 0 0 1-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428Zm0-4c-2.46 0-4.672-.222-6.255-.574-.796-.177-1.406-.38-1.805-.59a1.5 1.5 0 0 1-.39-.272.3.3 0 0 1-.047-.064.3.3 0 0 1 .048-.064c.066-.073.189-.167.389-.272.399-.21 1.009-.413 1.805-.59C6.328 9.722 8.54 9.5 11 9.5s4.672.222 6.256.574c.795.177 1.405.38 1.804.59.2.105.323.2.39.272a.3.3 0 0 1 .047.064.3.3 0 0 1-.048.064 1.4 1.4 0 0 1-.389.272c-.399.21-1.009.413-1.804.59-1.584.352-3.796.574-6.256.574Zm-8.501-1.51v.002zm0 .018v.002zm17.002.002v-.002zm0-.018v-.002z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-globe-enabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='%2333b5e5' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='8.5'/%3E%3Cpath d='M17.5 11c0 4.819-3.02 8.5-6.5 8.5S4.5 15.819 4.5 11 7.52 2.5 11 2.5s6.5 3.681 6.5 8.5Z'/%3E%3Cpath d='M13.5 11c0 2.447-.331 4.64-.853 6.206-.262.785-.562 1.384-.872 1.777-.314.399-.58.517-.775.517s-.461-.118-.775-.517c-.31-.393-.61-.992-.872-1.777C8.831 15.64 8.5 13.446 8.5 11s.331-4.64.853-6.206c.262-.785.562-1.384.872-1.777.314-.399.58-.517.775-.517s.461.118.775.517c.31.393.61.992.872 1.777.522 1.565.853 3.76.853 6.206Z'/%3E%3Cpath d='M11 7.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138q.07-.058.224-.138c.299-.151.763-.302 1.379-.434C7.378 5.666 9.091 5.5 11 5.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138q-.07.058-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428Zm0 9c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138 1.3 1.3 0 0 1 .224-.138c.299-.151.763-.302 1.379-.434C7.378 14.666 9.091 14.5 11 14.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138a1.3 1.3 0 0 1-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428Zm0-4c-2.46 0-4.672-.222-6.255-.574-.796-.177-1.406-.38-1.805-.59a1.5 1.5 0 0 1-.39-.272.3.3 0 0 1-.047-.064.3.3 0 0 1 .048-.064c.066-.073.189-.167.389-.272.399-.21 1.009-.413 1.805-.59C6.328 9.722 8.54 9.5 11 9.5s4.672.222 6.256.574c.795.177 1.405.38 1.804.59.2.105.323.2.39.272a.3.3 0 0 1 .047.064.3.3 0 0 1-.048.064 1.4 1.4 0 0 1-.389.272c-.399.21-1.009.413-1.804.59-1.584.352-3.796.574-6.256.574Zm-8.501-1.51v.002zm0 .018v.002zm17.002.002v-.002zm0-.018v-.002z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-terrain .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%23333' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-terrain-enabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%2333b5e5' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23aaa' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e58978' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e54e33' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-waiting .maplibregl-ctrl-icon{animation:maplibregl-spin 2s linear infinite}@media(forced-colors:active){.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23999' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1z'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e58978' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e54e33' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E")}}@media(forced-colors:active)and (prefers-color-scheme:light){.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E")}.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23666' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1z'/%3E%3C/svg%3E")}}@keyframes maplibregl-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}a.maplibregl-ctrl-logo{width:88px;height:23px;margin:0 0 -4px -4px;display:block;background-repeat:no-repeat;cursor:pointer;overflow:hidden;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E")}a.maplibregl-ctrl-logo.maplibregl-compact{width:14px}@media(forced-colors:active){a.maplibregl-ctrl-logo{background-color:transparent;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E")}}@media(forced-colors:active)and (prefers-color-scheme:light){a.maplibregl-ctrl-logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E")}}.maplibregl-ctrl.maplibregl-ctrl-attrib{padding:0 5px;background-color:#ffffff80;margin:0}@media screen{.maplibregl-ctrl-attrib.maplibregl-compact{min-height:20px;padding:2px 24px 2px 0;margin:10px;position:relative;background-color:#fff;color:#000;border-radius:12px;box-sizing:content-box}.maplibregl-ctrl-attrib.maplibregl-compact-show{padding:2px 28px 2px 8px;visibility:visible}.maplibregl-ctrl-bottom-left>.maplibregl-ctrl-attrib.maplibregl-compact-show,.maplibregl-ctrl-top-left>.maplibregl-ctrl-attrib.maplibregl-compact-show{padding:2px 8px 2px 28px;border-radius:12px}.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-inner{display:none}.maplibregl-ctrl-attrib-button{display:none;cursor:pointer;position:absolute;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");background-color:#ffffff80;width:24px;height:24px;box-sizing:border-box;border-radius:12px;outline:none;top:0;right:0;border:0}.maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;list-style:none}.maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button::-webkit-details-marker{display:none}.maplibregl-ctrl-bottom-left .maplibregl-ctrl-attrib-button,.maplibregl-ctrl-top-left .maplibregl-ctrl-attrib-button{left:0}.maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-button,.maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-inner{display:block}.maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-button{background-color:#0000000d}.maplibregl-ctrl-bottom-right>.maplibregl-ctrl-attrib.maplibregl-compact:after{bottom:0;right:0}.maplibregl-ctrl-top-right>.maplibregl-ctrl-attrib.maplibregl-compact:after{top:0;right:0}.maplibregl-ctrl-top-left>.maplibregl-ctrl-attrib.maplibregl-compact:after{top:0;left:0}.maplibregl-ctrl-bottom-left>.maplibregl-ctrl-attrib.maplibregl-compact:after{bottom:0;left:0}}@media screen and (forced-colors:active){.maplibregl-ctrl-attrib.maplibregl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E")}}@media screen and (forced-colors:active)and (prefers-color-scheme:light){.maplibregl-ctrl-attrib.maplibregl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E")}}.maplibregl-ctrl-attrib a{color:#000000bf;text-decoration:none}.maplibregl-ctrl-attrib a:hover{color:inherit;text-decoration:underline}.maplibregl-attrib-empty{display:none}.maplibregl-ctrl-scale{background-color:#ffffffbf;font-size:10px;white-space:nowrap;border:2px solid #333;border-top:#333;padding:0 5px;color:#333;box-sizing:border-box}.maplibregl-popup{position:absolute;top:0;left:0;display:flex;will-change:transform;pointer-events:none}.maplibregl-popup-anchor-top,.maplibregl-popup-anchor-top-left,.maplibregl-popup-anchor-top-right{flex-direction:column}.maplibregl-popup-anchor-bottom,.maplibregl-popup-anchor-bottom-left,.maplibregl-popup-anchor-bottom-right{flex-direction:column-reverse}.maplibregl-popup-anchor-left{flex-direction:row}.maplibregl-popup-anchor-right{flex-direction:row-reverse}.maplibregl-popup-tip{width:0;height:0;border:10px solid transparent;z-index:1}.maplibregl-popup-anchor-top .maplibregl-popup-tip{align-self:center;border-top:none;border-bottom-color:#fff}.maplibregl-popup-anchor-top-left .maplibregl-popup-tip{align-self:flex-start;border-top:none;border-left:none;border-bottom-color:#fff}.maplibregl-popup-anchor-top-right .maplibregl-popup-tip{align-self:flex-end;border-top:none;border-right:none;border-bottom-color:#fff}.maplibregl-popup-anchor-bottom .maplibregl-popup-tip{align-self:center;border-bottom:none;border-top-color:#fff}.maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip{align-self:flex-start;border-bottom:none;border-left:none;border-top-color:#fff}.maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip{align-self:flex-end;border-bottom:none;border-right:none;border-top-color:#fff}.maplibregl-popup-anchor-left .maplibregl-popup-tip{align-self:center;border-left:none;border-right-color:#fff}.maplibregl-popup-anchor-right .maplibregl-popup-tip{align-self:center;border-right:none;border-left-color:#fff}[dir=rtl] .maplibregl-popup-anchor-left{flex-direction:row-reverse}[dir=rtl] .maplibregl-popup-anchor-right{flex-direction:row}[dir=rtl] .maplibregl-popup-anchor-top-left .maplibregl-popup-tip{align-self:flex-end}[dir=rtl] .maplibregl-popup-anchor-top-right .maplibregl-popup-tip{align-self:flex-start}[dir=rtl] .maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip{align-self:flex-end}[dir=rtl] .maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip{align-self:flex-start}.maplibregl-popup-close-button{position:absolute;right:0;top:0;border:0;border-radius:0 3px 0 0;cursor:pointer;background-color:transparent}.maplibregl-popup-close-button:hover{background-color:#0000000d}.maplibregl-popup-content{position:relative;background:#fff;border-radius:3px;box-shadow:0 1px 2px #0000001a;padding:15px 10px;pointer-events:auto}.maplibregl-popup-anchor-top-left .maplibregl-popup-content{border-top-left-radius:0}.maplibregl-popup-anchor-top-right .maplibregl-popup-content{border-top-right-radius:0}.maplibregl-popup-anchor-bottom-left .maplibregl-popup-content{border-bottom-left-radius:0}.maplibregl-popup-anchor-bottom-right .maplibregl-popup-content{border-bottom-right-radius:0}.maplibregl-popup-track-pointer{display:none}.maplibregl-popup-track-pointer *{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.maplibregl-map:hover .maplibregl-popup-track-pointer{display:flex}.maplibregl-map:active .maplibregl-popup-track-pointer{display:none}.maplibregl-marker{position:absolute;top:0;left:0;will-change:transform;transition:opacity .2s}.maplibregl-marker-draggable{cursor:grab}.maplibregl-user-location-dot,.maplibregl-user-location-dot:before{background-color:#1da1f2;width:15px;height:15px;border-radius:50%}.maplibregl-user-location-dot:before{content:"";position:absolute;animation:maplibregl-user-location-dot-pulse 2s infinite}.maplibregl-user-location-dot:after{border-radius:50%;border:2px solid #fff;content:"";height:19px;left:-2px;position:absolute;top:-2px;width:19px;box-sizing:border-box;box-shadow:0 0 3px #00000059}@media(prefers-reduced-motion:reduce){.maplibregl-user-location-dot:before{animation:none}}@keyframes maplibregl-user-location-dot-pulse{0%{transform:scale(1);opacity:1}70%{transform:scale(3);opacity:0}to{transform:scale(1);opacity:0}}.maplibregl-user-location-dot-stale{background-color:#aaa}.maplibregl-user-location-dot-stale:after{display:none}.maplibregl-user-location-accuracy-circle{background-color:#1da1f233;width:1px;height:1px;border-radius:100%}.maplibregl-crosshair,.maplibregl-crosshair .maplibregl-interactive,.maplibregl-crosshair .maplibregl-interactive:active{cursor:crosshair}.maplibregl-boxzoom{position:absolute;top:0;left:0;width:0;height:0;background:#fff;border:2px dotted #202020;opacity:.5}.maplibregl-cooperative-gesture-screen{background:#0006;position:absolute;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;color:#fff;padding:1rem;font-size:1.4em;line-height:1.2;opacity:0;pointer-events:none;transition:opacity 1s ease 1s;z-index:99999}.maplibregl-cooperative-gesture-screen.maplibregl-show{opacity:1;transition:opacity .05s}.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message{display:none}@media(hover:none),(pointer:coarse){.maplibregl-cooperative-gesture-screen .maplibregl-desktop-message{display:none}.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message{display:block}}.maplibregl-pseudo-fullscreen{position:fixed!important;width:100%!important;height:100%!important;top:0!important;left:0!important;z-index:99999}._bgContainer_1onmf_1{min-height:100dvh;width:100vw;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#436e9c,#799bbf);position:relative;overflow:hidden;font-family:Inter,Segoe UI,Arial,sans-serif}._bgImage_1onmf_13{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;opacity:.25;background:url(/bg-architecture-placeholder.png) center/cover no-repeat;z-index:1;filter:grayscale(.6) blur(2px) brightness(.85);pointer-events:none}._loginMainContent_1onmf_25{z-index:2;display:flex;flex-direction:row;width:90vw;max-width:880px;background:#fff;border-radius:1.25rem;box-shadow:0 8px 40px #181c2621;overflow:hidden;min-height:480px}@media(max-width:800px){._loginMainContent_1onmf_25{flex-direction:column;width:98vw;min-height:unset}._infoPanel_1onmf_44{border-right:none!important;border-bottom:1px solid #ececec}}._infoPanel_1onmf_44{flex:1 1 0;min-width:260px;padding:2.5rem 2rem 2rem 2.5rem;background:#f2f6fad1;display:flex;flex-direction:column;justify-content:center;border-right:1px solid #e5e8ee}._brand_1onmf_61{font-size:2.2rem;font-weight:700;color:#134672;margin-bottom:.5rem;letter-spacing:.01em;display:flex;flex-direction:column;gap:.12em}._brand_1onmf_61 small{font-size:.93rem;font-weight:400;color:#2466a2;margin-top:.2em;letter-spacing:.05em}._tagline_1onmf_80{font-size:1.08rem;color:#184066;margin-bottom:.8rem;margin-top:.25rem;line-height:1.4}._features_1onmf_88{padding-left:.5em;font-size:.9rem;color:#33516c;line-height:1.7}._features_1onmf_88 li{margin-bottom:.5em;list-style:disc inside}._infoLegal_1onmf_100{margin-top:.8rem;text-align:center;font-size:.9rem;color:#6f7f95;line-height:1.5}._infoLegal_1onmf_100 a{color:#1865c2;text-decoration:underline}._formPanel_1onmf_113{flex:1 1 0;min-width:290px;padding:2.8rem 2.5rem 2.2rem;display:flex;position:relative;flex-direction:column;justify-content:center}._formLogo_1onmf_123{position:absolute;top:5px;right:15px;width:80px;height:auto;z-index:-1}._form_1onmf_113{display:flex;flex-direction:column;gap:1.15rem}._errorMessage_1onmf_138{background:#ffeef0;border:1px solid #e08a90;color:#a2353a;padding:.75rem .9rem;border-radius:.75rem;font-size:.95rem;line-height:1.35}._successMessage_1onmf_148{background:#ecfdf3;border:1px solid #86efac;color:#166534;padding:.75rem .9rem;border-radius:.75rem;font-size:.95rem;line-height:1.35}._infoMessage_1onmf_158{background:#eef5ff;border:1px solid #9bbcf0;color:#1d3a67;padding:.75rem .9rem;border-radius:.75rem;font-size:.95rem;line-height:1.35}._redirectPath_1onmf_168{display:inline-block;font-weight:600;color:#1a4f8a;word-break:break-all}._formHeader_1onmf_175{font-size:1.11rem;font-weight:600;color:#193c5a;margin-bottom:.9rem;letter-spacing:.01em}._logo_1onmf_183{width:300px;height:auto}._loginButton_1onmf_188{width:100%;padding:.85rem 0;background:linear-gradient(90deg,#125cc5,#16a0ae);color:#fff;font-size:1.13rem;font-weight:600;border-radius:.8rem;border:none;box-shadow:0 2px 10px #16528f12;transition:transform .16s cubic-bezier(.42,.7,.23,1.5),background .22s;cursor:pointer}._loginButton_1onmf_188:hover:not(:disabled){transform:translateY(-3px) scale(1.02);background:linear-gradient(90deg,#176ede,#28bcb7)}._loginButton_1onmf_188:disabled{opacity:.55;cursor:not-allowed}._formHelp_1onmf_212{font-size:.98rem;color:#7e8ea7;margin-top:.45rem;text-align:right}._formHelp_1onmf_212 a{color:#1865c2;text-decoration:underline}._registerLinkButton_1onmf_224{border:none;background:transparent;color:#1865c2;text-decoration:underline;cursor:pointer;font:inherit;padding:0}@media(max-width:540px){._loginMainContent_1onmf_25{flex-direction:column;min-width:95vw;max-width:98vw;border-radius:.7rem;box-shadow:0 2px 14px #fff}._infoPanel_1onmf_44,._formPanel_1onmf_113{padding:1.25rem 1rem 1rem 1.25rem;min-width:unset}._brand_1onmf_61{font-size:1.38rem}._formHeader_1onmf_175{font-size:1rem}}._mobileHeader_1a519_1{display:flex;justify-content:space-between;align-items:center;top:0;left:0;right:0;background-color:#1e3a8a;color:#fff;z-index:3;padding:.5rem 1rem}._mobileLogoContainer_1a519_14{background-color:#fff;box-sizing:border-box;border-radius:4px;display:flex}._collapse_1a519_21{display:flex;flex-direction:column;position:absolute;top:100%;right:0;background-color:#aeaeae;border:1px solid lightgrey;border-radius:5px;overflow:hidden}._collapse_1a519_21>div{padding:.5rem 1rem;min-width:150px;cursor:pointer;color:#000;background-color:#f3f3f3;display:flex;align-items:center;gap:1rem;font-size:.9rem}._collapse_1a519_21>div:not(:first-child){margin-top:1px}._collapse_1a519_21>div:hover{background-color:#c4d2ff;font-weight:700}._navigateBackBtn_1a519_54{padding:5px!important;font-size:1.5rem;margin-right:1rem}._mobileLogo_1a519_14{display:block;width:80px;height:auto;object-fit:contain}._footer_1a519_66{position:relative;display:flex;align-items:center;gap:.6rem}._feedbackButton_1a519_73{border:1px solid rgba(255,255,255,.7);background:#ffffff26;color:#fff;padding:.35rem .85rem;border-radius:999px;font-weight:600;font-size:.85rem;cursor:pointer;transition:background .2s ease,border-color .2s ease}._feedbackButton_1a519_73:hover{background:#ffffff47;border-color:#fff}._feedbackModal_1a519_90{position:fixed;top:0;right:0;bottom:0;left:0;z-index:9999;display:none;align-items:flex-start;justify-content:center;padding:60px 16px;background:#0f172a66}._feedbackModalOpen_1a519_101{display:flex}._feedbackCard_1a519_105{position:relative;width:min(520px,100%);background:#fff;border-radius:8px;padding:18px 18px 16px;box-shadow:0 10px 26px #0000002e;border:1px solid #d9e0eb;color:#1f2b2d;font-family:Segoe UI,Arial,sans-serif}._feedbackTitle_1a519_117{margin:0 0 6px;font-size:1.25rem;color:#1f2937}._feedbackSub_1a519_123{margin:0 0 16px;color:#4b5563;font-size:13px}._feedbackField_1a519_129{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}._feedbackField_1a519_129 label{font-weight:600;font-size:13px;color:#374151}._feedbackCard_1a519_105 input,._feedbackCard_1a519_105 select,._feedbackCard_1a519_105 textarea{border:1px solid #cfd6e2;border-radius:4px;padding:9px 10px;font-size:.95rem;color:#1f2937;background:#fff;font-family:Segoe UI,Arial,sans-serif}._feedbackCard_1a519_105 select{min-height:40px;line-height:1.4;padding:7px 34px 7px 10px}._feedbackCard_1a519_105 input:focus,._feedbackCard_1a519_105 select:focus,._feedbackCard_1a519_105 textarea:focus{outline:none;border-color:#1e3a86;box-shadow:0 0 0 2px #1e3a8624}._feedbackCard_1a519_105 textarea{min-height:110px;resize:vertical}._feedbackPreview_1a519_173{border:1px solid #d4dceb;border-radius:4px;padding:10px 12px;font-size:.92rem;color:#374151;background:#f9fbff;white-space:pre-wrap;display:none}._feedbackPreviewOpen_1a519_184{display:block}._feedbackActions_1a519_188{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;margin-top:12px}._feedbackSecondary_1a519_196{background:#fff;color:#1e3a8a;border:1px solid #b8c6e8;border-radius:4px;padding:8px 12px;font-weight:600;cursor:pointer;font-size:.9rem}._feedbackPrimary_1a519_207{background:#1e3a8a;color:#fff;border:1px solid #1e3a8a;border-radius:4px;padding:8px 12px;font-weight:600;cursor:pointer;font-size:.9rem}._feedbackPrimary_1a519_207:hover:not(:disabled){background:#16306f;border-color:#16306f}._feedbackSecondary_1a519_196:hover{background:#eef4ff}._feedbackPrimary_1a519_207:disabled{opacity:.7;cursor:default}._feedbackStatus_1a519_232{font-size:13px;margin-top:8px}._feedbackClose_1a519_237{position:absolute;top:12px;right:14px;background:transparent;border:none;font-size:24px;cursor:pointer;color:#1f2b2d}.shared-user-menu{position:relative}.shared-user-trigger{min-height:40px;border:1px solid rgba(15,35,75,.14);background:#fff;color:#0e1a2b;border-radius:999px;padding:.5rem .85rem;display:inline-flex;align-items:center;gap:.5rem;font:inherit;font-size:.92rem;font-weight:700;cursor:pointer;box-shadow:0 8px 18px #0f234b14}.shared-user-menu-app .shared-user-trigger{min-height:36px;box-shadow:none}.shared-user-dropdown{position:absolute;right:0;top:calc(100% + .55rem);min-width:230px;background:#fff;border:1px solid rgba(15,35,75,.12);border-radius:12px;box-shadow:0 16px 34px #0f234b29;padding:.4rem;display:none;z-index:1200}.shared-user-dropdown.is-open{display:grid}.shared-user-dropdown button{width:100%;border:0;background:transparent;color:#0e1a2b;border-radius:8px;padding:.7rem .8rem;display:inline-flex;align-items:center;gap:.65rem;font:inherit;font-size:.92rem;font-weight:650;cursor:pointer;text-align:left}.shared-user-dropdown button:hover,.shared-user-dropdown button:focus-visible{background:#1f6feb14;outline:none}@media(max-width:600px){.shared-user-dropdown{right:50%;transform:translate(50%)}.shared-user-trigger span{max-width:170px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.landing{min-height:100vh}.hero{position:relative;min-height:74vh;display:flex;align-items:center;justify-content:center;text-align:left;color:#fff;overflow:hidden;padding:6rem 2.5rem 4rem}.hero-video{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;filter:brightness(.65) saturate(1.1)}.hero-overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(120deg,#0b224be6,#1260a9a6)}.hero-content{position:relative;z-index:2;max-width:720px}.hero h1{font-family:"DM Serif Display",Georgia,serif;font-size:clamp(2.4rem,5vw,3.8rem);margin:1rem 0 1.5rem}.hero p{font-size:clamp(1rem,2.4vw,1.25rem);line-height:1.6;margin-bottom:2rem;color:#ffffffe0}.hero-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.4rem .9rem;background:#ffffff2e;border:1px solid rgba(255,255,255,.35);border-radius:999px;font-weight:600}.hero-highlights{display:flex;gap:1.2rem;flex-wrap:wrap;font-weight:600}.hero-highlights div{display:flex;align-items:center;gap:.5rem;background:#ffffff29;padding:.45rem .8rem;border-radius:999px}.hero-seminar-tiles{margin-top:1.6rem;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.8rem}.hero-seminar-tile{min-width:0;padding:.9rem 1rem;border-radius:8px;border:1px solid rgba(255,255,255,.28);background:#ffffff24;color:#fff;text-decoration:none;display:grid;gap:.35rem;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}.hero-seminar-tile:hover,.hero-seminar-tile:focus-visible{background:#ffffff38;outline:none}.hero-seminar-tile span{font-size:.82rem;font-weight:800;color:#ffffffc7}.hero-seminar-tile strong{line-height:1.25;overflow-wrap:anywhere}.intro{position:relative}.intro:after{content:"";position:absolute;right:10%;top:-60px;width:260px;height:260px;background:radial-gradient(circle,rgba(90,200,250,.25),transparent 70%);z-index:0}.intro .section-inner{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2.5rem;position:relative;z-index:1}.intro-copy h2{margin-top:0}.pill-row{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:2rem}.pill{background:#1f6feb1f;color:var(--brand-dark);padding:.45rem .9rem;border-radius:999px;font-weight:600}.intro-panel{display:grid;gap:1.5rem}.panel-item{display:flex;gap:1rem;padding:1.4rem;background:var(--card);border-radius:16px;border:1px solid var(--outline);box-shadow:var(--shadow)}.panel-item svg{font-size:1.8rem;color:var(--brand);flex-shrink:0}.panel-item ul{margin:.4rem 0 0;padding-left:1.2rem;color:var(--muted)}.feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));gap:1.5rem;margin-top:2.5rem}.feature-card{min-width:0;padding:1.8rem;border-radius:18px;background:var(--card);border:1px solid var(--outline);box-shadow:0 12px 26px #0f234b14}.feature-card h3,.feature-card p{overflow-wrap:anywhere;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.feature-icon{font-size:1.8rem;color:var(--brand);margin-bottom:1rem}.split{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2.5rem;align-items:start}.steps{list-style:none;padding:0;margin:2rem 0 0;display:grid;gap:1.5rem}.steps li{display:flex;gap:1rem;align-items:flex-start;background:#fff;padding:1.2rem 1.4rem;border-radius:14px;border:1px solid var(--outline)}.steps span{font-weight:700;color:var(--brand);font-size:1.1rem}.steps h4{margin:0 0 .3rem}.value-panel{padding:1.6rem;border-radius:14px;background:#f6f8fc;border:1px solid var(--outline);color:var(--ink);box-shadow:0 8px 20px #0f234b0f}.value-panel p{color:var(--muted)}.value-tags{display:flex;gap:.7rem;flex-wrap:wrap;margin-top:1.5rem}.value-tags span{background:#1f6feb12;border:1px solid rgba(31,111,235,.14);color:var(--brand-dark);padding:.4rem .8rem;border-radius:999px}.pricing{background:#fff}.section-header{max-width:760px}.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1.5rem;margin-top:2.5rem}.price-card{background:var(--card);padding:1.4rem 1.5rem;border-radius:14px;border:1px solid var(--outline);box-shadow:0 8px 20px #0f234b0f;display:flex;flex-direction:column;gap:.45rem;min-height:176px}.price{margin:0;font-size:1.85rem;font-weight:800;line-height:1.1;color:var(--ink);letter-spacing:-.02em}.price-kind{margin:.15rem 0 0;color:var(--muted);font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em}.price-detail{margin:0;color:var(--brand-dark);font-size:1rem;font-weight:700;line-height:1.3}.price-total{margin:-.1rem 0 .1rem;color:var(--muted);font-size:.82rem;font-weight:600;line-height:1.25}.price-meta{margin:0;color:var(--muted);font-size:.88rem;line-height:1.35}.price-tier{display:inline-block;padding:.25rem .7rem;border-radius:999px;background:#1f6feb1a;color:var(--brand-dark);font-weight:800;width:fit-content}.pricing-note{margin-top:2rem;color:var(--muted);font-size:.92rem;line-height:1.45}.pricing-footnote{margin-top:.9rem;color:var(--muted);font-size:.82rem;line-height:1.35}.pricing-tax-note{margin-top:.45rem;color:var(--ink);font-size:.82rem;font-weight:700;line-height:1.35}.contact{background:var(--stone)}.contact-grid{display:block;margin-top:2rem}.contact-card{background:var(--card);padding:1.6rem;border-radius:16px;border:1px solid var(--outline);box-shadow:0 10px 24px #0f234b12}.contact-side{display:grid}.company-header{display:flex;align-items:flex-start;gap:1rem}.contact-card h4{margin:0 0 .65rem}.company-meta p{margin:0}.contact-links{margin-top:1rem;padding-top:1rem;border-top:1px solid rgba(15,35,75,.1);display:grid;gap:.75rem}.contact-link{margin:0;display:flex;align-items:center;gap:.5rem}.contact-card a{color:var(--brand-dark);text-decoration:none}.contact-form{background:#fff;padding:2rem;border-radius:18px;border:1px solid var(--outline);box-shadow:0 12px 24px #0f234b14}.contact-company-floating{background:transparent;border:0;box-shadow:none;padding:.35rem 0 0;display:grid;justify-items:center;text-align:center}.contact-company-floating .company-header{flex-direction:column;align-items:center}.contact-company-floating .contact-links{width:100%;justify-items:center}.contact-company-floating .contact-link{justify-content:center}.contact-company-logo{display:inline-block;width:54px;height:auto;margin:0;flex-shrink:0}.contact-form .form input,.contact-form .form textarea{padding:.9rem 1rem;border-radius:10px;border:1px solid rgba(15,35,75,.2);font-size:1rem;font-family:Manrope,Segoe UI,sans-serif}.contact-form .form textarea{min-height:120px;resize:vertical}@media(max-width:900px){.hero{padding:5rem 1.5rem 3rem;text-align:center}.hero-highlights{justify-content:center}.hero-seminar-tiles{text-align:left}}@media(max-width:600px){.hero-seminar-tiles{grid-template-columns:1fr}.company-header{flex-direction:column}.landing-contact-submit{width:100%}}:root{--ink: #0e1a2b;--muted: #5f6b7a;--brand: #1f6feb;--brand-dark: #1149a8;--aqua: #5ac8fa;--stone: #f2f5f8;--card: #ffffff;--outline: rgba(15, 35, 75, .12);--shadow: 0 18px 40px rgba(13, 34, 71, .15)}html,body{margin:0;padding:0;font-family:Manrope,Segoe UI,sans-serif;color:var(--ink);background:linear-gradient(180deg,#f7fbff,#fff 40%,#f2f7fb);scroll-behavior:smooth}.page{display:flex;flex-direction:column;min-height:100vh}.public-site{min-height:100vh}.public-site>.section{flex:1 0 auto}.header{display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;align-items:center;padding:1rem 2.5rem;background:#ffffffe6;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);position:sticky;top:0;z-index:1000;border-bottom:1px solid rgba(15,35,75,.08)}.logo{display:block;width:170px;height:auto;object-fit:contain}.nav{display:flex;align-items:center;gap:.2rem;flex-wrap:wrap}.nav a{padding:.45rem .7rem;text-decoration:none;color:var(--ink);font-weight:600;border-radius:999px;transition:color .2s ease,background .2s ease}.nav a:hover,.nav a:focus-visible{color:var(--brand);background:#1f6feb14;outline:none}.header-actions{display:inline-flex;align-items:center;gap:.55rem;flex-wrap:wrap;position:relative}.public-mobile-menu-trigger,.public-mobile-panel{display:none}.public-mobile-menu-trigger{min-height:40px;border:1px solid rgba(15,35,75,.14);background:#fff;color:var(--ink);border-radius:999px;padding:.48rem .78rem;align-items:center;gap:.45rem;font:inherit;font-size:.92rem;font-weight:800;cursor:pointer;box-shadow:0 8px 18px #0f234b14}.public-mobile-panel{position:absolute;left:1rem;right:1rem;top:calc(100% + .55rem);z-index:1200;background:#fff;border:1px solid rgba(15,35,75,.12);border-radius:12px;box-shadow:0 18px 40px #0f234b2e;padding:.45rem;gap:.45rem}.public-mobile-panel.is-open{display:grid}.public-mobile-panel-group{display:grid;gap:.15rem}.public-mobile-panel-group+.public-mobile-panel-group{border-top:1px solid rgba(15,35,75,.08);padding-top:.45rem}.public-mobile-panel a,.public-mobile-panel button{width:100%;min-height:42px;border:0;background:transparent;color:var(--ink);text-decoration:none;border-radius:8px;padding:.68rem .75rem;display:flex;align-items:center;font:inherit;font-weight:750;text-align:left;cursor:pointer}.public-mobile-panel a:hover,.public-mobile-panel a:focus-visible,.public-mobile-panel button:hover,.public-mobile-panel button:focus-visible{background:#1f6feb14;outline:none}.public-user-menu{position:relative}.public-user-trigger{min-height:42px;border:1px solid rgba(15,35,75,.12);background:#fff;border-radius:999px;padding:.55rem .95rem;display:inline-flex;align-items:center;gap:.55rem;font:inherit;font-weight:700;color:var(--ink);cursor:pointer}.public-user-dropdown{position:absolute;right:0;top:calc(100% + .55rem);min-width:220px;background:#fff;border:1px solid rgba(15,35,75,.12);border-radius:16px;box-shadow:0 14px 30px #0f234b1f;padding:.45rem;display:none;z-index:1100}.public-user-dropdown.is-open{display:grid}.public-user-dropdown button{width:100%;border:0;background:transparent;padding:.75rem .85rem;border-radius:12px;display:inline-flex;align-items:center;gap:.7rem;font:inherit;color:var(--ink);cursor:pointer}.public-user-dropdown button:hover{background:#1f6feb14}.section{padding:5rem 2.5rem}.section h2{font-size:clamp(1.8rem,4vw,2.6rem);margin-bottom:1.5rem}.section p{color:var(--muted);line-height:1.7}.section.alt{background:var(--stone)}.section-inner{max-width:1100px;margin:0 auto}.form{display:grid;gap:1rem;margin-top:1.2rem}.landing-register-button{min-width:165px}.register-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background:#081831ad;-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);display:grid;place-items:center;z-index:1200;padding:1.25rem}.register-modal{position:relative;width:min(560px,100%);max-height:min(720px,calc(100vh - 2.5rem));overflow:auto;background:#fffffffa;border-radius:20px;border:1px solid rgba(255,255,255,.72);box-shadow:0 28px 80px #01102759,0 3px 10px #0110271a;padding:1.45rem}.register-modal:before{display:none}.register-modal h3{margin:0 0 .45rem;font-size:1.45rem;font-weight:800;line-height:1.2;color:#0e1a2b;letter-spacing:-.02em}.register-modal p{margin:0 0 .85rem;color:#5f6b7a;line-height:1.6}.register-modal-actions{display:flex;gap:.75rem;justify-content:flex-end;margin-top:.95rem}.register-modal-actions .jbButton{min-height:42px;min-width:155px;border-radius:10px;font-weight:750}.register-message{margin:0;font-size:.92rem;font-weight:600}.register-message-error{color:#9e1b1b}.register-modal .form{margin-top:.8rem}.register-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.register-modal .jbStringField input{min-height:44px;background:#fff;border:1px solid #c8d3e2;border-radius:10px;padding:.55rem .75rem;font-size:.95rem;transition:border-color .2s ease,box-shadow .2s ease}.register-modal .jbStringField input:focus{border-color:#1f6feb;box-shadow:0 0 0 3px #1f6feb21;outline:none}.register-modal .jbStringField label{margin-bottom:.4rem;font-size:.82rem;color:#334155;font-weight:750}.register-legal-note{margin:.75rem 0 0;font-size:.82rem;color:#5f6b7a;line-height:1.45;text-align:center}.register-legal-note a{color:#1d4ed8;text-decoration:underline}.register-success-wrap{text-align:center;padding:.4rem 0 .2rem}.register-success-icon{width:66px;height:66px;border-radius:50%;margin:0 auto .9rem;background:#ecfdf3;border:2px solid #22a05a;display:grid;place-items:center;position:relative;animation:registerPop .45s ease-out}.register-success-icon:after{content:"";position:absolute;top:-8px;right:-8px;bottom:-8px;left:-8px;border-radius:50%;border:2px solid rgba(34,160,90,.2);animation:registerPulse 1.5s ease-out infinite}.register-success-check{font-size:2rem;font-weight:800;color:#15934a;line-height:1}.register-success-wrap h4{margin:0 0 .55rem;font-size:1.25rem;color:#0f172a}.register-success-lead{margin:0 0 .55rem;color:#374151;line-height:1.45}.register-success-highlight{margin:0;padding:.65rem .7rem;border:1px solid #c6d6f5;background:#eef4ff;border-radius:6px;color:#0f254f;font-weight:700;line-height:1.45}.register-success-actions{justify-content:center;margin-top:.9rem}@keyframes registerPop{0%{transform:scale(.75);opacity:0}to{transform:scale(1);opacity:1}}@keyframes registerPulse{0%{transform:scale(1);opacity:.8}to{transform:scale(1.25);opacity:0}}.footer{text-align:center;padding:1.25rem 2rem;color:var(--muted);border-top:1px solid rgba(15,35,75,.1);background:#fff}.hero-actions{margin-top:1.5rem;display:flex;gap:.8rem;flex-wrap:wrap}.landing-legal-links{margin-top:.5rem;display:inline-flex;align-items:center;gap:.4rem;flex-wrap:wrap;justify-content:center;font-size:.9rem}.landing-legal-links a{color:#1d4ed8;text-decoration:underline}@media(max-width:820px){.header{justify-content:space-between;text-align:left;flex-wrap:nowrap;padding:.85rem 1rem}.nav,.header-actions{display:none}.public-mobile-menu-trigger{display:inline-flex}.section{padding:4rem 1.5rem}}@media(max-width:600px){.logo{width:140px}.header-actions{width:100%;justify-content:center}.public-user-dropdown{right:50%;transform:translate(50%)}.header-actions .jbButton{min-width:160px}.register-modal-actions{flex-direction:column-reverse;align-items:stretch}.register-form-grid{grid-template-columns:1fr}.register-modal{padding:1.5rem;border-radius:16px}.register-modal-actions .jbButton{width:100%}.register-success-highlight{text-align:left}}.register-confirm-page{min-height:100vh;width:100vw;display:flex;align-items:center;justify-content:center;padding:1.5rem;background:linear-gradient(135deg,#436e9c,#799bbf);position:relative;overflow:hidden;font-family:Inter,Segoe UI,Arial,sans-serif}.register-confirm-bg-image{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;opacity:.25;background:url(/bg-architecture-placeholder.png) center/cover no-repeat;z-index:1;filter:grayscale(.6) blur(2px) brightness(.85);pointer-events:none}.register-confirm-content{z-index:2;display:flex;flex-direction:row;width:92vw;max-width:1040px;min-height:520px;background:#fff;border-radius:1.1rem;overflow:hidden}.register-confirm-brand-panel{flex:0 0 34%;min-width:260px;padding:2.2rem 1.8rem 2rem 2rem;background:#f2f6fae6;border-right:1px solid #e5e8ee;display:flex;flex-direction:column;justify-content:center;gap:.65rem}.register-confirm-logo{width:min(290px,100%);height:auto}.register-confirm-brand-panel h2{margin:.2rem 0 0;font-size:1.2rem;color:#184066}.register-confirm-brand-panel p{margin:0;color:#33516c;line-height:1.55}.register-confirm-legal-links{margin-top:.4rem!important;display:flex;align-items:center;justify-content:center;gap:.35rem;flex-wrap:wrap;font-size:.88rem}.register-confirm-legal-links a{color:#1d4ed8;text-decoration:underline}.register-confirm-card{flex:1;padding:2rem;background:#fff}.register-confirm-card h1{margin:0 0 1.1rem;font-size:1.7rem;font-family:Inter,Segoe UI,Arial,sans-serif;font-weight:700;color:#0e1a2b}.register-confirm-form{display:grid;gap:1rem}.register-confirm-section{border:1px solid #d8dee8;background:#fff;border-radius:6px;padding:.9rem}.register-confirm-section h2{margin:0 0 .7rem;font-size:1.2rem;color:#1f2937}.register-confirm-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.7rem .8rem}.register-confirm-form .jbStringField label,.register-confirm-form .jbSelectField label{margin-bottom:.25rem;font-size:.9rem;color:#374151;font-weight:600}.register-confirm-form .jbStringField input,.register-confirm-form .jbSelectField select,.register-confirm-form .jbSelectField input{min-height:36px;background:#fff;border:1px solid #cfd6e2}.register-confirm-hint{margin:0;color:#4b5563;font-size:.92rem}.register-confirm-submit{margin-top:.2rem;min-height:36px;min-width:260px;justify-self:end}.register-confirm-submit:disabled{opacity:.7;cursor:not-allowed}.register-confirm-error{margin:.3rem 0 0;color:#9e1b1b;font-weight:600}@media(max-width:720px){.register-confirm-page{padding:.8rem}.register-confirm-content{flex-direction:column;width:98vw;max-width:98vw;min-height:unset;border-radius:.7rem}.register-confirm-brand-panel{border-right:none;border-bottom:1px solid #e5e8ee;min-width:unset;padding:1.2rem 1rem 1.1rem 1.2rem}.register-confirm-logo{width:210px}.register-confirm-brand-panel h2{font-size:1.05rem}.register-confirm-card{padding:1.1rem}.register-confirm-grid{grid-template-columns:1fr}.register-confirm-submit{width:100%;justify-self:stretch}}.impressum-bg{min-height:100dvh;width:100vw;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#436e9c,#799bbf);position:relative;padding:1rem;overflow:hidden;font-family:Inter,Segoe UI,Arial,sans-serif}.impressum-bg-image{position:absolute;top:0;right:0;bottom:0;left:0;opacity:.25;background:url(/bg-architecture-placeholder.png) center/cover no-repeat;filter:grayscale(.6) blur(2px) brightness(.85);pointer-events:none}.impressum-card{z-index:2;width:min(900px,96vw);background:#fff;border-radius:1rem;border:1px solid #e4e7eb;padding:1.4rem 1.6rem;max-height:92dvh;overflow:auto}.impressum-head{display:flex;justify-content:space-between;align-items:center;gap:.8rem}.impressum-logo{width:200px;height:auto}.impressum-back-btn{border:1px solid #1e3a86;background:#fff;color:#1e3a86;border-radius:4px;padding:.45rem .7rem;font-size:.9rem;font-weight:600;cursor:pointer}.impressum-back-btn:hover{background:#eef3ff}.impressum-card h1{margin:.9rem 0 1rem;color:#193c5a;font-size:1.55rem}.impressum-content p{margin:0 0 1rem;color:#2f3f52;line-height:1.5}.impressum-content a{color:#1d4ed8;text-decoration:underline}.impressum-legal-links{display:flex;gap:.45rem;align-items:center;flex-wrap:wrap}@media(max-width:640px){.impressum-card{padding:1rem}.impressum-head{flex-direction:column;align-items:flex-start}}
