@utrecht/web-component-library-stencil 1.0.0-alpha.196 → 1.0.0-alpha.199
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/utrecht-breadcrumb.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-button_2.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-checkbox.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-contact-card-template.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-custom-checkbox.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-form-field-checkbox.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-form-field-textarea.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-form-field-textbox.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-heading-2_3.cjs.entry.js +6 -6
- package/dist/cjs/utrecht-html-content.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-pagination.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-sidenav.cjs.entry.js +1 -1
- package/dist/cjs/utrecht-textbox.cjs.entry.js +1 -1
- package/dist/collection/breadcrumb/stencil.css +1 -1
- package/dist/collection/button/stencil.css +1 -1
- package/dist/collection/checkbox/stencil.css +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/custom-checkbox/stencil.css +4 -4
- package/dist/collection/form-field-checkbox/stencil.css +2 -2
- package/dist/collection/form-field-textarea/stencil.css +1 -1
- package/dist/collection/form-field-textbox/stencil.css +1 -1
- package/dist/collection/html-content/stencil.css +7 -7
- package/dist/collection/navigatie sidenav/bem.css +1 -1
- package/dist/collection/pagination/stencil.css +1 -1
- package/dist/collection/paragraph/{bem.js → css/template.js} +5 -0
- package/dist/collection/paragraph/html/template.js +11 -0
- package/dist/collection/paragraph/{stencil.css → web-component/index.css} +0 -0
- package/dist/collection/paragraph/{stencil.js → web-component/index.stencil.js} +2 -2
- package/dist/collection/paragraph/web-component/template.js +12 -0
- package/dist/collection/templates/contact-card-template/stencil.css +1 -1
- package/dist/collection/textbox/stencil.css +1 -1
- package/dist/custom-elements/index.js +120 -120
- package/dist/esm/utrecht-breadcrumb.entry.js +1 -1
- package/dist/esm/utrecht-button_2.entry.js +1 -1
- package/dist/esm/utrecht-checkbox.entry.js +1 -1
- package/dist/esm/utrecht-contact-card-template.entry.js +1 -1
- package/dist/esm/utrecht-custom-checkbox.entry.js +1 -1
- package/dist/esm/utrecht-form-field-checkbox.entry.js +1 -1
- package/dist/esm/utrecht-form-field-textarea.entry.js +1 -1
- package/dist/esm/utrecht-form-field-textbox.entry.js +1 -1
- package/dist/esm/utrecht-heading-2_3.entry.js +6 -6
- package/dist/esm/utrecht-html-content.entry.js +1 -1
- package/dist/esm/utrecht-pagination.entry.js +1 -1
- package/dist/esm/utrecht-sidenav.entry.js +1 -1
- package/dist/esm/utrecht-textbox.entry.js +1 -1
- package/dist/types/paragraph/{stencil.d.ts → web-component/index.stencil.d.ts} +0 -0
- package/dist/utrecht/p-0bd956aa.entry.js +1 -0
- package/dist/utrecht/p-206407ec.entry.js +1 -0
- package/dist/utrecht/{p-bace480b.entry.js → p-24f6df95.entry.js} +1 -1
- package/dist/utrecht/{p-8422d09c.entry.js → p-494a2de2.entry.js} +1 -1
- package/dist/utrecht/{p-62c9e7c0.entry.js → p-52b840b4.entry.js} +1 -1
- package/dist/utrecht/{p-cc6ea231.entry.js → p-7a694b68.entry.js} +1 -1
- package/dist/utrecht/{p-f43fc7ea.entry.js → p-aa7f0306.entry.js} +1 -1
- package/dist/utrecht/{p-0efec1ca.entry.js → p-c1cefe13.entry.js} +1 -1
- package/dist/utrecht/{p-7c4f1d4e.entry.js → p-c7c1b303.entry.js} +1 -1
- package/dist/utrecht/{p-84188382.entry.js → p-cf06abf1.entry.js} +1 -1
- package/dist/utrecht/{p-332a8b95.entry.js → p-e425fabc.entry.js} +1 -1
- package/dist/utrecht/p-f430397a.entry.js +1 -0
- package/dist/utrecht/utrecht.esm.js +1 -1
- package/package.json +2 -2
- package/dist/utrecht/p-29dedac9.entry.js +0 -1
- package/dist/utrecht/p-83d1b80d.entry.js +0 -1
- package/dist/utrecht/p-df7b5348.entry.js +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HTMLElement, h, createEvent, proxyCustomElement } from '@stencil/core/internal/client';
|
|
2
2
|
export { setAssetPath, setPlatformOptions } from '@stencil/core/internal/client';
|
|
3
3
|
|
|
4
|
-
const stencilCss$
|
|
4
|
+
const stencilCss$X = ".utrecht-article{max-inline-size:var(--utrecht-article-max-inline-size)}:host{display:block}:host([hidden]){display:none !important}";
|
|
5
5
|
|
|
6
6
|
const Article = class extends HTMLElement {
|
|
7
7
|
constructor() {
|
|
@@ -12,7 +12,7 @@ const Article = class extends HTMLElement {
|
|
|
12
12
|
render() {
|
|
13
13
|
return (h("article", { class: "utrecht-article" }, h("slot", null)));
|
|
14
14
|
}
|
|
15
|
-
static get style() { return stencilCss$
|
|
15
|
+
static get style() { return stencilCss$X; }
|
|
16
16
|
};
|
|
17
17
|
|
|
18
18
|
function toVal(mix) {
|
|
@@ -56,7 +56,7 @@ function clsx () {
|
|
|
56
56
|
return str;
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
const stencilCss$
|
|
59
|
+
const stencilCss$W = ".utrecht-backdrop{background-color:var(--utrecht-backdrop-background-color);bottom:0;color:var(--utrecht-backdrop-color);display:block;left:0;opacity:var(--utrecht-backdrop-opacity);position:absolute;right:0;top:0;user-select:none;z-index:var(--utrecht-backdrop-z-index)}.utrecht-backdrop--viewport{position:fixed}:host{display:block}:host([hidden]){display:none !important}";
|
|
60
60
|
|
|
61
61
|
const Backdrop = class extends HTMLElement {
|
|
62
62
|
constructor() {
|
|
@@ -68,10 +68,10 @@ const Backdrop = class extends HTMLElement {
|
|
|
68
68
|
const { viewport } = this;
|
|
69
69
|
return (h("div", { class: clsx('utrecht-backdrop', viewport && 'utrecht-backdrop--viewport') }, h("slot", null)));
|
|
70
70
|
}
|
|
71
|
-
static get style() { return stencilCss$
|
|
71
|
+
static get style() { return stencilCss$W; }
|
|
72
72
|
};
|
|
73
73
|
|
|
74
|
-
const stencilCss$
|
|
74
|
+
const stencilCss$V = ".utrecht-badge{background-color:var(--utrecht-badge-background-color, black);border-radius:var(--utrecht-badge-border-radius, 0.5ch);color:var(--utrecht-badge-color, white);display:inline-block;font-family:var(--utrecht-document-font-family, sans-serif);font-size:var(--utrecht-badge-font-size, inherit);font-style:var(--utrecht-badge-font-style, normal);font-weight:var(--utrecht-badge-font-weight, bold);line-height:var(--utrecht-badge-line-height);padding-block-end:var(--utrecht-badge-padding-block, 0.5ex);padding-block-start:var(--utrecht-badge-padding-block, 0.5ex);padding-inline-end:var(--utrecht-badge-padding-inline, 0.5ch);padding-inline-start:var(--utrecht-badge-padding-inline, 0.5ch);text-decoration:none;}.utrecht-badge-counter{background-color:var(--utrecht-badge-counter-background-color, var(--utrecht-badge-background-color, black));border-radius:var(--utrecht-badge-counter-border-radius, var(--utrecht-badge-border-radius, 0.5ch));color:var(--utrecht-badge-counter-color, var(--utrecht-badge-color, white));display:inline-block;font-family:var(--utrecht-document-font-family, sans-serif);font-style:var(--utrecht-badge-counter-font-style, normal);font-weight:var(--utrecht-badge-counter-font-weight, var(--utrecht-badge-font-weight, bold));padding-block-end:var(--utrecht-badge-counter-padding-block, var(--utrecht-badge-padding-block, 0.5ex));padding-block-start:var(--utrecht-badge-counter-padding-block, var(--utrecht-badge-padding-block, 0.5ex));padding-inline-end:var(--utrecht-badge-counter-padding-inline, var(--utrecht-badge-padding-inline, 0.5ch));padding-inline-start:var(--utrecht-badge-counter-padding-inline, var(--utrecht-badge-padding-inline, 0.5ch));text-decoration:none;}:host{display:inline-block}:host([hidden]){display:none !important}";
|
|
75
75
|
|
|
76
76
|
const BadgeCounter = class extends HTMLElement {
|
|
77
77
|
constructor() {
|
|
@@ -86,10 +86,10 @@ const BadgeCounter = class extends HTMLElement {
|
|
|
86
86
|
const textContent = limited ? `${formatNumber(max)}+` : typeof value === 'number' ? formatNumber(value) : '';
|
|
87
87
|
return h("div", { class: "utrecht-badge-counter" }, textContent ? textContent : h("slot", null));
|
|
88
88
|
}
|
|
89
|
-
static get style() { return stencilCss$
|
|
89
|
+
static get style() { return stencilCss$V; }
|
|
90
90
|
};
|
|
91
91
|
|
|
92
|
-
const stencilCss$
|
|
92
|
+
const stencilCss$U = ".utrecht-badge,.utrecht-badge-data{background-color:var(--utrecht-badge-background-color, black);border-radius:var(--utrecht-badge-border-radius, 0.5ch);color:var(--utrecht-badge-color, white);display:inline-block;font-family:var(--utrecht-document-font-family, sans-serif);font-size:var(--utrecht-badge-font-size, inherit);font-style:var(--utrecht-badge-font-style, normal);font-weight:var(--utrecht-badge-font-weight, bold);line-height:var(--utrecht-badge-line-height);padding-block-end:var(--utrecht-badge-padding-block, 0.5ex);padding-block-start:var(--utrecht-badge-padding-block, 0.5ex);padding-inline-end:var(--utrecht-badge-padding-inline, 0.5ch);padding-inline-start:var(--utrecht-badge-padding-inline, 0.5ch);text-decoration:none;}.utrecht-badge-data{letter-spacing:var(--utrecht-badge-data-letter-spacing, inherit);text-transform:var(--utrecht-badge-data-text-transform, inherit)}:host{display:inline-block}:host([hidden]){display:none !important}";
|
|
93
93
|
|
|
94
94
|
const BadgeData = class extends HTMLElement {
|
|
95
95
|
constructor() {
|
|
@@ -100,10 +100,10 @@ const BadgeData = class extends HTMLElement {
|
|
|
100
100
|
render() {
|
|
101
101
|
return (h("div", { class: "utrecht-badge-data" }, h("slot", null)));
|
|
102
102
|
}
|
|
103
|
-
static get style() { return stencilCss$
|
|
103
|
+
static get style() { return stencilCss$U; }
|
|
104
104
|
};
|
|
105
105
|
|
|
106
|
-
const stencilCss$
|
|
106
|
+
const stencilCss$T = ".utrecht-badge,.utrecht-badge-status{background-color:var(--utrecht-badge-background-color, black);border-radius:var(--utrecht-badge-border-radius, 0.5ch);color:var(--utrecht-badge-color, white);display:inline-block;font-family:var(--utrecht-document-font-family, sans-serif);font-size:var(--utrecht-badge-font-size, inherit);font-style:var(--utrecht-badge-font-style, normal);font-weight:var(--utrecht-badge-font-weight, bold);line-height:var(--utrecht-badge-line-height);padding-block-end:var(--utrecht-badge-padding-block, 0.5ex);padding-block-start:var(--utrecht-badge-padding-block, 0.5ex);padding-inline-end:var(--utrecht-badge-padding-inline, 0.5ch);padding-inline-start:var(--utrecht-badge-padding-inline, 0.5ch);text-decoration:none;}.utrecht-badge-status{letter-spacing:var(--utrecht-badge-status-letter-spacing, inherit);text-transform:var(--utrecht-badge-status-text-transform, inherit)}.utrecht-badge-status--danger{background-color:var(--utrecht-feedback-danger-fill-background-color, red);color:var(--utrecht-feedback-danger-fill-color, white)}.utrecht-badge-status--warning{background-color:var(--utrecht-feedback-warning-fill-background-color, #ffa600);color:var(--utrecht-feedback-warning-fill-color, white)}.utrecht-badge-status--safe{background-color:var(--utrecht-feedback-safe-fill-background-color, green);color:var(--utrecht-feedback-safe-fill-color, white)}.utrecht-badge-status--neutral{background-color:var(--utrecht-feedback-neutral-fill-background-color, black);color:var(--utrecht-feedback-neutral-fill-color, white)}.utrecht-badge-status--valid{background-color:var(--utrecht-feedback-valid-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, red));color:var(--utrecht-feedback-valid-fill-color, var(--utrecht-feedback-safe-fill-color, white))}.utrecht-badge-status--invalid{background-color:var(--utrecht-feedback-invalid-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, #ffa600));color:var(--utrecht-feedback-invalid-fill-color, var(--utrecht-feedback-danger-fill-color, white))}.utrecht-badge-status--error{background-color:var(--utrecht-feedback-error-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, #ffa600));color:var(--utrecht-feedback-error-fill-color, var(--utrecht-feedback-danger-fill-color, white))}.utrecht-badge-status--success{background-color:var(--utrecht-feedback-success-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, #ffa600));color:var(--utrecht-feedback-success-fill-color, var(--utrecht-feedback-safe-fill-color, white))}.utrecht-badge-status--active{background-color:var(--utrecht-feedback-active-fill-background-color, var(--utrecht-feedback-safe-fill-background-color, #ffa600));color:var(--utrecht-feedback-active-fill-color, var(--utrecht-feedback-safe-fill-color, white))}.utrecht-badge-status--inactive{background-color:var(--utrecht-feedback-inactive-fill-background-color, var(--utrecht-feedback-danger-fill-background-color, #ffa600));color:var(--utrecht-feedback-inactive-fill-color, var(--utrecht-feedback-danger-fill-color, white))}:host{display:inline-block}:host([hidden]){display:none !important}";
|
|
107
107
|
|
|
108
108
|
const BadgeStatus = class extends HTMLElement {
|
|
109
109
|
constructor() {
|
|
@@ -114,10 +114,10 @@ const BadgeStatus = class extends HTMLElement {
|
|
|
114
114
|
render() {
|
|
115
115
|
return (h("div", { class: `utrecht-badge-status utrecht-badge-status--${this.status}` }, h("slot", null)));
|
|
116
116
|
}
|
|
117
|
-
static get style() { return stencilCss$
|
|
117
|
+
static get style() { return stencilCss$T; }
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
const stencilCss$
|
|
120
|
+
const stencilCss$S = ".utrecht-breadcrumb{--utrecht-focus-background-color:var(--utrecht-breadcrumb-link-focus-background-color);--utrecht-link-background-color:var(--utrecht-breadcrumb-link-background-color);--utrecht-link-color:var(--utrecht-breadcrumb-link-color);--utrecht-link-focus-color:var(--utrecht-breadcrumb-link-focus-color, var(--utrecht-breadcrumb-link-color));--utrecht-link-focus-text-decoration:var(--utrecht-link-text-decoration);--utrecht-link-hover-color:var(--utrecht-breadcrumb-link-color);--utrecht-link-hover-text-decoration:var(--utrecht-link-text-decoration);--utrecht-link-visited-color:var(--utrecht-breadcrumb-link-color);--utrecht-link-visited-text-decoration:var(--utrecht-link-text-decoration);font-family:var(--utrecht-document-font-family, inherit);font-size:var(--utrecht-breadcrumb-font-size);text-transform:var(--utrecht-document-text-transform, inherit)}.utrecht-breadcrumb__list{block-size:var(--utrecht-breadcrumb-block-size);display:flex}ol.utrecht-breadcrumb__list{list-style:none;margin-block-end:0;margin-block-start:0;padding-inline-start:0}.utrecht-breadcrumb__item{block-size:100%}.utrecht-breadcrumb__link{background-color:var(--utrecht-breadcrumb-link-background-color);display:block;padding-block-end:var(--utrecht-breadcrumb-item-padding-block-end, 8px);padding-block-start:var(--utrecht-breadcrumb-item-padding-block-start, 8px);padding-inline-end:var(--utrecht-breadcrumb-item-padding-inline-end, 8px);padding-inline-start:var(--utrecht-breadcrumb-item-padding-inline-start, 8px)}.utrecht-breadcrumb--arrows{--utrecht-breadcrumb-arrow-size:24px;overflow:hidden}.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link{padding-inline-end:0;position:relative}.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::after,.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::before{border-block-end-width:var(--utrecht-breadcrumb-block-size);border-block-start-width:var(--utrecht-breadcrumb-block-size);border-color:transparent;border-style:solid;content:\" \";display:block;height:0;left:100%;margin-block-start:calc(-1 * var(--utrecht-breadcrumb-block-size));position:absolute;top:50%;width:0}.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::after{border-inline-start-color:var(--utrecht-breadcrumb-link-background-color);border-inline-start-width:var(--utrecht-breadcrumb-arrow-size);z-index:2}.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link::before{border-inline-start-color:var(--utrecht-document-background-color);border-inline-start-width:var(--utrecht-breadcrumb-arrow-size);margin-block-start:calc(-1 * var(--utrecht-breadcrumb-block-size));margin-inline-start:1px;z-index:1}.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link--focus,.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link:focus{background-color:var(--utrecht-breadcrumb-link-focus-background-color)}.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link--focus::after,.utrecht-breadcrumb--arrows .utrecht-breadcrumb__link:focus::after{border-inline-start-color:var(--utrecht-breadcrumb-link-focus-background-color)}.utrecht-breadcrumb--arrows .utrecht-breadcrumb__item~.utrecht-breadcrumb__item .utrecht-breadcrumb__link{padding-inline-start:calc(var(--utrecht-breadcrumb-item-padding-inline-start) + var(--utrecht-breadcrumb-arrow-size))}.utrecht-breadcrumb__item~.utrecht-breadcrumb__item{margin-inline-start:var(--utrecht-breadcrumb-item-divider-inline-size)}.utrecht-link{color:var(--utrecht-link-color, blue);text-decoration:var(--utrecht-link-text-decoration, underline);text-decoration-skip-ink:all;text-decoration-thickness:max(var(--utrecht-link-text-decoration-thickness), 1px);text-underline-offset:var(--utrecht-link-text-underline-offset)}.utrecht-link--icon-left{background-image:var(--utrecht-link-icon-left-background-image, none);background-position:0 0.25em;background-repeat:no-repeat;color:var(--utrecht-link-color, blue);font-weight:var(--utrecht-typography-weight-scale-bold-font-weight);padding-inline-start:var(--utrecht-space-block-md);text-decoration:none}.utrecht-link:visited,.utrecht-link--visited{color:var(--utrecht-link-visited-color, var(--utrecht-link-color))}.utrecht-link:hover,.utrecht-link--hover{color:var(--utrecht-link-hover-color, var(--utrecht-link-color));text-decoration:var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));text-decoration-skip:none;text-decoration-skip-ink:none;text-decoration-thickness:max(var(--utrecht-link-hover-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px)}.utrecht-link:active,.utrecht-link--active{color:var(--utrecht-link-active-color, var(--utrecht-link-color))}.utrecht-link--focus,.utrecht-link:focus{color:var(--utrecht-link-focus-color, var(--utrecht-link-color));text-decoration:var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));text-decoration-skip:none;text-decoration-skip-ink:none;text-decoration-thickness:max(var(--utrecht-link-focus-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px)}.utrecht-link--focus-visible,.utrecht-link:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-link:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-link--telephone{white-space:nowrap}:host{display:block}:host([hidden]){display:none !important}";
|
|
121
121
|
|
|
122
122
|
const Breadcrumb = class extends HTMLElement {
|
|
123
123
|
constructor() {
|
|
@@ -131,10 +131,10 @@ const Breadcrumb = class extends HTMLElement {
|
|
|
131
131
|
const items = json ? JSON.parse(json) : [];
|
|
132
132
|
return (h("nav", { class: clsx('utrecht-breadcrumb', variant === 'arrows' && 'utrecht-breadcrumb--arrows') }, h("ol", { class: "utrecht-breadcrumb__list", itemscope: true, itemtype: "https://schema.org/BreadcrumbList" }, items.map(({ href, title, current }, index) => (h("li", { key: href, class: "utrecht-breadcrumb__item", itemscope: true, itemtype: "https://schema.org/ListItem", itemprop: "itemListElement" }, h("a", { class: clsx('utrecht-breadcrumb__link', 'utrecht-link', current && 'utrecht-link--current'), href: href, "aria-current": current ? 'location' : null, itemprop: "item" }, h("span", { class: "utrecht-breadcrumb__text", itemprop: "name" }, title), h("meta", { itemprop: "position", content: index + 1 }))))))));
|
|
133
133
|
}
|
|
134
|
-
static get style() { return stencilCss$
|
|
134
|
+
static get style() { return stencilCss$S; }
|
|
135
135
|
};
|
|
136
136
|
|
|
137
|
-
const stencilCss$
|
|
137
|
+
const stencilCss$R = ".utrecht-button{background-color:var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-border-color, transparent);border-radius:var(--utrecht-button-border-radius);border-style:solid;border-width:var(--utrecht-button-border-width, 0);color:var(--utrecht-button-primary-action-color, var(--utrecht-button-color));font-family:var(--utrecht-button-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-button-font-size, var(--utrecht-document-font-family));font-weight:var(--utrecht-button-font-weight);inline-size:var(--utrecht-button-inline-size, auto);letter-spacing:var(--utrecht-button-letter-spacing);min-block-size:var(--utrecht-button-min-block-size, auto);min-inline-size:var(--utrecht-button-min-inline-size, 0);padding-block-end:var(--utrecht-button-padding-block-end);padding-block-start:var(--utrecht-button-padding-block-start);padding-inline-end:var(--utrecht-button-padding-inline-end);padding-inline-start:var(--utrecht-button-padding-inline-start);text-transform:var(--utrecht-button-text-transform);user-select:none}.utrecht-button--distanced{margin-block-end:var(--utrecht-button-margin-block-end);margin-block-start:var(--utrecht-button-margin-block-start);margin-inline-end:var(--utrecht-button-margin-inline-end);margin-inline-start:var(--utrecht-button-margin-inline-start)}.utrecht-button--submit{cursor:var(--utrecht-action-submit-cursor)}.utrecht-button--busy{cursor:var(--utrecht-action-busy-cursor)}.utrecht-button:disabled,.utrecht-button--disabled{background-color:var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-disabled-color, var(--utrecht-button-color));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-button:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-button--active{background-color:var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-active-color, var(--utrecht-button-color))}.utrecht-button--focus-visible,.utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button--focus,.utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-focus-color, var(--utrecht-button-color))}.utrecht-button:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-button--hover:not(:disabled),.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-hover-color, var(--utrecht-button-color));transform:scale(var(--utrecht-button-focus-transform-scale, 1))}:host{display:inline-block}:host([hidden]){display:none !important}";
|
|
138
138
|
|
|
139
139
|
const Button = class extends HTMLElement {
|
|
140
140
|
constructor() {
|
|
@@ -170,10 +170,10 @@ const Button = class extends HTMLElement {
|
|
|
170
170
|
return (h("button", { class: clsx('utrecht-button', this.busy && 'utrecht-button--busy', this.disabled && 'utrecht-button--disabled', this.type === 'submit' && 'utrecht-button--submit'), "aria-busy": this.busy ? 'true' : null, disabled: this.disabled, type: this.type || 'button', onClick: handleClick }, h("slot", null)));
|
|
171
171
|
}
|
|
172
172
|
get host() { return this; }
|
|
173
|
-
static get style() { return stencilCss$
|
|
173
|
+
static get style() { return stencilCss$R; }
|
|
174
174
|
};
|
|
175
175
|
|
|
176
|
-
const stencilCss$
|
|
176
|
+
const stencilCss$Q = ".utrecht-checkbox{margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0}.utrecht-checkbox--disabled,.utrecht-checkbox--html-input:disabled{cursor:var(--utrecht-action-disabled-cursor)}.utrecht-checkbox--focus-visible{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus:not(:focus-visible){box-shadow:none;outline-style:none}:host{display:block}:host([hidden]){display:none !important}";
|
|
177
177
|
|
|
178
178
|
const Checkbox = class extends HTMLElement {
|
|
179
179
|
constructor() {
|
|
@@ -196,10 +196,10 @@ const Checkbox = class extends HTMLElement {
|
|
|
196
196
|
this.utrechtInput.emit(evt);
|
|
197
197
|
} }));
|
|
198
198
|
}
|
|
199
|
-
static get style() { return stencilCss$
|
|
199
|
+
static get style() { return stencilCss$Q; }
|
|
200
200
|
};
|
|
201
201
|
|
|
202
|
-
const stencilCss$
|
|
202
|
+
const stencilCss$P = ".utrecht-link{color:var(--utrecht-link-color, blue);text-decoration:var(--utrecht-link-text-decoration, underline);text-decoration-skip-ink:all;text-decoration-thickness:max(var(--utrecht-link-text-decoration-thickness), 1px);text-underline-offset:var(--utrecht-link-text-underline-offset)}.utrecht-link--icon-left{background-image:var(--utrecht-link-icon-left-background-image, none);background-position:0 0.25em;background-repeat:no-repeat;color:var(--utrecht-link-color, blue);font-weight:var(--utrecht-typography-weight-scale-bold-font-weight);padding-inline-start:var(--utrecht-space-block-md);text-decoration:none}.utrecht-link:visited,.utrecht-link--visited{color:var(--utrecht-link-visited-color, var(--utrecht-link-color))}.utrecht-link:hover,.utrecht-link--hover{color:var(--utrecht-link-hover-color, var(--utrecht-link-color));text-decoration:var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));text-decoration-skip:none;text-decoration-skip-ink:none;text-decoration-thickness:max(var(--utrecht-link-hover-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px)}.utrecht-link:active,.utrecht-link--active{color:var(--utrecht-link-active-color, var(--utrecht-link-color))}.utrecht-link--focus,.utrecht-link:focus{color:var(--utrecht-link-focus-color, var(--utrecht-link-color));text-decoration:var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));text-decoration-skip:none;text-decoration-skip-ink:none;text-decoration-thickness:max(var(--utrecht-link-focus-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px)}.utrecht-link--focus-visible,.utrecht-link:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-link:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-link--telephone{white-space:nowrap}.utrecht-contact-card{--utrecht-document-color:currentColor;--utrecht-heading-color:currentColor;--utrecht-link-color:currentColor;--utrecht-link-focus-color:currentColor;--utrecht-link-hover-color:currentColor;--utrecht-link-active-color:currentColor;--utrecht-link-visited-color:currentColor;--utrecht-heading-2-text-transform:uppercase;--utrecht-heading-2-font-size:var(--utrecht-typography-scale-md-font-size);--utrecht-contact-card-background-color:hsl(207 60% 91%);--utrecht-contact-card-background-color-2:hsl(207 60% 96%);background-color:#dae9f6;background-image:linear-gradient(45deg, var(--utrecht-contact-card-background-color), var(--utrecht-contact-card-background-color) 50%, var(--utrecht-contact-card-background-color-2) 50%, var(--utrecht-contact-card-background-color-2));background-position-x:66%;background-size:200%;color:var(--utrecht-color-black);padding-block-end:var(--utrecht-space-block-xl);padding-block-start:var(--utrecht-space-block-xl);padding-inline-end:var(--utrecht-space-inline-xl);padding-inline-start:var(--utrecht-space-inline-xl)}.utrecht-contact-card__content{display:flex;flex-direction:row}.utrecht-contact-card__section{margin-block-start:var(--utrecht-space-row-lg);width:100%}.utrecht-contact-card__telephone{--utrecht-paragraph-font-size:var(--utrecht-typography-scale-2xl-font-size)}";
|
|
203
203
|
|
|
204
204
|
const ContactCardTemplate = class extends HTMLElement {
|
|
205
205
|
constructor() {
|
|
@@ -210,10 +210,10 @@ const ContactCardTemplate = class extends HTMLElement {
|
|
|
210
210
|
render() {
|
|
211
211
|
return (h("div", { class: "utrecht-contact-card" }, h("utrecht-heading-2", null, "Hulp en contact"), h("div", { class: "utrecht-contact-card__content" }, h("div", { class: "utrecht-contact-card__section" }, h("utrecht-heading-3", null, "Telefoon"), h("utrecht-paragraph", { class: "utrecht-contact-card__telephone" }, h("a", { href: "tel:14-030", class: "utrecht-link utrecht-link--telephone", title: "Telefoonnummer van gemeente Utrecht" }, "14 030")), h("utrecht-paragraph", null, "Maandag t/m vrijdag 8.30 \u2013 17.30 uur")), h("div", { class: "utrecht-contact-card__section" }, h("utrecht-heading-3", null, "E-mail"), h("utrecht-paragraph", null, h("a", { class: "utrecht-link", href: "https://www.utrecht.nl/reactieformulier", title: "Algemeen reactieformulier van de gemeente Utrecht" }, "reactieformulier"))))));
|
|
212
212
|
}
|
|
213
|
-
static get style() { return stencilCss$
|
|
213
|
+
static get style() { return stencilCss$P; }
|
|
214
214
|
};
|
|
215
215
|
|
|
216
|
-
const stencilCss$
|
|
216
|
+
const stencilCss$O = ".utrecht-checkbox{margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0}.utrecht-checkbox--disabled,.utrecht-checkbox--html-input:disabled{cursor:var(--utrecht-action-disabled-cursor)}.utrecht-checkbox--focus-visible{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-custom-checkbox{--utrecht-icon-size:var(--utrecht-custom-checkbox-icon-size, calc(0.75 * var(--utrecht-custom-checkbox-size)));display:inline-block;height:var(--utrecht-custom-checkbox-size);position:relative;width:var(--utrecht-custom-checkbox-size)}.utrecht-custom-checkbox__input,.utrecht-custom-checkbox__box{left:0;position:absolute;top:0}.utrecht-custom-checkbox__input{margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0;height:var(--utrecht-custom-checkbox-size);opacity:0%;width:var(--utrecht-custom-checkbox-size);z-index:10}.utrecht-custom-checkbox__box{align-items:center;background-color:var(--utrecht-custom-checkbox-background-color);border-color:var(--utrecht-custom-checkbox-border-color, var(--utrecht-form-input-border-color));border-radius:var(--utrecht-custom-checkbox-border-radius, var(--utrecht-form-input-border-radius));border-style:solid;border-width:var(--utrecht-custom-checkbox-border-width, var(--utrecht-form-input-border-width));box-sizing:border-box;color:var(--utrecht-custom-checkbox-color);display:flex;height:var(--utrecht-custom-checkbox-size);justify-content:center;pointer-events:none;width:var(--utrecht-custom-checkbox-size);z-index:1000}.utrecht-custom-checkbox__box--checked{background-color:var(--utrecht-custom-checkbox-checked-background-color, var(--utrecht-custom-checkbox-background-color));border-color:var(--utrecht-custom-checkbox-checked-border-color, var(--utrecht-custom-checkbox-border-color));border-width:var(--utrecht-custom-checkbox-checked-border-width, var(--utrecht-custom-checkbox-border-width));color:var(--utrecht-custom-checkbox-checked-color, var(--utrecht-custom-checkbox-color))}.utrecht-custom-checkbox__box--disabled{background-color:var(--utrecht-custom-checkbox-disabled-background-color, var(--utrecht-custom-checkbox-background-color));border-color:var(--utrecht-custom-checkbox-disabled-border-color, var(--utrecht-custom-checkbox-border-color));border-width:var(--utrecht-custom-checkbox-disabled-border-width, var(--utrecht-custom-checkbox-border-width));color:var(--utrecht-custom-checkbox-disabled-color, var(--utrecht-custom-checkbox-color));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-custom-checkbox__box--indeterminate,.utrecht-custom-checkbox__input:indeterminate~.utrecht-custom-checkbox__box{color:var(--utrecht-custom-checkbox-indeterminate-color, var(--utrecht-custom-checkbox-color))}.utrecht-custom-checkbox__box--invalid{background-color:var(--utrecht-custom-checkbox-invalid-background-color, var(--utrecht-custom-checkbox-background-color));border-color:var(--utrecht-custom-checkbox-invalid-border-color, var(--utrecht-custom-checkbox-border-color));border-width:var(--utrecht-custom-checkbox-invalid-border-width, var(--utrecht-custom-checkbox-border-width));color:var(--utrecht-custom-checkbox-invalid-color, var(--utrecht-custom-checkbox-color))}.utrecht-custom-checkbox__box--active{background-color:var(--utrecht-custom-checkbox-active-background-color, var(--utrecht-custom-checkbox-background-color));border-color:var(--utrecht-custom-checkbox-active-border-color, var(--utrecht-custom-checkbox-border-color));border-width:var(--utrecht-custom-checkbox-active-border-width, var(--utrecht-custom-checkbox-border-width));color:var(--utrecht-custom-checkbox-active-color, var(--utrecht-custom-checkbox-color))}.utrecht-custom-checkbox__box--focus,.utrecht-custom-checkbox__input:focus~.utrecht-custom-checkbox__box{background-color:var(--utrecht-custom-checkbox-focus-background-color, var(--utrecht-custom-checkbox-background-color));border-color:var(--utrecht-custom-checkbox-focus-border-color, var(--utrecht-custom-checkbox-border-color));border-width:var(--utrecht-custom-checkbox-focus-border-width, var(--utrecht-custom-checkbox-border-width));color:var(--utrecht-custom-checkbox-focus-color, var(--utrecht-custom-checkbox-color))}.utrecht-custom-checkbox__box--focus-visible{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-custom-checkbox__input:focus~.utrecht-custom-checkbox__box{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-custom-checkbox__input:focus:not(:focus-visible)~.utrecht-custom-checkbox__box{box-shadow:none;outline-style:none}.utrecht-custom-checkbox__icon--checked,.utrecht-custom-checkbox__icon--indeterminate{display:none}.utrecht-custom-checkbox__box--checked .utrecht-custom-checkbox__icon--checked{display:block}.utrecht-custom-checkbox__box--indeterminate .utrecht-custom-checkbox__icon--indeterminate,.utrecht-custom-checkbox__input:indeterminate~.utrecht-custom-checkbox__box .utrecht-custom-checkbox__icon--indeterminate{display:block}:host{display:block}:host([hidden]){display:none !important}";
|
|
217
217
|
|
|
218
218
|
const CustomCheckbox = class extends HTMLElement {
|
|
219
219
|
constructor() {
|
|
@@ -256,10 +256,10 @@ const CustomCheckbox = class extends HTMLElement {
|
|
|
256
256
|
};
|
|
257
257
|
return (h("div", { class: "utrecht-custom-checkbox", role: "checkbox", tabIndex: disabled ? null : 0, "aria-checked": indeterminate ? 'mixed' : checked ? 'true' : 'false', "aria-disabled": disabled ? 'true' : null, "aria-invalid": invalid ? 'true' : null, "aria-required": required ? 'true' : null, onClick: handleClick, onKeyPress: handleKeyPress, onKeyUp: handleKeyUp }, h("div", { class: clsx('utrecht-custom-checkbox__box', active , checked && 'utrecht-custom-checkbox__box--checked', !checked && 'utrecht-custom-checkbox__box--not-checked', disabled && 'utrecht-custom-checkbox__box--disabled', invalid && 'utrecht-custom-checkbox__box--invalid', indeterminate && 'utrecht-custom-checkbox__box--indeterminate') }, checked && h("utrecht-icon-checkmark", { class: "utrecht-custom-checkbox__icon" }, "\u2714"), indeterminate && (h("utrecht-icon-indeterminate", { class: "utrecht-custom-checkbox__icon" }, "\u25A0")))));
|
|
258
258
|
}
|
|
259
|
-
static get style() { return stencilCss$
|
|
259
|
+
static get style() { return stencilCss$O; }
|
|
260
260
|
};
|
|
261
261
|
|
|
262
|
-
const stencilCss$
|
|
262
|
+
const stencilCss$N = ".utrecht-digid-button{--utrecht-button-min-block-size:var(--utrecht-digid-button-block-size, 50px);--utrecht-logo-max-height:var(--utrecht-digid-button-block-size, 50px);--utrecht-logo-max-width:var(--utrecht-digid-button-block-size, 50px);block-size:var(--utrecht-digid-button-block-size, 50px);display:inline-flex;gap:var(--utrecht-space-inline-sm)}.utrecht-digid-button__logo{order:1}.utrecht-digid-button__button{order:2}:host{display:block}:host([hidden]){display:none !important}";
|
|
263
263
|
|
|
264
264
|
const DigidButton$1 = class extends HTMLElement {
|
|
265
265
|
constructor() {
|
|
@@ -270,10 +270,10 @@ const DigidButton$1 = class extends HTMLElement {
|
|
|
270
270
|
render() {
|
|
271
271
|
return (h("div", { class: "utrecht-digid-button" }, h("utrecht-digid-logo", { class: "utrecht-digid-button__logo" }), h("utrecht-button", { class: "utrecht-digid-button__button", type: this.type || null }, h("slot", null))));
|
|
272
272
|
}
|
|
273
|
-
static get style() { return stencilCss$
|
|
273
|
+
static get style() { return stencilCss$N; }
|
|
274
274
|
};
|
|
275
275
|
|
|
276
|
-
const stencilCss$
|
|
276
|
+
const stencilCss$M = ":host{display:inline}:host([hidden]){display:none !important}svg{height:100%;max-height:var(--utrecht-digid-logo-max-height, var(--utrecht-logo-max-height, 50px));max-width:var(--utrecht-digid-logo-max-width, var(--utrecht-logo-max-width, 50px));width:100%}";
|
|
277
277
|
|
|
278
278
|
const DigidLogo = class extends HTMLElement {
|
|
279
279
|
constructor() {
|
|
@@ -284,10 +284,10 @@ const DigidLogo = class extends HTMLElement {
|
|
|
284
284
|
render() {
|
|
285
285
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 150 150" }, h("title", null, "DigiD"), h("path", { d: "M136 150H14c-8 0-14-6-14-14V14C0 6 6 0 14 0h122c8 0 14 6 14 14v122c0 8-6 14-14 14z" }), h("path", { d: "M17 115V79h10c12 0 19 6 19 17 0 13-8 19-19 19H17zm6-6h4c7 0 12-4 12-13 0-8-5-12-13-12h-3v25zM54 77c3 0 4 1 4 3s-1 4-4 4c-2 0-3-2-3-4s1-3 3-3zm3 38h-6V88h6v27zM72 109h6c6 0 9 3 9 7 0 5-4 9-14 9-8 0-11-2-11-7 0-2 1-4 4-6l-2-3c0-2 1-3 3-4-3-2-4-4-4-8 0-6 4-10 11-10l4 1h9v4h-4l2 5c0 6-4 9-12 9h-3l-1 1c0 2 1 2 3 2zm1 12c6 0 8-2 8-4s-1-2-3-2l-9-1-2 3c0 2 2 4 6 4zm6-24c0-3-2-5-5-5s-5 1-5 5 1 5 5 5c3 0 5-1 5-5z", fill: "#FFFFFF" }), h("path", { d: "M94 77c2 0 3 1 3 3s-1 4-3 4c-3 0-4-2-4-4s1-3 4-3zm3 38h-6V88h6v27zM105 115V79h10c12 0 18 6 18 17 0 13-7 19-19 19h-9zm6-6h4c7 0 12-4 12-13 0-8-5-12-13-12h-3v25z", fill: "#E17000" })));
|
|
286
286
|
}
|
|
287
|
-
static get style() { return stencilCss$
|
|
287
|
+
static get style() { return stencilCss$M; }
|
|
288
288
|
};
|
|
289
289
|
|
|
290
|
-
const stencilCss$
|
|
290
|
+
const stencilCss$L = ".utrecht-document{color:var(--utrecht-document-color, inherit);font-family:var(--utrecht-document-font-family, inherit);font-size:var(--utrecht-document-font-size, inherit);font-weight:var(--utrecht-document-font-weight, inherit);line-height:var(--utrecht-document-line-height, inherit);text-rendering:optimizeLegibility}.utrecht-document :lang(ar){letter-spacing:0 !important}.utrecht-document--surface{background-color:var(--utrecht-document-background-color, inherit)}:host{display:block}:host([hidden]){display:none !important}";
|
|
291
291
|
|
|
292
292
|
const Document = class extends HTMLElement {
|
|
293
293
|
constructor() {
|
|
@@ -298,10 +298,10 @@ const Document = class extends HTMLElement {
|
|
|
298
298
|
render() {
|
|
299
299
|
return (h("div", { class: "utrecht-document" }, h("slot", null)));
|
|
300
300
|
}
|
|
301
|
-
static get style() { return stencilCss$
|
|
301
|
+
static get style() { return stencilCss$L; }
|
|
302
302
|
};
|
|
303
303
|
|
|
304
|
-
const stencilCss$
|
|
304
|
+
const stencilCss$K = ":host{display:inline}:host([hidden]){display:none !important}svg{height:100%;max-height:var(--utrecht-digid-logo-max-height, var(--utrecht-logo-max-height, 50px));max-width:var(--utrecht-digid-logo-max-width, var(--utrecht-logo-max-width, 50px));width:100%}";
|
|
305
305
|
|
|
306
306
|
const EherkenningLogo = class extends HTMLElement {
|
|
307
307
|
constructor() {
|
|
@@ -312,10 +312,10 @@ const EherkenningLogo = class extends HTMLElement {
|
|
|
312
312
|
render() {
|
|
313
313
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-1 0 81 80" }, h("title", null, "Eherkenning"), h("rect", { fill: "#E0E0E0", width: "80", height: "80" }), h("path", { "fill-rule": "evenodd", fill: "#00328C", d: "M37.363,23.178c0,2.027,0,4.055,0,6.08c-4.257,0-9.55,0-14.208,0 c-1.662,0-3.648-0.207-4.799,0.193c-1.041,0.359-1.796,1.169-2.176,2.111c-0.439,1.084-0.32,2.8-0.32,4.414c0,3.425,0,6.055,0,9.475 c0,1.531-0.159,3.325,0.191,4.479c0.316,1.042,1.316,2.194,2.561,2.496c1.318,0.319,3.094,0.064,4.672,0.064 c4.599,0,9.521,0,14.08,0c0,2.025,0,4.053,0,6.08c-6.402-0.083-12.492,0.112-18.176,0c-4.937-0.099-8.966-3.966-9.344-8.833 c-0.226-2.883,0-5.901,0-8.769c0-2.971-0.19-5.932,0-8.767c0.328-4.896,4.208-8.676,8.959-9.024c3.002-0.222,6.129,0,9.28,0 C31.145,23.178,34.26,23.178,37.363,23.178z" }), h("path", { "fill-rule": "evenodd", fill: "#FF0079", d: "M42.867,23.178c1.962,0,3.926,0,5.888,0c0,4.864,0,9.729,0,14.592 c-1.984,0-3.969,0-5.952,0c0-4.801,0-9.6,0-14.399C42.797,23.279,42.792,23.188,42.867,23.178z" }), h("path", { "fill-rule": "evenodd", fill: "#FF0079", d: "M64.434,23.178c1.941,0,3.883,0,5.824,0c0,11.798,0,23.595,0,35.393 c-1.962,0-3.926,0-5.888,0c0-4.992,0-9.984,0-14.977c-5.077,0-10.155,0-15.232,0c0.824-1.95,1.651-3.896,2.56-5.76 c4.203,0,8.405,0,12.608,0c0.15-4.693,0.021-9.664,0.064-14.464C64.365,23.279,64.36,23.188,64.434,23.178z" }), h("path", { "fill-rule": "evenodd", fill: "#00328C", d: "M19.89,37.77c5.376,0,10.752,0,16.129,0c-0.772,2.022-1.748,3.843-2.56,5.824 c-4.544,0-9.088,0-13.633,0c0-1.877,0-3.755,0-5.633C19.821,37.87,19.816,37.781,19.89,37.77z" }), h("path", { "fill-rule": "evenodd", fill: "#FF0079", d: "M42.93,43.594c1.941,0,3.883,0,5.824,0c0,4.992,0,9.984,0,14.977 c-1.984,0-3.969,0-5.952,0c0-4.93,0-9.856,0-14.783C42.8,43.678,42.851,43.62,42.93,43.594z" })));
|
|
314
314
|
}
|
|
315
|
-
static get style() { return stencilCss$
|
|
315
|
+
static get style() { return stencilCss$K; }
|
|
316
316
|
};
|
|
317
317
|
|
|
318
|
-
const stencilCss$
|
|
318
|
+
const stencilCss$J = ":host{display:inline}:host([hidden]){display:none !important}svg{height:100%;max-height:var(--utrecht-digid-logo-max-height, var(--utrecht-logo-max-height, 50px));max-width:var(--utrecht-digid-logo-max-width, var(--utrecht-logo-max-width, 50px));width:100%}";
|
|
319
319
|
|
|
320
320
|
const EidasLogo = class extends HTMLElement {
|
|
321
321
|
constructor() {
|
|
@@ -326,10 +326,10 @@ const EidasLogo = class extends HTMLElement {
|
|
|
326
326
|
render() {
|
|
327
327
|
return (h("svg", { viewBox: "0 0 21 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { d: "M21 17.3383C21 18.2955 20.2291 19.0664 19.272 19.0664H1.72805C0.770872 19.0664 0 18.2955 0 17.3383V1.72805C0 0.770879 0.777296 0 1.72805 0H19.272C20.2291 0 21 0.777303 21 1.72805V17.3383Z", fill: "#2C4375" }), h("path", { d: "M7.88867 19.0984V15.9057C7.88867 14.5952 8.94862 13.5353 10.2591 13.5353H17.0493C18.3598 13.5353 19.4197 14.6017 19.4197 15.9057V19.0984", fill: "white" }), h("path", { d: "M9.38546 9.78369C9.55891 9.19911 9.83513 8.72373 10.2141 8.34472C10.5932 7.97213 11.075 7.69589 11.6724 7.51602C12.2698 7.33615 12.9765 7.24622 13.8051 7.24622C14.4989 7.24622 15.1028 7.32973 15.6231 7.49675C16.1435 7.66377 16.5932 7.92716 16.985 8.2869C17.4411 8.71089 17.7495 9.20553 17.9101 9.76442C18.0707 10.3233 18.1542 11.0299 18.1542 11.8651V17.0428C18.1542 17.486 18.0514 17.8201 17.8523 18.0385C17.6467 18.2569 17.3833 18.3661 17.0557 18.3661C16.7281 18.3661 16.4647 18.2569 16.272 18.0385C16.0792 17.8201 15.9765 17.4925 15.9765 17.0428V11.7173C15.9765 10.7987 15.803 10.1113 15.4497 9.66163C15.0964 9.21196 14.4989 8.98069 13.6445 8.98069C13.0278 8.98069 12.5525 9.0899 12.2056 9.31474C11.8651 9.53958 11.6274 9.84793 11.4925 10.2526C11.3576 10.6574 11.2934 11.1584 11.2934 11.7559V17.0428C11.2934 17.4796 11.197 17.8137 10.9979 18.0321C10.7987 18.2505 10.5353 18.3597 10.1949 18.3597C9.87367 18.3597 9.6103 18.2505 9.41758 18.0321C9.21844 17.8137 9.12207 17.4796 9.12207 17.0428V11.8779C9.12207 11.0621 9.21201 10.3683 9.38546 9.78369Z", fill: "white" }), h("path", { d: "M13.169 0.648804L13.683 2.0942L15.3275 2.08778L13.9913 2.98071L14.5052 4.41968L13.169 3.52675L11.8457 4.41968L12.3532 2.98071L11.0234 2.08778L12.668 2.0942L13.169 0.648804Z", fill: "#F2CD23" }), h("path", { d: "M18.2893 1.59314L18.7968 3.03854L20.4413 3.03211L19.1116 3.91862L19.6191 5.35759L18.2893 4.46466L16.9595 5.35759L17.4735 3.91862L16.1309 3.03211L17.7882 3.03854L18.2893 1.59314Z", fill: "#F2CD23" }), h("path", { d: "M3.60369 14.833L4.11118 16.2784L5.75573 16.272L4.41954 17.1585L4.93346 18.5975L3.60369 17.7045L2.27392 18.5975L2.78784 17.1585L1.45166 16.272L3.09619 16.2784L3.60369 14.833Z", fill: "#F2CD23" }), h("path", { d: "M4.80536 5.51819L5.31284 6.96358L6.95739 6.95716L5.62763 7.84367L6.13512 9.28264L4.80536 8.38971L3.47559 9.28264L3.98308 7.84367L2.65332 6.95716L4.30428 6.96358L4.80536 5.51819Z", fill: "#F2CD23" }), h("path", { d: "M8.43483 2.07495L8.93591 3.52035L10.5869 3.51392L9.25068 4.40043L9.76459 5.83941L8.43483 4.94647L7.10507 5.83941L7.61256 4.40043L6.27637 3.51392L7.92733 3.52035L8.43483 2.07495Z", fill: "#F2CD23" }), h("path", { d: "M3.12176 10.3234L3.62925 11.7688L5.28021 11.7623L3.94402 12.6488L4.45152 14.0878L3.12176 13.1949L1.79198 14.0878L2.3059 12.6488L0.969727 11.7623L2.61426 11.7688L3.12176 10.3234Z", fill: "#F2CD23" })));
|
|
328
328
|
}
|
|
329
|
-
static get style() { return stencilCss$
|
|
329
|
+
static get style() { return stencilCss$J; }
|
|
330
330
|
};
|
|
331
331
|
|
|
332
|
-
const stencilCss$
|
|
332
|
+
const stencilCss$I = ".utrecht-form-field{font-family:var(--utrecht-document-font-family, inherit);max-inline-size:var(--utrecht-form-field-max-inline-size)}.utrecht-form-field--distanced{margin-block-end:var(--utrecht-form-field-margin-block-end, var(--utrecht-paragraph-margin-block-end));margin-block-start:var(--utrecht-form-field-margin-block-start, var(--utrecht-paragraph-margin-block-start))}.utrecht-form-field__label--checkbox{margin-inline-start:1ch}.utrecht-form-label{color:var(--utrecht-form-label-color);font-size:var(--utrecht-form-label-font-size);font-weight:var(--utrecht-form-label-font-weight)}.utrecht-form-label--checkbox{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--checked{font-weight:var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--disabled{cursor:var(--utrecht-action-disabled-cursor);font-weight:var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color))}.utrecht-form-label--radio{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-checkbox{margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0}.utrecht-checkbox--disabled,.utrecht-checkbox--html-input:disabled{cursor:var(--utrecht-action-disabled-cursor)}.utrecht-checkbox--focus-visible{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus:not(:focus-visible){box-shadow:none;outline-style:none}:host{display:block}:host([hidden]){display:none !important}";
|
|
333
333
|
|
|
334
334
|
const FormFieldCheckbox = class extends HTMLElement {
|
|
335
335
|
constructor() {
|
|
@@ -354,10 +354,10 @@ const FormFieldCheckbox = class extends HTMLElement {
|
|
|
354
354
|
this.utrechtInput.emit(evt);
|
|
355
355
|
} }), h("label", { class: clsx('utrecht-form-field__label', 'utrecht-form-field__label--checkbox', 'utrecht-form-label', 'utrecht-form-label--checkbox'), htmlFor: "input" }, h("slot", null))));
|
|
356
356
|
}
|
|
357
|
-
static get style() { return stencilCss$
|
|
357
|
+
static get style() { return stencilCss$I; }
|
|
358
358
|
};
|
|
359
359
|
|
|
360
|
-
const stencilCss$
|
|
360
|
+
const stencilCss$H = ".utrecht-form-field-description{color:var(--utrecht-form-field-description-color);font-family:var(--utrecht-document-font-family, inherit);font-size:var(--utrecht-form-field-description-font-size, inherit);font-style:var(--utrecht-form-field-description-font-style)}.utrecht-form-field-description--distanced{margin-block-end:var(--utrecht-form-field-description-margin-block-end, var(--utrecht-paragraph-margin-block-end));margin-block-start:var(--utrecht-form-field-description-margin-block-start, var(--utrecht-paragraph-margin-block-start))}.utrecht-form-field-description--invalid{color:var(--utrecht-form-field-description-invalid-color, var(--utrecht-feedback-invalid-color, var(--utrecht-feedback-danger-color)))}.utrecht-form-field-description--valid{color:var(--utrecht-form-field-description-valid-color, var(--utrecht-feedback-valid-color, var(--utrecht-feedback-safe-color)))}.utrecht-form-field-description--warning{color:var(--utrecht-form-field-description-warning-color, var(--utrecht-feedback-warning-color))}:host{display:block}:host([hidden]){display:none !important}";
|
|
361
361
|
|
|
362
362
|
const FormFieldDescription = class extends HTMLElement {
|
|
363
363
|
constructor() {
|
|
@@ -370,10 +370,10 @@ const FormFieldDescription = class extends HTMLElement {
|
|
|
370
370
|
const { status } = this;
|
|
371
371
|
return (h("div", { class: clsx('utrecht-form-field-description', status === 'valid' && 'utrecht-form-field-description--valid', status === 'invalid' && 'utrecht-form-field-description--invalid') }, h("slot", null)));
|
|
372
372
|
}
|
|
373
|
-
static get style() { return stencilCss$
|
|
373
|
+
static get style() { return stencilCss$H; }
|
|
374
374
|
};
|
|
375
375
|
|
|
376
|
-
const stencilCss$
|
|
376
|
+
const stencilCss$G = ".utrecht-form-label{color:var(--utrecht-form-label-color);font-size:var(--utrecht-form-label-font-size);font-weight:var(--utrecht-form-label-font-weight)}.utrecht-form-label--checkbox{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--checked{font-weight:var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--disabled{cursor:var(--utrecht-action-disabled-cursor);font-weight:var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color))}.utrecht-form-label--radio{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-field{font-family:var(--utrecht-document-font-family, inherit);max-inline-size:var(--utrecht-form-field-max-inline-size)}.utrecht-form-field--distanced{margin-block-end:var(--utrecht-form-field-margin-block-end, var(--utrecht-paragraph-margin-block-end));margin-block-start:var(--utrecht-form-field-margin-block-start, var(--utrecht-paragraph-margin-block-start))}.utrecht-textarea{background-color:var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color));border-width:var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width));border-bottom-width:var(--utrecht-textarea-border-bottom-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width)));border-color:var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color));border-radius:var(--utrecht-textarea-border-radius, var(--utrecht-form-input-border-radius, 0));border-style:solid;box-sizing:border-box;color:var(--utrecht-textarea-color, var(--utrecht-form-input-color));font-family:var(--utrecht-textarea-font-family, var(--utrecht-form-input-font-family));font-size:var(--utrecht-textarea-font-size, var(--utrecht-form-input-font-size, 1em));max-inline-size:var(--utrecht-textarea-max-inline-size, var(--utrecht-form-input-max-inline-size));min-block-size:var(--utrecht-textarea-min-block-size);padding-block-end:var(--utrecht-textarea-padding-block-end, var(--utrecht-form-input-padding-block-end));padding-block-start:var(--utrecht-textarea-padding-block-start, var(--utrecht-form-input-padding-block-start));padding-inline-end:var(--utrecht-textarea-padding-inline-end, var(--utrecht-form-input-padding-inline-end));padding-inline-start:var(--utrecht-textarea-padding-inline-start, var(--utrecht-form-input-padding-inline-start));resize:vertical;width:100%}.utrecht-textarea--invalid,.utrecht-textarea--html-textarea:invalid,.utrecht-textarea--html-textarea[aria-invalid=true]{background-color:var(--utrecht-textarea-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textarea-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));border-width:var(--utrecht-textarea-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width))))}.utrecht-textarea--disabled,.utrecht-textarea--html-textarea:disabled{background-color:var(--utrecht-textarea-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textarea-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textarea-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-textarea--focus,.utrecht-textarea--html-textarea:focus{background-color:var(--utrecht-textarea-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textarea-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textarea-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textarea--focus-visible,.utrecht-textarea--html-textarea:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-textarea--read-only,.utrecht-textarea--html-textarea:read-only{border-color:var(--utrecht-textarea-read-only-border, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textarea-border, var(--utrecht-form-input-border-color))));color:var(--utrecht-textarea-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textarea__placeholder,.utrecht-textarea--html-textarea::placeholder{color:var(--utrecht-textarea-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));font-style:var(--utrecht-form-input-placeholder-font-style);opacity:100%}.utrecht-textarea--html-textarea:focus:not(:focus-visible){box-shadow:none;outline-style:none}:host{display:block}:host([hidden]){display:none !important}";
|
|
377
377
|
|
|
378
378
|
const FormFieldTextarea = class extends HTMLElement {
|
|
379
379
|
constructor() {
|
|
@@ -398,10 +398,10 @@ const FormFieldTextarea = class extends HTMLElement {
|
|
|
398
398
|
this.utrechtInput.emit(evt);
|
|
399
399
|
} }, value), h("label", { class: "utrecht-form-field-textarea__label utrecht-form-label", htmlFor: "input" }, h("slot", null))));
|
|
400
400
|
}
|
|
401
|
-
static get style() { return stencilCss$
|
|
401
|
+
static get style() { return stencilCss$G; }
|
|
402
402
|
};
|
|
403
403
|
|
|
404
|
-
const stencilCss$
|
|
404
|
+
const stencilCss$F = ".utrecht-form-field-textbox{font-family:var(--utrecht-document-font-family, inherit)}.utrecht-form-label{color:var(--utrecht-form-label-color);font-size:var(--utrecht-form-label-font-size);font-weight:var(--utrecht-form-label-font-weight)}.utrecht-form-label--checkbox{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--checked{font-weight:var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--disabled{cursor:var(--utrecht-action-disabled-cursor);font-weight:var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color))}.utrecht-form-label--radio{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-textbox{background-color:var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));border-width:var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));border-bottom-width:var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));border-color:var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));border-radius:var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));border-style:solid;box-sizing:border-box;color:var(--utrecht-textbox-color, var(--utrecht-form-input-color));font-family:var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));font-size:var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));max-inline-size:var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));padding-block-end:var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));padding-block-start:var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));padding-inline-end:var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));padding-inline-start:var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));width:100%}.utrecht-textbox--invalid,.utrecht-textbox--html-input:invalid,.utrecht-textbox--html-input[aria-invalid=true]{background-color:var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));border-width:var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width))))}.utrecht-textbox--disabled,.utrecht-textbox--html-input:disabled{background-color:var(--utrecht-textbox-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-textbox--focus,.utrecht-textbox--html-input:focus{background-color:var(--utrecht-textbox-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textbox--focus-visible,.utrecht-textbox--html-input:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-textbox--read-only,.utrecht-textbox--html-input:read-only{border-color:var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))))}.utrecht-textbox__placeholder,.utrecht-textbox--html-input::placeholder{color:var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));font-style:var(--utrecht-form-input-placeholder-font-style);opacity:100%}.utrecht-textbox--numeric{font-variant-numeric:lining-nums tabular-nums}.utrecht-textbox--password{font-variant-ligatures:none;font-variant-numeric:slashed-zero}.utrecht-textbox--url{font-variant-ligatures:none}.utrecht-textbox--html-input:focus:not(:focus-visible){box-shadow:none;outline-style:none}:host{display:block}:host([hidden]){display:none !important}";
|
|
405
405
|
|
|
406
406
|
const FormFieldTextbox = class extends HTMLElement {
|
|
407
407
|
constructor() {
|
|
@@ -431,10 +431,10 @@ const FormFieldTextbox = class extends HTMLElement {
|
|
|
431
431
|
this.utrechtInput.emit(evt);
|
|
432
432
|
} }), h("label", { class: "utrecht-form-field-textbox__label utrecht-form-label", htmlFor: "input" }, h("slot", null))));
|
|
433
433
|
}
|
|
434
|
-
static get style() { return stencilCss$
|
|
434
|
+
static get style() { return stencilCss$F; }
|
|
435
435
|
};
|
|
436
436
|
|
|
437
|
-
const stencilCss$
|
|
437
|
+
const stencilCss$E = ".utrecht-form-toggle{align-items:center;border-color:var(--utrecht-form-toggle-border-color, currentColor);border-radius:var(--utrecht-form-toggle-border-radius, 999rem);border-style:var(--utrecht-form-toggle-border-style, solid);border-width:var(--utrecht-form-toggle-border-width, 1px);color:var(--utrecht-form-toggle-color);display:flex;height:var(--utrecht-form-toggle-height, 2em);padding-block-end:var(--utrecht-form-toggle-padding-block-end);padding-block-start:var(--utrecht-form-toggle-padding-block-start);padding-inline-end:var(--utrecht-form-toggle-padding-inline-end);padding-inline-start:var(--utrecht-form-toggle-padding-inline-start);position:relative;user-select:none;width:var(--utrecht-form-toggle-width, 6em)}.utrecht-form-toggle--focus,.utrecht-form-toggle:not(.utrecht-form-toggle--disabled):focus{border-color:var(--utrecht-form-toggle-focus-border-color, var(--utrecht-form-toggle-border-color, currentColor));border-style:var(--utrecht-form-toggle-focus-border-style, var(--utrecht-form-toggle-border-style, solid));border-width:var(--utrecht-form-toggle-focus-border-width, var(--utrecht-form-toggle-border-width, 1px))}.utrecht-form-toggle--hover,.utrecht-form-toggle:not(.utrecht-form-toggle--disabled):hover{background-color:var(--utrecht-form-toggle-hover-background-color, var(--utrecht-form-toggle-background-color));color:var(--utrecht-form-toggle-hover-color, var(--utrecht-form-toggle-color))}.utrecht-form-toggle--disabled{border-color:var(--utrecht-form-toggle-disabled-border-color, var(--utrecht-form-toggle-border-color, currentColor));border-style:var(--utrecht-form-toggle-disabled-border-style, var(--utrecht-form-toggle-border-style, solid));border-width:var(--utrecht-form-toggle-disabled-border-width, var(--utrecht-form-toggle-border-width, 1px));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-form-toggle__thumb{background-color:var(--utrecht-form-toggle-thumb-background-color, currentColor);border-radius:var(--utrecht-form-toggle-thumb-border-radius, 50%);box-shadow:var(--utrecht-form-toggle-thumb-box-shadow);margin-inline-end:var(--utrecht-form-toggle-thumb-margin-inline-end, 0);margin-inline-start:var(--utrecht-form-toggle-thumb-margin-inline-start, 0);min-block-size:var(--utrecht-form-toggle-thumb-min-inline-size, 1.5em);min-inline-size:var(--utrecht-form-toggle-thumb-min-inline-size, 1.5em);z-index:20}.utrecht-form-toggle__thumb--checked,.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:checked~.utrecht-form-toggle__track .utrecht-form-toggle__thumb{margin-inline-start:auto}.utrecht-form-toggle__thumb--not-checked,.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:not(:checked)~.utrecht-form-toggle__track .utrecht-form-toggle__thumb{margin-inline-end:auto}.utrecht-form-toggle__thumb--disabled,.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:disabled~.utrecht-form-toggle__track .utrecht-form-toggle__thumb{background-color:var(--utrecht-form-toggle-thumb-disabled-background-color, #aaa);box-shadow:var(--utrecht-form-toggle-thumb-disabled-box-shadow, 0)}.utrecht-form-toggle__track{align-items:center;background-color:var(--utrecht-form-toggle-accent-color);border-radius:var(--utrecht-form-toggle-track-border-radius, var(--utrecht-form-toggle-border-radius));display:flex;height:100%;width:100%}.utrecht-form-toggle__track--checked,.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:checked~.utrecht-form-toggle__track{background-color:var(--utrecht-form-toggle-checked-accent-color, var(--utrecht-form-toggle-accent-color))}.utrecht-form-toggle__track--disabled,.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:disabled~.utrecht-form-toggle__track{background-color:var(--utrecht-form-toggle-background-disabled-background-color, #ddd);color:var(--utrecht-form-toggle-disabled-color, black)}.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:1px !important}.utrecht-form-toggle--html-checkbox .utrecht-form-toggle__checkbox:focus~.utrecht-form-toggle__track{outline-color:var(--utrecht-form-toggle-focus-border-color, var(--utrecht-form-toggle-border-color, currentColor));outline-style:var(--utrecht-form-toggle-focus-border-style, var(--utrecht-form-toggle-border-style, solid));outline-width:var(--utrecht-form-toggle-focus-border-width, var(--utrecht-form-toggle-border-width, 1px))}:host{display:inline-block}:host([hidden]){display:none !important}";
|
|
438
438
|
|
|
439
439
|
const FormToggle = class extends HTMLElement {
|
|
440
440
|
constructor() {
|
|
@@ -473,10 +473,10 @@ const FormToggle = class extends HTMLElement {
|
|
|
473
473
|
};
|
|
474
474
|
return (h("div", { class: clsx('utrecht-form-toggle', checked && 'utrecht-form-toggle--checked', !checked && 'utrecht-form-toggle--not-checked', disabled && 'utrecht-form-toggle--disabled'), tabIndex: disabled ? null : 0, role: "switch", "aria-disabled": disabled ? 'true' : null, onClick: handleClick, onKeyPress: handleKeyPress, onKeyUp: handleKeyUp }, h("div", { class: "utrecht-form-toggle__label utrecht-form-toggle__label--off" }), h("div", { class: "utrecht-form-toggle__label utrecht-form-toggle__label--on" }), h("div", { class: clsx('utrecht-form-toggle__track', checked && 'utrecht-form-toggle__track--checked', !checked && 'utrecht-form-toggle__track--not-checked', disabled && 'utrecht-form-toggle__track--disabled') }, h("div", { class: clsx('utrecht-form-toggle__thumb', checked && 'utrecht-form-toggle__thumb--checked', !checked && 'utrecht-form-toggle__thumb--not-checked', disabled && 'utrecht-form-toggle__thumb--disabled') }))));
|
|
475
475
|
}
|
|
476
|
-
static get style() { return stencilCss$
|
|
476
|
+
static get style() { return stencilCss$E; }
|
|
477
477
|
};
|
|
478
478
|
|
|
479
|
-
const stencilCss$
|
|
479
|
+
const stencilCss$D = ".utrecht-heading-1{color:var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-1-font-size);font-weight:var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-1-letter-spacing);line-height:var(--utrecht-heading-1-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-1-text-transform, inherit)}.utrecht-heading-1--distanced{margin-block-end:var(--utrecht-heading-1-margin-block-end);margin-block-start:var(--utrecht-heading-1-margin-block-start)}.utrecht-heading-2{color:var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-2-font-size);font-weight:var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-2-letter-spacing);line-height:var(--utrecht-heading-2-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-2-text-transform, inherit)}.utrecht-heading-2--distanced{margin-block-end:var(--utrecht-heading-2-margin-block-end);margin-block-start:var(--utrecht-heading-2-margin-block-start)}.utrecht-heading-3{color:var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-3-font-size);font-weight:var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-3-letter-spacing);line-height:var(--utrecht-heading-3-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-3-text-transform, inherit)}.utrecht-heading-3--distanced{margin-block-end:var(--utrecht-heading-3-margin-block-end);margin-block-start:var(--utrecht-heading-3-margin-block-start)}.utrecht-heading-4{color:var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-4-font-size);font-weight:var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-4-letter-spacing);line-height:var(--utrecht-heading-4-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-4-text-transform, inherit)}.utrecht-heading-4--distanced{margin-block-end:var(--utrecht-heading-4-margin-block-end);margin-block-start:var(--utrecht-heading-4-margin-block-start)}.utrecht-heading-5{color:var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-5-font-size);font-weight:var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-5-letter-spacing);line-height:var(--utrecht-heading-5-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-5-text-transform, inherit)}.utrecht-heading-5--distanced{margin-block-end:var(--utrecht-heading-5-margin-block-end);margin-block-start:var(--utrecht-heading-5-margin-block-start)}.utrecht-heading-6{color:var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-6-font-size);font-weight:var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-6-letter-spacing);line-height:var(--utrecht-heading-6-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-6-text-transform, inherit)}.utrecht-heading-6--distanced{margin-block-end:var(--utrecht-heading-6-margin-block-end);margin-block-start:var(--utrecht-heading-6-margin-block-start)}:host{display:block}:host([hidden]){display:none !important}";
|
|
480
480
|
|
|
481
481
|
const Heading = class extends HTMLElement {
|
|
482
482
|
constructor() {
|
|
@@ -507,10 +507,10 @@ const Heading = class extends HTMLElement {
|
|
|
507
507
|
return (h("div", { class: "utrecht-heading", role: "heading", "aria-level": this.level }, h("slot", null)));
|
|
508
508
|
}
|
|
509
509
|
}
|
|
510
|
-
static get style() { return stencilCss$
|
|
510
|
+
static get style() { return stencilCss$D; }
|
|
511
511
|
};
|
|
512
512
|
|
|
513
|
-
const stencilCss$
|
|
513
|
+
const stencilCss$C = ".utrecht-heading-1{color:var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-1-font-size);font-weight:var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-1-letter-spacing);line-height:var(--utrecht-heading-1-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-1-text-transform, inherit)}.utrecht-heading-1--distanced{margin-block-end:var(--utrecht-heading-1-margin-block-end);margin-block-start:var(--utrecht-heading-1-margin-block-start)}:host{display:block}:host([hidden]){display:none !important}";
|
|
514
514
|
|
|
515
515
|
const Heading1 = class extends HTMLElement {
|
|
516
516
|
constructor() {
|
|
@@ -521,10 +521,10 @@ const Heading1 = class extends HTMLElement {
|
|
|
521
521
|
render() {
|
|
522
522
|
return (h("h1", { class: "utrecht-heading-1" }, h("slot", null)));
|
|
523
523
|
}
|
|
524
|
-
static get style() { return stencilCss$
|
|
524
|
+
static get style() { return stencilCss$C; }
|
|
525
525
|
};
|
|
526
526
|
|
|
527
|
-
const stencilCss$
|
|
527
|
+
const stencilCss$B = ".utrecht-heading-2{color:var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-2-font-size);font-weight:var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-2-letter-spacing);line-height:var(--utrecht-heading-2-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-2-text-transform, inherit)}.utrecht-heading-2--distanced{margin-block-end:var(--utrecht-heading-2-margin-block-end);margin-block-start:var(--utrecht-heading-2-margin-block-start)}:host{display:block}:host([hidden]){display:none !important}";
|
|
528
528
|
|
|
529
529
|
const Heading2 = class extends HTMLElement {
|
|
530
530
|
constructor() {
|
|
@@ -535,10 +535,10 @@ const Heading2 = class extends HTMLElement {
|
|
|
535
535
|
render() {
|
|
536
536
|
return (h("h2", { class: "utrecht-heading-2" }, h("slot", null)));
|
|
537
537
|
}
|
|
538
|
-
static get style() { return stencilCss$
|
|
538
|
+
static get style() { return stencilCss$B; }
|
|
539
539
|
};
|
|
540
540
|
|
|
541
|
-
const stencilCss$
|
|
541
|
+
const stencilCss$A = ".utrecht-heading-3{color:var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-3-font-size);font-weight:var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-3-letter-spacing);line-height:var(--utrecht-heading-3-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-3-text-transform, inherit)}.utrecht-heading-3--distanced{margin-block-end:var(--utrecht-heading-3-margin-block-end);margin-block-start:var(--utrecht-heading-3-margin-block-start)}:host{display:block}:host([hidden]){display:none !important}";
|
|
542
542
|
|
|
543
543
|
const Heading3 = class extends HTMLElement {
|
|
544
544
|
constructor() {
|
|
@@ -549,10 +549,10 @@ const Heading3 = class extends HTMLElement {
|
|
|
549
549
|
render() {
|
|
550
550
|
return (h("h3", { class: "utrecht-heading-3" }, h("slot", null)));
|
|
551
551
|
}
|
|
552
|
-
static get style() { return stencilCss$
|
|
552
|
+
static get style() { return stencilCss$A; }
|
|
553
553
|
};
|
|
554
554
|
|
|
555
|
-
const stencilCss$
|
|
555
|
+
const stencilCss$z = ".utrecht-heading-4{color:var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-4-font-size);font-weight:var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-4-letter-spacing);line-height:var(--utrecht-heading-4-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-4-text-transform, inherit)}.utrecht-heading-4--distanced{margin-block-end:var(--utrecht-heading-4-margin-block-end);margin-block-start:var(--utrecht-heading-4-margin-block-start)}:host{display:block}:host([hidden]){display:none !important}";
|
|
556
556
|
|
|
557
557
|
const Heading4 = class extends HTMLElement {
|
|
558
558
|
constructor() {
|
|
@@ -563,10 +563,10 @@ const Heading4 = class extends HTMLElement {
|
|
|
563
563
|
render() {
|
|
564
564
|
return (h("h4", { class: "utrecht-heading-4" }, h("slot", null)));
|
|
565
565
|
}
|
|
566
|
-
static get style() { return stencilCss$
|
|
566
|
+
static get style() { return stencilCss$z; }
|
|
567
567
|
};
|
|
568
568
|
|
|
569
|
-
const stencilCss$
|
|
569
|
+
const stencilCss$y = ".utrecht-heading-5{color:var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-5-font-size);font-weight:var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-5-letter-spacing);line-height:var(--utrecht-heading-5-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-5-text-transform, inherit)}.utrecht-heading-5--distanced{margin-block-end:var(--utrecht-heading-5-margin-block-end);margin-block-start:var(--utrecht-heading-5-margin-block-start)}:host{display:block}:host([hidden]){display:none !important}";
|
|
570
570
|
|
|
571
571
|
const Heading5 = class extends HTMLElement {
|
|
572
572
|
constructor() {
|
|
@@ -577,10 +577,10 @@ const Heading5 = class extends HTMLElement {
|
|
|
577
577
|
render() {
|
|
578
578
|
return (h("h5", { class: "utrecht-heading-5" }, h("slot", null)));
|
|
579
579
|
}
|
|
580
|
-
static get style() { return stencilCss$
|
|
580
|
+
static get style() { return stencilCss$y; }
|
|
581
581
|
};
|
|
582
582
|
|
|
583
|
-
const stencilCss$
|
|
583
|
+
const stencilCss$x = ".utrecht-heading-6{color:var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-6-font-size);font-weight:var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-6-letter-spacing);line-height:var(--utrecht-heading-6-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-6-text-transform, inherit)}.utrecht-heading-6--distanced{margin-block-end:var(--utrecht-heading-6-margin-block-end);margin-block-start:var(--utrecht-heading-6-margin-block-start)}:host{display:block}:host([hidden]){display:none !important}";
|
|
584
584
|
|
|
585
585
|
const Heading6 = class extends HTMLElement {
|
|
586
586
|
constructor() {
|
|
@@ -591,10 +591,10 @@ const Heading6 = class extends HTMLElement {
|
|
|
591
591
|
render() {
|
|
592
592
|
return (h("h6", { class: "utrecht-heading-6" }, h("slot", null)));
|
|
593
593
|
}
|
|
594
|
-
static get style() { return stencilCss$
|
|
594
|
+
static get style() { return stencilCss$x; }
|
|
595
595
|
};
|
|
596
596
|
|
|
597
|
-
const stencilCss$x = "@charset \"UTF-8\";.utrecht-article,.utrecht-html article{max-inline-size:var(--utrecht-article-max-inline-size)}.utrecht-blockquote,.utrecht-html blockquote{font-family:var(--utrecht-document-font-family);font-size:var(--utrecht-blockquote-font-size);margin-inline-end:var(--utrecht-blockquote-margin-inline-end);margin-inline-start:var(--utrecht-blockquote-margin-inline-start)}.utrecht-blockquote__attribution{color:var(--utrecht-blockquote-attribution-color, inherit);font-size:var(--utrecht-blockquote-attribution-font-size, inherit)}.utrecht-blockquote__content,.utrecht-html blockquote{--utrecht-document-color:var(--utrecht-blockquote-content-color, inherit);--utrecht-paragraph-font-size:var(--utrecht-blockquote-content-font-size, inherit);color:var(--utrecht-blockquote-content-color, inherit);font-size:var(--utrecht-blockquote-content-font-size, inherit)}.utrecht-blockquote--distanced,.utrecht-html blockquote{margin-block-end:var(--utrecht-blockquote-margin-block-end);margin-block-start:var(--utrecht-blockquote-margin-block-start)}.utrecht-button,.utrecht-html input[type=button i],.utrecht-html input[type=reset i],.utrecht-html input[type=submit i],.utrecht-html button{background-color:var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-border-color, transparent);border-radius:var(--utrecht-button-border-radius);border-style:solid;border-width:var(--utrecht-button-border-width, 0);color:var(--utrecht-button-primary-action-color, var(--utrecht-button-color));font-family:var(--utrecht-button-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-button-font-size, var(--utrecht-document-font-family));font-weight:var(--utrecht-button-font-weight);inline-size:var(--utrecht-button-inline-size, auto);letter-spacing:var(--utrecht-button-letter-spacing);min-block-size:var(--utrecht-button-min-block-size, auto);min-inline-size:var(--utrecht-button-min-inline-size, 0);padding-block-end:var(--utrecht-button-padding-block-end);padding-block-start:var(--utrecht-button-padding-block-start);padding-inline-end:var(--utrecht-button-padding-inline-end);padding-inline-start:var(--utrecht-button-padding-inline-start);text-transform:var(--utrecht-button-text-transform);user-select:none}.utrecht-button--distanced,.utrecht-html input[type=button i],.utrecht-html input[type=reset i],.utrecht-html input[type=submit i],.utrecht-html button{margin-block-end:var(--utrecht-button-margin-block-end);margin-block-start:var(--utrecht-button-margin-block-start);margin-inline-end:var(--utrecht-button-margin-inline-end);margin-inline-start:var(--utrecht-button-margin-inline-start)}.utrecht-button--submit,.utrecht-html button[type=submit i],.utrecht-html input[type=submit i]{cursor:var(--utrecht-action-submit-cursor)}.utrecht-button--busy,.utrecht-html button[aria-busy=true],.utrecht-html button[aria-disabled=true][aria-busy=true],.utrecht-html button:disabled[aria-busy=true]{cursor:var(--utrecht-action-busy-cursor)}.utrecht-button:disabled,.utrecht-html input[type=button i]:disabled,.utrecht-html input[type=reset i]:disabled,.utrecht-html input[type=submit i]:disabled,.utrecht-html button:disabled,.utrecht-button--disabled,.utrecht-html button[aria-disabled=true]{background-color:var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-disabled-color, var(--utrecht-button-color));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-button:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=button i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=reset i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=submit i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-button--active,.utrecht-html button:active:not([aria-disabled=true]):not(:disabled){background-color:var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-active-color, var(--utrecht-button-color))}.utrecht-button--focus-visible,.utrecht-html button:focus-visible,.utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=button i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=reset i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:0;outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button--focus,.utrecht-html button:focus:not([aria-disabled=true]):not(:disabled),.utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=button i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=reset i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-focus-color, var(--utrecht-button-color))}.utrecht-button:focus:not(:focus-visible),.utrecht-html input[type=button i]:focus:not(:focus-visible),.utrecht-html input[type=reset i]:focus:not(:focus-visible),.utrecht-html input[type=submit i]:focus:not(:focus-visible),.utrecht-html button:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-button--hover:not(:disabled),.utrecht-html button:not(:disabled):hover:not([aria-disabled=true]),.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=button i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=reset i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=submit i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-hover-color, var(--utrecht-button-color));transform:scale(var(--utrecht-button-focus-transform-scale, 1))}.utrecht-checkbox,.utrecht-html input[type=checkbox i]{margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0}.utrecht-checkbox--disabled,.utrecht-checkbox--html-input:disabled,.utrecht-html input[type=checkbox i]:disabled{cursor:var(--utrecht-action-disabled-cursor)}.utrecht-checkbox--focus-visible{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:0;outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus,.utrecht-html input[type=checkbox i]:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:0;outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus:not(:focus-visible),.utrecht-html input[type=checkbox i]:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-emphasis--stressed,.utrecht-html em{font-style:var(--utrecht-emphasis-stressed-font-style, italic)}.utrecht-emphasis--strong,.utrecht-html strong{font-weight:var(--utrecht-emphasis-strong-font-weight, bold)}.utrecht-form-fieldset--reset-fieldset,.utrecht-html fieldset{border:0;margin-inline-end:0;margin-inline-start:0;min-width:0;padding-block-end:0;padding-block-start:0.01em;padding-inline-end:0;padding-inline-start:0}.utrecht-form-fieldset__legend--reset-legend,.utrecht-html legend{padding-inline-end:0;padding-inline-start:0}.utrecht-form-fieldset--distanced,.utrecht-html fieldset{margin-block-end:var(--utrecht-form-fieldset-margin-block-end, 0);margin-block-start:var(--utrecht-form-fieldset-margin-block-start, 0)}.utrecht-form-fieldset__legend,.utrecht-html legend{color:var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));font-family:var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-form-fieldset-legend-font-size);font-weight:var(--utrecht-form-fieldset-legend-font-weight);line-height:var(--utrecht-form-fieldset-legend-line-height);text-transform:var(--utrecht-form-fieldset-legend-text-transform)}.utrecht-form-fieldset__legend--distanced,.utrecht-html legend{margin-block-end:var(--utrecht-form-fieldset-legend-margin-block-end);margin-block-start:var(--utrecht-form-fieldset-legend-margin-block-start)}.utrecht-form-label,.utrecht-html label{color:var(--utrecht-form-label-color);font-size:var(--utrecht-form-label-font-size);font-weight:var(--utrecht-form-label-font-weight)}.utrecht-form-label--checkbox,.utrecht-html input[type=checkbox i]~label{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--checked{font-weight:var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--disabled{cursor:var(--utrecht-action-disabled-cursor);font-weight:var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color))}.utrecht-form-label--radio,.utrecht-html input[type=radio i]~label{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-heading-1,.utrecht-html h1{color:var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-1-font-size);font-weight:var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-1-letter-spacing);line-height:var(--utrecht-heading-1-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-1-text-transform, inherit)}.utrecht-heading-1--distanced,.utrecht-html h1{margin-block-end:var(--utrecht-heading-1-margin-block-end);margin-block-start:var(--utrecht-heading-1-margin-block-start)}.utrecht-heading-2,.utrecht-html h2{color:var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-2-font-size);font-weight:var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-2-letter-spacing);line-height:var(--utrecht-heading-2-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-2-text-transform, inherit)}.utrecht-heading-2--distanced,.utrecht-html h2{margin-block-end:var(--utrecht-heading-2-margin-block-end);margin-block-start:var(--utrecht-heading-2-margin-block-start)}.utrecht-heading-3,.utrecht-html h3{color:var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-3-font-size);font-weight:var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-3-letter-spacing);line-height:var(--utrecht-heading-3-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-3-text-transform, inherit)}.utrecht-heading-3--distanced,.utrecht-html h3{margin-block-end:var(--utrecht-heading-3-margin-block-end);margin-block-start:var(--utrecht-heading-3-margin-block-start)}.utrecht-heading-4,.utrecht-html h4{color:var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-4-font-size);font-weight:var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-4-letter-spacing);line-height:var(--utrecht-heading-4-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-4-text-transform, inherit)}.utrecht-heading-4--distanced,.utrecht-html h4{margin-block-end:var(--utrecht-heading-4-margin-block-end);margin-block-start:var(--utrecht-heading-4-margin-block-start)}.utrecht-heading-5,.utrecht-html h5{color:var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-5-font-size);font-weight:var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-5-letter-spacing);line-height:var(--utrecht-heading-5-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-5-text-transform, inherit)}.utrecht-heading-5--distanced,.utrecht-html h5{margin-block-end:var(--utrecht-heading-5-margin-block-end);margin-block-start:var(--utrecht-heading-5-margin-block-start)}.utrecht-heading-6,.utrecht-html h6{color:var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-6-font-size);font-weight:var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-6-letter-spacing);line-height:var(--utrecht-heading-6-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-6-text-transform, inherit)}.utrecht-heading-6--distanced,.utrecht-html h6{margin-block-end:var(--utrecht-heading-6-margin-block-end);margin-block-start:var(--utrecht-heading-6-margin-block-start)}.utrecht-link,.utrecht-html a:link{color:var(--utrecht-link-color, blue);text-decoration:var(--utrecht-link-text-decoration, underline);text-decoration-skip-ink:all;text-decoration-thickness:max(var(--utrecht-link-text-decoration-thickness), 1px);text-underline-offset:var(--utrecht-link-text-underline-offset)}.utrecht-link--icon-left{background-image:var(--utrecht-link-icon-left-background-image, none);background-position:0 0.25em;background-repeat:no-repeat;color:var(--utrecht-link-color, blue);font-weight:var(--utrecht-typography-weight-scale-bold-font-weight);padding-inline-start:var(--utrecht-space-block-md);text-decoration:none}.utrecht-link:visited,.utrecht-link--visited,.utrecht-html a:visited{color:var(--utrecht-link-visited-color, var(--utrecht-link-color))}.utrecht-link:hover,.utrecht-link--hover,.utrecht-html a:hover{color:var(--utrecht-link-hover-color, var(--utrecht-link-color));text-decoration:var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));text-decoration-skip:none;text-decoration-skip-ink:none;text-decoration-thickness:max(var(--utrecht-link-hover-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px)}.utrecht-link:active,.utrecht-link--active,.utrecht-html a:active{color:var(--utrecht-link-active-color, var(--utrecht-link-color))}.utrecht-link--focus,.utrecht-html a:focus,.utrecht-link:focus{color:var(--utrecht-link-focus-color, var(--utrecht-link-color));text-decoration:var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));text-decoration-skip:none;text-decoration-skip-ink:none;text-decoration-thickness:max(var(--utrecht-link-focus-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px)}.utrecht-link--focus-visible,.utrecht-html a:focus,.utrecht-link:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:0;outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-link:focus:not(:focus-visible),.utrecht-html a:focus:not(:focus-visible):link{box-shadow:none;outline-style:none}.utrecht-link--telephone,.utrecht-html a[href^=\"tel:\" i]{white-space:nowrap}.utrecht-html a:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-ordered-list,.utrecht-html ol{font-family:var(--utrecht-document-font-family, inherit);margin-block-end:0;margin-block-start:0;padding-inline-start:var(--utrecht-ordered-list-padding-inline-start, var(--utrecht-unordered-list-padding-inline-start, 2ch))}.utrecht-ordered-list--distanced,.utrecht-html ol{margin-block-end:var(--utrecht-ordered-list-margin-block-end, var(--utrecht-unordered-list-margin-block-end));margin-block-start:var(--utrecht-ordered-list-margin-block-start, var(--utrecht-unordered-list-margin-block-start))}.utrecht-ordered-list--arabic,.utrecht-html ol:lang(ar){list-style:arabic-indic}.utrecht-ordered-list__item,.utrecht-html ol>li{margin-block-end:var(--utrecht-ordered-list-item-margin-block-end, var(--utrecht-unordered-list-item-margin-block-end));margin-block-start:var(--utrecht-ordered-list-item-margin-block-start, var(--utrecht-unordered-list-item-margin-block-start));padding-inline-start:var(--utrecht-ordered-list-item-padding-inline-start, var(--utrecht-unordered-list-item-padding-inline-start, 1ch))}.utrecht-paragraph,.utrecht-html p{color:var(--utrecht-paragraph-color, var(--utrecht-document-color, inherit));font-family:var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));font-size:var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));font-weight:var(--utrecht-paragraph-font-weight, inherit);line-height:var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));margin-block-end:0;margin-block-start:0}.utrecht-paragraph--lead,.utrecht-html p.lead{color:var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));font-size:var(--utrecht-paragraph-lead-font-size, inherit);font-weight:var(--utrecht-paragraph-lead-font-weight, inherit);line-height:var(--utrecht-paragraph-lead-line-height, inherit)}.utrecht-paragraph--distanced,.utrecht-html *~p{margin-block-end:var(--utrecht-paragraph-margin-block-end);margin-block-start:var(--utrecht-paragraph-margin-block-start)}.utrecht-radio-button,.utrecht-html input[type=radio i]{margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0}.utrecht-radio-button--disabled,.utrecht-radio-button--html-input:disabled,.utrecht-html input[type=radio i]:disabled{cursor:var(--utrecht-action-disabled-cursor)}.utrecht-radio-button--focus-visible,.utrecht-radio-button--html-input:focus,.utrecht-html input[type=radio i]:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:0;outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-radio-button--html-input:focus:not(:focus-visible),.utrecht-html input[type=radio i]:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-separator,.utrecht-html hr{border-color:var(--utrecht-separator-color);border-style:solid;border-width:0 0 var(--utrecht-separator-block-size) 0}.utrecht-separator--distanced,.utrecht-html hr{margin-block-end:var(--utrecht-separator-margin-block-end);margin-block-start:var(--utrecht-separator-margin-block-start)}.utrecht-table,.utrecht-html table{border-collapse:collapse;border-color:var(--utrecht-table-border-color, 0);border-style:solid;border-width:var(--utrecht-table-border-width, 0);font-family:var(--utrecht-table-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-table-font-size, inherit);width:100%}.utrecht-table--distanced,.utrecht-html table{margin-block-end:var(--utrecht-table-margin-block-end);margin-block-start:var(--utrecht-table-margin-block-start)}.utrecht-table__caption,.utrecht-html caption{color:var(--utrecht-table-caption-color);font-family:var(--utrecht-table-caption-font-family);font-size:var(--utrecht-table-caption-font-size);font-weight:var(--utrecht-table-caption-font-weight);line-height:var(--utrecht-table-caption-line-height);margin-block-end:var(--utrecht-table-caption-margin-block-end);text-align:var(--utrecht-table-caption-text-align, center)}.utrecht-table__header,.utrecht-html thead{background-color:var(--utrecht-table-header-background-color);color:var(--utrecht-table-header-color);font-weight:var(--utrecht-table-header-font-weight);text-transform:var(--utrecht-table-header-text-transform);vertical-align:bottom}.utrecht-table__cell--last-header-row,.utrecht-html thead tr:last-child th{border-block-end-color:var(--utrecht-table-header-border-block-end-color, transparent);border-block-end-style:solid;border-block-end-width:var(--utrecht-table-header-border-block-end-width, 0)}.utrecht-table__body,.utrecht-html tbody{vertical-align:baseline}.utrecht-table__header-cell,.utrecht-html th{color:var(--utrecht-table-header-cell-color);font-size:var(--utrecht-table-header-cell-font-size);font-weight:var(--utrecht-table-header-cell-font-weight);text-transform:var(--utrecht-table-header-cell-text-transform)}.utrecht-table__cell,.utrecht-html th,.utrecht-html td{border-block-end-color:var(--utrecht-table-row-border-block-end-color, transparent);border-block-end-style:solid;border-block-end-width:var(--utrecht-table-row-border-block-end-width, 0);line-height:var(--utrecht-table-cell-line-height, inherit);padding-block-end:var(--utrecht-table-cell-padding-block-end, 0);padding-block-start:var(--utrecht-table-cell-padding-block-start, 0);padding-inline-end:var(--utrecht-table-cell-padding-inline-end, 0);padding-inline-start:var(--utrecht-table-cell-padding-inline-start, 0);text-align:start}.utrecht-table__cell--first,.utrecht-html td:first-child,.utrecht-html th:first-child{padding-inline-start:var(--utrecht-table-row-padding-inline-start, var(--utrecht-table-cell-padding-inline-start, 0))}.utrecht-table__cell--last,.utrecht-html td:last-child,.utrecht-html th:last-child{padding-inline-end:var(--utrecht-table-row-padding-inline-end, var(--utrecht-table-cell-padding-inline-end, 0))}.utrecht-table__cell--numeric-column,.utrecht-html td.numeric,.utrecht-html thead>tr>th.numeric,.utrecht-html tfoot>tr>th.numeric,.utrecht-html th[scope=column].numeric{text-align:right}.utrecht-table__cell--numeric-data,.utrecht-html td.numeric{font-variant-numeric:lining-nums tabular-nums}.utrecht-table__row--alternate-odd,.utrecht-html table.alternate-row-color>tbody>tr:nth-child(odd)>td,.utrecht-html table.alternate-row-color>tbody>tr:nth-child(odd)>th,.utrecht-html table.alternate-row-color>tr:nth-child(odd)>td,.utrecht-html table.alternate-row-color>tr:nth-child(odd)>th{background-color:var(--utrecht-table-row-alternate-odd-background-color);color:var(--utrecht-table-row-alternate-odd-color)}.utrecht-table__row--alternate-even,.utrecht-html table.alternate-row-color>tbody>tr:nth-child(even)>td,.utrecht-html table.alternate-row-color>tbody>tr:nth-child(even)>th,.utrecht-html table.alternate-row-color>tr:nth-child(even)>td,.utrecht-html table.alternate-row-color>tr:nth-child(even)>th{background-color:var(--utrecht-table-row-alternate-even-background-color);color:var(--utrecht-table-row-alternate-even-color)}.utrecht-textarea,.utrecht-html textarea{background-color:var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color));border-width:var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width));border-bottom-width:var(--utrecht-textarea-border-bottom-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width)));border-color:var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color));border-radius:var(--utrecht-textarea-border-radius, var(--utrecht-form-input-border-radius, 0));border-style:solid;box-sizing:border-box;color:var(--utrecht-textarea-color, var(--utrecht-form-input-color));font-family:var(--utrecht-textarea-font-family, var(--utrecht-form-input-font-family));font-size:var(--utrecht-textarea-font-size, var(--utrecht-form-input-font-size, 1em));max-inline-size:var(--utrecht-textarea-max-inline-size, var(--utrecht-form-input-max-inline-size));min-block-size:var(--utrecht-textarea-min-block-size);padding-block-end:var(--utrecht-textarea-padding-block-end, var(--utrecht-form-input-padding-block-end));padding-block-start:var(--utrecht-textarea-padding-block-start, var(--utrecht-form-input-padding-block-start));padding-inline-end:var(--utrecht-textarea-padding-inline-end, var(--utrecht-form-input-padding-inline-end));padding-inline-start:var(--utrecht-textarea-padding-inline-start, var(--utrecht-form-input-padding-inline-start));resize:vertical;width:100%}.utrecht-textarea--invalid,.utrecht-textarea--html-textarea:invalid,.utrecht-html textarea:invalid,.utrecht-textarea--html-textarea[aria-invalid=true],.utrecht-html textarea[aria-invalid=true]{background-color:var(--utrecht-textarea-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textarea-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));border-width:var(--utrecht-textarea-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width))))}.utrecht-textarea--disabled,.utrecht-textarea--html-textarea:disabled,.utrecht-html textarea:disabled{background-color:var(--utrecht-textarea-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textarea-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textarea-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-textarea--focus,.utrecht-textarea--html-textarea:focus,.utrecht-html textarea:focus{background-color:var(--utrecht-textarea-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textarea-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textarea-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textarea--focus-visible,.utrecht-textarea--html-textarea:focus,.utrecht-html textarea:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:0;outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-textarea--read-only,.utrecht-textarea--html-textarea:read-only,.utrecht-html textarea:read-only{border-color:var(--utrecht-textarea-read-only-border, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textarea-border, var(--utrecht-form-input-border-color))));color:var(--utrecht-textarea-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textarea__placeholder,.utrecht-textarea--html-textarea::placeholder,.utrecht-html textarea::placeholder{color:var(--utrecht-textarea-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));font-style:var(--utrecht-form-input-placeholder-font-style);opacity:100%}.utrecht-textarea--html-textarea:focus:not(:focus-visible),.utrecht-html textarea:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-textbox,.utrecht-html input:not([type]),.utrecht-html input[type=date i],.utrecht-html input[type=datetime-local i],.utrecht-html input[type=email i],.utrecht-html input[type=month i],.utrecht-html input[type=number i],.utrecht-html input[type=password i],.utrecht-html input[type=search i],.utrecht-html input[type=tel i],.utrecht-html input[type=text i],.utrecht-html input[type=time i],.utrecht-html input[type=url i],.utrecht-html input[type=week i]{background-color:var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));border-width:var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));border-bottom-width:var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));border-color:var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));border-radius:var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));border-style:solid;box-sizing:border-box;color:var(--utrecht-textbox-color, var(--utrecht-form-input-color));font-family:var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));font-size:var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));max-inline-size:var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));padding-block-end:var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));padding-block-start:var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));padding-inline-end:var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));padding-inline-start:var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));width:100%}.utrecht-textbox--invalid,.utrecht-textbox--html-input:invalid,.utrecht-html input:invalid:not([type]),.utrecht-html input[type=date i]:invalid,.utrecht-html input[type=datetime-local i]:invalid,.utrecht-html input[type=email i]:invalid,.utrecht-html input[type=month i]:invalid,.utrecht-html input[type=number i]:invalid,.utrecht-html input[type=password i]:invalid,.utrecht-html input[type=search i]:invalid,.utrecht-html input[type=tel i]:invalid,.utrecht-html input[type=text i]:invalid,.utrecht-html input[type=time i]:invalid,.utrecht-html input[type=url i]:invalid,.utrecht-html input[type=week i]:invalid,.utrecht-textbox--html-input[aria-invalid=true],.utrecht-html input[aria-invalid=true]:not([type]),.utrecht-html input[aria-invalid=true][type=date i],.utrecht-html input[aria-invalid=true][type=datetime-local i],.utrecht-html input[aria-invalid=true][type=email i],.utrecht-html input[aria-invalid=true][type=month i],.utrecht-html input[aria-invalid=true][type=number i],.utrecht-html input[aria-invalid=true][type=password i],.utrecht-html input[aria-invalid=true][type=search i],.utrecht-html input[aria-invalid=true][type=tel i],.utrecht-html input[aria-invalid=true][type=text i],.utrecht-html input[aria-invalid=true][type=time i],.utrecht-html input[aria-invalid=true][type=url i],.utrecht-html input[aria-invalid=true][type=week i]{background-color:var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));border-width:var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width))))}.utrecht-textbox--disabled,.utrecht-textbox--html-input:disabled,.utrecht-html input:disabled:not([type]),.utrecht-html input[type=date i]:disabled,.utrecht-html input[type=datetime-local i]:disabled,.utrecht-html input[type=email i]:disabled,.utrecht-html input[type=month i]:disabled,.utrecht-html input[type=number i]:disabled,.utrecht-html input[type=password i]:disabled,.utrecht-html input[type=search i]:disabled,.utrecht-html input[type=tel i]:disabled,.utrecht-html input[type=text i]:disabled,.utrecht-html input[type=time i]:disabled,.utrecht-html input[type=url i]:disabled,.utrecht-html input[type=week i]:disabled{background-color:var(--utrecht-textbox-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-textbox--focus,.utrecht-textbox--html-input:focus,.utrecht-html input:focus:not([type]),.utrecht-html input[type=date i]:focus,.utrecht-html input[type=datetime-local i]:focus,.utrecht-html input[type=email i]:focus,.utrecht-html input[type=month i]:focus,.utrecht-html input[type=number i]:focus,.utrecht-html input[type=password i]:focus,.utrecht-html input[type=search i]:focus,.utrecht-html input[type=tel i]:focus,.utrecht-html input[type=text i]:focus,.utrecht-html input[type=time i]:focus,.utrecht-html input[type=url i]:focus,.utrecht-html input[type=week i]:focus{background-color:var(--utrecht-textbox-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textbox--focus-visible,.utrecht-textbox--html-input:focus,.utrecht-html input:focus:not([type]),.utrecht-html input[type=date i]:focus,.utrecht-html input[type=datetime-local i]:focus,.utrecht-html input[type=email i]:focus,.utrecht-html input[type=month i]:focus,.utrecht-html input[type=number i]:focus,.utrecht-html input[type=password i]:focus,.utrecht-html input[type=search i]:focus,.utrecht-html input[type=tel i]:focus,.utrecht-html input[type=text i]:focus,.utrecht-html input[type=time i]:focus,.utrecht-html input[type=url i]:focus,.utrecht-html input[type=week i]:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:0;outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-textbox--read-only,.utrecht-textbox--html-input:read-only,.utrecht-html input:read-only:not([type]),.utrecht-html input[type=date i]:read-only,.utrecht-html input[type=datetime-local i]:read-only,.utrecht-html input[type=email i]:read-only,.utrecht-html input[type=month i]:read-only,.utrecht-html input[type=number i]:read-only,.utrecht-html input[type=password i]:read-only,.utrecht-html input[type=search i]:read-only,.utrecht-html input[type=tel i]:read-only,.utrecht-html input[type=text i]:read-only,.utrecht-html input[type=time i]:read-only,.utrecht-html input[type=url i]:read-only,.utrecht-html input[type=week i]:read-only{border-color:var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))))}.utrecht-textbox__placeholder,.utrecht-textbox--html-input::placeholder,.utrecht-html input:not([type])::placeholder,.utrecht-html input[type=date i]::placeholder,.utrecht-html input[type=datetime-local i]::placeholder,.utrecht-html input[type=email i]::placeholder,.utrecht-html input[type=month i]::placeholder,.utrecht-html input[type=number i]::placeholder,.utrecht-html input[type=password i]::placeholder,.utrecht-html input[type=search i]::placeholder,.utrecht-html input[type=tel i]::placeholder,.utrecht-html input[type=text i]::placeholder,.utrecht-html input[type=time i]::placeholder,.utrecht-html input[type=url i]::placeholder,.utrecht-html input[type=week i]::placeholder{color:var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));font-style:var(--utrecht-form-input-placeholder-font-style);opacity:100%}.utrecht-textbox--numeric,.utrecht-html input[autocomplete~=bday i],.utrecht-html input[autocomplete~=bday-day i],.utrecht-html input[autocomplete~=bday-month i],.utrecht-html input[autocomplete~=bday-year i],.utrecht-html input[autocomplete~=cc-csc i],.utrecht-html input[autocomplete~=cc-exp i],.utrecht-html input[autocomplete~=cc-exp-month i],.utrecht-html input[autocomplete~=cc-exp-year i],.utrecht-html input[autocomplete~=cc-number i],.utrecht-html input[autocomplete~=one-time-code i],.utrecht-html input[autocomplete~=postal-code i],.utrecht-html input[autocomplete~=tel i],.utrecht-html input[autocomplete~=tel-area-code i],.utrecht-html input[autocomplete~=tel-country-code i],.utrecht-html input[autocomplete~=tel-extension i],.utrecht-html input[autocomplete~=tel-local i],.utrecht-html input[autocomplete~=tel-national i],.utrecht-html input[autocomplete~=transaction-amount i],.utrecht-html input[inputmode=decimal i],.utrecht-html input[inputmode=numeric i],.utrecht-html input[type=number i]{font-variant-numeric:lining-nums tabular-nums}.utrecht-textbox--password,.utrecht-html input[autocomplete~=current-password i],.utrecht-html input[autocomplete~=new-password i]{font-variant-ligatures:none;font-variant-numeric:slashed-zero}.utrecht-textbox--url,.utrecht-html input[type=url i]{font-variant-ligatures:none}.utrecht-textbox--html-input:focus:not(:focus-visible),.utrecht-html input:focus:not(:focus-visible):not([type]),.utrecht-html input[type=date i]:focus:not(:focus-visible),.utrecht-html input[type=datetime-local i]:focus:not(:focus-visible),.utrecht-html input[type=email i]:focus:not(:focus-visible),.utrecht-html input[type=month i]:focus:not(:focus-visible),.utrecht-html input[type=number i]:focus:not(:focus-visible),.utrecht-html input[type=password i]:focus:not(:focus-visible),.utrecht-html input[type=search i]:focus:not(:focus-visible),.utrecht-html input[type=tel i]:focus:not(:focus-visible),.utrecht-html input[type=text i]:focus:not(:focus-visible),.utrecht-html input[type=time i]:focus:not(:focus-visible),.utrecht-html input[type=url i]:focus:not(:focus-visible),.utrecht-html input[type=week i]:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-unordered-list,.utrecht-html ul{font-family:var(--utrecht-document-font-family, inherit);font-size:var(--utrecht-document-font-size, inherit);line-height:var(--utrecht-document-line-height, inherit);margin-block-end:0;margin-block-start:0;padding-inline-start:var(--utrecht-unordered-list-padding-inline-start, 2ch)}.utrecht-unordered-list--distanced,.utrecht-html ul{margin-block-end:var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end));margin-block-start:var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start))}.utrecht-unordered-list--nested{margin-block-end:0;margin-inline-start:2ch}.utrecht-unordered-list__item,.utrecht-html ul>li{margin-block-end:var(--utrecht-unordered-list-item-margin-block-end);margin-block-start:var(--utrecht-unordered-list-item-margin-block-start);padding-inline-start:var(--utrecht-unordered-list-item-padding-inline-start, 1ch)}.utrecht-unordered-list__item::marker,.utrecht-html ul>li::marker,.utrecht-unordered-list__marker{color:var(--utrecht-unordered-list-marker-color);content:\"●\"}:host{display:block}:host([hidden]){display:none !important}";
|
|
597
|
+
const stencilCss$w = "@charset \"UTF-8\";.utrecht-article,.utrecht-html article{max-inline-size:var(--utrecht-article-max-inline-size)}.utrecht-blockquote,.utrecht-html blockquote{font-family:var(--utrecht-document-font-family);font-size:var(--utrecht-blockquote-font-size);margin-inline-end:var(--utrecht-blockquote-margin-inline-end);margin-inline-start:var(--utrecht-blockquote-margin-inline-start)}.utrecht-blockquote__attribution{color:var(--utrecht-blockquote-attribution-color, inherit);font-size:var(--utrecht-blockquote-attribution-font-size, inherit)}.utrecht-blockquote__content,.utrecht-html blockquote{--utrecht-document-color:var(--utrecht-blockquote-content-color, inherit);--utrecht-paragraph-font-size:var(--utrecht-blockquote-content-font-size, inherit);color:var(--utrecht-blockquote-content-color, inherit);font-size:var(--utrecht-blockquote-content-font-size, inherit)}.utrecht-blockquote--distanced,.utrecht-html blockquote{margin-block-end:var(--utrecht-blockquote-margin-block-end);margin-block-start:var(--utrecht-blockquote-margin-block-start)}.utrecht-button,.utrecht-html input[type=button i],.utrecht-html input[type=reset i],.utrecht-html input[type=submit i],.utrecht-html button{background-color:var(--utrecht-button-primary-action-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-border-color, transparent);border-radius:var(--utrecht-button-border-radius);border-style:solid;border-width:var(--utrecht-button-border-width, 0);color:var(--utrecht-button-primary-action-color, var(--utrecht-button-color));font-family:var(--utrecht-button-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-button-font-size, var(--utrecht-document-font-family));font-weight:var(--utrecht-button-font-weight);inline-size:var(--utrecht-button-inline-size, auto);letter-spacing:var(--utrecht-button-letter-spacing);min-block-size:var(--utrecht-button-min-block-size, auto);min-inline-size:var(--utrecht-button-min-inline-size, 0);padding-block-end:var(--utrecht-button-padding-block-end);padding-block-start:var(--utrecht-button-padding-block-start);padding-inline-end:var(--utrecht-button-padding-inline-end);padding-inline-start:var(--utrecht-button-padding-inline-start);text-transform:var(--utrecht-button-text-transform);user-select:none}.utrecht-button--distanced,.utrecht-html input[type=button i],.utrecht-html input[type=reset i],.utrecht-html input[type=submit i],.utrecht-html button{margin-block-end:var(--utrecht-button-margin-block-end);margin-block-start:var(--utrecht-button-margin-block-start);margin-inline-end:var(--utrecht-button-margin-inline-end);margin-inline-start:var(--utrecht-button-margin-inline-start)}.utrecht-button--submit,.utrecht-html button[type=submit i],.utrecht-html input[type=submit i]{cursor:var(--utrecht-action-submit-cursor)}.utrecht-button--busy,.utrecht-html button[aria-busy=true],.utrecht-html button[aria-disabled=true][aria-busy=true],.utrecht-html button:disabled[aria-busy=true]{cursor:var(--utrecht-action-busy-cursor)}.utrecht-button:disabled,.utrecht-html input[type=button i]:disabled,.utrecht-html input[type=reset i]:disabled,.utrecht-html input[type=submit i]:disabled,.utrecht-html button:disabled,.utrecht-button--disabled,.utrecht-html button[aria-disabled=true]{background-color:var(--utrecht-button-disabled-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-disabled-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-disabled-color, var(--utrecht-button-color));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-button:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=button i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=reset i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=submit i]:active:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-button--active,.utrecht-html button:active:not([aria-disabled=true]):not(:disabled){background-color:var(--utrecht-button-active-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-active-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-active-color, var(--utrecht-button-color))}.utrecht-button--focus-visible,.utrecht-html button:focus-visible,.utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=button i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=reset i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-button--focus,.utrecht-html button:focus:not([aria-disabled=true]):not(:disabled),.utrecht-button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=button i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=reset i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=submit i]:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html button:focus:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-focus-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-focus-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-focus-color, var(--utrecht-button-color))}.utrecht-button:focus:not(:focus-visible),.utrecht-html input[type=button i]:focus:not(:focus-visible),.utrecht-html input[type=reset i]:focus:not(:focus-visible),.utrecht-html input[type=submit i]:focus:not(:focus-visible),.utrecht-html button:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-button--hover:not(:disabled),.utrecht-html button:not(:disabled):hover:not([aria-disabled=true]),.utrecht-button:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=button i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=reset i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled),.utrecht-html input[type=submit i]:hover:not(:disabled):not([aria-disabled=true]):not(.utrecht-button--disabled){background-color:var(--utrecht-button-hover-background-color, var(--utrecht-button-background-color));border-color:var(--utrecht-button-hover-border-color, var(--utrecht-button-border-color));color:var(--utrecht-button-hover-color, var(--utrecht-button-color));transform:scale(var(--utrecht-button-focus-transform-scale, 1))}.utrecht-checkbox,.utrecht-html input[type=checkbox i]{margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0}.utrecht-checkbox--disabled,.utrecht-checkbox--html-input:disabled,.utrecht-html input[type=checkbox i]:disabled{cursor:var(--utrecht-action-disabled-cursor)}.utrecht-checkbox--focus-visible{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus,.utrecht-html input[type=checkbox i]:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-checkbox--html-input:focus:not(:focus-visible),.utrecht-html input[type=checkbox i]:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-emphasis--stressed,.utrecht-html em{font-style:var(--utrecht-emphasis-stressed-font-style, italic)}.utrecht-emphasis--strong,.utrecht-html strong{font-weight:var(--utrecht-emphasis-strong-font-weight, bold)}.utrecht-form-fieldset--reset-fieldset,.utrecht-html fieldset{border:0;margin-inline-end:0;margin-inline-start:0;min-width:0;padding-block-end:0;padding-block-start:0.01em;padding-inline-end:0;padding-inline-start:0}.utrecht-form-fieldset__legend--reset-legend,.utrecht-html legend{padding-inline-end:0;padding-inline-start:0}.utrecht-form-fieldset--distanced,.utrecht-html fieldset{margin-block-end:var(--utrecht-form-fieldset-margin-block-end, 0);margin-block-start:var(--utrecht-form-fieldset-margin-block-start, 0)}.utrecht-form-fieldset__legend,.utrecht-html legend{color:var(--utrecht-form-fieldset-legend-color, var(--utrecht-document-color, inherit));font-family:var(--utrecht-form-fieldset-legend-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-form-fieldset-legend-font-size);font-weight:var(--utrecht-form-fieldset-legend-font-weight);line-height:var(--utrecht-form-fieldset-legend-line-height);text-transform:var(--utrecht-form-fieldset-legend-text-transform)}.utrecht-form-fieldset__legend--distanced,.utrecht-html legend{margin-block-end:var(--utrecht-form-fieldset-legend-margin-block-end);margin-block-start:var(--utrecht-form-fieldset-legend-margin-block-start)}.utrecht-form-label,.utrecht-html label{color:var(--utrecht-form-label-color);font-size:var(--utrecht-form-label-font-size);font-weight:var(--utrecht-form-label-font-weight)}.utrecht-form-label--checkbox,.utrecht-html input[type=checkbox i]~label{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-checkbox-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--checked{font-weight:var(--utrecht-form-label-checked-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-form-label--disabled{cursor:var(--utrecht-action-disabled-cursor);font-weight:var(--utrecht-form-label-disabled-color, var(--utrecht-form-label-color))}.utrecht-form-label--radio,.utrecht-html input[type=radio i]~label{color:var(--utrecht-form-label-checkbox-color, var(--utrecht-form-label-color));font-weight:var(--utrecht-form-label-radio-font-weight, var(--utrecht-form-label-font-weight))}.utrecht-heading-1,.utrecht-html h1{color:var(--utrecht-heading-1-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-1-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-1-font-size);font-weight:var(--utrecht-heading-1-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-1-letter-spacing);line-height:var(--utrecht-heading-1-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-1-text-transform, inherit)}.utrecht-heading-1--distanced,.utrecht-html h1{margin-block-end:var(--utrecht-heading-1-margin-block-end);margin-block-start:var(--utrecht-heading-1-margin-block-start)}.utrecht-heading-2,.utrecht-html h2{color:var(--utrecht-heading-2-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-2-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-2-font-size);font-weight:var(--utrecht-heading-2-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-2-letter-spacing);line-height:var(--utrecht-heading-2-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-2-text-transform, inherit)}.utrecht-heading-2--distanced,.utrecht-html h2{margin-block-end:var(--utrecht-heading-2-margin-block-end);margin-block-start:var(--utrecht-heading-2-margin-block-start)}.utrecht-heading-3,.utrecht-html h3{color:var(--utrecht-heading-3-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-3-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-3-font-size);font-weight:var(--utrecht-heading-3-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-3-letter-spacing);line-height:var(--utrecht-heading-3-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-3-text-transform, inherit)}.utrecht-heading-3--distanced,.utrecht-html h3{margin-block-end:var(--utrecht-heading-3-margin-block-end);margin-block-start:var(--utrecht-heading-3-margin-block-start)}.utrecht-heading-4,.utrecht-html h4{color:var(--utrecht-heading-4-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-4-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-4-font-size);font-weight:var(--utrecht-heading-4-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-4-letter-spacing);line-height:var(--utrecht-heading-4-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-4-text-transform, inherit)}.utrecht-heading-4--distanced,.utrecht-html h4{margin-block-end:var(--utrecht-heading-4-margin-block-end);margin-block-start:var(--utrecht-heading-4-margin-block-start)}.utrecht-heading-5,.utrecht-html h5{color:var(--utrecht-heading-5-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-5-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-5-font-size);font-weight:var(--utrecht-heading-5-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-5-letter-spacing);line-height:var(--utrecht-heading-5-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-5-text-transform, inherit)}.utrecht-heading-5--distanced,.utrecht-html h5{margin-block-end:var(--utrecht-heading-5-margin-block-end);margin-block-start:var(--utrecht-heading-5-margin-block-start)}.utrecht-heading-6,.utrecht-html h6{color:var(--utrecht-heading-6-color, var(--utrecht-heading-color, var(--utrecht-document-color, inherit)));font-family:var(--utrecht-heading-6-font-family, var(--utrecht-heading-font-family, var(--utrecht-document-font-family)));font-size:var(--utrecht-heading-6-font-size);font-weight:var(--utrecht-heading-6-font-weight, var(--utrecht-heading-font-weight, bold));letter-spacing:var(--utrecht-heading-6-letter-spacing);line-height:var(--utrecht-heading-6-line-height);margin-block-end:0;margin-block-start:0;text-transform:var(--utrecht-heading-6-text-transform, inherit)}.utrecht-heading-6--distanced,.utrecht-html h6{margin-block-end:var(--utrecht-heading-6-margin-block-end);margin-block-start:var(--utrecht-heading-6-margin-block-start)}.utrecht-link,.utrecht-html a:link{color:var(--utrecht-link-color, blue);text-decoration:var(--utrecht-link-text-decoration, underline);text-decoration-skip-ink:all;text-decoration-thickness:max(var(--utrecht-link-text-decoration-thickness), 1px);text-underline-offset:var(--utrecht-link-text-underline-offset)}.utrecht-link--icon-left{background-image:var(--utrecht-link-icon-left-background-image, none);background-position:0 0.25em;background-repeat:no-repeat;color:var(--utrecht-link-color, blue);font-weight:var(--utrecht-typography-weight-scale-bold-font-weight);padding-inline-start:var(--utrecht-space-block-md);text-decoration:none}.utrecht-link:visited,.utrecht-link--visited,.utrecht-html a:visited{color:var(--utrecht-link-visited-color, var(--utrecht-link-color))}.utrecht-link:hover,.utrecht-link--hover,.utrecht-html a:hover{color:var(--utrecht-link-hover-color, var(--utrecht-link-color));text-decoration:var(--utrecht-link-hover-text-decoration, var(--utrecht-link-text-decoration, underline));text-decoration-skip:none;text-decoration-skip-ink:none;text-decoration-thickness:max(var(--utrecht-link-hover-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px)}.utrecht-link:active,.utrecht-link--active,.utrecht-html a:active{color:var(--utrecht-link-active-color, var(--utrecht-link-color))}.utrecht-link--focus,.utrecht-html a:focus,.utrecht-link:focus{color:var(--utrecht-link-focus-color, var(--utrecht-link-color));text-decoration:var(--utrecht-link-focus-text-decoration, var(--utrecht-link-text-decoration, underline));text-decoration-skip:none;text-decoration-skip-ink:none;text-decoration-thickness:max(var(--utrecht-link-focus-text-decoration-thickness, var(--utrecht-link-text-decoration-thickness)), 1px)}.utrecht-link--focus-visible,.utrecht-html a:focus,.utrecht-link:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-link:focus:not(:focus-visible),.utrecht-html a:focus:not(:focus-visible):link{box-shadow:none;outline-style:none}.utrecht-link--telephone,.utrecht-html a[href^=\"tel:\" i]{white-space:nowrap}.utrecht-html a:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-ordered-list,.utrecht-html ol{font-family:var(--utrecht-document-font-family, inherit);margin-block-end:0;margin-block-start:0;padding-inline-start:var(--utrecht-ordered-list-padding-inline-start, var(--utrecht-unordered-list-padding-inline-start, 2ch))}.utrecht-ordered-list--distanced,.utrecht-html ol{margin-block-end:var(--utrecht-ordered-list-margin-block-end, var(--utrecht-unordered-list-margin-block-end));margin-block-start:var(--utrecht-ordered-list-margin-block-start, var(--utrecht-unordered-list-margin-block-start))}.utrecht-ordered-list--arabic,.utrecht-html ol:lang(ar){list-style:arabic-indic}.utrecht-ordered-list__item,.utrecht-html ol>li{margin-block-end:var(--utrecht-ordered-list-item-margin-block-end, var(--utrecht-unordered-list-item-margin-block-end));margin-block-start:var(--utrecht-ordered-list-item-margin-block-start, var(--utrecht-unordered-list-item-margin-block-start));padding-inline-start:var(--utrecht-ordered-list-item-padding-inline-start, var(--utrecht-unordered-list-item-padding-inline-start, 1ch))}.utrecht-paragraph,.utrecht-html p{color:var(--utrecht-paragraph-color, var(--utrecht-document-color, inherit));font-family:var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));font-size:var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));font-weight:var(--utrecht-paragraph-font-weight, inherit);line-height:var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));margin-block-end:0;margin-block-start:0}.utrecht-paragraph--lead,.utrecht-html p.lead{color:var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));font-size:var(--utrecht-paragraph-lead-font-size, inherit);font-weight:var(--utrecht-paragraph-lead-font-weight, inherit);line-height:var(--utrecht-paragraph-lead-line-height, inherit)}.utrecht-paragraph--distanced,.utrecht-html *~p{margin-block-end:var(--utrecht-paragraph-margin-block-end);margin-block-start:var(--utrecht-paragraph-margin-block-start)}.utrecht-radio-button,.utrecht-html input[type=radio i]{margin-block-end:0;margin-block-start:0;margin-inline-end:0;margin-inline-start:0}.utrecht-radio-button--disabled,.utrecht-radio-button--html-input:disabled,.utrecht-html input[type=radio i]:disabled{cursor:var(--utrecht-action-disabled-cursor)}.utrecht-radio-button--focus-visible,.utrecht-radio-button--html-input:focus,.utrecht-html input[type=radio i]:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-radio-button--html-input:focus:not(:focus-visible),.utrecht-html input[type=radio i]:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-separator,.utrecht-html hr{border-color:var(--utrecht-separator-color);border-style:solid;border-width:0 0 var(--utrecht-separator-block-size) 0}.utrecht-separator--distanced,.utrecht-html hr{margin-block-end:var(--utrecht-separator-margin-block-end);margin-block-start:var(--utrecht-separator-margin-block-start)}.utrecht-table,.utrecht-html table{border-collapse:collapse;border-color:var(--utrecht-table-border-color, 0);border-style:solid;border-width:var(--utrecht-table-border-width, 0);font-family:var(--utrecht-table-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-table-font-size, inherit);width:100%}.utrecht-table--distanced,.utrecht-html table{margin-block-end:var(--utrecht-table-margin-block-end);margin-block-start:var(--utrecht-table-margin-block-start)}.utrecht-table__caption,.utrecht-html caption{color:var(--utrecht-table-caption-color);font-family:var(--utrecht-table-caption-font-family);font-size:var(--utrecht-table-caption-font-size);font-weight:var(--utrecht-table-caption-font-weight);line-height:var(--utrecht-table-caption-line-height);margin-block-end:var(--utrecht-table-caption-margin-block-end);text-align:var(--utrecht-table-caption-text-align, center)}.utrecht-table__header,.utrecht-html thead{background-color:var(--utrecht-table-header-background-color);color:var(--utrecht-table-header-color);font-weight:var(--utrecht-table-header-font-weight);text-transform:var(--utrecht-table-header-text-transform);vertical-align:bottom}.utrecht-table__cell--last-header-row,.utrecht-html thead tr:last-child th{border-block-end-color:var(--utrecht-table-header-border-block-end-color, transparent);border-block-end-style:solid;border-block-end-width:var(--utrecht-table-header-border-block-end-width, 0)}.utrecht-table__body,.utrecht-html tbody{vertical-align:baseline}.utrecht-table__header-cell,.utrecht-html th{color:var(--utrecht-table-header-cell-color);font-size:var(--utrecht-table-header-cell-font-size);font-weight:var(--utrecht-table-header-cell-font-weight);text-transform:var(--utrecht-table-header-cell-text-transform)}.utrecht-table__cell,.utrecht-html th,.utrecht-html td{border-block-end-color:var(--utrecht-table-row-border-block-end-color, transparent);border-block-end-style:solid;border-block-end-width:var(--utrecht-table-row-border-block-end-width, 0);line-height:var(--utrecht-table-cell-line-height, inherit);padding-block-end:var(--utrecht-table-cell-padding-block-end, 0);padding-block-start:var(--utrecht-table-cell-padding-block-start, 0);padding-inline-end:var(--utrecht-table-cell-padding-inline-end, 0);padding-inline-start:var(--utrecht-table-cell-padding-inline-start, 0);text-align:start}.utrecht-table__cell--first,.utrecht-html td:first-child,.utrecht-html th:first-child{padding-inline-start:var(--utrecht-table-row-padding-inline-start, var(--utrecht-table-cell-padding-inline-start, 0))}.utrecht-table__cell--last,.utrecht-html td:last-child,.utrecht-html th:last-child{padding-inline-end:var(--utrecht-table-row-padding-inline-end, var(--utrecht-table-cell-padding-inline-end, 0))}.utrecht-table__cell--numeric-column,.utrecht-html td.numeric,.utrecht-html thead>tr>th.numeric,.utrecht-html tfoot>tr>th.numeric,.utrecht-html th[scope=column].numeric{text-align:right}.utrecht-table__cell--numeric-data,.utrecht-html td.numeric{font-variant-numeric:lining-nums tabular-nums}.utrecht-table__row--alternate-odd,.utrecht-html table.alternate-row-color>tbody>tr:nth-child(odd)>td,.utrecht-html table.alternate-row-color>tbody>tr:nth-child(odd)>th,.utrecht-html table.alternate-row-color>tr:nth-child(odd)>td,.utrecht-html table.alternate-row-color>tr:nth-child(odd)>th{background-color:var(--utrecht-table-row-alternate-odd-background-color);color:var(--utrecht-table-row-alternate-odd-color)}.utrecht-table__row--alternate-even,.utrecht-html table.alternate-row-color>tbody>tr:nth-child(even)>td,.utrecht-html table.alternate-row-color>tbody>tr:nth-child(even)>th,.utrecht-html table.alternate-row-color>tr:nth-child(even)>td,.utrecht-html table.alternate-row-color>tr:nth-child(even)>th{background-color:var(--utrecht-table-row-alternate-even-background-color);color:var(--utrecht-table-row-alternate-even-color)}.utrecht-textarea,.utrecht-html textarea{background-color:var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color));border-width:var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width));border-bottom-width:var(--utrecht-textarea-border-bottom-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width)));border-color:var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color));border-radius:var(--utrecht-textarea-border-radius, var(--utrecht-form-input-border-radius, 0));border-style:solid;box-sizing:border-box;color:var(--utrecht-textarea-color, var(--utrecht-form-input-color));font-family:var(--utrecht-textarea-font-family, var(--utrecht-form-input-font-family));font-size:var(--utrecht-textarea-font-size, var(--utrecht-form-input-font-size, 1em));max-inline-size:var(--utrecht-textarea-max-inline-size, var(--utrecht-form-input-max-inline-size));min-block-size:var(--utrecht-textarea-min-block-size);padding-block-end:var(--utrecht-textarea-padding-block-end, var(--utrecht-form-input-padding-block-end));padding-block-start:var(--utrecht-textarea-padding-block-start, var(--utrecht-form-input-padding-block-start));padding-inline-end:var(--utrecht-textarea-padding-inline-end, var(--utrecht-form-input-padding-inline-end));padding-inline-start:var(--utrecht-textarea-padding-inline-start, var(--utrecht-form-input-padding-inline-start));resize:vertical;width:100%}.utrecht-textarea--invalid,.utrecht-textarea--html-textarea:invalid,.utrecht-html textarea:invalid,.utrecht-textarea--html-textarea[aria-invalid=true],.utrecht-html textarea[aria-invalid=true]{background-color:var(--utrecht-textarea-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textarea-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));border-width:var(--utrecht-textarea-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textarea-border-width, var(--utrecht-form-input-border-width))))}.utrecht-textarea--disabled,.utrecht-textarea--html-textarea:disabled,.utrecht-html textarea:disabled{background-color:var(--utrecht-textarea-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textarea-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textarea-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-textarea--focus,.utrecht-textarea--html-textarea:focus,.utrecht-html textarea:focus{background-color:var(--utrecht-textarea-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textarea-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textarea-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textarea--focus-visible,.utrecht-textarea--html-textarea:focus,.utrecht-html textarea:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-textarea--read-only,.utrecht-textarea--html-textarea:read-only,.utrecht-html textarea:read-only{border-color:var(--utrecht-textarea-read-only-border, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textarea-border, var(--utrecht-form-input-border-color))));color:var(--utrecht-textarea-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textarea__placeholder,.utrecht-textarea--html-textarea::placeholder,.utrecht-html textarea::placeholder{color:var(--utrecht-textarea-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));font-style:var(--utrecht-form-input-placeholder-font-style);opacity:100%}.utrecht-textarea--html-textarea:focus:not(:focus-visible),.utrecht-html textarea:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-textbox,.utrecht-html input:not([type]),.utrecht-html input[type=date i],.utrecht-html input[type=datetime-local i],.utrecht-html input[type=email i],.utrecht-html input[type=month i],.utrecht-html input[type=number i],.utrecht-html input[type=password i],.utrecht-html input[type=search i],.utrecht-html input[type=tel i],.utrecht-html input[type=text i],.utrecht-html input[type=time i],.utrecht-html input[type=url i],.utrecht-html input[type=week i]{background-color:var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));border-width:var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));border-bottom-width:var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));border-color:var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));border-radius:var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));border-style:solid;box-sizing:border-box;color:var(--utrecht-textbox-color, var(--utrecht-form-input-color));font-family:var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));font-size:var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));max-inline-size:var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));padding-block-end:var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));padding-block-start:var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));padding-inline-end:var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));padding-inline-start:var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));width:100%}.utrecht-textbox--invalid,.utrecht-textbox--html-input:invalid,.utrecht-html input:invalid:not([type]),.utrecht-html input[type=date i]:invalid,.utrecht-html input[type=datetime-local i]:invalid,.utrecht-html input[type=email i]:invalid,.utrecht-html input[type=month i]:invalid,.utrecht-html input[type=number i]:invalid,.utrecht-html input[type=password i]:invalid,.utrecht-html input[type=search i]:invalid,.utrecht-html input[type=tel i]:invalid,.utrecht-html input[type=text i]:invalid,.utrecht-html input[type=time i]:invalid,.utrecht-html input[type=url i]:invalid,.utrecht-html input[type=week i]:invalid,.utrecht-textbox--html-input[aria-invalid=true],.utrecht-html input[aria-invalid=true]:not([type]),.utrecht-html input[aria-invalid=true][type=date i],.utrecht-html input[aria-invalid=true][type=datetime-local i],.utrecht-html input[aria-invalid=true][type=email i],.utrecht-html input[aria-invalid=true][type=month i],.utrecht-html input[aria-invalid=true][type=number i],.utrecht-html input[aria-invalid=true][type=password i],.utrecht-html input[aria-invalid=true][type=search i],.utrecht-html input[aria-invalid=true][type=tel i],.utrecht-html input[aria-invalid=true][type=text i],.utrecht-html input[aria-invalid=true][type=time i],.utrecht-html input[aria-invalid=true][type=url i],.utrecht-html input[aria-invalid=true][type=week i]{background-color:var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));border-width:var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width))))}.utrecht-textbox--disabled,.utrecht-textbox--html-input:disabled,.utrecht-html input:disabled:not([type]),.utrecht-html input[type=date i]:disabled,.utrecht-html input[type=datetime-local i]:disabled,.utrecht-html input[type=email i]:disabled,.utrecht-html input[type=month i]:disabled,.utrecht-html input[type=number i]:disabled,.utrecht-html input[type=password i]:disabled,.utrecht-html input[type=search i]:disabled,.utrecht-html input[type=tel i]:disabled,.utrecht-html input[type=text i]:disabled,.utrecht-html input[type=time i]:disabled,.utrecht-html input[type=url i]:disabled,.utrecht-html input[type=week i]:disabled{background-color:var(--utrecht-textbox-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-textbox--focus,.utrecht-textbox--html-input:focus,.utrecht-html input:focus:not([type]),.utrecht-html input[type=date i]:focus,.utrecht-html input[type=datetime-local i]:focus,.utrecht-html input[type=email i]:focus,.utrecht-html input[type=month i]:focus,.utrecht-html input[type=number i]:focus,.utrecht-html input[type=password i]:focus,.utrecht-html input[type=search i]:focus,.utrecht-html input[type=tel i]:focus,.utrecht-html input[type=text i]:focus,.utrecht-html input[type=time i]:focus,.utrecht-html input[type=url i]:focus,.utrecht-html input[type=week i]:focus{background-color:var(--utrecht-textbox-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textbox--focus-visible,.utrecht-textbox--html-input:focus,.utrecht-html input:focus:not([type]),.utrecht-html input[type=date i]:focus,.utrecht-html input[type=datetime-local i]:focus,.utrecht-html input[type=email i]:focus,.utrecht-html input[type=month i]:focus,.utrecht-html input[type=number i]:focus,.utrecht-html input[type=password i]:focus,.utrecht-html input[type=search i]:focus,.utrecht-html input[type=tel i]:focus,.utrecht-html input[type=text i]:focus,.utrecht-html input[type=time i]:focus,.utrecht-html input[type=url i]:focus,.utrecht-html input[type=week i]:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-textbox--read-only,.utrecht-textbox--html-input:read-only,.utrecht-html input:read-only:not([type]),.utrecht-html input[type=date i]:read-only,.utrecht-html input[type=datetime-local i]:read-only,.utrecht-html input[type=email i]:read-only,.utrecht-html input[type=month i]:read-only,.utrecht-html input[type=number i]:read-only,.utrecht-html input[type=password i]:read-only,.utrecht-html input[type=search i]:read-only,.utrecht-html input[type=tel i]:read-only,.utrecht-html input[type=text i]:read-only,.utrecht-html input[type=time i]:read-only,.utrecht-html input[type=url i]:read-only,.utrecht-html input[type=week i]:read-only{border-color:var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))))}.utrecht-textbox__placeholder,.utrecht-textbox--html-input::placeholder,.utrecht-html input:not([type])::placeholder,.utrecht-html input[type=date i]::placeholder,.utrecht-html input[type=datetime-local i]::placeholder,.utrecht-html input[type=email i]::placeholder,.utrecht-html input[type=month i]::placeholder,.utrecht-html input[type=number i]::placeholder,.utrecht-html input[type=password i]::placeholder,.utrecht-html input[type=search i]::placeholder,.utrecht-html input[type=tel i]::placeholder,.utrecht-html input[type=text i]::placeholder,.utrecht-html input[type=time i]::placeholder,.utrecht-html input[type=url i]::placeholder,.utrecht-html input[type=week i]::placeholder{color:var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));font-style:var(--utrecht-form-input-placeholder-font-style);opacity:100%}.utrecht-textbox--numeric,.utrecht-html input[autocomplete~=bday i],.utrecht-html input[autocomplete~=bday-day i],.utrecht-html input[autocomplete~=bday-month i],.utrecht-html input[autocomplete~=bday-year i],.utrecht-html input[autocomplete~=cc-csc i],.utrecht-html input[autocomplete~=cc-exp i],.utrecht-html input[autocomplete~=cc-exp-month i],.utrecht-html input[autocomplete~=cc-exp-year i],.utrecht-html input[autocomplete~=cc-number i],.utrecht-html input[autocomplete~=one-time-code i],.utrecht-html input[autocomplete~=postal-code i],.utrecht-html input[autocomplete~=tel i],.utrecht-html input[autocomplete~=tel-area-code i],.utrecht-html input[autocomplete~=tel-country-code i],.utrecht-html input[autocomplete~=tel-extension i],.utrecht-html input[autocomplete~=tel-local i],.utrecht-html input[autocomplete~=tel-national i],.utrecht-html input[autocomplete~=transaction-amount i],.utrecht-html input[inputmode=decimal i],.utrecht-html input[inputmode=numeric i],.utrecht-html input[type=number i]{font-variant-numeric:lining-nums tabular-nums}.utrecht-textbox--password,.utrecht-html input[autocomplete~=current-password i],.utrecht-html input[autocomplete~=new-password i]{font-variant-ligatures:none;font-variant-numeric:slashed-zero}.utrecht-textbox--url,.utrecht-html input[type=url i]{font-variant-ligatures:none}.utrecht-textbox--html-input:focus:not(:focus-visible),.utrecht-html input:focus:not(:focus-visible):not([type]),.utrecht-html input[type=date i]:focus:not(:focus-visible),.utrecht-html input[type=datetime-local i]:focus:not(:focus-visible),.utrecht-html input[type=email i]:focus:not(:focus-visible),.utrecht-html input[type=month i]:focus:not(:focus-visible),.utrecht-html input[type=number i]:focus:not(:focus-visible),.utrecht-html input[type=password i]:focus:not(:focus-visible),.utrecht-html input[type=search i]:focus:not(:focus-visible),.utrecht-html input[type=tel i]:focus:not(:focus-visible),.utrecht-html input[type=text i]:focus:not(:focus-visible),.utrecht-html input[type=time i]:focus:not(:focus-visible),.utrecht-html input[type=url i]:focus:not(:focus-visible),.utrecht-html input[type=week i]:focus:not(:focus-visible){box-shadow:none;outline-style:none}.utrecht-unordered-list,.utrecht-html ul{font-family:var(--utrecht-document-font-family, inherit);font-size:var(--utrecht-document-font-size, inherit);line-height:var(--utrecht-document-line-height, inherit);margin-block-end:0;margin-block-start:0;padding-inline-start:var(--utrecht-unordered-list-padding-inline-start, 2ch)}.utrecht-unordered-list--distanced,.utrecht-html ul{margin-block-end:var(--utrecht-unordered-list-margin-block-end, var(--utrecht-paragraph-margin-block-end));margin-block-start:var(--utrecht-unordered-list-margin-block-start, var(--utrecht-paragraph-margin-block-start))}.utrecht-unordered-list--nested{margin-block-end:0;margin-inline-start:2ch}.utrecht-unordered-list__item,.utrecht-html ul>li{margin-block-end:var(--utrecht-unordered-list-item-margin-block-end);margin-block-start:var(--utrecht-unordered-list-item-margin-block-start);padding-inline-start:var(--utrecht-unordered-list-item-padding-inline-start, 1ch)}.utrecht-unordered-list__item::marker,.utrecht-html ul>li::marker,.utrecht-unordered-list__marker{color:var(--utrecht-unordered-list-marker-color);content:\"●\"}:host{display:block}:host([hidden]){display:none !important}";
|
|
598
598
|
|
|
599
599
|
const HTMLContent = class extends HTMLElement {
|
|
600
600
|
constructor() {
|
|
@@ -604,10 +604,10 @@ const HTMLContent = class extends HTMLElement {
|
|
|
604
604
|
render() {
|
|
605
605
|
return (h("div", { class: "utrecht-html" }, h("slot", null)));
|
|
606
606
|
}
|
|
607
|
-
static get style() { return stencilCss$
|
|
607
|
+
static get style() { return stencilCss$w; }
|
|
608
608
|
};
|
|
609
609
|
|
|
610
|
-
const stencilCss$
|
|
610
|
+
const stencilCss$v = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
611
611
|
|
|
612
612
|
const IconAfval = class extends HTMLElement {
|
|
613
613
|
constructor() {
|
|
@@ -618,10 +618,10 @@ const IconAfval = class extends HTMLElement {
|
|
|
618
618
|
render() {
|
|
619
619
|
return (h("svg", { width: "38", height: "27", viewBox: "0 0 38 27", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { d: "M0.000253331 4.00088L0.864407 22.4411C0.86744 22.5131 0.897882 22.5812 0.949373 22.6311C1.00086 22.681 1.06944 22.7088 1.14073 22.7088H2.21654C2.86845 22.7994 3.46585 23.1259 3.89817 23.6279C4.33049 24.1298 4.56846 24.7733 4.56802 25.4391C4.57095 25.4926 4.57095 25.5462 4.56802 25.5997V25.5997V26.028C4.56802 26.1021 4.59712 26.1733 4.64894 26.2257C4.70075 26.2781 4.77103 26.3076 4.84431 26.3076H11.4931C11.5615 26.3063 11.627 26.2795 11.6769 26.2323C11.7269 26.185 11.7578 26.1207 11.7636 26.0518L13.4801 4.01279C13.4834 3.97413 13.4787 3.93521 13.4663 3.8985C13.4538 3.86178 13.434 3.82806 13.408 3.79953C13.382 3.77099 13.3505 3.74824 13.3153 3.73272C13.2801 3.71721 13.2422 3.70927 13.2039 3.70941H0.270687C0.233889 3.71017 0.197604 3.71838 0.163978 3.73352C0.130351 3.74866 0.10004 3.77045 0.0748495 3.7976C0.0496587 3.82475 0.0300722 3.85672 0.0172608 3.89164C0.00444947 3.92655 -0.00132048 3.96367 0.000253331 4.00088V4.00088Z", fill: "currentColor" }), h("path", { d: "M13.1396 0.979083L0.406326 3.3882C0.369648 3.39413 0.33215 3.39267 0.296029 3.38391C0.259907 3.37515 0.225853 3.35926 0.195814 3.33715C0.165774 3.31504 0.140365 3.28717 0.121002 3.2551C0.101639 3.22302 0.0887298 3.18738 0.0830044 3.15024L0.00657829 2.72197C-0.00583682 2.6473 0.0103503 2.57066 0.0518599 2.50766C0.0933694 2.44465 0.157078 2.40003 0.229972 2.38291L12.9691 0.00352876C13.0055 -0.00236476 13.0426 -0.000867878 13.0784 0.00795815C13.1141 0.0167842 13.1477 0.0327745 13.1773 0.0549387C13.2069 0.0771029 13.2318 0.104994 13.2505 0.137028C13.2693 0.169061 13.2816 0.204592 13.2866 0.241481L13.363 0.669752C13.3703 0.740158 13.3515 0.810792 13.3102 0.867949C13.2689 0.925105 13.2081 0.964719 13.1396 0.979083V0.979083Z", fill: "currentColor" }), h("path", { d: "M2.06368 26.9619C3.05068 26.9619 3.85081 26.1523 3.85081 25.1535C3.85081 24.1548 3.05068 23.3452 2.06368 23.3452C1.07667 23.3452 0.27655 24.1548 0.27655 25.1535C0.27655 26.1523 1.07667 26.9619 2.06368 26.9619Z", fill: "currentColor" }), h("path", { d: "M33.5383 11.0319L36.607 9.24739C36.6329 9.23388 36.6546 9.21343 36.6698 9.18825C36.685 9.16306 36.693 9.13412 36.693 9.10463C36.693 9.07514 36.685 9.04624 36.6698 9.02105C36.6546 8.99587 36.6329 8.97539 36.607 8.96187L30.5284 6.18396C30.5036 6.17273 30.4764 6.16811 30.4494 6.17056C30.4223 6.17302 30.3963 6.18246 30.3739 6.19798C30.3515 6.21349 30.3334 6.23457 30.3213 6.25919C30.3093 6.28381 30.3036 6.31118 30.305 6.33863L30.4167 9.71734C30.4194 9.75744 30.4364 9.79518 30.4645 9.82361C30.4926 9.85203 30.5299 9.86923 30.5696 9.872C31.5963 9.95065 32.5747 10.345 33.3737 11.0022C33.3953 11.0228 33.4224 11.0366 33.4516 11.0419C33.4808 11.0472 33.511 11.0437 33.5383 11.0319V11.0319Z", fill: "currentColor" }), h("path", { d: "M37.9767 25.4272C37.9767 25.4272 36.8715 24.9216 35.0903 21.9355C34.4383 20.7059 34.0008 19.3717 33.797 17.9916C33.7994 17.9301 33.8134 17.8695 33.8381 17.8132L34.7846 15.7907C34.7871 15.763 34.7871 15.7352 34.7846 15.7074C34.8991 15.3838 34.9354 15.037 34.8904 14.6962C34.4436 11.609 32.4272 10.2111 29.1528 10.1456C27.5032 10.1781 25.9234 10.8245 24.7152 11.9614C23.5071 13.0983 22.7554 14.6458 22.6039 16.3082V16.3082C22.4645 17.7854 22.2407 19.2531 21.9337 20.7041C21.5105 22.4887 20.3759 25.4272 20.3759 25.4272C20.3112 25.5759 20.3759 25.7663 20.5169 25.7663H37.818C37.9591 25.7663 38.0414 25.5759 37.9767 25.4272Z", fill: "currentColor" })));
|
|
620
620
|
}
|
|
621
|
-
static get style() { return stencilCss$
|
|
621
|
+
static get style() { return stencilCss$v; }
|
|
622
622
|
};
|
|
623
623
|
|
|
624
|
-
const stencilCss$
|
|
624
|
+
const stencilCss$u = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
625
625
|
|
|
626
626
|
const IconArrow = class extends HTMLElement {
|
|
627
627
|
constructor() {
|
|
@@ -632,10 +632,10 @@ const IconArrow = class extends HTMLElement {
|
|
|
632
632
|
render() {
|
|
633
633
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-6 -3 24 24" }, h("title", null, "Arrow"), h("g", null, h("path", { fill: "currentColor", d: "M1.79289 19.0919C2.18341 19.4824 2.81659 19.4824 3.20711 19.0919L11.6923 10.6066C12.0828 10.2161 12.0828 9.58293 11.6923 9.1924L3.20711 0.707113C2.81658 0.316586 2.18342 0.316585 1.79289 0.707111L0.707104 1.7929C0.316581 2.18342 0.316579 2.81658 0.707099 3.20711L6.69232 9.1924C7.08284 9.58293 7.08284 10.2161 6.69232 10.6066L0.707097 16.5919C0.316577 16.9824 0.316577 17.6156 0.707096 18.0061L1.79289 19.0919Z" }))));
|
|
634
634
|
}
|
|
635
|
-
static get style() { return stencilCss$
|
|
635
|
+
static get style() { return stencilCss$u; }
|
|
636
636
|
};
|
|
637
637
|
|
|
638
|
-
const stencilCss$
|
|
638
|
+
const stencilCss$t = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
639
639
|
|
|
640
640
|
const Checkmark = class extends HTMLElement {
|
|
641
641
|
constructor() {
|
|
@@ -646,10 +646,10 @@ const Checkmark = class extends HTMLElement {
|
|
|
646
646
|
render() {
|
|
647
647
|
return (h("svg", { width: "20", height: "20", viewBox: "0 2 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("title", null, "\u2714"), h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M3.1645 9.72984C2.79771 9.31695 2.16565 9.27958 1.75276 9.64637L0.74761 10.5393C0.334716 10.9061 0.297345 11.5381 0.664139 11.951L6.46246 18.4781C6.62657 18.6628 6.84377 18.7724 7.07068 18.8042C7.35107 18.8437 7.64634 18.7644 7.87461 18.5616L18.9907 8.68669C19.4036 8.31989 19.4409 7.68783 19.0741 7.27494L18.2644 6.36347C17.8977 5.95058 17.2656 5.9132 16.8527 6.28L8.2368 13.9339C7.82391 14.3007 7.19185 14.2634 6.82505 13.8505L3.1645 9.72984Z", fill: "currentColor" })));
|
|
648
648
|
}
|
|
649
|
-
static get style() { return stencilCss$
|
|
649
|
+
static get style() { return stencilCss$t; }
|
|
650
650
|
};
|
|
651
651
|
|
|
652
|
-
const stencilCss$
|
|
652
|
+
const stencilCss$s = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
653
653
|
|
|
654
654
|
const IconCross = class extends HTMLElement {
|
|
655
655
|
constructor() {
|
|
@@ -660,10 +660,10 @@ const IconCross = class extends HTMLElement {
|
|
|
660
660
|
render() {
|
|
661
661
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-2 -3 24 24" }, h("title", null, "Arrow"), h("g", null, h("path", { fill: "currentColor", d: "M0.292897 1.37868C-0.0976322 1.76921 -0.0976324 2.40238 0.292897 2.7929L6.28364 8.7836C6.66684 9.17256 6.66701 9.79731 6.28415 10.1865L0.292896 16.1777C-0.0976317 16.5682 -0.0976317 17.2014 0.292894 17.5919L1.37868 18.6777C1.54958 18.8486 1.76695 18.9447 1.99011 18.966C2.0399 18.9708 2.08998 18.9718 2.1399 18.9691C2.37756 18.9564 2.61153 18.8592 2.79307 18.6777L8.7843 12.6864C9.17359 12.3036 9.79842 12.304 10.1873 12.6874L16.1775 18.6777C16.3556 18.8558 16.5842 18.9527 16.8172 18.9683C17.0952 18.987 17.3794 18.8901 17.5919 18.6777L18.6777 17.5919C19.0682 17.2014 19.0682 16.5682 18.6777 16.1777L12.6869 10.187C12.3037 9.79801 12.3036 9.17323 12.6865 8.78406L18.6777 2.7929C19.0682 2.40238 19.0682 1.76921 18.6777 1.37868L17.5919 0.292897C17.4019 0.102952 17.1546 0.00539363 16.9057 0.000220857C16.6428 -0.00528831 16.3781 0.0922701 16.1775 0.292896L10.1863 6.28416C9.79701 6.66694 9.17217 6.66662 8.78329 6.28318L2.79307 0.292907C2.61496 0.114795 2.38638 0.0179162 2.15336 0.00227038C1.87542 -0.0164342 1.59116 0.0804386 1.3787 0.292889L0.292897 1.37868Z" }))));
|
|
662
662
|
}
|
|
663
|
-
static get style() { return stencilCss$
|
|
663
|
+
static get style() { return stencilCss$s; }
|
|
664
664
|
};
|
|
665
665
|
|
|
666
|
-
const stencilCss$
|
|
666
|
+
const stencilCss$r = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
667
667
|
|
|
668
668
|
const IconError = class extends HTMLElement {
|
|
669
669
|
constructor() {
|
|
@@ -674,10 +674,10 @@ const IconError = class extends HTMLElement {
|
|
|
674
674
|
render() {
|
|
675
675
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-8 -8 38 38" }, h("title", null, "Error"), h("g", null, h("path", { fill: "currentColor", d: "M7.33946 3.24242C7.49556 3.08683 7.70708 2.99963 7.92747 3L15.1042 3.01196C15.3245 3.01232 15.5358 3.10023 15.6914 3.25633L20.7576 8.33946C20.9132 8.49556 21.0004 8.70708 21 8.92747L20.988 16.1042C20.9877 16.3245 20.8998 16.5358 20.7437 16.6914L15.6605 21.7576C15.5044 21.9132 15.2929 22.0004 15.0725 22L7.89585 21.988C7.67545 21.9877 7.46423 21.8998 7.30865 21.7437L2.24242 16.6605C2.08683 16.5044 1.99963 16.2929 2 16.0725L2.01195 8.89585C2.01232 8.67545 2.10023 8.46423 2.25633 8.30865L7.33946 3.24242Z" }), h("path", { fill: "white", "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M7.35206 8.82756C7.18099 8.99863 7.18099 9.27599 7.35206 9.44706L9.97629 12.0713C10.1441 12.2416 10.1442 12.5153 9.97651 12.6858L7.35206 15.3102C7.18099 15.4813 7.18099 15.7587 7.35206 15.9297L7.82768 16.4053C7.90254 16.4802 7.99776 16.5223 8.09552 16.5316C8.1187 16.5339 8.14202 16.5342 8.16524 16.5328C8.26793 16.5263 8.36878 16.4838 8.44725 16.4053L11.0717 13.7808C11.2423 13.6132 11.5159 13.6134 11.6863 13.7813L14.3103 16.4053C14.3883 16.4834 14.4884 16.5258 14.5905 16.5327C14.7122 16.5408 14.8368 16.4984 14.9298 16.4054L15.4055 15.9297C15.5765 15.7587 15.5765 15.4813 15.4055 15.3102L12.7812 12.686C12.6134 12.5156 12.6133 12.2419 12.781 12.0715C12.7819 12.0706 12.7827 12.0697 12.7836 12.0689L15.4055 9.44706C15.5765 9.27599 15.5765 8.99863 15.4055 8.82756L14.9298 8.35194C14.8463 8.2684 14.7374 8.22565 14.6279 8.2237C14.5132 8.22164 14.3978 8.26439 14.3103 8.35193L11.6858 10.9764C11.5153 11.1441 11.2416 11.1439 11.0713 10.976L8.44725 8.35194C8.36923 8.27392 8.2691 8.23148 8.16703 8.22463C8.04528 8.21643 7.92076 8.25887 7.82769 8.35193L7.35206 8.82756Z" }))));
|
|
676
676
|
}
|
|
677
|
-
static get style() { return stencilCss$
|
|
677
|
+
static get style() { return stencilCss$r; }
|
|
678
678
|
};
|
|
679
679
|
|
|
680
|
-
const stencilCss$
|
|
680
|
+
const stencilCss$q = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
681
681
|
|
|
682
682
|
const IconFacebook = class extends HTMLElement {
|
|
683
683
|
constructor() {
|
|
@@ -688,10 +688,10 @@ const IconFacebook = class extends HTMLElement {
|
|
|
688
688
|
render() {
|
|
689
689
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 38 38" }, h("title", null, "Facebook"), h("g", null, h("path", { fill: "currentColor", d: "M25.868,20.809l0.687-5.323h-5.271v-3.398c0-1.541,0.43-2.592,2.641-2.592h2.815v-4.76 c-0.487-0.065-2.158-0.209-4.107-0.209c-4.065,0-6.845,2.481-6.845,7.037v3.925h-4.597v5.322h4.597v13.658h5.494V20.811h4.585 L25.868,20.809L25.868,20.809z" }))));
|
|
690
690
|
}
|
|
691
|
-
static get style() { return stencilCss$
|
|
691
|
+
static get style() { return stencilCss$q; }
|
|
692
692
|
};
|
|
693
693
|
|
|
694
|
-
const stencilCss$
|
|
694
|
+
const stencilCss$p = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
695
695
|
|
|
696
696
|
const IconFilter = class extends HTMLElement {
|
|
697
697
|
constructor() {
|
|
@@ -702,10 +702,10 @@ const IconFilter = class extends HTMLElement {
|
|
|
702
702
|
render() {
|
|
703
703
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-2 -1 24 24" }, h("title", null, "Filter"), h("rect", { x: "2", y: "6", width: "17", height: "2", rx: "0.5", fill: "currentColor" }), h("rect", { x: "4", y: "11", width: "13", height: "2", rx: "0.5", fill: "currentColor" }), h("rect", { x: "6", y: "16", width: "9", height: "2", rx: "0.5", fill: "currentColor" })));
|
|
704
704
|
}
|
|
705
|
-
static get style() { return stencilCss$
|
|
705
|
+
static get style() { return stencilCss$p; }
|
|
706
706
|
};
|
|
707
707
|
|
|
708
|
-
const stencilCss$
|
|
708
|
+
const stencilCss$o = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
709
709
|
|
|
710
710
|
const IconInformation = class extends HTMLElement {
|
|
711
711
|
constructor() {
|
|
@@ -716,10 +716,10 @@ const IconInformation = class extends HTMLElement {
|
|
|
716
716
|
render() {
|
|
717
717
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-10 -10 38 38" }, h("title", null, "Information"), h("g", null, h("path", { fill: "currentColor", d: "M10 20C15.5228 20 20 15.5228 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20Z" }), h("path", { fill: "white", d: "M9 8.5C9 8.22386 9.22386 8 9.5 8H10.5C10.7761 8 11 8.22386 11 8.5V14.5C11 14.7761 10.7761 15 10.5 15H9.5C9.22386 15 9 14.7761 9 14.5V8.5Z" }), h("circle", { fill: "white", cx: "10", cy: "6", r: "1" }))));
|
|
718
718
|
}
|
|
719
|
-
static get style() { return stencilCss$
|
|
719
|
+
static get style() { return stencilCss$o; }
|
|
720
720
|
};
|
|
721
721
|
|
|
722
|
-
const stencilCss$
|
|
722
|
+
const stencilCss$n = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
723
723
|
|
|
724
724
|
const IconInstagram = class extends HTMLElement {
|
|
725
725
|
constructor() {
|
|
@@ -730,10 +730,10 @@ const IconInstagram = class extends HTMLElement {
|
|
|
730
730
|
render() {
|
|
731
731
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-7 -7 42 42" }, h("title", null, "Instagram"), h("g", null, h("path", { "fill-rule": "nonzero", fill: "currentColor", d: "M13.4773109,2.42977292 C17.0848739,2.42977292 17.5159664,2.45248108 18.9226891,2.49789739 C20.2386555,2.56602187 20.9420168,2.77039529 21.4184874,2.95206056 C22.0537815,3.20185029 22.507563,3.49705635 22.9613445,3.95121951 C23.4378151,4.42809083 23.7327731,4.88225399 23.9596639,5.49537426 C24.1411765,5.97224558 24.3680672,6.67619849 24.4134454,7.99327166 C24.4815126,9.42388562 24.4815126,9.83263246 24.4815126,13.4432296 C24.4815126,17.0538267 24.4588235,17.4852817 24.4134454,18.8931876 C24.3453782,20.2102607 24.1411765,20.9142136 23.9596639,21.3910849 C23.710084,22.0269134 23.4151261,22.4810765 22.9613445,22.9352397 C22.4848739,23.412111 22.0310924,23.7073171 21.4184874,23.9343987 C20.9420168,24.1160639 20.2386555,24.3431455 18.9226891,24.3885618 C17.4932773,24.4566863 17.0848739,24.4566863 13.4773109,24.4566863 C9.8697479,24.4566863 9.43865546,24.4339781 8.03193277,24.3885618 C6.71596639,24.3204373 6.01260504,24.1160639 5.53613445,23.9343987 C4.90084034,23.6846089 4.44705882,23.3894029 3.99327731,22.9352397 C3.51680672,22.4583684 3.22184874,22.0042052 2.99495798,21.3910849 C2.81344538,20.9142136 2.58655462,20.2102607 2.54117647,18.8931876 C2.47310924,17.4625736 2.47310924,17.0538267 2.47310924,13.4432296 C2.47310924,9.83263246 2.49579832,9.40117746 2.54117647,7.99327166 C2.6092437,6.67619849 2.81344538,5.97224558 2.99495798,5.49537426 C3.19915966,4.90496215 3.49411765,4.45079899 3.97058824,3.97392767 C4.44705882,3.49705635 4.90084034,3.20185029 5.51344538,2.97476871 C5.98991597,2.79310345 6.69327731,2.56602187 8.0092437,2.52060555 C9.43865546,2.42977292 9.8697479,2.42977292 13.4773109,2.42977292 Z M13.4773109,0 C9.82436975,0 9.34789916,0.0227081581 7.91848739,0.0908326325 C6.48907563,0.136248949 5.4907563,0.36333053 4.6512605,0.703952902 C3.76638655,1.04457527 2.99495798,1.49873844 2.24621849,2.24810765 C1.49747899,2.99747687 1.04369748,3.76955425 0.703361345,4.65517241 C0.36302521,5.49537426 0.136134454,6.49453322 0.0680672269,7.92514718 C0,9.35576114 0,9.83263246 0,13.4886459 C0,17.1446594 0.0226890756,17.6215307 0.0907563025,19.0521447 C0.158823529,20.4827586 0.385714286,21.4592094 0.72605042,22.3221194 C1.06638655,23.2077376 1.54285714,23.9571068 2.29159664,24.706476 C3.04033613,25.4558452 3.78907563,25.9100084 4.67394958,26.2733389 C5.53613445,26.6139613 6.51176471,26.8410429 7.94117647,26.9091674 C9.37058824,26.9772918 9.84705882,27 13.5,27 C17.1529412,27 17.6294118,26.9772918 19.0588235,26.9091674 C20.4882353,26.8410429 21.4638655,26.6139613 22.3260504,26.2733389 C23.2109244,25.9327166 23.9596639,25.4558452 24.7084034,24.706476 C25.4571429,23.9571068 25.9109244,23.2077376 26.2739496,22.3221194 C26.6142857,21.4592094 26.8411765,20.4827586 26.9092437,19.0521447 C26.9773109,17.6215307 27,17.1446594 27,13.4886459 C27,9.83263246 26.9773109,9.35576114 26.9092437,7.92514718 C26.8411765,6.49453322 26.6142857,5.51808242 26.2739496,4.65517241 C25.9336134,3.76955425 25.4571429,3.02018503 24.7084034,2.27081581 C23.9596639,1.52144659 23.2109244,1.06728343 22.3260504,0.703952902 C21.4638655,0.36333053 20.4882353,0.136248949 19.0588235,0.0681244743 C17.6067227,0 17.1302521,0 13.4773109,0 Z" }), h("path", { "fill-rule": "nonzero", fill: "currentColor", d: "M14,7 C10.1213115,7 7,10.1442623 7,14 C7,17.8786885 10.1442623,21 14,21 C17.8557377,21 21,17.8557377 21,14 C21,10.1213115 17.8786885,7 14,7 Z M14,18.5442623 C11.4983607,18.5442623 9.4557377,16.5016393 9.4557377,14 C9.4557377,11.4983607 11.4983607,9.4557377 14,9.4557377 C16.5016393,9.4557377 18.5442623,11.4983607 18.5442623,14 C18.5442623,16.5016393 16.5016393,18.5442623 14,18.5442623 Z" }), h("circle", { fill: "currentColor", cx: "21", cy: "6", r: "2" }))));
|
|
732
732
|
}
|
|
733
|
-
static get style() { return stencilCss$
|
|
733
|
+
static get style() { return stencilCss$n; }
|
|
734
734
|
};
|
|
735
735
|
|
|
736
|
-
const stencilCss$
|
|
736
|
+
const stencilCss$m = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
737
737
|
|
|
738
738
|
const IconLinkedin = class extends HTMLElement {
|
|
739
739
|
constructor() {
|
|
@@ -744,10 +744,10 @@ const IconLinkedin = class extends HTMLElement {
|
|
|
744
744
|
render() {
|
|
745
745
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-8 -8 43 43" }, h("title", null, "LinkedIn"), h("g", null, h("path", { fill: "currentColor", "fill-rule": "nonzero", d: "M0.465517241,8.84482759 L6.05172414,8.84482759 L6.05172414,27 L0.465517241,27 L0.465517241,8.84482759 Z M3.25862069,0 C4.88793103,0 6.51724138,1.39655172 6.51724138,3.25862069 C6.51724138,5.12068966 4.88793103,6.51724138 3.25862069,6.51724138 C1.39655172,6.51724138 0,5.12068966 0,3.25862069 C0,1.39655172 1.39655172,0 3.25862069,0 Z" }), h("path", { fill: "currentColor", d: "M9.31034483,8.84482759 L14.7351724,8.84482759 L14.7351724,11.4051724 C15.4427586,10.0086207 17.3296552,8.37931034 20.16,8.37931034 C25.8206897,8.37931034 27,12.1034483 27,16.9913793 L27,27 L21.3393103,27 L21.3393103,18.1551724 C21.3393103,16.0603448 21.3393103,13.2672414 18.2731034,13.2672414 C15.2068966,13.2672414 14.9710345,15.5948276 14.9710345,17.9224138 L14.9710345,26.7672414 L9.31034483,26.7672414 L9.31034483,8.84482759 Z" }))));
|
|
746
746
|
}
|
|
747
|
-
static get style() { return stencilCss$
|
|
747
|
+
static get style() { return stencilCss$m; }
|
|
748
748
|
};
|
|
749
749
|
|
|
750
|
-
const stencilCss$
|
|
750
|
+
const stencilCss$l = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
751
751
|
|
|
752
752
|
const IconList = class extends HTMLElement {
|
|
753
753
|
constructor() {
|
|
@@ -758,10 +758,10 @@ const IconList = class extends HTMLElement {
|
|
|
758
758
|
render() {
|
|
759
759
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 0 24 24" }, h("title", null, "List"), h("rect", { x: "6", y: "18", width: "13", height: "2", rx: "0.5", fill: "currentColor" }), h("rect", { x: "6", y: "12", width: "13", height: "2", rx: "0.5", fill: "currentColor" }), h("rect", { x: "6", y: "6", width: "13", height: "2", rx: "0.5", fill: "currentColor" }), h("circle", { cx: "3", cy: "7", r: "1", fill: "currentColor" }), h("circle", { cx: "3", cy: "13", r: "1", fill: "currentColor" }), h("circle", { cx: "3", cy: "19", r: "1", fill: "currentColor" })));
|
|
760
760
|
}
|
|
761
|
-
static get style() { return stencilCss$
|
|
761
|
+
static get style() { return stencilCss$l; }
|
|
762
762
|
};
|
|
763
763
|
|
|
764
|
-
const stencilCss$
|
|
764
|
+
const stencilCss$k = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
765
765
|
|
|
766
766
|
const IconLoupe = class extends HTMLElement {
|
|
767
767
|
constructor() {
|
|
@@ -772,10 +772,10 @@ const IconLoupe = class extends HTMLElement {
|
|
|
772
772
|
render() {
|
|
773
773
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "0 -1 24 24" }, h("title", null, "Loupe"), h("g", null, h("path", { fill: "currentColor", "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M14.5028 16.2982C11.5839 18.3961 7.51217 18.1416 4.90662 15.5261C2.00474 12.613 2.02036 7.87451 4.94151 4.94223C7.86266 2.00995 12.5832 1.99433 15.485 4.90734C18.0906 7.52288 18.3441 11.6102 16.2541 14.5402C16.2813 14.5597 16.3073 14.5818 16.3317 14.6063L21.1481 19.4412C21.39 19.6839 21.3887 20.0788 21.1452 20.3232L20.2637 21.2081C20.0203 21.4524 19.6269 21.4537 19.3851 21.211L14.5686 16.3761C14.5442 16.3515 14.5223 16.3255 14.5028 16.2982ZM13.6987 13.733C11.7513 15.6879 8.60428 15.6983 6.66969 13.7563C4.7351 11.8143 4.74552 8.65523 6.69295 6.70038C8.64039 4.74553 11.7874 4.73512 13.722 6.67712C15.6566 8.61913 15.6461 11.7782 13.6987 13.733Z" }))));
|
|
774
774
|
}
|
|
775
|
-
static get style() { return stencilCss$
|
|
775
|
+
static get style() { return stencilCss$k; }
|
|
776
776
|
};
|
|
777
777
|
|
|
778
|
-
const stencilCss$
|
|
778
|
+
const stencilCss$j = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
779
779
|
|
|
780
780
|
const IconMelding = class extends HTMLElement {
|
|
781
781
|
constructor() {
|
|
@@ -786,10 +786,10 @@ const IconMelding = class extends HTMLElement {
|
|
|
786
786
|
render() {
|
|
787
787
|
return (h("svg", { width: "35", height: "37", viewBox: "0 0 35 37", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M30.06 0H14.91C13.8492 0 12.8317 0.421424 12.0816 1.17157C11.3315 1.92172 10.91 2.93913 10.91 4V11.34C10.91 12.4009 11.3315 13.4183 12.0816 14.1684C12.8317 14.9186 13.8492 15.34 14.91 15.34H15.45V18.59L18.69 15.34H30.06C31.1209 15.34 32.1383 14.9186 32.8884 14.1684C33.6386 13.4183 34.06 12.4009 34.06 11.34V4C34.06 2.93913 33.6386 1.92172 32.8884 1.17157C32.1383 0.421424 31.1209 0 30.06 0ZM23.33 2.83L23.02 9.2H21.42L21.11 2.83H23.33ZM22.22 12.46C21.9669 12.46 21.7194 12.3849 21.5089 12.2443C21.2984 12.1036 21.1344 11.9037 21.0375 11.6698C20.9406 11.4359 20.9152 11.1786 20.9646 10.9303C21.014 10.682 21.1359 10.4539 21.3149 10.2749C21.494 10.0959 21.722 9.97398 21.9703 9.92459C22.2186 9.8752 22.4759 9.90056 22.7098 9.99744C22.9437 10.0943 23.1437 10.2584 23.2843 10.4689C23.4249 10.6794 23.5 10.9268 23.5 11.18C23.509 11.353 23.4811 11.526 23.418 11.6874C23.355 11.8488 23.2582 11.9949 23.1343 12.116C23.0103 12.2371 22.862 12.3305 22.6992 12.3898C22.5364 12.4491 22.3628 12.473 22.19 12.46H22.22Z", fill: "currentColor" }), h("path", { d: "M15.67 36.73V29.29C15.67 27.08 13.2 25.29 10.14 25.29H5.53003C2.47003 25.29 0 27.08 0 29.29V36.73H15.67Z", fill: "currentColor" }), h("path", { d: "M12.15 20.54C12.1739 21.3991 11.941 22.2459 11.481 22.9719C11.0211 23.6979 10.355 24.2703 9.56807 24.6157C8.78109 24.9612 7.90893 25.064 7.06319 24.9111C6.21744 24.7582 5.43655 24.3566 4.82033 23.7574C4.2041 23.1583 3.7806 22.389 3.60396 21.5479C3.42731 20.7068 3.50554 19.8321 3.82869 19.0358C4.15184 18.2394 4.7052 17.5575 5.41798 17.0773C6.13077 16.597 6.97058 16.3404 7.83003 16.34C8.38948 16.3321 8.94503 16.4344 9.46492 16.6412C9.98481 16.848 10.4588 17.1552 10.86 17.5452C11.2612 17.9352 11.5816 18.4004 11.8029 18.9143C12.0243 19.4281 12.1422 19.9806 12.15 20.54V20.54Z", fill: "currentColor" })));
|
|
788
788
|
}
|
|
789
|
-
static get style() { return stencilCss$
|
|
789
|
+
static get style() { return stencilCss$j; }
|
|
790
790
|
};
|
|
791
791
|
|
|
792
|
-
const stencilCss$
|
|
792
|
+
const stencilCss$i = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
793
793
|
|
|
794
794
|
const IconPaspoort = class extends HTMLElement {
|
|
795
795
|
constructor() {
|
|
@@ -800,10 +800,10 @@ const IconPaspoort = class extends HTMLElement {
|
|
|
800
800
|
render() {
|
|
801
801
|
return (h("svg", { width: "35", height: "26", viewBox: "0 0 35 26", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M33.66 0H1.2C0.881745 0 0.576515 0.126427 0.351471 0.351471C0.126427 0.576515 7.06621e-10 0.881737 7.06606e-10 1.2V24.07C-1.08999e-05 24.3892 0.1261 24.6954 0.350861 24.9221C0.575621 25.1487 0.880829 25.2774 1.2 25.28H33.66C33.8184 25.28 33.9753 25.2486 34.1215 25.1877C34.2678 25.1268 34.4005 25.0375 34.5121 24.925C34.6237 24.8125 34.7118 24.679 34.7715 24.5323C34.8313 24.3855 34.8613 24.2284 34.86 24.07V1.2C34.86 0.881737 34.7336 0.576515 34.5085 0.351471C34.2835 0.126427 33.9783 0 33.66 0V0ZM10.14 21H9.06001L5.93999 15.12V21H5.12V14.43H6.48L9.32 19.8V14.43H10.14V21ZM16.05 21H11.89V14.43H12.76V20.23H16.05V21ZM16.49 10.35H3.21V8.76999H16.49V10.35ZM16.49 5.34999H3.21V3.75999H16.49V5.34999ZM31.38 15.07C31.3697 15.3123 31.2661 15.5412 31.0909 15.709C30.9158 15.8767 30.6825 15.9702 30.44 15.97H20.53C20.2913 15.97 20.0624 15.8752 19.8936 15.7064C19.7248 15.5376 19.63 15.3087 19.63 15.07V4.29999C19.63 4.06129 19.7248 3.83239 19.8936 3.6636C20.0624 3.49482 20.2913 3.39999 20.53 3.39999H30.44C30.6833 3.39725 30.9179 3.48994 31.0937 3.65819C31.2694 3.82643 31.3722 4.05683 31.38 4.29999V15.07Z", fill: "currentColor" }), h("path", { d: "M30.13 14.06V13.38C30.13 12.06 28.65 11 26.83 11H24.07C22.25 11 20.77 12.06 20.77 13.38V14.06H30.13Z", fill: "currentColor" }), h("path", { d: "M28.03 8.17999C28.0439 8.69259 27.9047 9.19772 27.6303 9.63087C27.3558 10.064 26.9585 10.4056 26.4891 10.6119C26.0196 10.8182 25.4993 10.88 24.9946 10.7893C24.4899 10.6986 24.0237 10.4596 23.6554 10.1027C23.2872 9.74582 23.0337 9.28733 22.9272 8.78572C22.8207 8.28411 22.8661 7.76214 23.0576 7.28645C23.2491 6.81076 23.578 6.40293 24.0024 6.11502C24.4267 5.82711 24.9272 5.67217 25.44 5.67C25.7749 5.6647 26.1075 5.72543 26.4189 5.84871C26.7303 5.97199 27.0144 6.1554 27.2549 6.38849C27.4954 6.62157 27.6877 6.89976 27.8207 7.20715C27.9536 7.51454 28.0248 7.84511 28.03 8.17999V8.17999Z", fill: "currentColor" })));
|
|
802
802
|
}
|
|
803
|
-
static get style() { return stencilCss$
|
|
803
|
+
static get style() { return stencilCss$i; }
|
|
804
804
|
};
|
|
805
805
|
|
|
806
|
-
const stencilCss$
|
|
806
|
+
const stencilCss$h = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
807
807
|
|
|
808
808
|
const IconRijbewijs = class extends HTMLElement {
|
|
809
809
|
constructor() {
|
|
@@ -814,10 +814,10 @@ const IconRijbewijs = class extends HTMLElement {
|
|
|
814
814
|
render() {
|
|
815
815
|
return (h("svg", { width: "35", height: "26", viewBox: "0 0 35 26", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { d: "M9.59002 9.80005H6.72002C4.81002 9.80005 3.27002 10.91 3.27002 12.29V13H13.03V12.29C13.03 10.91 11.49 9.80005 9.59002 9.80005Z", fill: "currentColor" }), h("path", { d: "M33.66 7.06621e-10H1.21C0.890812 -1.08999e-05 0.584552 0.1261 0.357918 0.350861C0.131284 0.575621 0.00263791 0.880836 0 1.20001V24.07C0 24.3909 0.127482 24.6987 0.354401 24.9256C0.58132 25.1525 0.889087 25.28 1.21 25.28H33.66C33.9792 25.2774 34.2844 25.1487 34.5091 24.9221C34.7339 24.6955 34.86 24.3892 34.86 24.07V1.20001C34.86 0.881752 34.7336 0.576515 34.5085 0.351471C34.2835 0.126427 33.9783 7.06677e-10 33.66 7.06621e-10V7.06621e-10ZM14.11 14.12C14.1022 14.3632 13.9994 14.5936 13.8236 14.7618C13.6479 14.9301 13.4133 15.0228 13.17 15.02H3.26C3.02131 15.02 2.79239 14.9252 2.6236 14.7564C2.45482 14.5876 2.36 14.3587 2.36 14.12V3.31C2.35868 3.19097 2.38098 3.07287 2.42562 2.96252C2.47026 2.85217 2.53634 2.75178 2.62004 2.66714C2.70375 2.58251 2.80341 2.51531 2.91326 2.46945C3.02311 2.4236 3.14097 2.40002 3.26 2.40002H13.17C13.4142 2.3999 13.6488 2.4948 13.8243 2.66464C13.9997 2.83449 14.1022 3.06593 14.11 3.31V14.12ZM30.11 20.68H29.24L29.18 20.75V21.95C29.1807 22.0506 29.1492 22.1487 29.09 22.23C29.039 22.3194 28.9669 22.3949 28.88 22.45C28.7922 22.5156 28.6942 22.5662 28.59 22.6C28.4931 22.6319 28.392 22.6488 28.29 22.65C28.0748 22.6421 27.8678 22.565 27.7 22.43C27.6125 22.3654 27.5415 22.2809 27.4928 22.1836C27.4442 22.0863 27.4192 21.9788 27.42 21.87V20.71H21.16C21.16 20.89 21.16 21.1 21.16 21.32C21.1637 21.5321 21.1402 21.7439 21.09 21.95C21.0368 22.1341 20.9447 22.3046 20.82 22.45C20.7397 22.5206 20.6463 22.5747 20.545 22.609C20.4437 22.6433 20.3367 22.6573 20.23 22.65C20.0519 22.6517 19.8788 22.5916 19.74 22.48C19.5981 22.3658 19.4822 22.2226 19.4 22.06C19.3962 22.0234 19.3962 21.9866 19.4 21.95V20.68H18.51V17.25C18.5213 17.071 18.5877 16.8999 18.7 16.76C18.8023 16.6173 18.9273 16.4923 19.07 16.39H19.19L19.33 16.33L19.4 16.2C19.4169 16.1914 19.4313 16.1787 19.4418 16.1629C19.4523 16.1471 19.4586 16.1289 19.46 16.11L20.39 13.75C20.4907 13.5281 20.6333 13.3278 20.81 13.16C20.895 13.0706 20.9974 12.9996 21.1109 12.9514C21.2245 12.9033 21.3467 12.879 21.47 12.88H27.03C27.264 12.8902 27.4869 12.9823 27.66 13.14C27.8348 13.2876 27.9749 13.472 28.07 13.68L28.98 16.03C28.9931 16.0801 29.0181 16.1263 29.0529 16.1646C29.0877 16.203 29.1313 16.2323 29.18 16.25L29.47 16.36C29.6497 16.4748 29.7976 16.633 29.9 16.82C30.0077 16.9982 30.0664 17.2018 30.07 17.41L30.11 20.68ZM30.93 9.31H17.65V7.72H30.93V9.31ZM30.93 5.62003H17.65V4.03H30.93V5.62003Z", fill: "currentColor" }), h("path", { d: "M20.29 16.87C20.1797 16.8645 20.0696 16.8852 19.9688 16.9304C19.868 16.9756 19.7793 17.044 19.71 17.13C19.5735 17.2963 19.4989 17.5048 19.4989 17.72C19.4989 17.9352 19.5735 18.1437 19.71 18.31C19.7818 18.3924 19.8712 18.4577 19.9716 18.501C20.072 18.5442 20.1808 18.5644 20.29 18.56C20.396 18.5621 20.5012 18.5408 20.598 18.4976C20.6948 18.4544 20.7808 18.3903 20.85 18.31C21.0034 18.1499 21.0891 17.9367 21.0891 17.715C21.0891 17.4933 21.0034 17.2801 20.85 17.12C20.7808 17.0397 20.6948 16.9756 20.598 16.9324C20.5012 16.8892 20.396 16.8679 20.29 16.87Z", fill: "currentColor" }), h("path", { d: "M27.33 13.93C27.2912 13.8322 27.2372 13.741 27.17 13.66C27.1375 13.6133 27.0941 13.5753 27.0436 13.5491C26.993 13.523 26.9369 13.5096 26.88 13.51H21.68C21.6292 13.5104 21.579 13.5213 21.5325 13.5419C21.486 13.5626 21.4444 13.5925 21.41 13.63C21.3413 13.6967 21.2898 13.7791 21.26 13.87L20.5 15.94H28.08L27.33 13.93Z", fill: "currentColor" }), h("path", { d: "M28.29 16.87C28.1811 16.8677 28.0729 16.8888 27.9728 16.9319C27.8727 16.9751 27.7831 17.0392 27.71 17.12C27.5566 17.2801 27.4709 17.4933 27.4709 17.7151C27.4709 17.9368 27.5566 18.1499 27.71 18.31C27.7831 18.3908 27.8727 18.455 27.9728 18.4981C28.0729 18.5413 28.1811 18.5624 28.29 18.56C28.3987 18.5639 28.5068 18.5425 28.6057 18.4974C28.7047 18.4522 28.7917 18.3847 28.86 18.3C28.9348 18.2234 28.9936 18.1326 29.0331 18.0331C29.0726 17.9335 29.0919 17.8271 29.09 17.72C29.0943 17.5007 29.0116 17.2886 28.86 17.13C28.7902 17.0471 28.7029 16.9808 28.6043 16.9358C28.5057 16.8908 28.3984 16.8684 28.29 16.87V16.87Z", fill: "currentColor" }), h("path", { d: "M8.14998 9.47002C8.66539 9.45624 9.16527 9.29071 9.58703 8.99413C10.0088 8.69756 10.3337 8.28312 10.521 7.80276C10.7083 7.32239 10.7497 6.79745 10.64 6.29366C10.5303 5.78987 10.2745 5.32964 9.90441 4.9706C9.53437 4.61157 9.06663 4.36968 8.55975 4.27526C8.05288 4.18084 7.52942 4.23809 7.05492 4.43981C6.58043 4.64153 6.176 4.97875 5.89229 5.40926C5.60858 5.83978 5.45819 6.34445 5.45998 6.86004C5.46519 7.20805 5.53891 7.55163 5.67693 7.87115C5.81494 8.19067 6.01455 8.47988 6.26434 8.72225C6.51414 8.96462 6.80923 9.15541 7.13277 9.28371C7.45632 9.41202 7.80197 9.47532 8.14998 9.47002V9.47002Z", fill: "currentColor" })));
|
|
816
816
|
}
|
|
817
|
-
static get style() { return stencilCss$
|
|
817
|
+
static get style() { return stencilCss$h; }
|
|
818
818
|
};
|
|
819
819
|
|
|
820
|
-
const stencilCss$
|
|
820
|
+
const stencilCss$g = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
821
821
|
|
|
822
822
|
const IconToeslag = class extends HTMLElement {
|
|
823
823
|
constructor() {
|
|
@@ -828,10 +828,10 @@ const IconToeslag = class extends HTMLElement {
|
|
|
828
828
|
render() {
|
|
829
829
|
return (h("svg", { width: "23", height: "29", viewBox: "0 0 23 29", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { d: "M11.11 28.25V22.97C11.11 21.41 9.36 20.14 7.19 20.14H3.92C1.75 20.14 0 21.41 0 22.97V28.25H11.11Z", fill: "currentColor" }), h("path", { d: "M8.62003 16.79C8.63395 17.4 8.46578 18.0003 8.13702 18.5143C7.80825 19.0282 7.33379 19.4326 6.77419 19.6757C6.21459 19.9189 5.59523 19.9897 4.99517 19.8793C4.39511 19.7689 3.84157 19.4821 3.40519 19.0557C2.96881 18.6293 2.6694 18.0825 2.54516 17.4851C2.42092 16.8878 2.47749 16.267 2.70765 15.7019C2.93781 15.1369 3.33112 14.6532 3.83738 14.3127C4.34364 13.9721 4.93991 13.7902 5.55004 13.79C5.94986 13.7807 6.3475 13.8514 6.7196 13.998C7.09169 14.1445 7.43073 14.364 7.71676 14.6435C8.00279 14.9231 8.23005 15.2569 8.38517 15.6256C8.54029 15.9942 8.62014 16.3901 8.62003 16.79V16.79Z", fill: "currentColor" }), h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M19.65 0H8.90997C8.16287 0.0026353 7.44712 0.30059 6.91884 0.828873C6.39056 1.35716 6.0926 2.07291 6.08997 2.82001V8.02C6.09261 8.76618 6.39088 9.48089 6.91945 10.0076C7.44801 10.5343 8.16379 10.83 8.90997 10.83H9.28996V13.14L11.59 10.83H19.65C20.3961 10.83 21.1119 10.5343 21.6405 10.0076C22.1691 9.48089 22.4673 8.76618 22.47 8.02V2.82001C22.4673 2.07291 22.1694 1.35716 21.6411 0.828873C21.1128 0.30059 20.3971 0.0026353 19.65 0V0ZM13.65 4.25999H15.65L15.55 4.81C15.5424 4.81439 15.5337 4.8167 15.525 4.8167C15.5162 4.8167 15.5076 4.81439 15.5 4.81H13.56C13.56 4.81 13.56 4.91999 13.56 5.00999C13.56 5.09999 13.56 5.27 13.56 5.27H15.37L15.27 5.82001C15.2539 5.82616 15.2361 5.82616 15.22 5.82001H13.61C13.6718 6.04415 13.7626 6.25929 13.88 6.46001C13.9939 6.6165 14.1449 6.74226 14.3195 6.82603C14.494 6.90981 14.6866 6.94897 14.88 6.94C15.2776 6.88099 15.655 6.7266 15.98 6.49001C15.98 6.49001 15.98 6.49001 15.98 6.49001V7.66C15.9861 7.6761 15.9861 7.69391 15.98 7.71001C15.6337 7.84421 15.27 7.92839 14.9 7.96001C14.5613 7.96837 14.2252 7.89981 13.9169 7.75951C13.6086 7.61921 13.3361 7.41081 13.12 7.14999C12.8494 6.73577 12.6405 6.28437 12.5 5.81C12.5 5.81 12.5 5.81 12.5 5.81H12.03L12.13 5.25999H12.42V5.25C12.42 5.13 12.42 4.96001 12.42 4.96001H12.01L12.11 4.41H12.47C12.6103 3.94669 12.8157 3.50564 13.08 3.10001C13.3044 2.83268 13.5866 2.61991 13.9054 2.47784C14.2242 2.33577 14.5712 2.26812 14.92 2.28C15.2618 2.31342 15.5979 2.39071 15.92 2.50999C15.9244 2.5176 15.9267 2.52623 15.9267 2.535C15.9267 2.54378 15.9244 2.5524 15.92 2.56L15.72 3.56C15.4532 3.38371 15.148 3.27398 14.83 3.24001C14.6376 3.23079 14.4459 3.2688 14.2716 3.35072C14.0972 3.43265 13.9456 3.556 13.83 3.71001C13.7086 3.90774 13.6113 4.11922 13.54 4.34C13.54 4.34 13.56 4.25 13.61 4.25L13.65 4.25999Z", fill: "currentColor" })));
|
|
830
830
|
}
|
|
831
|
-
static get style() { return stencilCss$
|
|
831
|
+
static get style() { return stencilCss$g; }
|
|
832
832
|
};
|
|
833
833
|
|
|
834
|
-
const stencilCss$
|
|
834
|
+
const stencilCss$f = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
835
835
|
|
|
836
836
|
const IconTrouwen = class extends HTMLElement {
|
|
837
837
|
constructor() {
|
|
@@ -842,10 +842,10 @@ const IconTrouwen = class extends HTMLElement {
|
|
|
842
842
|
render() {
|
|
843
843
|
return (h("svg", { width: "33", height: "30", viewBox: "0 0 33 30", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M21.1959 4.16C21.153 4.32263 21.0856 4.47777 20.9959 4.62001C20.8152 4.96014 20.5708 5.26231 20.2759 5.51001C19.0739 6.65093 17.772 7.68172 16.3859 8.59C15.0319 7.63585 13.7668 6.5615 12.6059 5.38C12.321 5.11859 12.0871 4.80666 11.9159 4.46001C11.8335 4.31638 11.7729 4.16136 11.7359 4C11.6374 3.67619 11.5934 3.33824 11.6059 3C11.6059 2.20435 11.922 1.44129 12.4846 0.878677C13.0472 0.316068 13.8102 0 14.6059 0C15.1138 0.0661121 15.5817 0.310566 15.9261 0.689728C16.2704 1.06889 16.4688 1.55809 16.4859 2.07001C16.4665 1.8024 16.505 1.53375 16.5987 1.28232C16.6923 1.03089 16.839 0.802562 17.0287 0.612839C17.2184 0.423116 17.4468 0.276451 17.6982 0.182785C17.9496 0.0891195 18.2183 0.0506561 18.4859 0.0700073C18.8808 0.0816339 19.2695 0.171139 19.6297 0.333389C19.9899 0.495639 20.3145 0.727435 20.5849 1.01547C20.8553 1.30351 21.0661 1.64212 21.2053 2.01186C21.3444 2.38159 21.4092 2.77516 21.3959 3.17C21.381 3.50838 21.3136 3.8424 21.1959 4.16Z", fill: "currentColor" }), h("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M10.1259 29.53C12.4221 29.5309 14.6506 28.7517 16.4459 27.32C17.9375 28.5126 19.7356 29.2596 21.6332 29.4752C23.5308 29.6908 25.4506 29.3661 27.1718 28.5385C28.8929 27.711 30.3454 26.4142 31.3619 24.7975C32.3785 23.1807 32.9178 21.3098 32.9178 19.4C32.9178 17.4903 32.3785 15.6193 31.3619 14.0026C30.3454 12.3858 28.8929 11.089 27.1718 10.2615C25.4506 9.43393 23.5308 9.10925 21.6332 9.32482C19.7356 9.5404 17.9375 10.2875 16.4459 11.48C15.1811 10.4714 13.6933 9.78041 12.1067 9.46475C10.5201 9.14909 8.88106 9.21798 7.32659 9.66566C5.77211 10.1133 4.34745 10.9268 3.17181 12.0379C1.99616 13.1491 1.10371 14.5256 0.569129 16.0524C0.0345478 17.5791 -0.126618 19.2118 0.0991125 20.8136C0.324843 22.4154 0.930904 23.9399 1.8666 25.2595C2.80229 26.579 4.04039 27.6553 5.47733 28.3983C6.91426 29.1413 8.50824 29.5294 10.1259 29.53V29.53ZM16.4459 14.78C17.4086 16.1056 17.927 17.7018 17.927 19.34C17.927 20.9782 17.4086 22.5745 16.4459 23.9C15.4904 22.5715 14.9764 20.9764 14.9764 19.34C14.9764 17.7036 15.4904 16.1085 16.4459 14.78ZM22.7759 11.54C24.011 11.5379 25.2289 11.8292 26.3294 12.3897C27.4299 12.9503 28.3816 13.7642 29.1061 14.7645C29.8306 15.7647 30.3072 16.9227 30.4967 18.1432C30.6862 19.3636 30.5832 20.6116 30.1962 21.7844C29.8091 22.9573 29.1491 24.0215 28.2704 24.8894C27.3917 25.7573 26.3194 26.4042 25.1419 26.7767C23.9643 27.1492 22.7152 27.2368 21.4971 27.0323C20.2791 26.8277 19.1271 26.3368 18.1359 25.6C19.5277 23.8172 20.2828 21.62 20.281 19.3583C20.2791 17.0966 19.5205 14.9006 18.1259 13.12C19.4745 12.0949 21.1219 11.54 22.8159 11.54H22.7759ZM10.1359 11.54C11.8251 11.5407 13.468 12.0919 14.8159 13.11C13.4076 14.8859 12.6361 17.0831 12.6253 19.3497C12.6144 21.6162 13.3647 23.8207 14.7559 25.61C13.4202 26.6019 11.7996 27.1351 10.1359 27.13C9.08875 27.1675 8.04478 26.9937 7.0663 26.6188C6.08783 26.244 5.19491 25.6758 4.44084 24.9483C3.68678 24.2208 3.08703 23.3488 2.6774 22.3843C2.26777 21.4199 2.05665 20.3828 2.05665 19.335C2.05665 18.2872 2.26777 17.2501 2.6774 16.2857C3.08703 15.3213 3.68678 14.4493 4.44084 13.7217C5.19491 12.9942 6.08783 12.426 7.0663 12.0512C8.04478 11.6764 9.08875 11.5025 10.1359 11.54Z", fill: "currentColor" })));
|
|
844
844
|
}
|
|
845
|
-
static get style() { return stencilCss$
|
|
845
|
+
static get style() { return stencilCss$f; }
|
|
846
846
|
};
|
|
847
847
|
|
|
848
|
-
const stencilCss$
|
|
848
|
+
const stencilCss$e = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
849
849
|
|
|
850
850
|
const IconTwitter = class extends HTMLElement {
|
|
851
851
|
constructor() {
|
|
@@ -856,10 +856,10 @@ const IconTwitter = class extends HTMLElement {
|
|
|
856
856
|
render() {
|
|
857
857
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-2 -2 44 44" }, h("title", null, "Twitter"), h("g", null, h("path", { fill: "currentColor", d: "M33.096,11.147c-1.017,0.451-2.107,0.756-3.255,0.892c1.171-0.701,2.069-1.811,2.492-3.134 c-1.094,0.649-2.306,1.121-3.599,1.375c-1.032-1.102-2.506-1.79-4.135-1.79c-3.129,0-5.667,2.537-5.667,5.666 c0,0.445,0.049,0.876,0.146,1.291c-4.709-0.235-8.883-2.491-11.678-5.92c-0.487,0.838-0.767,1.811-0.767,2.85 c0,1.965,1,3.701,2.52,4.715c-0.928-0.028-1.802-0.285-2.566-0.708v0.071c0,2.744,1.954,5.034,4.544,5.556 c-0.474,0.13-0.976,0.2-1.493,0.2c-0.364,0-0.72-0.037-1.065-0.104c0.721,2.25,2.813,3.889,5.292,3.936 c-1.938,1.52-4.381,2.425-7.037,2.425c-0.457,0-0.907-0.026-1.35-0.079c2.507,1.606,5.485,2.545,8.687,2.545 c10.419,0,16.119-8.632,16.119-16.12c0-0.245-0.006-0.49-0.016-0.734C31.374,13.282,32.334,12.284,33.096,11.147z" }))));
|
|
858
858
|
}
|
|
859
|
-
static get style() { return stencilCss$
|
|
859
|
+
static get style() { return stencilCss$e; }
|
|
860
860
|
};
|
|
861
861
|
|
|
862
|
-
const stencilCss$
|
|
862
|
+
const stencilCss$d = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
863
863
|
|
|
864
864
|
const IconVerhuizen = class extends HTMLElement {
|
|
865
865
|
constructor() {
|
|
@@ -870,10 +870,10 @@ const IconVerhuizen = class extends HTMLElement {
|
|
|
870
870
|
render() {
|
|
871
871
|
return (h("svg", { width: "39", height: "37", viewBox: "0 0 39 37", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h("path", { d: "M13.84 33.2396C13.84 33.9318 13.6347 34.6085 13.2501 35.1841C12.8655 35.7596 12.3189 36.2082 11.6794 36.4731C11.0398 36.7381 10.3361 36.8074 9.65716 36.6723C8.97823 36.5373 8.35459 36.2039 7.86511 35.7144C7.37562 35.2249 7.04227 34.6013 6.90722 33.9224C6.77217 33.2434 6.84147 32.5397 7.10638 31.9002C7.37129 31.2606 7.81993 30.714 8.3955 30.3294C8.97108 29.9448 9.64773 29.7396 10.34 29.7396C11.2682 29.7396 12.1584 30.1083 12.8148 30.7647C13.4712 31.4211 13.84 32.3113 13.84 33.2396Z", fill: "currentColor" }), h("path", { d: "M35.24 11.3796H15.24C14.8147 11.3796 14.47 11.7243 14.47 12.1496V27.7096C14.47 28.1348 14.8147 28.4796 15.24 28.4796H35.24C35.6652 28.4796 36.01 28.1348 36.01 27.7096V12.1496C36.01 11.7243 35.6652 11.3796 35.24 11.3796Z", fill: "currentColor" }), h("path", { d: "M38.73 33.2396C38.73 33.9318 38.5247 34.6085 38.1401 35.1841C37.7555 35.7596 37.2089 36.2082 36.5693 36.4731C35.9298 36.7381 35.2261 36.8074 34.5472 36.6723C33.8682 36.5373 33.2446 36.2039 32.7551 35.7144C32.2656 35.2249 31.9323 34.6013 31.7972 33.9224C31.6622 33.2434 31.7315 32.5397 31.9964 31.9002C32.2613 31.2606 32.7099 30.714 33.2855 30.3294C33.861 29.9448 34.5377 29.7396 35.23 29.7396C36.1582 29.7396 37.0485 30.1083 37.7048 30.7647C38.3612 31.4211 38.73 32.3113 38.73 33.2396Z", fill: "currentColor" }), h("path", { d: "M31.6299 31.0296C31.63 31.0803 31.6198 31.1306 31.6001 31.1773C31.5804 31.2241 31.5515 31.2664 31.5151 31.3019C31.4788 31.3373 31.4358 31.3651 31.3885 31.3836C31.3412 31.4021 31.2907 31.4109 31.24 31.4096H14.6299C14.5787 31.4109 14.5277 31.4021 14.4799 31.3837C14.4321 31.3654 14.3884 31.3377 14.3513 31.3024C14.3141 31.2671 14.2842 31.2249 14.2634 31.1781C14.2426 31.1312 14.2313 31.0808 14.23 31.0296V30.4196C14.2313 30.3683 14.2426 30.3179 14.2634 30.2711C14.2842 30.2242 14.3141 30.182 14.3513 30.1467C14.3884 30.1114 14.4321 30.0838 14.4799 30.0654C14.5277 30.047 14.5787 30.0382 14.6299 30.0396H31.24C31.2907 30.0382 31.3412 30.0471 31.3885 30.0656C31.4358 30.0841 31.4788 30.1118 31.5151 30.1473C31.5515 30.1827 31.5804 30.225 31.6001 30.2718C31.6198 30.3186 31.63 30.3688 31.6299 30.4196V31.0296Z", fill: "currentColor" }), h("path", { d: "M11.33 28.0495H11.55C11.79 28.0495 12.18 28.0495 12.42 28.0495C12.66 28.0495 12.85 27.7095 12.85 27.2795V18.7195C12.8513 18.618 12.8323 18.5173 12.7941 18.4233C12.7559 18.3292 12.6992 18.2438 12.6274 18.172C12.5557 18.1003 12.4702 18.0436 12.3762 18.0054C12.2822 17.9672 12.1814 17.9482 12.08 17.9495H4.57996C4.35996 17.9495 4.04 18.2695 3.87 18.6495L0.299988 27.0295C0.115213 27.4983 0.0137015 27.9958 0 28.4995V33.0595C0.00259154 33.2629 0.0845485 33.4573 0.228394 33.6011C0.372239 33.745 0.566547 33.8269 0.769958 33.8295H3.76996C4.00084 33.8162 4.22535 33.7485 4.42517 33.6321C4.62499 33.5157 4.79451 33.3538 4.91998 33.1595C4.91998 33.1595 7.90996 28.0495 11.33 28.0495Z", fill: "currentColor" }), h("path", { d: "M11.91 12.3895C11.49 12.3895 11.4 12.1595 11.71 11.8795L24.65 0.209549C24.8091 0.0742734 25.0112 0 25.22 0C25.4288 0 25.6309 0.0742734 25.79 0.209549L38.72 11.8795C39.04 12.1595 38.95 12.3895 38.53 12.3895H11.91Z", fill: "currentColor" }), h("path", { d: "M8.12992 25.9295C8.33149 25.9295 8.52481 25.8495 8.66734 25.7069C8.80987 25.5644 8.88993 25.3711 8.88993 25.1695V19.7795C8.88995 19.577 8.8102 19.3827 8.66795 19.2386C8.5257 19.0944 8.3324 19.0122 8.12992 19.0095H5.23997C5.04997 19.0095 4.75995 19.3295 4.58995 19.7195L2.23997 25.2295C2.19625 25.3056 2.17472 25.3924 2.17778 25.4801C2.18083 25.5678 2.20833 25.6528 2.25724 25.7257C2.30615 25.7985 2.3745 25.8562 2.45451 25.8923C2.53451 25.9283 2.62298 25.9412 2.70994 25.9295H8.12992Z", fill: "white" })));
|
|
872
872
|
}
|
|
873
|
-
static get style() { return stencilCss$
|
|
873
|
+
static get style() { return stencilCss$d; }
|
|
874
874
|
};
|
|
875
875
|
|
|
876
|
-
const stencilCss$
|
|
876
|
+
const stencilCss$c = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
877
877
|
|
|
878
878
|
const IconWarning = class extends HTMLElement {
|
|
879
879
|
constructor() {
|
|
@@ -884,10 +884,10 @@ const IconWarning = class extends HTMLElement {
|
|
|
884
884
|
render() {
|
|
885
885
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-7 -8 38 38" }, h("title", null, "Warning"), h("g", null, h("path", { d: "M11.134 3.5C11.5189 2.83333 12.4811 2.83333 12.866 3.5L22.3923 20C22.7772 20.6667 22.2961 21.5 21.5263 21.5H2.47372C1.70392 21.5 1.22279 20.6667 1.6077 20L11.134 3.5Z", fill: "currentColor" }), h("rect", { x: "12.9", y: "15.6504", width: "1.9", height: "6.65", rx: "0.5", transform: "rotate(-180 12.9 15.6504)", fill: "white" }), h("circle", { fill: "white", cx: "11.95", cy: "17.55", r: "0.95", transform: "rotate(-180 11.95 17.55)" }))));
|
|
886
886
|
}
|
|
887
|
-
static get style() { return stencilCss$
|
|
887
|
+
static get style() { return stencilCss$c; }
|
|
888
888
|
};
|
|
889
889
|
|
|
890
|
-
const stencilCss$
|
|
890
|
+
const stencilCss$b = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
891
891
|
|
|
892
892
|
const IconWhatsapp = class extends HTMLElement {
|
|
893
893
|
constructor() {
|
|
@@ -898,10 +898,10 @@ const IconWhatsapp = class extends HTMLElement {
|
|
|
898
898
|
render() {
|
|
899
899
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-1 -1 22 22" }, h("title", null, "WhatsApp"), h("g", null, h("path", { fill: "currentColor", d: "M15.6044722,4.1101875C14.1199846,2.6296256,12.1364012,1.8,10.0248451,1.8 c-4.3382888,0-7.8831434,3.5227177-7.8831434,7.8622961c0,1.3912182,0.358325,2.7313833,1.0493798,3.9311485 l-1.1133659,4.0715466l4.1719227-1.0976582c1.1517582,0.6254101,2.4442863,0.9572601,3.7624092,0.9572601l0,0 c4.3382883,0,7.8831434-3.5227184,7.8831434-7.8622971C17.9079876,7.581851,17.0889606,5.6035132,15.6044722,4.1101875z M10.0376415,16.2099552L10.0376415,16.2099552c-1.1773529,0-2.3291101-0.3190861-3.3400974-0.9062052l-0.2431493-0.140398 l-2.4826782,0.6509371l0.6654599-2.4122963l-0.1535673-0.2425051c-0.6526625-1.0338411-0.9981906-2.2463703-0.9981906-3.4716635 c0-3.599298,2.9433815-6.5348959,6.5522232-6.5348959c1.753231,0,3.3912878,0.6764636,4.6326265,1.9145205 s1.9195967,2.8717804,1.9195967,4.6203756C16.5770683,13.2743578,13.6464834,16.2099552,10.0376415,16.2099552z M13.6208887,11.3215475c-0.1919594-0.102107-1.1645555-0.5743561-1.3437176-0.6381731 c-0.179163-0.063818-0.3071356-0.102108-0.4479065,0.102107c-0.1279736,0.191452-0.5118923,0.6381741-0.6270685,0.7658091 c-0.1151752,0.127635-0.2303514,0.153161-0.4223108,0.051054c-0.1919594-0.102108-0.8318243-0.3063231-1.5868664-0.9700241 c-0.5758781-0.5360661-0.9725952-1.1742392-1.0877705-1.3784542c-0.1151757-0.191453-0.0127974-0.293561,0.0895805-0.395668 c0.0895815-0.089344,0.1919594-0.229743,0.2943382-0.344615c0.1023779-0.114871,0.1279736-0.1914511,0.1919584-0.3318501 c0.0767851-0.127634,0.038393-0.2425056-0.0127964-0.3446131C8.6171408,7.747776,8.2332211,6.7777524,8.0668554,6.3820848 C7.9132881,5.9991803,7.746923,6.0502348,7.6189494,6.0502348c-0.1151762,0-0.2431488-0.0127635-0.3711219-0.0127635 s-0.3455276,0.0510535-0.5246897,0.242506C6.5311785,6.4841924,6.032084,6.9564414,6.032084,7.926465 s0.7038522,1.9017563,0.8062305,2.0293922c0.1023784,0.127635,1.3821101,2.1187353,3.3656917,2.9611244 c0.4735012,0.204215,0.8318253,0.3190861,1.1261635,0.4084301c0.4735012,0.153162,0.895812,0.127635,1.2413397,0.076581 c0.3839197-0.051053,1.1645555-0.4722481,1.3309202-0.9317331c0.1663656-0.4594851,0.1663656-0.8551531,0.1151762-0.9317331 C13.953619,11.4619455,13.8256454,11.4108915,13.6208887,11.3215475z" }))));
|
|
900
900
|
}
|
|
901
|
-
static get style() { return stencilCss$
|
|
901
|
+
static get style() { return stencilCss$b; }
|
|
902
902
|
};
|
|
903
903
|
|
|
904
|
-
const stencilCss$
|
|
904
|
+
const stencilCss$a = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
905
905
|
|
|
906
906
|
const IconZoomin = class extends HTMLElement {
|
|
907
907
|
constructor() {
|
|
@@ -912,10 +912,10 @@ const IconZoomin = class extends HTMLElement {
|
|
|
912
912
|
render() {
|
|
913
913
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-1 -2 24 24" }, h("title", null, "zoomout"), h("g", null, h("path", { fill: "currentColor", d: "M11.6 5C11.9314 5 12.2 5.26863 12.2 5.6L12.2 16.4C12.2 16.7314 11.9314 17 11.6 17H10.4C10.0686 17 9.8 16.7314 9.8 16.4L9.8 5.6C9.8 5.26863 10.0686 5 10.4 5L11.6 5Z" }), h("path", { fill: "currentColor", d: "M5 10.4C5 10.0686 5.26863 9.8 5.6 9.8H16.4C16.7314 9.8 17 10.0686 17 10.4V11.6C17 11.9314 16.7314 12.2 16.4 12.2H5.6C5.26863 12.2 5 11.9314 5 11.6V10.4Z" }))));
|
|
914
914
|
}
|
|
915
|
-
static get style() { return stencilCss$
|
|
915
|
+
static get style() { return stencilCss$a; }
|
|
916
916
|
};
|
|
917
917
|
|
|
918
|
-
const stencilCss$
|
|
918
|
+
const stencilCss$9 = ":host{display:inline-block;height:var(--utrecht-icon-size);width:var(--utrecht-icon-size)}:host([hidden]){display:none !important}svg{color:var(--utrecht-icon-color, currentColor);height:var(--utrecht-icon-size, 100%);width:var(--utrecht-icon-size, 100%)}";
|
|
919
919
|
|
|
920
920
|
const IconZoomOut = class extends HTMLElement {
|
|
921
921
|
constructor() {
|
|
@@ -926,10 +926,10 @@ const IconZoomOut = class extends HTMLElement {
|
|
|
926
926
|
render() {
|
|
927
927
|
return (h("svg", { xmlns: "http://www.w3.org/2000/svg", version: "1.1", viewBox: "-6 -11 24 24" }, h("title", null, "zoom out"), h("g", null, h("path", { fill: "currentColor", d: "M0 0.5C0 0.223858 0.223858 0 0.5 0H11.5C11.7761 0 12 0.223858 12 0.5V1.5C12 1.77614 11.7761 2 11.5 2H0.5C0.223858 2 0 1.77614 0 1.5V0.5Z" }))));
|
|
928
928
|
}
|
|
929
|
-
static get style() { return stencilCss$
|
|
929
|
+
static get style() { return stencilCss$9; }
|
|
930
930
|
};
|
|
931
931
|
|
|
932
|
-
const stencilCss$
|
|
932
|
+
const stencilCss$8 = ".utrecht-logo{max-height:var(--utrecht-logo-max-height, 192px);max-width:var(--utrecht-logo-max-width, 96px)}.utrecht-logo__decoration-1{fill:var(--utrecht-logo-decoration-1-color, #fff)}.utrecht-logo__decoration-2{fill:var(--utrecht-logo-decoration-2-color, #c00)}.utrecht-logo__decoration-3{fill:var(--utrecht-logo-decoration-3-color, #ffb70b)}:host{display:inline}:host([hidden]){display:none !important}";
|
|
933
933
|
|
|
934
934
|
const Logo = class extends HTMLElement {
|
|
935
935
|
constructor() {
|
|
@@ -940,10 +940,10 @@ const Logo = class extends HTMLElement {
|
|
|
940
940
|
render() {
|
|
941
941
|
return (h("svg", { version: "1.1", class: "utrecht-logo", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 110.57 58.97" }, h("g", null, h("path", { class: "utrecht-logo__decoration-1", d: "M72.13 35.46c.96-.47 1.84-1.04 2.61-1.7.17-.24.36-.42.58-.54 1.49-1.52 2.42-3.49 2.42-5.9v-2.15c-.06.02-.12.03-.19.03s-.14-.01-.21-.03l-.16.91c-1.48-.28-1.32-1.75-.32-2.25.57-.29.75-.5.58-.72a.227.227 0 00-.18-.09c-.21 0-.52.23-.82.45-.13.1-.3.15-.48.15-.39 0-.81-.25-.99-.84l-.52.29c-.09-1.11.6-1.66 1.3-1.66.33 0 .67.12.93.36.1.09.2.13.3.13.32 0 .54-.4.11-.63-.41-.22-.8-.9-.42-1.33l-.62-.58c.28-.17.58-.25.86-.25.3 0 .59.1.83.3v-7.84a.53.53 0 01-.41-.5c0-.3.18-.48.41-.57v-.65c-.47.1-.82.39-.96.79l-.66.01c-.03-.5.21-.95.72-1.12v-.65c-.43.09-.71.3-.88.49-.05.05-.09.11-.14.17l-.5.01c-.02-.48.22-.91.67-1.06v-.3H51.53v.3c.46.15.7.58.67 1.06l-.5-.01c-.04-.06-.09-.11-.14-.17-.17-.18-.46-.39-.88-.49v.65c.5.17.74.62.72 1.12l-.66-.01c-.14-.4-.49-.68-.96-.79v.65c.23.09.4.27.4.57 0 .26-.21.46-.4.5v7.83c.24-.2.52-.29.82-.29.29 0 .59.09.86.25l-.62.58c.37.44-.02 1.11-.42 1.33-.43.23-.2.63.11.63.1 0 .2-.04.3-.13.26-.24.6-.36.93-.36.7 0 1.39.54 1.3 1.66l-.54-.3c-.18.59-.6.84-.99.84-.18 0-.35-.05-.48-.15-.3-.22-.61-.45-.82-.45-.07 0-.14.03-.18.09-.16.22.01.44.58.72 1.01.5 1.17 1.97-.32 2.25l-.16-.91c-.07.02-.14.03-.21.03-.06 0-.12-.01-.18-.02v2.15c0 2.42.94 4.39 2.44 5.91.19.11.37.28.53.5.77.68 1.67 1.25 2.64 1.73h16.76z" }), h("path", { class: "utrecht-logo__decoration-2", d: "M74.28 8.19H53.27l-.29.61h21.46l-.16-.61zm2.84 3.7v7.23c.22.04.43.13.61.28v-7.39l-.61-.12zm.22 13.28l-.16.91c-.02 0-.04-.01-.06-.01v1.26c0 1.69-.5 3.23-1.47 4.56-.24.32-.5.63-.79.93L51.07 9.01c-.11-.05-.24-.1-.39-.13v.65c.5.17.74.62.72 1.12l-.66-.01c-.14-.4-.49-.68-.96-.79v.65c.23.09.4.27.4.57 0 .26-.21.46-.4.5v7.78c.24-.2.53-.27.83-.27.29 0 .58.11.85.27l-.62.58c.37.44-.02 1.11-.42 1.33-.43.23-.2.63.11.63.1 0 .2-.04.3-.13.26-.24.6-.36.93-.36.7 0 1.39.54 1.3 1.66l-.54-.3c-.18.59-.6.84-.99.84-.18 0-.35-.05-.48-.15-.3-.22-.61-.45-.82-.45-.07 0-.14.03-.18.09-.16.22.01.44.58.72.96.48 1.15 1.86-.11 2.23l-.21.02-.16-.91c-.07.02-.14.03-.21.03-.06 0-.12-.01-.18-.02v2.15c0 2.13.73 3.91 1.92 5.34.01.01.02.02.02.03.04.05.09.1.13.15l.03.03c.05.06.1.11.15.17 0 0 0 .01.01.01.05.06.11.11.16.17l.01.01c.07.04.13.09.19.14.12.1.24.22.34.36.77.68 1.67 1.25 2.64 1.73.11.06.22.12.34.17 1.6.8 3.94 1.67 8.03 1.67s6.43-.87 8.03-1.67c.12-.06.23-.12.34-.17.96-.47 1.84-1.04 2.61-1.7l.06-.09c.01-.01.02-.02.03-.04.01-.01.02-.03.04-.04.01-.02.03-.03.04-.05.01-.01.01-.02.02-.02l.06-.06.01-.01.06-.06.01-.01c.02-.02.05-.04.07-.06.05-.04.1-.07.15-.1.01-.01.02-.01.03-.02 1.49-1.52 2.42-3.49 2.42-5.9v-2.12a.582.582 0 01-.37 0z" }), h("path", { class: "utrecht-logo__decoration-1", d: "M78.15 1.4c0-.11-.01-.21-.02-.32h-1.51c-.01.86-.23 1.69-.61 2.34-.26.44-.57.77-.92.97h.11c1.63.01 2.95-1.33 2.95-2.99zm-1.53 5.73c-.12-.02-.23-.03-.35-.03-.09 0-.18.01-.27.02-.28.03-.56.12-.78.28-.25.18-.43.48-.44.8h.47c.21-.17.46-.29.73-.35v.65c-.46.15-.7.58-.67 1.06l.5-.01c.04-.06.09-.11.14-.17.17-.18.46-.39.88-.49v.65c-.5.17-.74.62-.72 1.12l.66-.01c.15-.42.52-.71 1.02-.8v.64c-.26.08-.47.26-.47.59 0 .29.26.5.47.5l-.02.55h.01c.14 0 .26-.04.39-.1.41-.22.57-.7.56-1.14l.6-.29c0 .02.01.04.01.07.05.37 0 .73-.12 1.04l1.13 1.07c.22-.54.51-1.05.86-1.52.13-.16.26-.32.4-.46-.49-.37-1.09-.83-1.29-.98-.63-.47-1.21-.99-1.81-1.5-.37-.31-.75-.62-1.15-.89-.23-.15-.48-.25-.74-.3zm10.49 19.85c.09.05.18.07.27.07.22 0 .43-.12.55-.31-.02-.11-.06-.23-.09-.34-.1-.3-.25-.59-.46-.87-.27-.36-.63-.69-1.11-.96-.07-.04-.15-.09-.24-.14.32.39.51.67.63.91.13.24.19.43.28.61a.655.655 0 00.17 1.03zm-46.27-1.65c.12-.23.31-.52.63-.91-.08.05-.17.1-.24.14-.48.27-.84.6-1.11.96-.21.28-.35.58-.46.87-.04.11-.07.23-.09.34.12.19.33.31.55.31.09 0 .18-.02.27-.07.33-.17.46-.61.23-.95a.55.55 0 00-.07-.09c.1-.17.16-.36.29-.6zM82.27 7.59c.12 0 .25-.01.38-.02-.39-.14-.7-.37-.9-.69-.28-.43-.32-.89-.21-1.3-.02 0-.04.01-.06.01-.47.1-.71.46-.62.94.13.72.58 1.06 1.41 1.06zm5.71 20.21c.01-.1.02-.2.02-.31a1.222 1.222 0 01-1.19.03c-.35-.18-.59-.51-.66-.9-.05-.25-.02-.51.08-.74 0 0 0-.01-.01-.01-.27-.05-.57-.09-.9-.13-.55-.06-1.05-.09-1.51-.09-4.3 0-4.65 2.36-4.65 2.36-.67 2.51 1.34 3.64 1.34 3.64s.46 2.29-.56 3.16l-1.06-.36-.53-.18-.3-.1c-.48-.68-1.26-1.16-2-1.16-.72 0-1.41.46-1.75 1.65l.75-.16c0 .77.25.97.64.97.08 0 .17-.01.26-.02.11-.02.22-.04.34-.06.37-.07.64-.15.83-.15.18 0 .3.07.37.26.1.29-.18.47-.54.56-.88.2-1.38.82-1.22 1.65.04.19.1.38.21.59.04.09.09.17.15.26 0 0 .01 0 .01.01l.87-.53c.13.13.28.18.43.18.33 0 .65-.24.77-.45l.03-.06c.1-.2.11-.43.11-.64 0-.12-.01-.24-.01-.35 0-.13 0-.24.03-.32a.55.55 0 01.32-.33.432.432 0 01.42.06c.21.15.21.38.18.61-.03.24-.07.46.06.66.01.02.02.03.03.05.05.06.11.12.17.17.04.03.22.16.22.21l-.09 1.06c.56-.04 1.18-.16 1.48-.67.06-.1.11-.23.14-.36.11-.39.16-.87.22-1.54.25-.1.47-.23.66-.4.24-.21.43-.47.54-.8.3-.9.56-2.7.16-4.6 0 0 4.03-.5 4.9-.94.08-.61.16-1.22.24-1.78zM84.43 4.6s-.55.33-.44.85c.18.38.41.77.7 1.11l.56-.56c.66-.61 1.24-.83 1.72-.83.63 0 1.07.4 1.25.86.28.7.25 1.26.15 1.62-.08.27-.3.49-.8.53-.09.01-.19.01-.29.01-1.03 0-2.38-.37-2.38-.37-.21 1.12-.34 1.34 1.26 1.34.37 0 .83-.01 1.4-.03l-1.6.73c-.18-.01-.35-.02-.52-.02-1.18 0-2.12.35-2.86.92-.17.13-.33.27-.48.42-.57.58-.98 1.3-1.27 2.06-.08.22-.15.44-.21.66-.31 1.16-.35 2.37-.19 3.34.12-.15.24-.29.38-.43l.07-.07c.48-.47 1.29-1.28 2.26-1.78.36-.32.7-.64 1.03-.99.71-.75 1.34-1.58 1.81-2.52-.29 1.01-.78 1.98-1.36 2.87-.23.35-.47.69-.72 1.02-.22.09-.42.19-.62.31-.85.48-1.57 1.22-1.99 1.64-.25.24-.45.51-.64.79-.15.22-.28.44-.42.67-.1.17-.21.35-.31.52-.45.73-1.05 1.45-1.39 1.45-.12 0-.21-.09-.25-.29-.18-.91-.75-1.31-1.37-1.31-.29 0-.59.09-.86.25l.62.58c-.37.44.02 1.11.42 1.33.43.23.2.63-.11.63-.1 0-.2-.04-.3-.13-.26-.24-.6-.36-.93-.36-.7 0-1.39.54-1.3 1.66l.54-.3c.18.59.6.84.99.84.18 0 .35-.05.48-.15.3-.22.61-.45.82-.45.07 0 .14.03.18.09.16.22-.01.44-.58.72-1.01.5-1.17 1.97.32 2.25l.16-.91c.07.02.14.03.21.03.43 0 .73-.38.78-.66.07-.41.05-.66.07-.92.01-.23.16-.33.31-.33.18 0 .36.13.38.36.03.43.02.99.78 1.12l.24.77c.72-.25 1.44-1.08.13-2.48-.02-.71.73-1.12 1.78-1.71.18-.1.37-.21.56-.32l.3-.18c.21-.13 1.02-.72 1.73-1.33l.62.33c-.13.11-.27.23-.43.37-.64.53-1.33 1.05-1.59 1.2l-.15.09c.68.63 1.41 1.18 2.07 1.62.27.18.53.35.77.5s.47.28.66.39c.53.3.95.67 1.27 1.09.21.27.37.56.49.85.12.28.2.57.24.86.02.1.03.19.04.29.02.27.01.53-.02.78-.04.27-.07.54-.11.81-.05.41-.09.81-.12 1.22-.04.48-.06.95-.06 1.42 0 1.44.22 2.47 1.22 3.45.72.71 1.73.88 2.71.95.51.03 1.94.24 2.91.39.56.08.98.55 1.01 1.12.04.77.03 1.78-.24 2.12l-1.32-.18c-.31-.46-1.05-.82-1.77-.82-.56 0-1.11.22-1.42.8-.09.17-.17.37-.21.61l-.03.22.42-.17.24-.1c.01.06.02.11.03.16.14.58.44.79.8.79a1.602 1.602 0 00.61-.15c.34-.14.58-.25.76-.25.12 0 .21.05.29.19.11.19 0 .35-.19.48-.06.04-.14.08-.21.11-1.01.42-1.3 1.4-.37 2.42l.7-.62c.11.07.22.1.32.1.34 0 .65-.31.73-.54.13-.35-.01-.75-.06-1.04-.01-.08-.02-.16-.01-.22a.49.49 0 01.26-.36.414.414 0 01.37-.01c.06.03.11.07.15.12.09.11.11.26.11.41 0 .08 0 .17.01.25.02.14.06.27.18.38.06.05.12.09.18.13.04.02.23.11.24.15l.09.98c.7-.17 1.47-.51 1.28-1.6-.03-.18-.09-.39-.19-.62-.03-.08-.07-.17-.12-.26.61-.3 1.01-.87 1.11-1.54.09-.61-.01-2.78-.08-4.02-.03-.5-.41-.91-.9-.98-.56-.08-1.28-.19-1.81-.3-.84-.18-1.65-.55-1.84-1.15-.16-.52-.07-.58-.02-1.11.04-.41.09-.83.12-1.24 0-.06.01-.13.01-.19.01-.24 0-.49-.03-.73l.15.09c.16.09.33.15.5.2.19.05.38.07.58.07.42 0 .83-.11 1.2-.34.67-.41 1.06-1.12 1.04-1.9-.03-1.39-.82-2.37-1.58-3.32-.36-.45-.74-.92-1.02-1.42-.89-1.6-1.1-3.34-.62-5.17.21-.8.69-1.52 1.2-2.29.19-.29.37-.56.55-.86 0 0 .4.18.66.12a.84.84 0 00.22-.1c.61-.38 1.26-1.93 1.23-3.79-.02-1.48-.37-2.71-1.06-3.72.15.42.28.86.36 1.3.09.48.12.98.09 1.46-.03.49-.13.96-.29 1.4.07-.47.07-.94.01-1.4s-.18-.9-.35-1.32a7.15 7.15 0 00-.54-1.07c.14.86.14 1.73-.09 2.81-.14.67-.43 1.31-.68 1.87-.23.51-.4.92-.47 1.26-.08.37-.03.65.22.88-.04.07-.09.14-.13.21-.11.17-.23.35-.35.53-.52.79-1.06 1.6-1.3 2.52-.52 2-.28 3.98.69 5.73.31.56.71 1.05 1.09 1.53.71.89 1.39 1.73 1.42 2.87.01.52-.24.97-.68 1.24-.46.28-1.01.3-1.48.07-.01-.01-.03-.01-.04-.02-.36-.19-.68-.55-.87-.97-.01-.02-.01-.04-.02-.06-.23-.67-.51-1.33-.83-1.96-.94-1.88-2.11-3.64-2.85-5.62-.64-1.7-.35-3.77-.35-3.77.65.26 1.6.29 1.6.29-.03-2.12 4.52-7.04 1.75-13.04-.19.31-.44.63-.79.96l-.25.24v-.87c1.45-1.5.78-2.93.24-3.41-.41.15-.88.6-1.23 1.15l-.61-.2c.15-.25.32-.49.51-.71a.455.455 0 00-.19-.08c-.03 0-.07-.01-.12-.01-.91 0-4.33.79-4.67.97l-.27.92c-.93.25-1.79.75-2.4 1.08.05.26.33.85.9.78zm6.79 5.87c.25-.69.45-1.4.61-2.12-.08.74-.19 1.47-.36 2.2s-.4 1.44-.67 2.14-.58 1.38-.9 2.05c-.26.53-.53 1.05-.8 1.57a4.62 4.62 0 01-.88-.4c.77-1.11 1.51-2.24 2.13-3.43.33-.65.63-1.32.87-2.01zm-2.63 1.09c-.16.48-.32.97-.52 1.45s-.45.95-.71 1.39l-.48.81c-.34-.12-.68-.19-1.01-.21.29-.34.59-.69.87-1.03.32-.39.61-.78.88-1.19.26-.42.5-.86.73-1.31s.45-.91.68-1.36c-.14.48-.29.97-.44 1.45zm-.2-8.65c-.7.69-.93 1.11-.93 1.11-.93.04-1.13-.55-1.13-1.13.91.25 2.06.02 2.06.02zm-12.4 2.12H51.55v1.46c.33.03.75.14 1.12.4.42.31.68.79.69 1.28v.02h20.79v-.02c.01-.49.27-.97.69-1.28.38-.28.82-.38 1.15-.41V5.03zM56.67 7.66l-2.01-1 2.01-1 2.01 1-2.01 1zm7.09-.11c-.98 0-1.78-.4-1.78-.89s.8-.89 1.78-.89 1.78.4 1.78.89-.8.89-1.78.89zm7.09.11l-2.01-1 2.01-1 2.01 1-2.01 1zM49.98 35.5c.07-.19.19-.26.37-.26.19 0 .46.07.83.15.12.02.23.04.34.06.09.01.18.02.26.02.39 0 .64-.19.64-.97l.75.16c-.34-1.19-1.03-1.65-1.75-1.65-.74 0-1.52.49-2 1.16l-.3.1-.51.2-1.06.36c-1.03-.87-.56-3.16-.56-3.16s2.01-1.13 1.34-3.64c0 0-.35-2.36-4.65-2.36-.46 0-.96.03-1.51.09-.33.04-.63.08-.9.13 0 0 0 .01-.01.01.1.23.13.49.08.74a1.252 1.252 0 01-1.22 1.04c-.22 0-.43-.06-.63-.17 0 .11.01.21.02.31.08.56.16 1.16.21 1.79.87.44 4.9.94 4.9.94-.39 1.9-.14 3.7.16 4.6.11.33.3.59.54.8.19.17.41.3.66.4.05.66.1 1.15.22 1.54.03.14.08.26.14.36.3.51.92.63 1.48.67l-.09-1.06c0-.05.19-.18.22-.21.06-.05.12-.11.17-.17.01-.02.02-.03.03-.05.13-.21.09-.43.06-.66-.03-.23-.03-.46.18-.61a.432.432 0 01.42-.06c.14.05.27.17.32.33.03.08.03.19.03.32 0 .11-.01.23-.01.35 0 .21.02.44.11.64l.03.06c.12.2.44.45.77.45.15 0 .3-.05.43-.18l.87.53s.01 0 .01-.01c.06-.09.1-.18.15-.26.1-.21.17-.4.21-.59.16-.84-.34-1.45-1.22-1.65-.34-.11-.63-.29-.53-.59zm32.74 4.63c-.24-.37-.53-.63-.8-.83-.1-.06-.2-.11-.31-.17l-.28-.14c-.48.41-1.13.51-1.61.54l-.73.05.06-.73.06-.76c-.08-.07-.16-.15-.24-.25 0-.01-.01-.01-.01-.02-.03.09-.07.18-.12.26-.22.38-.74.76-1.31.76-.15 0-.29-.03-.43-.08l-.33.2c.02.02.05.04.07.06 1.07.99 1.87 1.1 3.23 1.41.92.21 1.78.74 2.07 1.69.17.55.14 1.15.11 1.72 0 0 1.88-1.07.88-3.18-.08-.15-.19-.34-.31-.53zm-12.83-.73c-.59-.6-1.22-1.11-1.85-1.41a7.15 7.15 0 00-1.53-.53c-.32-.07-.63-.12-.92-.15-.17-.02-.33-.03-.49-.04-.42.02-.87.03-1.34.03-.47 0-.92-.01-1.34-.03a8.358 8.358 0 00-1.42.19c-.49.11-1.01.28-1.53.53-.63.31-1.26.81-1.85 1.41-.04.04-.07.07-.1.11-1.28 1.39-.94 2.75-.94 2.75s1.64-2.18 4.09-2.18c1.17 0 2.18.39 2.7.65l.38.2.38-.2c.52-.25 1.53-.65 2.7-.65 2.45 0 4.09 2.18 4.09 2.18s.35-1.36-.94-2.75a.73.73 0 00-.09-.11zm-12.72-.44c.97-.98 2.04-1.6 3.01-1.93-.88-.14-1.63-.32-2.3-.53-.07 0-.14-.01-.21-.01-.21 0-.42.01-.61.03-.56.07-1.09.17-1.6.17-1.33 0-2.5-.2-3.45-.46.1.13.19.27.25.43.15.37.18.79.09 1.22l.11.03c.18.04.35.08.49.1.27.05.43.06.43.06s-.24.13-.58.36c-.41.28-.96.7-1.43 1.21-2.21 2.43.23 4.27.23 4.27s-.54-2.39.61-3.15c1.84-1.2 2.82-.17 4.88-1.74.03 0 .05-.03.08-.06zm-6.33.02l-.33-.2c-.13.05-.28.08-.43.08-.58 0-1.1-.38-1.31-.76-.05-.09-.09-.17-.12-.26 0 .01-.01.01-.01.02-.08.1-.16.18-.24.25l.06.76.06.73-.73-.05c-.48-.03-1.12-.13-1.61-.54l-.28.14c-.11.06-.21.11-.31.17-.28.2-.56.46-.8.83-.13.19-.23.37-.31.55-1 2.11.88 3.18.88 3.18-.03-.57-.05-1.17.11-1.72.29-.95 1.15-1.47 2.07-1.69 1.37-.32 2.16-.42 3.23-1.41.03-.04.05-.06.07-.08zm23.87-.53c-.34-.23-.58-.36-.58-.36s.17-.02.43-.06c.14-.02.31-.06.49-.1.03-.01.07-.02.11-.03-.09-.43-.06-.85.09-1.22.06-.15.15-.3.25-.43-.95.26-2.12.46-3.45.46-.51 0-1.04-.11-1.6-.17-.19-.02-.4-.03-.61-.03h-.2c-.67.21-1.43.39-2.3.53.97.33 2.04.94 3.01 1.93.03.03.05.05.07.08 2.06 1.57 3.04.54 4.88 1.74 1.15.75.61 3.15.61 3.15s2.43-1.84.23-4.27c-.47-.52-1.03-.95-1.43-1.22zm24.01 3.11c.07.43.03.81-.13 1.15-.34.72-1.09.98-1.62 1.12l-.71.18-.07-.73-.07-.68c-.06-.04-.13-.09-.19-.14-.01.06-.03.12-.05.18-.17.47-.71.95-1.32.95-.06 0-.12 0-.18-.01l-.43.38-.46.41-.42-.46c-.59-.64-.83-1.36-.68-2.02.05-.21.13-.41.25-.59-.37 0-.7-.14-.95-.4-.09-.1-.18-.21-.24-.34l-.04.01-.97.4.11-1.04c0-.04.01-.07.01-.11-.43.07-.95.23-1.61.48-.09.05-.19.09-.28.12-.05.02-.09.04-.14.05.21.12.42.24.61.36.95.61 1.6 1.27 1.94 1.96.21.22.44.46.69.73 1.03 1.1 2.42 1.61 3.85 1.61 2.45 0 4.98-1.51 5.87-4.17-.01.01-1.22.42-2.77.6zm-9.97-.22c-1.27-.8-2.67-1.25-2.67-1.25.25.02.48.03.7.03.55 0 1-.07 1.37-.18.21-.06.4-.14.56-.22 1.17-.6 1.21-1.67 1.21-1.67-.93.63-1.75.85-2.51.85-.98 0-1.87-.35-2.78-.61-.27-.08-.54-.11-.8-.11-.75 0-1.4.28-1.77.48.47.29.87.66 1.18 1.13.12.19.23.38.32.56.3.41.49.77.79 1.01.69.58 1.65.7 2.52.76 2.64.2 3.72 2.58 3.72 2.58.22-.55.18-1.07-.03-1.54-.33-.72-1.04-1.33-1.81-1.82zm-43.31-2.68c-.37-.2-1.01-.48-1.77-.48-.26 0-.52.03-.8.11-.92.26-1.8.61-2.78.61-.76 0-1.58-.21-2.51-.85 0 0 .05 1.07 1.21 1.67.16.08.35.16.56.22.37.11.83.18 1.37.18.22 0 .45-.01.7-.03 0 0-1.4.45-2.67 1.25-.77.49-1.48 1.1-1.8 1.82-.21.47-.25.98-.03 1.54 0 0 1.07-2.38 3.72-2.58.87-.07 1.82-.19 2.52-.76.3-.25.49-.61.79-1.01.09-.19.2-.37.32-.56.3-.47.7-.85 1.17-1.13zm-15.72 2.08c-.04.09-.08.18-.12.26-.09.23-.16.43-.19.62-.2 1.09.58 1.43 1.28 1.6l.09-.98c.01-.04.2-.13.24-.15.06-.04.13-.08.18-.13a.59.59 0 00.18-.38c.01-.08.01-.16.01-.25.01-.15.03-.3.11-.41.04-.05.08-.09.15-.12a.414.414 0 01.37.01c.13.07.24.2.26.36.01.06 0 .14-.01.22-.05.29-.19.69-.06 1.04.08.23.39.54.73.54.11 0 .21-.03.32-.1l.7.62c.93-1.02.64-2-.37-2.42-.08-.03-.15-.07-.21-.11-.19-.13-.3-.3-.19-.48.08-.14.17-.19.29-.19.18 0 .41.11.76.25a1.602 1.602 0 00.61.15c.36 0 .65-.21.8-.79l.03-.16.24.1.42.17-.03-.22c-.04-.24-.12-.44-.21-.61-.31-.57-.86-.8-1.42-.8-.72 0-1.46.36-1.77.82l-1.32.18c-.27-.34-.28-1.34-.24-2.12.03-.57.45-1.03 1.01-1.12.96-.14 2.4-.35 2.91-.39.97-.07 1.98-.24 2.71-.95 1-.99 1.22-2.02 1.22-3.45 0-.47-.02-.94-.06-1.42-.03-.41-.08-.82-.12-1.22-.03-.27-.07-.54-.11-.81a3.38 3.38 0 01.02-1.07c.05-.29.13-.57.24-.86.12-.3.29-.58.49-.85.32-.42.74-.79 1.27-1.09.19-.11.42-.24.66-.39s.5-.31.77-.5c.66-.44 1.39-.99 2.07-1.62l-.15-.09c-.25-.15-.94-.66-1.59-1.2-.16-.13-.3-.25-.43-.37l.62-.33c.72.61 1.52 1.21 1.73 1.33l.3.18c.19.11.38.22.56.32 1.05.6 1.8 1.01 1.78 1.71-1.3 1.4-.59 2.23.13 2.48l.24-.77c.76-.13.75-.69.78-1.12.02-.23.2-.36.38-.36.15 0 .3.1.31.33.02.25 0 .51.07.92.05.28.35.66.78.66.07 0 .14-.01.21-.03l.16.91c1.48-.28 1.32-1.75.32-2.25-.57-.29-.75-.5-.58-.72.05-.07.11-.09.18-.09.21 0 .52.23.82.45.13.1.3.15.48.15.39 0 .81-.25.99-.84l.54.3c.09-1.11-.6-1.66-1.3-1.66-.33 0-.67.12-.93.36-.1.09-.2.13-.3.13-.32 0-.54-.4-.11-.63.41-.22.8-.9.42-1.33l.62-.58c-.28-.17-.58-.25-.86-.25-.62 0-1.19.4-1.37 1.31-.04.21-.13.29-.25.29-.34 0-.94-.73-1.39-1.45-.11-.17-.21-.35-.31-.52-.13-.23-.27-.45-.42-.67-.19-.28-.39-.55-.64-.79-.42-.42-1.15-1.15-1.99-1.64-.2-.11-.41-.22-.62-.31-.25-.33-.5-.67-.72-1.02-.59-.9-1.08-1.86-1.36-2.87.46.95 1.1 1.78 1.81 2.52.33.35.67.67 1.03.99.97.5 1.78 1.31 2.26 1.78l.07.07c.14.14.27.28.38.43.16-.98.12-2.19-.19-3.34-.06-.22-.13-.45-.21-.66-.29-.77-.7-1.49-1.27-2.06a4.81 4.81 0 00-.48-.42c-.74-.57-1.68-.92-2.86-.92-.17 0-.34.01-.52.02l-1.6-.73c.57.01 1.03.03 1.4.03 1.6 0 1.47-.22 1.26-1.34 0 0-1.35.37-2.38.37-.1 0-.2 0-.29-.01-.5-.04-.72-.26-.8-.53-.1-.36-.13-.92.15-1.62.18-.46.62-.86 1.25-.86.48 0 1.06.23 1.72.83l.56.56c.29-.34.52-.73.7-1.11.12-.52-.44-.85-.44-.85.57.07.85-.52.94-.79-.61-.33-1.48-.83-2.4-1.08l-.27-.92C41 1.64 37.58.85 36.68.85c-.05 0-.08 0-.12.01-.07.01-.14.04-.19.08.19.21.36.45.51.71l-.61.2C35.93 1.3 35.46.84 35.04.7c-.55.48-1.21 1.91.24 3.41v.87l-.25-.24c-.35-.33-.6-.65-.79-.96-2.77 6 1.78 10.92 1.75 13.04 0 0 .95-.03 1.6-.29 0 0 .29 2.07-.35 3.77-.74 1.98-1.91 3.74-2.85 5.62-.32.64-.6 1.29-.83 1.96-.01.02-.01.04-.02.06-.19.41-.51.77-.87.97-.01.01-.03.01-.04.02-.47.24-1.02.21-1.48-.07-.45-.27-.69-.73-.68-1.24.03-1.14.7-1.98 1.42-2.87.38-.48.78-.97 1.09-1.53.97-1.75 1.21-3.73.69-5.73-.24-.92-.78-1.73-1.3-2.52l-.35-.53c-.05-.07-.09-.14-.13-.21.25-.23.3-.51.22-.88-.07-.34-.25-.75-.47-1.26-.25-.56-.54-1.2-.68-1.87-.23-1.08-.23-1.95-.09-2.81-.21.34-.39.7-.54 1.07-.17.42-.29.86-.35 1.32s-.06.93.01 1.4c-.16-.44-.26-.92-.29-1.4-.03-.49 0-.98.09-1.46.08-.44.2-.88.36-1.3-.69 1.01-1.04 2.24-1.06 3.72-.02 1.86.62 3.42 1.23 3.79.08.05.15.08.22.1.26.06.66-.12.66-.12.18.3.36.57.55.86.51.77.99 1.5 1.2 2.29.47 1.83.27 3.57-.62 5.17-.28.5-.65.97-1.02 1.42-.76.95-1.55 1.93-1.58 3.32-.02.78.37 1.49 1.04 1.9.36.22.78.34 1.2.34.19 0 .39-.03.58-.07.17-.05.34-.11.5-.2l.15-.09c-.03.24-.04.49-.03.73 0 .06.01.13.01.19.03.41.09.83.12 1.24.05.53.14.59-.02 1.11-.19.6-1 .96-1.84 1.15-.53.12-1.25.23-1.81.3-.5.07-.87.48-.9.98-.07 1.23-.17 3.41-.08 4.02.06.68.46 1.25 1.07 1.55zM41.18 2.89c0 .57-.21 1.17-1.13 1.13 0 0-.24-.42-.93-1.11-.01 0 1.14.23 2.06-.02zm-2.03 8.58c.23.45.47.89.73 1.31.27.42.56.81.88 1.19.28.34.58.69.87 1.03-.33.02-.66.09-1.01.21l-.48-.81c-.26-.44-.5-.91-.71-1.39-.2-.48-.37-.96-.52-1.45-.16-.48-.3-.97-.44-1.46.23.46.45.92.68 1.37zm-1.54 3.27c-.33-.67-.64-1.35-.9-2.05-.27-.7-.49-1.42-.67-2.14-.17-.73-.29-1.46-.36-2.2.16.72.36 1.43.61 2.12s.55 1.36.88 2.01c.62 1.19 1.36 2.32 2.13 3.43-.33.19-.63.32-.88.4-.28-.52-.55-1.04-.81-1.57zM56.52 2.97h.69c.18.58.47 1.07.83 1.43h1.4c-.35-.2-.67-.53-.92-.97-.38-.65-.6-1.48-.61-2.34h-1.98c-.01.86-.23 1.69-.61 2.34-.26.44-.57.77-.92.97h1.31c.34-.36.63-.85.81-1.43zM52.48 4.4h.15c-.35-.2-.67-.53-.92-.97-.38-.65-.6-1.48-.61-2.34h-1.55c-.01.09-.01.18-.01.28-.02 1.64 1.34 3.03 2.94 3.03zm10.94-1.43h.69c.18.58.47 1.07.83 1.43h1.49c-.35-.2-.66-.53-.92-.97-.38-.65-.6-1.48-.61-2.34h-2.16c-.01.86-.23 1.69-.61 2.34-.26.44-.57.77-.92.97h1.4c.34-.36.63-.85.81-1.43zM38.37 40.84c.19-.12.39-.24.61-.36-.05-.02-.09-.04-.14-.05-.1-.04-.19-.08-.28-.12-.66-.26-1.18-.41-1.61-.48 0 .04.01.07.01.11l.11 1.04-.97-.4-.04-.01c-.07.13-.15.24-.24.34-.25.26-.58.4-.95.4.12.18.2.38.25.59.15.66-.1 1.38-.68 2.02l-.42.46-.46-.41-.43-.38c-.06.01-.12.01-.18.01-.61 0-1.15-.48-1.32-.95-.02-.06-.04-.12-.05-.18-.06.05-.13.1-.19.14l-.07.68-.07.73-.71-.18c-.53-.13-1.28-.4-1.62-1.12-.16-.34-.2-.72-.13-1.15-1.55-.18-2.77-.59-2.77-.59.89 2.67 3.42 4.17 5.87 4.17 1.43 0 2.83-.51 3.85-1.61.25-.26.47-.51.69-.73.34-.7.99-1.36 1.94-1.97zM70.43 2.97h.69c.18.58.47 1.07.83 1.43h1.37c-.35-.2-.67-.53-.92-.97-.38-.65-.6-1.48-.61-2.34h-2.05c-.01.86-.23 1.69-.61 2.34-.26.44-.57.76-.92.97h1.4c.35-.36.64-.85.82-1.43zM46.3 11.25c.35.46.64.98.86 1.52l1.13-1.08c-.12-.31-.16-.67-.12-1.04 0-.02.01-.04.01-.07l.6.29c-.02.45.15.92.56 1.14.13.07.24.1.39.1h.01l-.02-.55c.2 0 .47-.21.47-.5 0-.33-.21-.51-.47-.59v-.64c.5.09.87.39 1.02.8l.66.01c.03-.5-.21-.95-.72-1.12v-.65c.43.09.71.3.88.49.05.05.09.11.14.17l.5.01c.02-.48-.22-.91-.67-1.06v-.65c.28.06.52.17.73.35h.47c-.01-.31-.19-.61-.44-.8-.21-.15-.48-.24-.75-.28-.1-.01-.21-.02-.31-.02-.11 0-.21.01-.32.03-.27.04-.54.15-.77.3-.4.27-.78.58-1.15.89-.6.5-1.18 1.03-1.81 1.5-.2.15-.81.61-1.29.98.15.16.28.31.41.47zm.35-4.72c.09-.48-.15-.83-.62-.94-.02 0-.04-.01-.06-.01.11.41.06.86-.21 1.3-.2.31-.51.55-.9.69.13.02.26.02.38.02.83 0 1.28-.34 1.41-1.06z" }), h("path", { class: "utrecht-logo__decoration-3", d: "M0 .46h6.7v56.91H0z" }), h("ellipse", { class: "utrecht-logo__decoration-2", cx: "63.76", cy: "6.66", rx: "1.78", ry: ".89" }), h("path", { class: "utrecht-logo__decoration-2", d: "M58.67 6.66l-2-1.01-2.01 1.01 2.01 1zm14.19 0l-2.01-1.01-2 1.01 2 1z" }), h("path", { class: "utrecht-logo__decoration-2", d: "M101.29 40.38c-.02.01-1.19.39-2.67.56.48-.41.8-.99.9-1.65.07-.5.05-1.9-.08-4.14-.04-.8-.65-1.46-1.44-1.56-.74-.1-1.35-.2-1.76-.29-.85-.19-1.31-.5-1.37-.72-.08-.24-.07-.27-.04-.49.01-.1.03-.22.05-.38.02-.18.03-.35.06-.54.03-.23.05-.47.07-.71v-.04c.19.04.39.06.58.06.53 0 1.06-.14 1.52-.43.86-.53 1.36-1.44 1.34-2.45-.04-1.6-.93-2.72-1.72-3.7-.36-.45-.71-.88-.96-1.33-.81-1.46-1-3.04-.56-4.71.18-.69.63-1.38 1.11-2.1.1-.15.2-.31.3-.46.07.01.14.02.21.02.3 0 .55-.1.73-.21 1.15-.71 1.55-3.03 1.53-4.33-.03-2.72-1.1-4.68-3.25-5.99l-.74-.45.28.82c.65 1.89 1 3.06.59 4.96-.13.61-.39 1.19-.64 1.75-.39.88-.77 1.73-.44 2.42-.08.12-.16.25-.24.37-.55.83-1.12 1.69-1.38 2.71-.56 2.16-.3 4.3.75 6.19.33.6.75 1.12 1.15 1.62.67.84 1.26 1.56 1.28 2.49.01.39-.24.6-.38.69-.28.17-.61.18-.9.03-.23-.12-.45-.36-.59-.64-.22-.65-.5-1.33-.88-2.08-.34-.68-.71-1.35-1.07-2-.66-1.2-1.29-2.33-1.75-3.56-.35-.95-.39-2.04-.37-2.74.5.09.94.11 1.02.11l.65.02-.01-.65c-.01-.49.38-1.34.82-2.33 1.21-2.68 3.04-6.72.69-11.35-.02-.03-.03-.07-.05-.1.1-.32.13-.61.12-.85-.01-.89-.45-1.59-.85-1.95l-.28-.25-.35.12c-.23.08-.45.22-.67.39-.15-.14-.34-.24-.56-.27-.06-.01-.12-.01-.2-.01-.97 0-4.5.8-4.96 1.04l-.24.12-.08.26-.17.59c-.78.26-1.49.65-2.02.94-.07.04-.14.08-.21.11l-.4.22.09.45c.01.07.36 1.83 1.38 3.02l.05.05c-.25.02-.47.04-.67.04-.61 0-1.09-.18-1.32-.54-.36-.56-.1-1.16.32-1.47-.23-.1-.45-.16-.72-.16-.16 0-.34.02-.54.07-.8.18-1.25.85-1.1 1.66.17.97.85 1.57 2.03 1.57.24 0 .49-.02.77-.07.4-.07.81-.19 1.22-.32 0 .02-.01.03-.01.05-.1.56-.19 1.04.12 1.43-.86.16-1.64.52-2.3 1.06-.54-.41-1.27-.96-1.38-1.05-.43-.32-.83-.67-1.26-1.03-.17-.15-.35-.3-.53-.45-.37-.31-.77-.63-1.2-.93-.32-.22-.69-.36-1.09-.41V4.73a3.643 3.643 0 002.16-3.32c0-.33-.04-.64-.13-.94h-2.69c.02.18.03.36.03.55 0 1.6-.8 3.01-1.79 3.01s-1.79-1.41-1.79-3.01c0-.19.01-.37.03-.55h-3.37c.02.18.03.36.03.55 0 1.6-.8 3.01-1.79 3.01s-1.79-1.41-1.79-3.01c0-.19.01-.37.03-.55h-3.48c.02.18.03.36.03.55 0 1.6-.8 3.01-1.79 3.01s-1.79-1.41-1.79-3.01c0-.19.01-.37.03-.55h-3.29c.02.18.03.36.03.55 0 1.6-.8 3.01-1.79 3.01s-1.79-1.41-1.79-3.01c0-.19.01-.37.03-.55h-2.73c-.08.29-.12.59-.12.9 0 1.42.83 2.69 2.02 3.29V6.5c-.4.05-.79.19-1.12.42-.43.29-.83.62-1.2.93-.18.15-.35.3-.53.45-.43.36-.83.71-1.26 1.03-.11.08-.84.63-1.38 1.05-.66-.54-1.43-.9-2.3-1.06.31-.4.22-.88.12-1.43 0-.01-.01-.03-.01-.05.41.14.82.25 1.22.32.28.05.53.07.77.07 1.18 0 1.86-.6 2.03-1.57.15-.81-.3-1.48-1.1-1.66-.2-.04-.38-.07-.54-.07-.27 0-.49.06-.72.16.42.31.68.91.32 1.47-.23.37-.72.54-1.32.54-.21 0-.43-.02-.65-.06l.05-.05c1.02-1.19 1.37-2.94 1.38-3.02l.09-.45-.4-.22c-.07-.04-.14-.07-.21-.11-.54-.29-1.24-.68-2.02-.94l-.17-.59-.08-.26-.24-.12c-.46-.24-3.99-1.04-4.96-1.04-.07 0-.14 0-.2.01-.22.03-.41.13-.56.27-.22-.18-.45-.31-.67-.39L34.9.01l-.29.23c-.4.36-.84 1.06-.85 1.95 0 .24.03.53.12.85-.02.04-.04.07-.05.1-2.35 4.63-.52 8.67.69 11.35.44.98.83 1.83.82 2.33l-.01.65.65-.02c.07 0 .51-.02 1.02-.11.02.7-.01 1.8-.37 2.74-.46 1.23-1.09 2.36-1.75 3.56-.36.65-.73 1.32-1.07 2-.37.75-.66 1.43-.88 2.08-.14.28-.35.52-.59.64-.29.15-.62.14-.9-.03a.76.76 0 01-.38-.69c.02-.92.6-1.65 1.28-2.49.4-.5.81-1.01 1.15-1.62 1.05-1.89 1.31-4.03.75-6.19-.26-1.02-.83-1.88-1.38-2.71-.08-.12-.16-.25-.24-.37.33-.69-.04-1.54-.44-2.42-.25-.56-.51-1.14-.64-1.75-.41-1.91-.06-3.07.59-4.96l.28-.82-.74.45c-2.15 1.31-3.22 3.27-3.25 5.99-.02 1.3.39 3.63 1.53 4.33.18.11.42.21.73.21.07 0 .13-.01.21-.02.1.15.2.31.3.46.48.72.93 1.41 1.11 2.1.43 1.67.24 3.26-.56 4.71-.25.45-.59.88-.96 1.33-.79.98-1.68 2.09-1.72 3.7-.02 1 .48 1.92 1.34 2.45.46.29.99.43 1.52.43.2 0 .39-.02.58-.06v.04c.02.24.04.48.07.71.02.19.04.36.06.54.01.16.03.28.05.38.03.21.04.25-.04.49-.07.22-.52.53-1.37.72-.41.09-1.02.19-1.76.29-.79.11-1.4.77-1.44 1.56-.12 2.24-.15 3.64-.08 4.14.1.66.42 1.24.9 1.65-1.48-.17-2.66-.56-2.67-.56l-1.19-.4.4 1.19c.47 1.4 1.36 2.58 2.59 3.41 1.14.77 2.51 1.19 3.87 1.19 1.66 0 3.17-.62 4.26-1.75.01.31.07.61.19.92l.55 1.37.61-1.34c.04-.08.97-2.04 3.19-2.21.95-.07 2.03-.21 2.87-.91h.01c0 .23.02.45.08.67.3 1.24 1.37 1.87 1.41 1.89l.99.57-.06-1.14c-.02-.49-.05-1.05.09-1.51.25-.83 1.12-1.14 1.61-1.26.12-.03.24-.06.35-.08.81-.18 1.47-.33 2.15-.73-.29.57-.41 1.15-.35 1.74.14 1.47 1.34 2.39 1.39 2.43l1.37 1.03-.38-1.67c-.14-.64-.25-2.1.34-2.48.73-.48 1.28-.54 1.92-.61.53-.06 1.1-.13 1.77-.42-.52 1.15-.3 2.09-.28 2.14l.32 1.27.79-1.05c.01-.02 1.49-1.93 3.59-1.93 1.52 0 2.75.75 2.76.76l.33.2.33-.2c.01-.01 1.24-.76 2.76-.76 2.1 0 3.58 1.92 3.59 1.93l.79 1.05.32-1.27c.01-.05.24-.99-.28-2.14.67.29 1.24.36 1.77.42.64.07 1.2.14 1.92.61.59.39.49 1.84.34 2.48l-.38 1.67 1.37-1.03c.05-.04 1.25-.96 1.39-2.43.06-.59-.06-1.17-.35-1.74.68.39 1.34.54 2.15.73.11.03.23.05.35.08.49.11 1.36.43 1.61 1.26.14.46.11 1.02.09 1.51l-.06 1.14.99-.57c.05-.03 1.12-.65 1.41-1.89.05-.22.08-.45.08-.67h.01c.84.7 1.92.83 2.87.91 2.22.17 3.15 2.13 3.19 2.21l.61 1.34.55-1.37c.12-.31.19-.62.19-.92 1.09 1.13 2.6 1.75 4.26 1.75 1.36 0 2.73-.42 3.87-1.19a6.56 6.56 0 002.59-3.41l.4-1.19-1.2.43zM82.27 7.59c-.84 0-1.28-.34-1.41-1.06-.09-.48.15-.83.62-.94.02 0 .04-.01.06-.01-.11.41-.06.86.21 1.3.2.31.51.55.9.69-.13.01-.26.02-.38.02zm-36.52-.71c.28-.43.32-.89.21-1.3.02 0 .04.01.06.01.47.1.71.46.62.94-.13.72-.58 1.06-1.41 1.06-.12 0-.25-.01-.38-.02.39-.14.7-.37.9-.69zm36.36 4.29c.15-.15.31-.29.48-.42.74-.57 1.68-.92 2.86-.92.17 0 .34.01.52.02l1.6-.73c-.57.01-1.03.03-1.4.03-1.6 0-1.47-.22-1.26-1.34 0 0 1.35.37 2.38.37.1 0 .2 0 .29-.01.5-.04.72-.26.8-.53.1-.36.13-.92-.15-1.62-.18-.46-.62-.86-1.25-.86-.48 0-1.06.23-1.72.83l-.56.56a5.04 5.04 0 01-.7-1.11c-.12-.52.44-.85.44-.85-.57.07-.85-.52-.94-.79.61-.33 1.48-.83 2.4-1.08l.27-.92c.35-.18 3.77-.97 4.67-.97.05 0 .08 0 .12.01.07.01.14.04.19.08-.19.21-.36.45-.51.71l.61.2c.34-.55.81-1.01 1.23-1.15.55.48 1.21 1.91-.24 3.41v.87l.25-.24c.35-.33.6-.65.79-.96 2.77 6-1.78 10.92-1.75 13.04 0 0-.95-.03-1.6-.29 0 0-.29 2.07.35 3.77.74 1.98 1.91 3.74 2.85 5.62.32.64.6 1.29.83 1.96.01.02.01.04.02.06.19.41.51.77.87.97.01.01.03.01.04.02.47.24 1.02.21 1.48-.07.45-.27.69-.73.68-1.24-.03-1.14-.7-1.98-1.42-2.87-.38-.48-.78-.97-1.09-1.53-.97-1.75-1.21-3.73-.69-5.73.24-.92.78-1.73 1.3-2.52l.35-.53c.05-.07.09-.14.13-.21-.25-.23-.3-.51-.22-.88.07-.34.25-.75.47-1.26.25-.56.54-1.2.68-1.87.23-1.08.23-1.95.09-2.81.21.34.39.7.54 1.07.17.42.29.86.35 1.32s.06.93-.01 1.4c.16-.44.26-.92.29-1.4.03-.49 0-.98-.09-1.46-.08-.44-.2-.88-.36-1.3.69 1.01 1.04 2.24 1.06 3.72.02 1.86-.62 3.42-1.23 3.79a.84.84 0 01-.22.1c-.26.06-.66-.12-.66-.12-.18.3-.36.57-.55.86-.51.77-.99 1.5-1.2 2.29-.47 1.83-.27 3.57.62 5.17.28.5.65.97 1.02 1.42.76.95 1.55 1.93 1.58 3.32.02.78-.37 1.49-1.04 1.9-.36.22-.78.34-1.2.34-.19 0-.39-.03-.58-.07-.17-.05-.34-.11-.5-.2l-.15-.09c.03.24.04.49.03.73 0 .06-.01.13-.01.19-.03.41-.09.83-.12 1.24-.05.53-.14.59.02 1.11.19.6 1 .96 1.84 1.15.53.12 1.25.23 1.81.3.5.07.87.48.9.98.07 1.23.17 3.41.08 4.02-.1.67-.49 1.24-1.11 1.54.04.09.08.18.12.26.09.23.16.43.19.62.2 1.09-.58 1.43-1.28 1.6l-.09-.98c-.01-.04-.2-.13-.24-.15-.06-.04-.13-.08-.18-.13a.59.59 0 01-.18-.38c-.01-.08-.01-.16-.01-.25-.01-.15-.03-.3-.11-.41a.364.364 0 00-.15-.12.414.414 0 00-.37.01.49.49 0 00-.26.36c-.01.06 0 .14.01.22.05.29.19.69.06 1.04-.08.23-.39.54-.73.54-.11 0-.21-.03-.32-.1l-.7.62c-.93-1.02-.64-2 .37-2.42.08-.03.15-.07.21-.11.19-.13.3-.3.19-.48-.08-.14-.17-.19-.29-.19-.18 0-.41.11-.76.25a1.602 1.602 0 01-.61.15c-.36 0-.65-.21-.8-.79l-.03-.16-.24.1-.42.17.03-.22c.04-.24.12-.44.21-.61.31-.57.86-.8 1.42-.8.72 0 1.46.36 1.77.82l1.32.18c.27-.34.28-1.34.24-2.12-.03-.57-.45-1.03-1.01-1.12-.96-.14-2.4-.35-2.91-.39-.97-.07-1.98-.24-2.71-.95-1-.99-1.22-2.02-1.22-3.45 0-.47.02-.94.06-1.42.03-.41.08-.82.12-1.22.03-.27.07-.54.11-.81a3.38 3.38 0 00-.02-1.07c-.05-.29-.13-.57-.24-.86-.12-.3-.29-.58-.49-.85-.32-.42-.74-.79-1.27-1.09-.19-.11-.42-.24-.66-.39-.24-.15-.5-.31-.77-.5-.66-.44-1.39-.99-2.07-1.62l.15-.09c.25-.15.94-.66 1.59-1.2.16-.13.3-.25.43-.37l-.62-.33c-.72.61-1.52 1.21-1.73 1.33l-.3.18c-.19.11-.38.22-.56.32-1.05.6-1.8 1.01-1.78 1.71 1.3 1.4.59 2.23-.13 2.48l-.24-.77c-.76-.13-.75-.69-.78-1.12a.38.38 0 00-.38-.36c-.15 0-.3.1-.31.33-.02.25 0 .51-.07.92-.05.28-.35.66-.78.66-.07 0-.14-.01-.21-.03l-.16.91c-1.48-.28-1.32-1.75-.32-2.25.57-.29.75-.5.58-.72a.227.227 0 00-.18-.09c-.21 0-.52.23-.82.45-.13.1-.3.15-.48.15-.39 0-.81-.25-.99-.84l-.51.31c-.09-1.11.6-1.66 1.3-1.66.33 0 .67.12.93.36.1.09.2.13.3.13.32 0 .54-.4.11-.63-.41-.22-.8-.9-.42-1.33l-.62-.58c.28-.17.58-.25.86-.25.62 0 1.19.4 1.37 1.31.04.21.13.29.25.29.34 0 .94-.73 1.39-1.45.11-.17.21-.35.31-.52.13-.23.27-.45.42-.67.19-.28.39-.55.64-.79.42-.42 1.15-1.15 1.99-1.64.2-.11.41-.22.62-.31.25-.33.5-.67.72-1.02.59-.9 1.08-1.86 1.36-2.87-.46.95-1.1 1.78-1.81 2.52-.33.35-.67.67-1.03.99-.97.5-1.78 1.31-2.26 1.78l-.07.07c-.14.14-.27.28-.38.43-.16-.98-.12-2.19.19-3.34.06-.22.13-.45.21-.66.29-.76.71-1.48 1.28-2.06zm3.74-3.97c.38-.13.76-.23 1.12-.23.3 0 .58.07.84.22-.01.12-.03.22-.04.27v.01s-.05.05-.25.07c-.07.01-.15.01-.24.01-.39 0-.83-.06-1.22-.13-.39-.06-.98-.19-.98-.19-.06-.32-.01-.66.11-.65.14.03.24.37.66.62zm-.41-.5l.24-.25c.6-.54 1.03-.66 1.28-.66.45 0 .63.35.67.46.04.1.07.2.1.29-.24-.11-.5-.15-.77-.15-.48 0-.99.15-1.52.31zm4.14 30.83c-.74.5-1.43.74-2.16.74-.68 0-1.34-.2-2.04-.42-.19-.06-.38-.12-.58-.17-.31-.09-.64-.13-.97-.13-.8 0-1.49.26-1.94.49.05-.17.21-.81.21-1.3.59-.33 1-.8 1.2-1.41.3-.91.54-2.52.3-4.26.47-.06 1.14-.16 1.81-.27.73-.12 1.33-.24 1.77-.35.21-.05.38-.1.53-.15-.02.35-.03.7-.03 1.05 0 .87.08 1.52.26 2.09.22.68.59 1.27 1.14 1.81.88.87 2.06 1.06 3.1 1.13.37.03 1.39.16 2.86.38.26.04.47.26.48.53.04.72.01 1.15-.03 1.39l-.58-.08c-.48-.52-1.3-.86-2.1-.86-1.01 0-1.77.53-2.11 1.43-.18.02-.38.05-.58.1.38-.58.41-1.12.42-1.19l.05-1.25-1.01.7zm-10.05.11c-.06-.05-.12-.11-.17-.17-.01-.02-.02-.03-.03-.05-.13-.21-.09-.43-.06-.66.03-.23.03-.46-.18-.61a.432.432 0 00-.42-.06c-.14.05-.27.17-.32.33-.03.08-.03.19-.03.32 0 .11.01.23.01.35 0 .21-.02.44-.11.64l-.03.06c-.12.2-.44.45-.77.45a.59.59 0 01-.43-.18l-.87.53s-.01 0-.01-.01c-.06-.09-.1-.18-.15-.26-.1-.21-.17-.4-.21-.59-.16-.84.34-1.45 1.22-1.65.36-.08.65-.27.54-.56-.07-.19-.19-.26-.37-.26-.19 0-.46.07-.83.15-.12.02-.23.04-.34.06-.09.01-.18.02-.26.02-.39 0-.64-.19-.64-.97l-.75.16c.34-1.19 1.03-1.65 1.75-1.65.74 0 1.52.49 2 1.16l.3.1.53.18 1.06.36c1.03-.87.56-3.16.56-3.16s-2.01-1.13-1.34-3.64c0 0 .35-2.36 4.65-2.36.46 0 .96.03 1.51.09.33.04.63.08.9.13 0 0 0 .01.01.01-.1.23-.13.49-.08.74a1.252 1.252 0 001.22 1.04c.22 0 .43-.06.63-.17 0 .11-.01.21-.02.31-.08.56-.16 1.16-.21 1.79-.87.44-4.9.94-4.9.94.39 1.9.14 3.7-.16 4.6-.11.33-.3.59-.54.8-.19.17-.41.3-.66.4-.05.66-.1 1.15-.22 1.54-.03.14-.08.26-.14.36-.3.51-.92.63-1.48.67l.09-1.06c-.03-.06-.21-.19-.25-.22zm1.43-14.76c.17-.27.74-.58 1.33-.92.07-.04.15-.08.23-.13l.33.3c.27.24.55.47.83.69l.01.01 1.38 1.44c.36.38.61.67.78.91l-2.01-.14c-.99 0-1.79.12-2.44.31.09-.14.16-.3.2-.46.16-.76-.21-1.47-.64-2.01zm5.71 2.45c-.12-.23-.31-.52-.63-.91.08.05.17.1.24.14.48.27.84.6 1.11.96.21.28.35.58.46.87.04.11.07.23.09.34a.66.66 0 01-.55.31c-.09 0-.18-.02-.27-.07a.654.654 0 01-.23-.95.55.55 0 01.07-.09c-.1-.17-.17-.36-.29-.6zm-9.32-17.9c.4.27.78.58 1.15.89.6.5 1.18 1.03 1.81 1.5.2.15.81.61 1.29.98-.14.15-.27.3-.4.46-.35.46-.64.98-.86 1.52l-1.13-1.07c.12-.31.16-.67.12-1.04 0-.02-.01-.04-.01-.07l-.6.29c.02.45-.15.92-.56 1.14-.13.07-.24.1-.39.1h-.01l.02-.55c-.2 0-.47-.21-.47-.5 0-.33.21-.51.47-.59v-.64c-.5.09-.87.39-1.02.8l-.66.01c-.03-.5.21-.95.72-1.12v-.65c-.43.09-.71.3-.88.49-.05.05-.09.11-.14.17l-.5.01c-.02-.48.22-.91.67-1.06v-.65c-.28.06-.52.17-.73.35h-.47c.01-.31.19-.61.44-.8.22-.16.5-.25.78-.28.09-.01.18-.02.27-.02a1.928 1.928 0 011.09.33zm-1.34-4c.38-.65.6-1.48.61-2.34h1.51c.01.11.02.21.02.32 0 1.65-1.32 2.99-2.95 2.99h-.11c.35-.21.66-.53.92-.97zm-6.89 0c.38-.65.6-1.48.61-2.34h2.05c.01.86.23 1.69.61 2.34.26.44.57.77.92.97h-1.37c-.35-.36-.64-.85-.83-1.43h-.69c-.18.58-.47 1.07-.83 1.43h-1.4c.36-.21.68-.53.93-.97zm-6.99 0c.38-.65.6-1.48.61-2.34h2.16c.01.86.23 1.69.61 2.34.26.44.57.76.92.97h-1.49c-.35-.36-.64-.85-.83-1.43h-.69c-.18.58-.47 1.07-.83 1.43h-1.4c.36-.21.68-.53.94-.97zm-6.82 0c.38-.65.6-1.48.61-2.34h1.98c.01.86.23 1.69.61 2.34.26.44.57.77.92.97h-1.4c-.35-.36-.64-.85-.83-1.43h-.69c-.18.58-.47 1.07-.83 1.43h-1.31c.37-.21.69-.53.94-.97zm-5.79-2.07c0-.09 0-.18.01-.28h1.55c.01.86.23 1.69.61 2.34.26.44.57.77.92.97h-.15c-1.58.01-2.94-1.38-2.94-3.03zm-2.33 8.45c.63-.47 1.21-.99 1.81-1.5.37-.31.75-.62 1.15-.89.23-.16.49-.26.77-.3.1-.02.21-.03.32-.03.1 0 .2.01.31.02.27.04.54.12.75.28.25.18.43.48.44.8h-.47a1.77 1.77 0 00-.73-.35v.65c.46.15.7.58.67 1.06l-.5-.01c-.04-.06-.09-.11-.14-.17-.17-.18-.46-.39-.88-.49v.65c.5.17.74.62.72 1.12l-.66-.01c-.15-.42-.52-.71-1.02-.8v.64c.26.08.47.26.47.59 0 .29-.26.5-.47.5l.02.55h-.01c-.14 0-.26-.04-.39-.1-.41-.22-.57-.7-.56-1.14l-.6-.29c0 .02-.01.04-.01.07-.05.37 0 .73.12 1.04l-1.13 1.08c-.22-.54-.51-1.05-.86-1.52-.13-.16-.26-.32-.4-.46.47-.38 1.08-.84 1.28-.99zM28.61 39.2c-.09-.61.01-2.78.08-4.02.03-.5.41-.91.9-.98.56-.08 1.28-.19 1.81-.3.84-.18 1.65-.55 1.84-1.15.16-.52.07-.58.02-1.11-.04-.41-.09-.83-.12-1.24 0-.06-.01-.13-.01-.19-.01-.24 0-.49.03-.73l-.15.09c-.16.09-.33.15-.5.2-.19.05-.38.07-.58.07-.42 0-.83-.11-1.2-.34a2.144 2.144 0 01-1.04-1.9c.03-1.39.82-2.37 1.58-3.32.36-.45.74-.92 1.02-1.42.89-1.6 1.1-3.34.62-5.17-.21-.8-.69-1.52-1.2-2.29-.19-.29-.37-.56-.55-.86 0 0-.4.18-.66.12a.84.84 0 01-.22-.1c-.61-.38-1.26-1.93-1.23-3.79.02-1.48.37-2.71 1.06-3.72-.15.42-.28.86-.36 1.3-.09.48-.12.98-.09 1.46.03.49.13.96.29 1.4-.07-.47-.07-.94-.01-1.4s.18-.9.35-1.32c.15-.37.33-.73.54-1.07-.14.86-.14 1.73.09 2.81.14.67.43 1.31.68 1.87.23.51.4.92.47 1.26.08.37.03.65-.22.88.04.07.09.14.13.21.11.17.23.35.35.53.52.79 1.06 1.6 1.3 2.52.52 2 .28 3.98-.69 5.73-.31.56-.71 1.05-1.09 1.53-.71.89-1.39 1.73-1.42 2.87-.01.52.24.97.68 1.24.46.28 1.01.3 1.48.07.01-.01.03-.01.04-.02.36-.19.68-.55.87-.97.01-.02.01-.04.02-.06.23-.67.51-1.33.83-1.96.94-1.88 2.11-3.64 2.85-5.62.64-1.7.35-3.77.35-3.77-.65.26-1.6.29-1.6.29.03-2.12-4.52-7.04-1.75-13.04.19.31.44.63.79.96l.25.24v-.87c-1.45-1.5-.78-2.93-.24-3.41.41.15.88.6 1.23 1.15l.61-.2c-.15-.25-.32-.49-.51-.71.06-.04.12-.07.19-.08.03 0 .07-.01.12-.01.91 0 4.33.79 4.67.97l.3.91c.93.25 1.79.75 2.4 1.08-.1.26-.38.85-.94.79 0 0 .55.33.44.85-.18.38-.41.77-.7 1.11l-.56-.56c-.66-.61-1.24-.83-1.72-.83-.63 0-1.07.4-1.25.86-.28.7-.25 1.26-.15 1.62.08.27.3.49.8.53.09.01.19.01.29.01 1.03 0 2.38-.37 2.38-.37.21 1.12.34 1.34-1.26 1.34-.37 0-.83-.01-1.4-.03l1.6.73c.18-.01.35-.02.52-.02 1.18 0 2.12.35 2.86.92.17.13.33.27.48.42.57.58.98 1.3 1.27 2.06.08.22.15.44.21.66.31 1.16.35 2.37.19 3.34-.12-.15-.24-.29-.38-.43l-.07-.07c-.48-.47-1.29-1.28-2.26-1.78-.36-.32-.7-.64-1.03-.99-.71-.75-1.34-1.58-1.81-2.52.29 1.01.78 1.98 1.36 2.87.23.35.47.69.72 1.02.22.09.42.19.62.31.85.48 1.57 1.22 1.99 1.64.25.24.45.51.64.79.15.22.28.44.42.67.1.17.21.35.31.52.45.73 1.05 1.45 1.39 1.45.12 0 .21-.09.25-.29.18-.91.75-1.31 1.37-1.31.29 0 .59.09.86.25l-.62.58c.37.44-.02 1.11-.42 1.33-.43.23-.2.63.11.63.1 0 .2-.04.3-.13.26-.24.6-.36.93-.36.7 0 1.39.54 1.3 1.66l-.54-.3c-.18.59-.6.84-.99.84-.18 0-.35-.05-.48-.15-.3-.22-.61-.45-.82-.45-.07 0-.14.03-.18.09-.16.22.01.44.58.72 1.01.5 1.17 1.97-.32 2.25l-.16-.91c-.07.02-.14.03-.21.03-.43 0-.73-.38-.78-.66-.07-.41-.05-.66-.07-.92-.01-.23-.16-.33-.31-.33a.38.38 0 00-.38.36c-.03.43-.02.99-.78 1.12l-.24.77c-.72-.25-1.44-1.08-.13-2.48.02-.71-.73-1.12-1.78-1.71-.18-.1-.37-.21-.56-.32l-.3-.18c-.21-.13-1.02-.72-1.73-1.33l-.62.33c.13.11.27.23.43.37.64.53 1.33 1.05 1.59 1.2l.15.09c-.68.63-1.41 1.18-2.07 1.62-.27.18-.53.35-.77.5s-.47.28-.66.39c-.53.3-.95.67-1.27 1.09-.21.27-.37.56-.49.85-.12.28-.2.57-.24.86-.02.1-.03.19-.04.29-.02.27-.01.53.02.78.04.27.07.54.11.81.05.41.09.81.12 1.22.04.48.06.95.06 1.42 0 1.44-.22 2.47-1.22 3.45-.72.71-1.73.88-2.71.95-.51.03-1.94.24-2.91.39-.56.08-.98.55-1.01 1.12-.04.77-.03 1.78.24 2.12l1.32-.18c.31-.46 1.05-.82 1.77-.82.56 0 1.11.22 1.42.8.09.17.17.37.21.61l.03.22-.42-.17-.24-.1c-.01.06-.02.11-.03.16-.14.58-.44.79-.8.79a1.602 1.602 0 01-.61-.15c-.34-.14-.58-.25-.76-.25-.12 0-.21.05-.29.19-.11.19 0 .35.19.48.06.04.14.08.21.11 1.01.42 1.3 1.4.37 2.42l-.7-.62c-.11.07-.22.1-.32.1-.34 0-.65-.31-.73-.54-.13-.35.01-.75.06-1.04.01-.08.02-.16.01-.22a.49.49 0 00-.26-.36.414.414 0 00-.37-.01c-.06.03-.11.07-.15.12-.09.11-.11.26-.11.41 0 .08 0 .17-.01.25a.59.59 0 01-.18.38c-.06.05-.12.09-.18.13-.04.02-.23.11-.24.15l-.09.98c-.7-.17-1.47-.51-1.28-1.6.03-.18.09-.39.19-.62.03-.08.07-.17.12-.26-.6-.3-1-.87-1.1-1.54zM40.54 6.97c.36 0 .73.09 1.12.23.42-.26.51-.59.67-.61.12-.01.17.33.11.65 0 0-.59.13-.98.19-.39.07-.83.13-1.22.13-.09 0-.17 0-.24-.01-.19-.02-.25-.06-.25-.07v-.01a.854.854 0 01-.04-.27c.25-.16.53-.23.83-.23zm-.77-.43c.02-.09.06-.19.1-.29.04-.11.22-.46.67-.46.26 0 .69.11 1.28.66l.24.25c-.53-.17-1.05-.31-1.53-.31-.26 0-.51.05-.76.15zm7.77 28.29l1.07-.36.53-.18.3-.1c.48-.68 1.26-1.16 2-1.16.72 0 1.41.46 1.75 1.65l-.75-.16c0 .77-.25.97-.64.97-.08 0-.17-.01-.26-.02-.11-.02-.22-.04-.34-.06-.37-.07-.64-.15-.83-.15-.18 0-.3.07-.37.26-.1.29.18.47.54.56.88.2 1.38.82 1.22 1.65-.04.19-.1.38-.21.59-.04.09-.09.17-.15.26 0 0-.01 0-.01.01l-.87-.53a.59.59 0 01-.43.18c-.33 0-.65-.24-.77-.45l-.03-.06c-.1-.2-.11-.43-.11-.64 0-.12.01-.24.01-.35 0-.13 0-.24-.03-.32a.55.55 0 00-.32-.33.432.432 0 00-.42.06c-.21.15-.21.38-.18.61.03.24.07.46-.06.66-.01.02-.02.03-.03.05-.05.06-.11.12-.17.17-.04.03-.22.16-.22.21l.09 1.06c-.56-.04-1.18-.16-1.48-.67-.06-.1-.11-.23-.14-.36-.11-.39-.16-.87-.22-1.54a2.2 2.2 0 01-.66-.4c-.24-.21-.43-.47-.54-.8-.3-.9-.56-2.7-.16-4.6 0 0-4.03-.5-4.9-.94-.06-.63-.13-1.24-.21-1.79-.01-.1-.02-.2-.02-.31a1.222 1.222 0 001.19.03c.35-.18.59-.51.66-.9.05-.25.02-.51-.08-.74 0 0 0-.01.01-.01.27-.05.57-.09.9-.13.55-.06 1.05-.09 1.51-.09 4.3 0 4.65 2.36 4.65 2.36.67 2.51-1.34 3.64-1.34 3.64s-.5 2.3.52 3.17zm-10.59 3.25c0 .07.04.61.42 1.19-.21-.05-.4-.08-.58-.1-.34-.9-1.1-1.43-2.11-1.43-.8 0-1.62.34-2.1.86l-.58.08c-.04-.25-.07-.68-.03-1.39.01-.27.22-.49.48-.53 1.47-.22 2.49-.36 2.86-.38 1.04-.07 2.22-.26 3.1-1.13.55-.54.93-1.14 1.14-1.81.18-.57.26-1.21.26-2.09 0-.35-.01-.7-.03-1.05.15.05.33.1.53.15.44.11 1.04.23 1.77.35.67.11 1.34.21 1.81.27-.24 1.75-.01 3.35.3 4.26.2.6.61 1.08 1.2 1.41 0 .64.2 1.28.2 1.3-.45-.23-1.14-.49-1.94-.49-.33 0-.66.05-.97.13-.2.06-.39.12-.58.17-.7.21-1.35.42-2.04.42-.73 0-1.42-.23-2.16-.74l-1.03-.7.08 1.25zm3.68-12.05c.22.34.1.78-.23.95-.09.05-.18.07-.27.07a.66.66 0 01-.55-.31c.02-.11.06-.23.09-.34.1-.3.25-.59.46-.87.27-.36.63-.69 1.11-.96.07-.04.15-.09.24-.14-.32.39-.51.67-.63.91-.13.24-.19.43-.28.61.01.02.04.05.06.08zm4.03-3.89l.33-.3c.08.04.15.09.23.13.59.33 1.15.65 1.33.92-.43.53-.81 1.25-.62 2 .04.16.11.32.2.46-.65-.19-1.45-.31-2.44-.31l-2.01.14c.17-.24.41-.53.78-.91l1.38-1.44.01-.01c.26-.21.54-.44.81-.68zm-8.92 21.39c-1.03 1.1-2.42 1.61-3.85 1.61-2.45 0-4.98-1.51-5.87-4.17 0 0 1.21.41 2.77.59-.07.43-.03.81.13 1.15.34.72 1.09.98 1.62 1.12l.71.18.07-.73.07-.68c.06-.04.13-.09.19-.14.01.06.03.12.05.18.17.47.71.95 1.32.95.06 0 .12 0 .18-.01l.43.38.46.41.42-.46c.59-.64.83-1.36.68-2.02-.05-.21-.13-.41-.25-.59.37 0 .7-.14.95-.4.09-.1.18-.21.24-.34l.04.01.97.4-.11-1.04c0-.04-.01-.07-.01-.11.43.07.95.23 1.61.48.09.05.19.09.28.12.05.02.09.04.14.05-.21.12-.42.24-.61.36-.95.61-1.6 1.27-1.94 1.96-.21.24-.44.48-.69.74zm7.41-2.17c-.69.58-1.65.7-2.52.76-2.64.2-3.72 2.58-3.72 2.58-.22-.55-.18-1.07.03-1.54.32-.72 1.04-1.34 1.8-1.82 1.27-.8 2.67-1.25 2.67-1.25-.25.02-.48.03-.7.03-.55 0-1-.07-1.37-.18-.21-.06-.4-.14-.56-.22-1.17-.6-1.21-1.67-1.21-1.67.93.63 1.75.85 2.51.85.98 0 1.87-.35 2.78-.61.27-.08.54-.11.8-.11.75 0 1.4.28 1.77.48-.47.29-.87.66-1.18 1.13-.12.19-.23.38-.32.56-.29.41-.48.77-.78 1.01zm4.39-.91c-.92.21-1.78.74-2.07 1.69-.17.55-.14 1.15-.11 1.72 0 0-1.88-1.07-.88-3.18.08-.17.19-.36.31-.55.24-.37.53-.63.8-.83.1-.06.2-.11.31-.17l.28-.14c.48.41 1.13.51 1.61.54l.73.05-.06-.73-.06-.76c.08-.07.16-.15.24-.25 0-.01.01-.01.01-.02.03.09.07.18.12.26.22.38.74.76 1.31.76.15 0 .29-.03.43-.08l.33.2c-.02.02-.05.04-.07.06-1.07 1.01-1.86 1.12-3.23 1.43zm28.37 3.48s.54-2.39-.61-3.15c-1.84-1.2-2.82-.17-4.88-1.74-.02-.03-.05-.05-.07-.08-.97-.98-2.04-1.6-3.01-1.93-.67.11-1.41.19-2.23.23a8.801 8.801 0 011.41.19c.49.11 1.01.28 1.53.53.63.31 1.26.81 1.85 1.41.04.04.07.07.1.11 1.28 1.39.94 2.75.94 2.75s-1.64-2.18-4.09-2.18c-1.17 0-2.18.39-2.7.65l-.38.2-.38-.2c-.52-.25-1.53-.65-2.7-.65-2.45 0-4.09 2.18-4.09 2.18s-.35-1.36.94-2.75c.03-.04.07-.07.1-.11.59-.6 1.22-1.11 1.85-1.41a7.15 7.15 0 011.53-.53c.32-.07.63-.12.92-.15.17-.02.34-.03.5-.04-.82-.04-1.56-.12-2.24-.23-.97.33-2.04.94-3.01 1.93-.03.03-.05.05-.07.08-2.06 1.57-3.04.54-4.88 1.74-1.15.75-.61 3.15-.61 3.15s-2.43-1.84-.23-4.27c.46-.51 1.02-.93 1.43-1.21.34-.23.58-.36.58-.36s-.2-.02-.46-.07c-.14-.02-.31-.06-.49-.1-.03-.01-.07-.02-.11-.03.09-.43.06-.85-.09-1.22-.06-.15-.15-.3-.25-.43.95.26 2.12.46 3.45.46.51 0 1.04-.11 1.6-.17.19-.02.4-.03.61-.03.07 0 .14 0 .21.01-.52-.16-.98-.34-1.4-.52-.34.05-.68.1-1.02.1-1.05 0-1.99-.13-2.8-.32.15-.15.24-.32.3-.51l.09.02 1.02.22-.29-1.01c-.54-1.9-1.82-2.1-2.35-2.1-.85 0-1.77.49-2.38 1.26l-1.3.44c-.29-.53-.27-1.47-.19-2.06.23-.17.56-.46.86-.89.46-.65.92-1.74.52-3.26-.04-.2-.25-.97-1.07-1.65l.15-.49.13-.43c.2-.08.36-.2.48-.33.18.37.53.71.97.82l.07.38.11.66.65-.12c.9-.17 1.5-.73 1.61-1.49.05-.34-.01-.69-.16-1.01.34-.08.65-.27.88-.56l.85.48.08-1.02c.07-.89-.25-1.45-.53-1.75-.36-.39-.88-.61-1.42-.61-.06 0-.11 0-.17.01.01-.05.03-.1.04-.15.03-.17.03-.34 0-.51l.29-.27.64-.6-.75-.45c-.38-.23-.79-.35-1.2-.35-.68 0-1.46.35-1.85 1.29-.16-.19-.37-.46-.6-.83l-.27-.45c-.1-.17-.21-.35-.32-.52v-.01c.33-1.24.32-2.94-.17-4.52l1.23-1.17c.12.14.27.25.43.33.23.12.44.18.68.18h.01l.65-.01v-.8c.02-.02.05-.04.07-.06.18-.17.29-.38.33-.62l.6.01.6.01.03-.6c.01-.18-.01-.35-.04-.52h.22l.6.01.03-.6c.01-.27-.03-.53-.12-.76h.66l-.02-.64c-.01-.5-.27-.98-.69-1.28-.37-.27-.79-.37-1.12-.4V5.02h24.44v1.45c-.33.03-.77.13-1.15.41-.42.31-.68.79-.69 1.28l-.02.64h.66c-.09.23-.14.49-.12.76l.03.6.6-.01h.22c-.04.16-.05.34-.04.52l.03.6.6-.01.6-.01c.04.23.15.45.33.62.02.02.05.04.07.06v.8l.65.01h.01c.24 0 .45-.06.68-.18.16-.09.31-.2.43-.33l1.23 1.17c-.49 1.58-.51 3.28-.17 4.52v.01c-.11.17-.22.35-.32.52l-.27.45c-.22.36-.44.65-.6.84-.39-.94-1.17-1.29-1.85-1.29-.41 0-.82.12-1.2.35l-.75.45.64.6.29.27c-.03.16-.03.33 0 .51.01.05.02.1.04.15-.06 0-.11-.01-.17-.01-.55 0-1.07.22-1.42.61-.28.31-.6.86-.53 1.75l.08 1.02.85-.48c.23.28.54.47.88.56-.15.32-.21.66-.16 1.01.11.77.71 1.33 1.61 1.49l.65.12.11-.66.07-.38c.45-.12.8-.45.97-.82.12.13.28.24.48.33l.11.36.02.07.15.49c-.82.69-1.03 1.45-1.07 1.65-.4 1.52.06 2.61.52 3.26.3.43.63.72.86.89.08.59.1 1.53-.19 2.06l-1.3-.44c-.62-.77-1.53-1.26-2.38-1.26-.53 0-1.81.2-2.35 2.1l-.29 1.01 1.02-.22.09-.02c.06.18.15.36.3.51-.81.18-1.75.32-2.8.32-.34 0-.68-.05-1.02-.1-.42.18-.88.36-1.4.52h.2c.21 0 .42.01.61.03.56.07 1.09.17 1.6.17 1.33 0 2.5-.2 3.45-.46-.1.13-.19.27-.25.43-.15.37-.18.79-.09 1.22l-.11.03c-.18.04-.35.08-.49.1-.27.05-.43.06-.43.06s.24.13.58.36c.41.28.96.7 1.43 1.21 2.25 2.42-.18 4.26-.18 4.26zm6.24-.07c.03-.57.05-1.17-.11-1.72-.29-.95-1.15-1.47-2.07-1.69-1.37-.32-2.16-.42-3.23-1.41-.02-.02-.05-.04-.07-.06l.33-.2c.13.05.28.08.43.08.58 0 1.1-.38 1.31-.76.05-.09.09-.17.12-.26 0 .01.01.01.01.02.08.1.16.18.24.25l-.06.76-.06.73.73-.05c.48-.03 1.12-.13 1.61-.54l.28.14c.11.06.21.11.31.17.28.2.56.46.8.83.13.19.23.37.31.55 1 2.09-.88 3.16-.88 3.16zm8.43.85s-1.07-2.38-3.72-2.58c-.87-.07-1.82-.19-2.52-.76-.3-.25-.49-.61-.79-1.01-.09-.19-.2-.37-.32-.56-.31-.47-.7-.85-1.18-1.13.37-.2 1.01-.48 1.77-.48.26 0 .52.03.8.11.92.26 1.8.61 2.78.61.76 0 1.58-.21 2.51-.85 0 0-.05 1.07-1.21 1.67-.16.08-.35.16-.56.22-.37.11-.83.18-1.37.18-.22 0-.45-.01-.7-.03 0 0 1.4.45 2.67 1.25.77.49 1.48 1.1 1.8 1.82.22.47.27.98.04 1.54zm5.04.43c-1.43 0-2.83-.51-3.85-1.61-.25-.26-.47-.51-.69-.73-.34-.7-.99-1.35-1.94-1.96-.19-.12-.39-.24-.61-.36.05-.02.09-.04.14-.05.1-.04.19-.08.28-.12.66-.26 1.18-.41 1.61-.48 0 .04-.01.07-.01.11l-.11 1.04.97-.4.04-.01c.07.13.15.24.24.34.25.26.58.4.95.4-.12.18-.2.38-.25.59-.15.66.1 1.38.68 2.02l.42.46.46-.41.43-.38c.06.01.12.01.18.01.61 0 1.15-.48 1.32-.95.02-.06.04-.12.05-.18.07.05.13.1.19.14l.07.68.07.73.71-.18c.53-.13 1.28-.4 1.62-1.12.16-.34.2-.72.13-1.15 1.55-.18 2.77-.59 2.77-.59-.9 2.66-3.43 4.16-5.87 4.16zM41.18 2.89c-.91.25-2.06.01-2.06.01.7.69.93 1.11.93 1.11.92.05 1.13-.55 1.13-1.12zm45.15 0c0 .57.21 1.17 1.13 1.13 0 0 .24-.42.93-1.11 0 0-1.15.23-2.06-.02zm.55 12.32l.48-.81c.26-.44.5-.91.71-1.39.2-.48.37-.96.52-1.45.16-.48.3-.97.44-1.46-.22.46-.44.91-.68 1.36-.23.45-.47.89-.73 1.31-.27.42-.56.81-.88 1.19-.28.34-.58.69-.87 1.03.33.04.67.1 1.01.22zm-47.44-2.2c.2.48.45.95.71 1.39l.48.81c.34-.12.68-.19 1.01-.21-.29-.34-.59-.69-.87-1.03-.32-.39-.61-.78-.88-1.19-.26-.42-.5-.86-.73-1.31s-.45-.91-.68-1.36c.14.49.29.97.44 1.46.15.48.32.96.52 1.44zm-.15 2.9c-.77-1.11-1.51-2.24-2.13-3.43-.34-.65-.64-1.32-.88-2.01-.25-.69-.45-1.4-.61-2.12.08.74.19 1.47.36 2.2.17.73.4 1.44.67 2.14.27.7.58 1.38.9 2.05.26.53.53 1.05.8 1.57.26-.08.56-.21.89-.4zm49.8.4c.28-.52.55-1.04.8-1.57.33-.67.64-1.35.9-2.05.27-.7.49-1.42.67-2.14.17-.73.29-1.46.36-2.2-.16.72-.36 1.43-.61 2.12s-.55 1.36-.88 2.01c-.62 1.19-1.36 2.32-2.13 3.43.35.19.64.32.89.4zM38.49 51.55c-.78 0-1.36.3-1.74.9-.35-.6-.89-.9-1.61-.9s-1.26.28-1.62.83v-.68h-1.23v5.67h1.23v-3.18c0-.49.12-.86.35-1.12.23-.25.54-.38.91-.38.34 0 .6.11.79.32.19.22.28.52.28.91v3.44h1.23v-3.18c0-.5.11-.87.33-1.12s.52-.37.9-.37c.34 0 .61.11.81.32.2.22.3.52.3.91v3.44h1.23v-3.52c0-.7-.2-1.26-.59-1.68-.41-.4-.93-.61-1.57-.61zm65.62 0c-.8 0-1.39.29-1.76.87v-3h-1.23v7.94h1.23v-3.04c0-.55.13-.96.4-1.23.26-.27.61-.4 1.04-.4.39 0 .7.11.93.34s.34.55.34.98v3.36h1.23v-3.48c0-.73-.2-1.3-.6-1.71-.41-.42-.93-.63-1.58-.63zm-83.18 2.88h2.66c-.12.55-.4.99-.85 1.32-.44.33-1.02.49-1.72.49-.88 0-1.59-.27-2.13-.81s-.81-1.21-.81-2.03.27-1.5.81-2.04 1.22-.82 2.05-.82c.51 0 .98.12 1.4.35s.73.54.94.91l.9-.97c-.32-.42-.72-.78-1.21-1.05-.61-.34-1.29-.51-2.03-.51-1.18 0-2.17.4-2.97 1.2s-1.2 1.77-1.2 2.92c0 1.16.4 2.13 1.2 2.93.8.79 1.81 1.19 3.04 1.19 1.16 0 2.1-.35 2.81-1.04.72-.69 1.08-1.58 1.08-2.67v-.53h-3.97v1.16zm89.64-1.55V51.7h-1.41v-1.59h-1.23v1.59h-1.04v1.18h1.04v2.72c0 .74.2 1.25.61 1.53s1.08.36 2.02.24v-1.1c-.31.02-.57.02-.78.01-.21-.01-.37-.07-.47-.17-.11-.1-.16-.27-.16-.51v-2.72h1.42zM28.6 51.55c-.88 0-1.6.29-2.16.86-.55.57-.83 1.28-.83 2.13 0 .86.28 1.58.85 2.14s1.31.85 2.24.85c.98 0 1.75-.34 2.3-1l-.83-.83c-.33.47-.81.7-1.46.7-.47 0-.87-.12-1.19-.35-.33-.23-.53-.56-.62-.99h4.52c.03-.21.05-.38.05-.51 0-.83-.27-1.54-.8-2.12-.55-.59-1.24-.88-2.07-.88zm-1.72 2.51c.08-.43.28-.77.58-1.02s.68-.37 1.13-.37c.4 0 .75.12 1.05.35s.49.58.57 1.04h-3.33zm17.59-2.51c-.88 0-1.6.29-2.16.86s-.84 1.28-.84 2.13c0 .86.28 1.58.85 2.14s1.31.85 2.24.85c.98 0 1.75-.34 2.3-1l-.83-.83c-.33.47-.81.7-1.46.7-.47 0-.87-.12-1.19-.35-.33-.23-.53-.56-.62-.99h4.52c.03-.21.05-.38.05-.51 0-.83-.27-1.54-.8-2.12-.55-.59-1.23-.88-2.06-.88zm-1.73 2.51c.08-.43.28-.77.58-1.02.3-.25.68-.37 1.13-.37.4 0 .75.12 1.05.35s.49.58.57 1.04h-3.33zm8.13-2.51c-.88 0-1.6.29-2.16.86s-.84 1.28-.84 2.13c0 .86.28 1.58.85 2.14s1.31.85 2.24.85c.98 0 1.75-.34 2.3-1l-.83-.83c-.33.47-.81.7-1.46.7-.47 0-.87-.12-1.19-.35-.33-.23-.53-.56-.62-.99h4.52c.03-.21.05-.38.05-.51 0-.83-.27-1.54-.8-2.12-.54-.59-1.22-.88-2.06-.88zm-1.72 2.51c.08-.43.28-.77.58-1.02.3-.25.68-.37 1.13-.37.4 0 .75.12 1.05.35s.49.58.57 1.04h-3.33zm18.37-2.51c-.88 0-1.6.29-2.16.86-.56.57-.84 1.28-.84 2.13 0 .86.28 1.58.85 2.14s1.31.85 2.24.85c.98 0 1.75-.34 2.3-1l-.83-.83c-.33.47-.81.7-1.46.7-.47 0-.87-.12-1.19-.35-.33-.23-.53-.56-.62-.99h4.52c.03-.21.05-.38.05-.51 0-.83-.27-1.54-.8-2.12-.54-.59-1.23-.88-2.06-.88zm-1.72 2.51c.08-.43.28-.77.58-1.02s.68-.37 1.13-.37c.4 0 .75.12 1.05.35s.49.58.57 1.04H65.8zm25.67-2.51c-.88 0-1.6.29-2.16.86-.56.57-.84 1.28-.84 2.13 0 .86.28 1.58.85 2.14s1.31.85 2.24.85c.98 0 1.75-.34 2.3-1l-.83-.83c-.33.47-.81.7-1.46.7-.47 0-.87-.12-1.19-.35-.33-.23-.53-.56-.62-.99h4.52c.03-.21.05-.38.05-.51 0-.83-.27-1.54-.8-2.12-.54-.59-1.22-.88-2.06-.88zm-1.72 2.51c.08-.43.28-.77.58-1.02s.68-.37 1.13-.37c.4 0 .75.12 1.05.35s.49.58.57 1.04h-3.33zm-27.11-3.95h-1.23v1.59h-1.04v1.18h1.04v2.72c0 .74.2 1.25.61 1.53s1.08.36 2.02.24v-1.1c-.31.02-.57.02-.78.01-.21-.01-.37-.07-.47-.17-.11-.1-.16-.27-.16-.51v-2.72h1.41V51.7h-1.41l.01-1.59c-.01 0 0 0 0 0zm15.89 4.55c0 .48-.14.87-.43 1.16-.28.29-.71.43-1.28.43s-.99-.14-1.28-.43c-.28-.29-.43-.67-.43-1.16v-5.23H73.8v5.31c0 .85.28 1.52.84 2.03.56.5 1.28.75 2.17.75s1.61-.25 2.17-.75.84-1.18.84-2.03v-5.31h-1.31v5.23h.02zm4.36-4.55h-1.23v1.59h-1.04v1.18h1.04v2.72c0 .74.2 1.25.61 1.53s1.08.36 2.02.24v-1.1c-.31.02-.57.02-.78.01-.21-.01-.37-.07-.47-.17-.11-.1-.16-.27-.16-.51v-2.72h1.41V51.7h-1.41v-1.59h.01zm-25.3 1.44c-.8 0-1.39.29-1.76.87v-.73H54.6v5.67h1.23v-3.04c0-.55.13-.96.4-1.23.26-.27.61-.4 1.04-.4.39 0 .7.11.93.34s.34.55.34.98v3.36h1.23v-3.48c0-.73-.2-1.3-.6-1.71-.41-.42-.93-.63-1.58-.63zm28.94 1.1v-.95H85.3v5.67h1.23v-2.86c0-.58.17-1 .52-1.25s.76-.36 1.23-.33V51.6c-.86 0-1.44.35-1.75 1.05zm12.99 2.75c-.26.54-.76.9-1.37.99h-.03c-.08.01-.17.02-.26.02-1 0-1.77-.77-1.77-1.87s.77-1.87 1.77-1.87c.09 0 .17.01.25.02h.03c.61.08 1.1.44 1.37.96l.82-.82a2.973 2.973 0 00-2.47-1.27c-1.66 0-2.98 1.3-2.98 2.99a2.95 2.95 0 002.98 2.98c1.04 0 1.94-.51 2.48-1.29l-.82-.84z" }))));
|
|
942
942
|
}
|
|
943
|
-
static get style() { return stencilCss$
|
|
943
|
+
static get style() { return stencilCss$8; }
|
|
944
944
|
};
|
|
945
945
|
|
|
946
|
-
const stencilCss$
|
|
946
|
+
const stencilCss$7 = ".utrecht-logo-button{--utrecht-button-min-block-size:var(--utrecht-logo-button-block-size, 50px);--utrecht-logo-max-height:var(--utrecht-logo-button-block-size, 50px);--utrecht-logo-max-width:var(--utrecht-logo-button-block-size, 50px);display:inline-flex;gap:var(--utrecht-space-inline-sm)}.utrecht-logo-button__logo{order:1}.utrecht-logo-button__button{order:2}:host{display:block}:host([hidden]){display:none !important}";
|
|
947
947
|
|
|
948
948
|
const DigidButton = class extends HTMLElement {
|
|
949
949
|
constructor() {
|
|
@@ -954,10 +954,10 @@ const DigidButton = class extends HTMLElement {
|
|
|
954
954
|
render() {
|
|
955
955
|
return (h("div", { class: "utrecht-digid-button" }, h("utrecht-digid-logo", { class: "utrecht-digid-button__logo" }), h("utrecht-button", { class: "utrecht-digid-button__button", type: this.type || null }, h("slot", null))));
|
|
956
956
|
}
|
|
957
|
-
static get style() { return stencilCss$
|
|
957
|
+
static get style() { return stencilCss$7; }
|
|
958
958
|
};
|
|
959
959
|
|
|
960
|
-
const stencilCss$
|
|
960
|
+
const stencilCss$6 = ".utrecht-page{margin-inline-end:auto;margin-inline-start:auto;max-inline-size:calc(var(--utrecht-page-max-inline-size) - var(--utrecht-page-margin-inline-start, 0px) - var(--utrecht-page-margin-inline-end, 0px));padding-inline-end:var(--utrecht-page-margin-inline-end);padding-inline-start:var(--utrecht-page-margin-inline-start)}.utrecht-page__content{background-color:var(--utrecht-page-background-color);color:var(--utrecht-page-color);max-inline-size:var(--utrecht-page-max-inline-size)}:host{display:block}:host([hidden]){display:none !important}";
|
|
961
961
|
|
|
962
962
|
const Page$1 = class extends HTMLElement {
|
|
963
963
|
constructor() {
|
|
@@ -968,10 +968,10 @@ const Page$1 = class extends HTMLElement {
|
|
|
968
968
|
render() {
|
|
969
969
|
return (h("div", { class: "utrecht-page" }, h("div", { class: "utrecht-page__content" }, h("slot", null))));
|
|
970
970
|
}
|
|
971
|
-
static get style() { return stencilCss$
|
|
971
|
+
static get style() { return stencilCss$6; }
|
|
972
972
|
};
|
|
973
973
|
|
|
974
|
-
const stencilCss$
|
|
974
|
+
const stencilCss$5 = ".utrecht-page-content{padding-block-end:var(--utrecht-page-content-padding-block-end);padding-block-start:var(--utrecht-page-content-padding-block-start);padding-inline-end:var(--utrecht-page-padding-inline-end);padding-inline-start:var(--utrecht-page-padding-inline-start)}.utrecht-page-content__main{grid-area:main}.utrecht-page-content__aside{grid-area:aside}:host{display:block}:host([hidden]){display:none !important}";
|
|
975
975
|
|
|
976
976
|
const Page = class extends HTMLElement {
|
|
977
977
|
constructor() {
|
|
@@ -982,10 +982,10 @@ const Page = class extends HTMLElement {
|
|
|
982
982
|
render() {
|
|
983
983
|
return (h("div", { class: "utrecht-page-content" }, h("main", { class: "utrecht-page-content__main" }, h("slot", null))));
|
|
984
984
|
}
|
|
985
|
-
static get style() { return stencilCss$
|
|
985
|
+
static get style() { return stencilCss$5; }
|
|
986
986
|
};
|
|
987
987
|
|
|
988
|
-
const stencilCss$
|
|
988
|
+
const stencilCss$4 = ".utrecht-page-footer{--utrecht-document-color:currentColor;--utrecht-heading-color:currentColor;--utrecht-link-color:currentColor;--utrecht-link-focus-color:currentColor;--utrecht-link-hover-color:currentColor;--utrecht-link-active-color:currentColor;--utrecht-link-visited-color:currentColor;background-color:var(--utrecht-page-footer-background-color);background-image:var(--utrecht-page-footer-background-image);color:var(--utrecht-page-footer-color);font-family:var(--utrecht-document-font-family);font-size:var(--utrecht-document-font-size);padding-block-end:var(--utrecht-page-footer-padding-block-end);padding-block-start:var(--utrecht-page-footer-padding-block-start);padding-inline-end:var(--utrecht-page-footer-padding-inline-end);padding-inline-start:var(--utrecht-page-footer-padding-inline-start)}.utrecht-page-footer .utrecht-link--telephone{color:#fff}.utrecht-page-footer .utrecht-paragraph{color:#fff}.utrecht-page-footer__address--reset-address{font-style:inherit;margin-block-end:0;margin-block-start:0}:host{display:block}:host([hidden]){display:none !important}";
|
|
989
989
|
|
|
990
990
|
const PageFooter = class extends HTMLElement {
|
|
991
991
|
constructor() {
|
|
@@ -996,10 +996,10 @@ const PageFooter = class extends HTMLElement {
|
|
|
996
996
|
render() {
|
|
997
997
|
return (h("footer", { class: "utrecht-page-footer" }, h("slot", null)));
|
|
998
998
|
}
|
|
999
|
-
static get style() { return stencilCss$
|
|
999
|
+
static get style() { return stencilCss$4; }
|
|
1000
1000
|
};
|
|
1001
1001
|
|
|
1002
|
-
const stencilCss$
|
|
1002
|
+
const stencilCss$3 = ".utrecht-page-header{background-color:var(--utrecht-page-header-background-color);color:var(--utrecht-page-header-color);grid-area:\"utrecht-header\";padding-block-end:var(--utrecht-page-header-padding-block-end);padding-block-start:var(--utrecht-page-header-padding-block-start);padding-inline-end:var(--utrecht-page-padding-inline-end);padding-inline-start:var(--utrecht-page-padding-inline-start)}.utrecht-page-header__content{max-inline-size:var(--utrecht-page-max-inline-size)}:host{display:block}:host([hidden]){display:none !important}";
|
|
1003
1003
|
|
|
1004
1004
|
const PageHeader = class extends HTMLElement {
|
|
1005
1005
|
constructor() {
|
|
@@ -1010,10 +1010,10 @@ const PageHeader = class extends HTMLElement {
|
|
|
1010
1010
|
render() {
|
|
1011
1011
|
return (h("header", { class: "utrecht-page-header" }, h("div", { class: "utrecht-page-header__content" }, h("slot", null))));
|
|
1012
1012
|
}
|
|
1013
|
-
static get style() { return stencilCss$
|
|
1013
|
+
static get style() { return stencilCss$3; }
|
|
1014
1014
|
};
|
|
1015
1015
|
|
|
1016
|
-
const stencilCss$
|
|
1016
|
+
const stencilCss$2 = ".utrecht-pagination{font-family:var(--utrecht-pagination-font-family, var(--utrecht-document-font-family));font-size:var(--utrecht-pagination-font-size, var(--utrecht-document-font-family))}.utrecht-pagination--distanced{margin-block-end:var(--utrecht-pagination-margin-block-end);margin-block-start:var(--utrecht-pagination-margin-block-start)}.utrecht-pagination__relative-link{background-color:var(--utrecht-pagination-relative-link-background-color);border-color:var(--utrecht-pagination-relative-link-border-color);border-radius:var(--utrecht-pagination-relative-link-border-radius);border-style:solid;border-width:var(--utrecht-pagination-relative-link-border-width, 0);color:var(--utrecht-pagination-relative-link-color);display:inline-block;font-weight:var(--utrecht-pagination-relative-link-font-weight);padding-block-end:var(--utrecht-pagination-relative-link-padding-block-end);padding-block-start:var(--utrecht-pagination-relative-link-padding-block-start);padding-inline-end:var(--utrecht-pagination-relative-link-padding-inline-end);padding-inline-start:var(--utrecht-pagination-relative-link-padding-inline-start);text-decoration:var(--utrecht-pagination-relative-link-text-decoration);text-transform:var(--utrecht-pagination-relative-link-text-transform)}.utrecht-pagination__relative-link--next{margin-inline-start:var(--utrecht-pagination-relative-link-distanced-margin-inline-start)}.utrecht-pagination__relative-link--prev{margin-inline-end:var(--utrecht-pagination-relative-link-distanced-margin-inline-end)}.utrecht-pagination__relative-link--disabled{background-color:var(--utrecht-pagination-relative-link-disabled-background-color, var(--utrecht-pagination-relative-link-background-color));color:var(--utrecht-pagination-relative-link-disabled-color, var(--utrecht-pagination-relative-link-color))}.utrecht-pagination__relative-link--hover,.utrecht-pagination__relative-link:hover{background-color:var(--utrecht-pagination-relative-link-hover-background-color, var(--utrecht-pagination-relative-link-background-color));border-color:var(--utrecht-pagination-relative-link-hover-border-color, var(--utrecht-pagination-relative-link-border-color));color:var(--utrecht-pagination-relative-link-hover-color, var(--utrecht-pagination-relative-link-color))}.utrecht-pagination__page-link{background-color:var(--utrecht-pagination-page-link-background-color);border-color:var(--utrecht-pagination-page-link-border-color, 0);border-radius:var(--utrecht-pagination-page-link-border-radius);border-style:solid;border-width:var(--utrecht-pagination-page-link-border-width);color:var(--utrecht-pagination-page-link-color);display:inline-block;font-weight:var(--utrecht-pagination-page-link-font-weight);padding-block-end:var(--utrecht-pagination-page-link-padding-block-end);padding-block-start:var(--utrecht-pagination-page-link-padding-block-start);padding-inline-end:var(--utrecht-pagination-page-link-padding-inline-end);padding-inline-start:var(--utrecht-pagination-page-link-padding-inline-start);text-decoration:var(--utrecht-pagination-page-link-text-decoration)}.utrecht-pagination__page-link--current{--utrecht-pagination-page-link-background-color:var(--utrecht-pagination-page-link-current-background-color);--utrecht-pagination-page-link-border-color:var(--utrecht-pagination-page-link-current-border-color);--utrecht-pagination-page-link-color:var(--utrecht-pagination-page-link-current-color)}.utrecht-pagination__page-link--distanced,.utrecht-pagination__page-link~.utrecht-pagination__page-link{margin-inline-start:var(--utrecht-pagination-page-link-distanced-margin-inline-start)}.utrecht-pagination__page-link--hover,.utrecht-pagination__page-link:hover{background-color:var(--utrecht-pagination-page-link-hover-background-color, var(--utrecht-pagination-page-link-background-color));border-color:var(--utrecht-pagination-page-link-hover-border-color, var(--utrecht-pagination-page-link-border-color));color:var(--utrecht-pagination-page-link-hover-color, var(--utrecht-pagination-page-link-color))}.utrecht-pagination__page-link:focus,.utrecht-pagination__relative-link:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-pagination__page-link:focus:not(:focus-visible),.utrecht-pagination__relative-link:focus:not(:focus-visible){box-shadow:none;outline-style:none}:host{display:block}:host([hidden]){display:none !important}";
|
|
1017
1017
|
|
|
1018
1018
|
const Pagination = class extends HTMLElement {
|
|
1019
1019
|
constructor() {
|
|
@@ -1042,10 +1042,10 @@ const Pagination = class extends HTMLElement {
|
|
|
1042
1042
|
})
|
|
1043
1043
|
.map((link) => PageLink(link))), h("span", { class: "utrecht-pagination__before" }, next ? RelativeLink(Object.assign(Object.assign({}, next), { rel: 'next', textContent: 'Volgende' })) : '')));
|
|
1044
1044
|
}
|
|
1045
|
-
static get style() { return stencilCss$
|
|
1045
|
+
static get style() { return stencilCss$2; }
|
|
1046
1046
|
};
|
|
1047
1047
|
|
|
1048
|
-
const
|
|
1048
|
+
const indexCss = ".utrecht-paragraph{color:var(--utrecht-paragraph-color, var(--utrecht-document-color, inherit));font-family:var(--utrecht-paragraph-font-family, var(--utrecht-document-font-family, inherit));font-size:var(--utrecht-paragraph-font-size, var(--utrecht-document-font-size, inherit));font-weight:var(--utrecht-paragraph-font-weight, inherit);line-height:var(--utrecht-paragraph-line-height, var(--utrecht-document-line-height, inherit));margin-block-end:0;margin-block-start:0}.utrecht-paragraph--lead{color:var(--utrecht-paragraph-lead-color, var(--utrecht-document-color, inherit));font-size:var(--utrecht-paragraph-lead-font-size, inherit);font-weight:var(--utrecht-paragraph-lead-font-weight, inherit);line-height:var(--utrecht-paragraph-lead-line-height, inherit)}.utrecht-paragraph--distanced{margin-block-end:var(--utrecht-paragraph-margin-block-end);margin-block-start:var(--utrecht-paragraph-margin-block-start)}:host{display:block}:host([hidden]){display:none !important}";
|
|
1049
1049
|
|
|
1050
1050
|
const Paragraph = class extends HTMLElement {
|
|
1051
1051
|
constructor() {
|
|
@@ -1056,7 +1056,7 @@ const Paragraph = class extends HTMLElement {
|
|
|
1056
1056
|
render() {
|
|
1057
1057
|
return (h("div", { class: clsx('utrecht-paragraph', this.lead && 'utrecht-paragraph--lead') }, h("slot", null)));
|
|
1058
1058
|
}
|
|
1059
|
-
static get style() { return
|
|
1059
|
+
static get style() { return indexCss; }
|
|
1060
1060
|
};
|
|
1061
1061
|
|
|
1062
1062
|
const stencilCss$1 = ".utrecht-separator{border-color:var(--utrecht-separator-color);border-style:solid;border-width:0 0 var(--utrecht-separator-block-size) 0}.utrecht-separator--distanced{margin-block-end:var(--utrecht-separator-margin-block-end);margin-block-start:var(--utrecht-separator-margin-block-start)}:host{display:block}:host([hidden]){display:none !important}";
|
|
@@ -1073,7 +1073,7 @@ const Separator = class extends HTMLElement {
|
|
|
1073
1073
|
static get style() { return stencilCss$1; }
|
|
1074
1074
|
};
|
|
1075
1075
|
|
|
1076
|
-
const bemCss = ".utrecht-sidenav{--utrecht-sidenav-connection-color:var(--utrecht-sidenav-item-marker-color);--utrecht-sidenav-connection-inline-size:2px;--utrecht-sidenav-marker-current-color:var(--utrecht-sidenav-link-hover-color);--utrecht-sidenav-marker-offset:26px;--utrecht-sidenav-connection-block-size:100%;--utrecht-sidenav-marker-height:8px;--utrecht-sidenav-marker-outline-width:2px;border-block-end:1px solid var(--utrecht-color-grey-80);border-block-start:1px solid var(--utrecht-color-grey-80);margin-block-end:0;margin-block-start:0;padding-block-end:0;padding-block-start:0;width:19rem}.utrecht-sidenav__list{margin-block-end:0;margin-block-start:0.2rem;padding-block-end:0;padding-block-start:0;padding-inline-start:0}.utrecht-sidenav__list--child{margin-block-start:0;padding-inline-end:0;padding-inline-start:1.4rem}.utrecht-sidenav__item{list-style:none;margin-inline-start:0;position:relative}.utrecht-sidenav__item--current{color:var(--utrecht-sidenav-item-hover-color, var(--utrecht-link-hover-color, red))}.utrecht-sidenav__item--last{border-block-end:none}.utrecht-sidenav__item-separator:not(.utrecht-sidenav__item--last .utrecht-sidenav__item-separator){border-block-end:1px solid var(--utrecht-color-grey-80);display:block;margin-inline-start:var(--utrecht-space-inline-lg)}.utrecht-sidenav__link{color:var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));display:block;margin-inline-start:0;padding-block-end:var(--utrecht-space-block-xs);padding-block-start:var(--utrecht-space-block-xs);padding-inline-end:var(--utrecht-space-inline-3xs);padding-inline-start:var(--utrecht-space-inline-lg);text-decoration:none}.utrecht-sidenav__link:hover{color:var(--utrecht-sidenav-link-hover-color, var(--utrecht-link-hover-color, red));text-decoration:underline}.utrecht-sidenav__link--focus-visible,.utrecht-sidenav__link:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:0;outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-sidenav__link--parent{padding-block-end:0}.utrecht-sidenav__connection,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:not(.utrecht-sidenav__link--sibling):not(.utrecht-sidenav__link--parent):not(.utrecht-sidenav__link--child)::after{background:var(--utrecht-sidenav-connection-color);bottom:0;content:\"\";display:block;height:calc(var(--utrecht-sidenav-connection-block-size) - var(--utrecht-sidenav-marker-height) - 2 * var(--utrecht-sidenav-marker-outline-width));left:3px;overflow:hidden;position:absolute;top:calc(var(--utrecht-sidenav-marker-offset));width:var(--utrecht-sidenav-connection-inline-size);z-index:5}.utrecht-sidenav__connection--last,.utrecht-sidenav__connection--parent,.utrecht-sidenav__connection--sibling{display:none}.utrecht-sidenav__marker,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link::before{background-color:var(--utrecht-sidenav-item-marker-color);border-radius:100%;content:\"\";height:var(--utrecht-sidenav-marker-height);left:var(--utrecht-sidenav-marker-offset);overflow:hidden;position:absolute;top:20px;transform:translateY(-50%) translateX(calc(-1 * var(--utrecht-sidenav-marker-offset)));width:8px;z-index:10}.utrecht-sidenav__marker--child,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::before{background-color:transparent;border:2px solid var(--utrecht-sidenav-link-color);height:4px;left:1.2rem;top:16px;transform:translateY(-50%) translateX(-19.5px);width:4px}.utrecht-sidenav__marker--current,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current-child::before{background-color:var(--utrecht-sidenav-marker-current-color)}.utrecht-sidenav__link--child,.utrecht-sidenav__link--current-child{color:var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));margin-block-end:0;margin-block-start:0;padding-block-end:var(--utrecht-space-block-2xs);padding-block-start:var(--utrecht-space-block-2xs);padding-inline-end:var(--utrecht-space-inline-3xs);padding-inline-start:var(--utrecht-space-inline-lg);text-decoration:none}.utrecht-sidenav__link--current,.utrecht-sidenav__link--current-child{font-weight:var(--utrecht-typography-weight-scale-bold-font-weight)}.utrecht-sidenav__marker--hover,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover::before,.utrecht-sidenav__link:hover .utrecht-sidenav__marker,.utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__link::before{background-color:var(--utrecht-sidenav-link-hover-color)}.utrecht-sidenav__marker--child.utrecht-sidenav__marker--hover,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--child.utrecht-sidenav__link:hover::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--hover.utrecht-sidenav__link--child::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child.utrecht-sidenav__link:hover::before,.utrecht-sidenav__link:hover .utrecht-sidenav__marker--child.utrecht-sidenav__marker,.utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker.utrecht-sidenav__link--child::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__marker.utrecht-sidenav__link--child::before,.utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--child.utrecht-sidenav__link::before,.utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link.utrecht-sidenav__link--child::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__marker--child.utrecht-sidenav__link::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__link.utrecht-sidenav__link--child::before{background-color:var(--utrecht-sidenav-link-hover-color);border:2px solid var(--utrecht-sidenav-link-hover-color)}.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::after{display:none}.utrecht-sidenav__link:focus:not(:focus-visible){box-shadow:none;outline-style:none}";
|
|
1076
|
+
const bemCss = ".utrecht-sidenav{--utrecht-sidenav-connection-color:var(--utrecht-sidenav-item-marker-color);--utrecht-sidenav-connection-inline-size:2px;--utrecht-sidenav-marker-current-color:var(--utrecht-sidenav-link-hover-color);--utrecht-sidenav-marker-offset:26px;--utrecht-sidenav-connection-block-size:100%;--utrecht-sidenav-marker-height:8px;--utrecht-sidenav-marker-outline-width:2px;border-block-end:1px solid var(--utrecht-color-grey-80);border-block-start:1px solid var(--utrecht-color-grey-80);margin-block-end:0;margin-block-start:0;padding-block-end:0;padding-block-start:0;width:19rem}.utrecht-sidenav__list{margin-block-end:0;margin-block-start:0.2rem;padding-block-end:0;padding-block-start:0;padding-inline-start:0}.utrecht-sidenav__list--child{margin-block-start:0;padding-inline-end:0;padding-inline-start:1.4rem}.utrecht-sidenav__item{list-style:none;margin-inline-start:0;position:relative}.utrecht-sidenav__item--current{color:var(--utrecht-sidenav-item-hover-color, var(--utrecht-link-hover-color, red))}.utrecht-sidenav__item--last{border-block-end:none}.utrecht-sidenav__item-separator:not(.utrecht-sidenav__item--last .utrecht-sidenav__item-separator){border-block-end:1px solid var(--utrecht-color-grey-80);display:block;margin-inline-start:var(--utrecht-space-inline-lg)}.utrecht-sidenav__link{color:var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));display:block;margin-inline-start:0;padding-block-end:var(--utrecht-space-block-xs);padding-block-start:var(--utrecht-space-block-xs);padding-inline-end:var(--utrecht-space-inline-3xs);padding-inline-start:var(--utrecht-space-inline-lg);text-decoration:none}.utrecht-sidenav__link:hover{color:var(--utrecht-sidenav-link-hover-color, var(--utrecht-link-hover-color, red));text-decoration:underline}.utrecht-sidenav__link--focus-visible,.utrecht-sidenav__link:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-sidenav__link--parent{padding-block-end:0}.utrecht-sidenav__connection,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:not(.utrecht-sidenav__link--sibling):not(.utrecht-sidenav__link--parent):not(.utrecht-sidenav__link--child)::after{background:var(--utrecht-sidenav-connection-color);bottom:0;content:\"\";display:block;height:calc(var(--utrecht-sidenav-connection-block-size) - var(--utrecht-sidenav-marker-height) - 2 * var(--utrecht-sidenav-marker-outline-width));left:3px;overflow:hidden;position:absolute;top:calc(var(--utrecht-sidenav-marker-offset));width:var(--utrecht-sidenav-connection-inline-size);z-index:5}.utrecht-sidenav__connection--last,.utrecht-sidenav__connection--parent,.utrecht-sidenav__connection--sibling{display:none}.utrecht-sidenav__marker,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link::before{background-color:var(--utrecht-sidenav-item-marker-color);border-radius:100%;content:\"\";height:var(--utrecht-sidenav-marker-height);left:var(--utrecht-sidenav-marker-offset);overflow:hidden;position:absolute;top:20px;transform:translateY(-50%) translateX(calc(-1 * var(--utrecht-sidenav-marker-offset)));width:8px;z-index:10}.utrecht-sidenav__marker--child,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::before{background-color:transparent;border:2px solid var(--utrecht-sidenav-link-color);height:4px;left:1.2rem;top:16px;transform:translateY(-50%) translateX(-19.5px);width:4px}.utrecht-sidenav__marker--current,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--current-child::before{background-color:var(--utrecht-sidenav-marker-current-color)}.utrecht-sidenav__link--child,.utrecht-sidenav__link--current-child{color:var(--utrecht-sidenav-link-color, var(--utrecht-link-color, blue));margin-block-end:0;margin-block-start:0;padding-block-end:var(--utrecht-space-block-2xs);padding-block-start:var(--utrecht-space-block-2xs);padding-inline-end:var(--utrecht-space-inline-3xs);padding-inline-start:var(--utrecht-space-inline-lg);text-decoration:none}.utrecht-sidenav__link--current,.utrecht-sidenav__link--current-child{font-weight:var(--utrecht-typography-weight-scale-bold-font-weight)}.utrecht-sidenav__marker--hover,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover::before,.utrecht-sidenav__link:hover .utrecht-sidenav__marker,.utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__link::before{background-color:var(--utrecht-sidenav-link-hover-color)}.utrecht-sidenav__marker--child.utrecht-sidenav__marker--hover,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--child.utrecht-sidenav__link:hover::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--hover.utrecht-sidenav__link--child::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child.utrecht-sidenav__link:hover::before,.utrecht-sidenav__link:hover .utrecht-sidenav__marker--child.utrecht-sidenav__marker,.utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker.utrecht-sidenav__link--child::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__marker.utrecht-sidenav__link--child::before,.utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__marker--child.utrecht-sidenav__link::before,.utrecht-sidenav__link:hover .utrecht-sidenav--pseudo-elements .utrecht-sidenav__link.utrecht-sidenav__link--child::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__marker--child.utrecht-sidenav__link::before,.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link:hover .utrecht-sidenav__link.utrecht-sidenav__link--child::before{background-color:var(--utrecht-sidenav-link-hover-color);border:2px solid var(--utrecht-sidenav-link-hover-color)}.utrecht-sidenav--pseudo-elements .utrecht-sidenav__link--child::after{display:none}.utrecht-sidenav__link:focus:not(:focus-visible){box-shadow:none;outline-style:none}";
|
|
1077
1077
|
|
|
1078
1078
|
const Sidenav = class extends HTMLElement {
|
|
1079
1079
|
constructor() {
|
|
@@ -1088,7 +1088,7 @@ const Sidenav = class extends HTMLElement {
|
|
|
1088
1088
|
static get style() { return bemCss; }
|
|
1089
1089
|
};
|
|
1090
1090
|
|
|
1091
|
-
const stencilCss = ".utrecht-textbox{background-color:var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));border-width:var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));border-bottom-width:var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));border-color:var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));border-radius:var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));border-style:solid;box-sizing:border-box;color:var(--utrecht-textbox-color, var(--utrecht-form-input-color));font-family:var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));font-size:var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));max-inline-size:var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));padding-block-end:var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));padding-block-start:var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));padding-inline-end:var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));padding-inline-start:var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));width:100%}.utrecht-textbox--invalid,.utrecht-textbox--html-input:invalid,.utrecht-textbox--html-input[aria-invalid=true]{background-color:var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));border-width:var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width))))}.utrecht-textbox--disabled,.utrecht-textbox--html-input:disabled{background-color:var(--utrecht-textbox-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-textbox--focus,.utrecht-textbox--html-input:focus{background-color:var(--utrecht-textbox-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textbox--focus-visible,.utrecht-textbox--html-input:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:0;outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-textbox--read-only,.utrecht-textbox--html-input:read-only{border-color:var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))))}.utrecht-textbox__placeholder,.utrecht-textbox--html-input::placeholder{color:var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));font-style:var(--utrecht-form-input-placeholder-font-style);opacity:100%}.utrecht-textbox--numeric{font-variant-numeric:lining-nums tabular-nums}.utrecht-textbox--password{font-variant-ligatures:none;font-variant-numeric:slashed-zero}.utrecht-textbox--url{font-variant-ligatures:none}.utrecht-textbox--html-input:focus:not(:focus-visible){box-shadow:none;outline-style:none}:host{display:block}:host([hidden]){display:none !important}";
|
|
1091
|
+
const stencilCss = ".utrecht-textbox{background-color:var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color));border-width:var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width));border-bottom-width:var(--utrecht-textbox-border-bottom-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width)));border-color:var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color));border-radius:var(--utrecht-textbox-border-radius, var(--utrecht-form-input-border-radius, 0));border-style:solid;box-sizing:border-box;color:var(--utrecht-textbox-color, var(--utrecht-form-input-color));font-family:var(--utrecht-textbox-font-family, var(--utrecht-form-input-font-family));font-size:var(--utrecht-textbox-font-size, var(--utrecht-form-input-font-size, 1em));max-inline-size:var(--utrecht-textbox-max-inline-size, var(--utrecht-form-input-max-inline-size));padding-block-end:var(--utrecht-textbox-padding-block-end, var(--utrecht-form-input-padding-block-end));padding-block-start:var(--utrecht-textbox-padding-block-start, var(--utrecht-form-input-padding-block-start));padding-inline-end:var(--utrecht-textbox-padding-inline-end, var(--utrecht-form-input-padding-inline-end));padding-inline-start:var(--utrecht-textbox-padding-inline-start, var(--utrecht-form-input-padding-inline-start));width:100%}.utrecht-textbox--invalid,.utrecht-textbox--html-input:invalid,.utrecht-textbox--html-input[aria-invalid=true]{background-color:var(--utrecht-textbox-invalid-background-color, var(--utrecht-form-input-invalid-background-color, var(--utrecht-textbox-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-invalid-border-color, var(--utrecht-form-input-invalid-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));border-width:var(--utrecht-textbox-invalid-border-width, var(--utrecht-form-input-invalid-border-width, var(--utrecht-textbox-border-width, var(--utrecht-form-input-border-width))))}.utrecht-textbox--disabled,.utrecht-textbox--html-input:disabled{background-color:var(--utrecht-textbox-disabled-background-color, var(--utrecht-form-input-disabled-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-disabled-border-color, var(--utrecht-form-input-disabled-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-disabled-color, var(--utrecht-form-input-disabled-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))));cursor:var(--utrecht-action-disabled-cursor)}.utrecht-textbox--focus,.utrecht-textbox--html-input:focus{background-color:var(--utrecht-textbox-focus-background-color, var(--utrecht-form-input-focus-background-color, var(--utrecht-textarea-background-color, var(--utrecht-form-input-background-color))));border-color:var(--utrecht-textbox-focus-border-color, var(--utrecht-form-input-focus-border-color, var(--utrecht-textarea-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-focus-color, var(--utrecht-form-input-focus-color, var(--utrecht-textarea-color, var(--utrecht-form-input-color))))}.utrecht-textbox--focus-visible,.utrecht-textbox--html-input:focus{box-shadow:0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);outline-color:var(--utrecht-focus-outline-color, transparent);outline-offset:var(--utrecht-focus-outline-offset, 0);outline-style:var(--utrecht-focus-outline-style, solid);outline-width:var(--utrecht-focus-outline-width, 0)}.utrecht-textbox--read-only,.utrecht-textbox--html-input:read-only{border-color:var(--utrecht-textbox-read-only-border-color, var(--utrecht-form-input-read-only-border-color, var(--utrecht-textbox-border-color, var(--utrecht-form-input-border-color))));color:var(--utrecht-textbox-read-only-color, var(--utrecht-form-input-read-only-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))))}.utrecht-textbox__placeholder,.utrecht-textbox--html-input::placeholder{color:var(--utrecht-textbox-placeholder-color, var(--utrecht-form-input-placeholder-color, var(--utrecht-textbox-color, var(--utrecht-form-input-color))));font-style:var(--utrecht-form-input-placeholder-font-style);opacity:100%}.utrecht-textbox--numeric{font-variant-numeric:lining-nums tabular-nums}.utrecht-textbox--password{font-variant-ligatures:none;font-variant-numeric:slashed-zero}.utrecht-textbox--url{font-variant-ligatures:none}.utrecht-textbox--html-input:focus:not(:focus-visible){box-shadow:none;outline-style:none}:host{display:block}:host([hidden]){display:none !important}";
|
|
1092
1092
|
|
|
1093
1093
|
const Textbox = class extends HTMLElement {
|
|
1094
1094
|
constructor() {
|