@charset "UTF-8";
:where(html, :host) {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:where(h1) {
  font-size: 2em;
  margin-block-end: 0.67em;
  margin-block-start: 0.67em;
}

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin-block-end: 0;
  margin-block-start: 0;
}

:where(hr) {
  box-sizing: content-box;
  color: inherit;
  height: 0;
}

:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

:where(b, strong) {
  font-weight: bolder;
}

:where(code, kbd, pre, samp) {
  font-family: monospace, monospace;
  font-size: 1em;
}

:where(small) {
  font-size: 80%;
}

:where(table) {
  border-color: currentColor;
  text-indent: 0;
}

:where(button, input, select) {
  margin: 0;
}

:where(button) {
  text-transform: none;
}

:where(button, input:is([type=button i], [type=reset i], [type=submit i])) {
  -webkit-appearance: button;
}

:where(progress) {
  vertical-align: baseline;
}

:where(select) {
  text-transform: none;
}

:where(textarea) {
  margin: 0;
}

:where(input[type=search i]) {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

:where(button, input:is([type=button i], [type=color i], [type=reset i], [type=submit i]))::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:where(button, input:is([type=button i], [type=color i], [type=reset i], [type=submit i]))::-moz-focusring {
  outline: 1px dotted ButtonText;
}

:where(:-moz-ui-invalid) {
  box-shadow: none;
}

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

:where(summary) {
  display: list-item;
}

html, :host {
  box-sizing: var(--db-box-sizing, border-box);
}

*, ::before, ::after {
  box-sizing: inherit;
}

img, embed, iframe, object, video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

nav ol, nav ul, [role=navigation] ol, [role=navigation] ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

:root {
  --db-focus-outline-offset: 1px;
  --db-focus-outline-color: #2c95c4;
}

:is(a, button, input, textarea, summary) {
  --db-focus-outline-size: max(2px, 0.08em);
}

:is(a, button, input, textarea, summary):focus-visible {
  outline: var(--db-focus-outline-size) var(--db-focus-outline-style, solid) var(--db-focus-outline-color, currentColor);
  outline-offset: var(--db-focus-outline-offset, var(--db-focus-outline-size));
}

:where(ul) {
  list-style-type: "•   ";
}

:where(ul) li::marker {
  color: #ec0016;
}

details > *, details > ::before, details > ::after {
  box-sizing: var(--db-box-sizing, border-box);
}

body, :host, div, button, input, select, textarea {
  color: #282d37;
  font-family: "DB Screen Sans", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
} 
a {
  color: inherit;
}

/* *****
	This file summarizes the general variables relevant for using DB UI Core with SCSS.
***** */
/* *****
	This file summarizes the general variables relevant for using DB UI Core with SCSS.
***** */
.elm-textarea {
  --formElement---borderTopColor: var(
  	--formElement---borderColor,
  	transparent
  );
  --formElement---borderRightColor: var(
  	--formElement---borderColor,
  	transparent
  );
  --formElement---borderBottomColor: var(
  	--formElement---borderColor,
  	rgba(40, 45, 55, 0.5)
  );
  --formElement---borderLeftColor: var(
  	--formElement---borderColor,
  	transparent
  );
  border-radius: 4px;
  caret-color: #ec0016;
  color: #282d37;
}
.elm-textarea ~ .description {
  color: #646973;
  font-size: 0.875rem;
  padding: 0.375rem 0.625rem;
}

[data-label-hidden=true].elm-label:has(+ .elm-textarea) {
  clip: rect(0, 0, 0, 0);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  white-space: nowrap;
  width: 1px;
}

.elm-textarea[data-variant=semitransparent], :where(.elm-textarea) {
  --formElement---borderColor: rgba(40, 45, 55, 0.5);
  background-color: rgba(40, 45, 55, 0.05);
  border-bottom: 1px solid var(--formElement---borderBottomColor);
  border-left: 1px solid var(--formElement---borderLeftColor);
  border-left-color: transparent;
  border-right: 1px solid var(--formElement---borderRightColor);
  border-right-color: transparent;
  border-top: 1px solid var(--formElement---borderTopColor);
  border-top-color: transparent;
}

.elm-textarea[data-variant=white] {
  --formElement---borderColor: rgba(40, 45, 55, 0.5);
  background-color: #ffffff;
  border-bottom: 1px solid var(--formElement---borderBottomColor);
  border-left: 1px solid var(--formElement---borderLeftColor);
  border-left-color: transparent;
  border-right: 1px solid var(--formElement---borderRightColor);
  border-right-color: transparent;
  border-top: 1px solid var(--formElement---borderTopColor);
  border-top-color: transparent;
}

.elm-textarea[data-variant=solid] {
  --formElement---borderColor: rgba(40, 45, 55, 0.5);
  background-color: #f0f3f5;
  border-bottom: 1px solid var(--formElement---borderBottomColor);
  border-left: 1px solid var(--formElement---borderLeftColor);
  border-left-color: transparent;
  border-right: 1px solid var(--formElement---borderRightColor);
  border-right-color: transparent;
  border-top: 1px solid var(--formElement---borderTopColor);
  border-top-color: transparent;
}

.elm-textarea[data-variant=outline] {
  --formElement---borderColor: rgba(40, 45, 55, 0.25);
  background-color: transparent;
  border-bottom: 1px solid var(--formElement---borderBottomColor);
  border-left: 1px solid var(--formElement---borderLeftColor);
  border-right: 1px solid var(--formElement---borderRightColor);
  border-top: 1px solid var(--formElement---borderTopColor);
}

.elm-textarea:not([aria-invalid]):user-valid {
  --formElement---borderColor: #2a7230;
}
.elm-textarea:not([aria-invalid]):user-invalid {
  --formElement---borderColor: #ec0016;
}

[aria-invalid=true].elm-textarea {
  --formElement---borderColor: #ec0016;
}

.elm-textarea + output:has(+ .description) {
  float: right;
}
@supports (position-area: block-end span-inline-start) {
  .elm-textarea + output:not(:has(+ .description)) {
    position: absolute;
    position-area: block-end span-inline-start;
  }
}
.elm-textarea + output, .elm-textarea + output + .description {
  color: #646973;
  font-size: 0.875rem;
  padding: 0.375rem 0.625rem;
}

.elm-textarea {
  display: block;
  font-size: 1rem;
  height: 2.75rem;
  line-height: 1.5rem;
  max-width: 100%;
  padding: 0.375rem 0.625rem;
  resize: vertical;
  width: 100%;
}
.elm-textarea:not([rows]) {
  max-height: 37.5rem;
  min-height: 7.5rem;
}
.elm-textarea[rows] {
  height: initial;
}
.elm-textarea:focus:not(:disabled), .elm-textarea:hover:not(:disabled) {
  --formElement---borderColor: #878c96;
}
.elm-textarea:disabled, .elm-textarea:disabled + .elm-label, fieldset:disabled .elm-textarea, fieldset:disabled .elm-textarea + .elm-label {
  opacity: 0.4;
}
.elm-textarea {
  /* stylelint-disable order/order */
  /* stylelint-enable order/order */
}

.elm-textarea + output:not(:has(+ .description)) {
  float: right;
  position: initial;
}