@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-progress progress {
  --progress-value--backgroundColor: #ec0016;
}

.elm-progress progress {
  appearance: none;
  background-color: #fcfdfd;
  border: none;
  height: 0.25rem;
  vertical-align: middle;
}
.elm-progress progress::-webkit-progress-bar {
  background-color: #fcfdfd;
}
.elm-progress progress::-webkit-progress-value {
  background-color: var(--progress-value--backgroundColor);
}
.elm-progress progress::-moz-progress-bar {
  background-color: var(--progress-value--backgroundColor);
}
.elm-progress progress::-ms-fill {
  background-color: var(--progress-value--backgroundColor);
  border: none;
}
.elm-progress progress:not([style^="--progress-conic:"])::-webkit-progress-value {
  border-radius: 12px;
}
.elm-progress progress:not([style^="--progress-conic:"])::-moz-progress-bar {
  border-radius: 12px;
}
.elm-progress progress:not([style^="--progress-conic:"])::-ms-fill {
  border-radius: 12px;
}
.elm-progress progress:indeterminate {
  animation-duration: 2.1s;
  animation-iteration-count: infinite;
  animation-name: elmProgressMoveIndeterminate;
  animation-timing-function: linear;
  animation-timing-function: cubic-bezier(0.65, 0.815, 0.735, 0.395);
  background-color: #fcfdfd;
  background-image: linear-gradient(to right, #ec0016 100%, #fcfdfd 100%);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150% 150%;
}
@media (prefers-reduced-motion: reduce) {
  .elm-progress progress:indeterminate {
    animation-duration: 15s;
  }
}
.elm-progress progress:indeterminate::-webkit-progress-bar {
  background-color: transparent;
}
.elm-progress progress:indeterminate::-moz-progress-bar {
  background-color: transparent;
}
@supports (background: conic-gradient(#000, #fff)) {
  .elm-progress progress[style^="--progress-conic:"] {
    --fill: calc(var(--progress-conic) * 1%);
    background: conic-gradient(var(--progress-value--backgroundColor) var(--fill), #fff 0);
    border: 0;
    border-radius: 50%;
    height: 4.6875rem;
    width: 4.6875rem;
  }
  .elm-progress progress[style^="--progress-conic:"]::-webkit-progress-inner-element, .elm-progress progress[style^="--progress-conic:"]::-webkit-progress-bar, .elm-progress progress[style^="--progress-conic:"]::-webkit-progress-value {
    display: none;
  }
  .elm-progress progress[style^="--progress-conic:"]::-moz-progress-bar {
    background: none;
  }
  .elm-progress progress[style^="--progress-conic:"] + output, .elm-progress progress[style^="--progress-conic:"] + label {
    align-items: center;
    background: #fdfdfd;
    border-radius: 50%;
    display: block;
    display: flex;
    height: 3.4375rem;
    justify-content: center;
    position: absolute;
    transform: translate(0.625rem, -4.0625rem);
    width: 3.4375rem;
  }
}

@keyframes elmProgressMoveIndeterminate {
  0% {
    background-position: -35% 0;
    background-size: 35% 100%;
  }
  60% {
    background-position: 101% 0;
    background-size: 65% 100%;
  }
  100% {
    background-position: 101% 0;
    background-size: 1% 100%;
  }
}