/* src/styles-utils.scss */
.align-right {
  display: flex;
  justify-content: flex-end;
}
.align-center,
.align-middle {
  display: flex;
  justify-content: center;
}
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.flex-row:has(.flex-col-50:only-child) {
  padding-right: calc(1rem + 3px);
}
.flex-col-50 {
  flex: 1 1 50%;
  max-width: 50%;
}
.flex-col-49 {
  flex: 1 1 48.5%;
  max-width: 48.5%;
}

/* src/styles-bricks-patches.scss */
.bricks-input[type=radio].error + label::before {
  border: 1px solid var(--color-error);
}
input.bricks-input[type=checkbox].error + label::before {
  border: 1px solid var(--color-error);
}
html {
  height: auto !important;
  overflow-y: auto !important;
}
bricks-alert.bricks-alert-full-width {
  margin-top: var(--spacing-m) !important;
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
}
bricks-alert.bricks-alert-full-width .bricks-alert-overlay-container,
bricks-alert.bricks-alert-full-width .bricks-alert-container {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  min-width: unset !important;
}
bricks-alert.bricks-alert-full-width-no-content .bricks-alert-overlay-container,
bricks-alert.bricks-alert-full-width-no-content .bricks-alert-container {
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 16px;
}
bricks-alert.bricks-alert-full-width-no-content .header-container,
bricks-alert.bricks-alert-full-width-no-content .alert-title {
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 150%;
  margin-bottom: 0 !important;
}
bricks-alert.bricks-alert-full-width-no-content .content-container {
  padding-top: 0 !important;
}
.bricks-input[type=radio] + label.density,
.bricks-input[type=checkbox] + label.density {
  height: 18px !important;
  line-height: 18px !important;
  font-size: var(--font-size-m) !important;
}
.bricks-input[type=checkbox]:checked + label.density::before {
  background-size: 16px 16px !important;
  background-position: center !important;
}
mat-tooltip-component .mat-mdc-tooltip-surface {
  max-width: 250px !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  white-space: normal;
  text-align: left;
}

/* node_modules/maplibre-gl/dist/maplibre-gl.css */
.maplibregl-map {
  font:
    12px/20px Helvetica Neue,
    Arial,
    Helvetica,
    sans-serif;
  overflow: hidden;
  position: relative;
  -webkit-tap-highlight-color: rgb(0, 0, 0, 0);
}
.maplibregl-canvas {
  left: 0;
  position: absolute;
  top: 0;
}
.maplibregl-map:fullscreen {
  height: 100%;
  width: 100%;
}
.maplibregl-ctrl-group button.maplibregl-ctrl-compass {
  touch-action: none;
}
.maplibregl-canvas-container.maplibregl-interactive,
.maplibregl-ctrl-group button.maplibregl-ctrl-compass {
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.maplibregl-canvas-container.maplibregl-interactive.maplibregl-track-pointer {
  cursor: pointer;
}
.maplibregl-canvas-container.maplibregl-interactive:active,
.maplibregl-ctrl-group button.maplibregl-ctrl-compass:active {
  cursor: grabbing;
}
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate,
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate .maplibregl-canvas {
  touch-action: pan-x pan-y;
}
.maplibregl-canvas-container.maplibregl-touch-drag-pan,
.maplibregl-canvas-container.maplibregl-touch-drag-pan .maplibregl-canvas {
  touch-action: pinch-zoom;
}
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan,
.maplibregl-canvas-container.maplibregl-touch-zoom-rotate.maplibregl-touch-drag-pan .maplibregl-canvas {
  touch-action: none;
}
.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures,
.maplibregl-canvas-container.maplibregl-touch-drag-pan.maplibregl-cooperative-gestures .maplibregl-canvas {
  touch-action: pan-x pan-y;
}
.maplibregl-ctrl-bottom-left,
.maplibregl-ctrl-bottom-right,
.maplibregl-ctrl-top-left,
.maplibregl-ctrl-top-right {
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.maplibregl-ctrl-top-left {
  left: 0;
  top: 0;
}
.maplibregl-ctrl-top-right {
  right: 0;
  top: 0;
}
.maplibregl-ctrl-bottom-left {
  bottom: 0;
  left: 0;
}
.maplibregl-ctrl-bottom-right {
  bottom: 0;
  right: 0;
}
.maplibregl-ctrl {
  clear: both;
  pointer-events: auto;
  transform: translate(0);
}
.maplibregl-ctrl-top-left .maplibregl-ctrl {
  float: left;
  margin: 10px 0 0 10px;
}
.maplibregl-ctrl-top-right .maplibregl-ctrl {
  float: right;
  margin: 10px 10px 0 0;
}
.maplibregl-ctrl-bottom-left .maplibregl-ctrl {
  float: left;
  margin: 0 0 10px 10px;
}
.maplibregl-ctrl-bottom-right .maplibregl-ctrl {
  float: right;
  margin: 0 10px 10px 0;
}
.maplibregl-ctrl-group {
  background: #fff;
  border-radius: 4px;
}
.maplibregl-ctrl-group:not(:empty) {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .1);
}
@media (forced-colors: active) {
  .maplibregl-ctrl-group:not(:empty) {
    box-shadow: 0 0 0 2px ButtonText;
  }
}
.maplibregl-ctrl-group button {
  background-color: transparent;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 29px;
  outline: none;
  padding: 0;
  width: 29px;
}
.maplibregl-ctrl-group button + button {
  border-top: 1px solid #ddd;
}
.maplibregl-ctrl button .maplibregl-ctrl-icon {
  background-position: 50%;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
  width: 100%;
}
@media (forced-colors: active) {
  .maplibregl-ctrl-icon {
    background-color: transparent;
  }
  .maplibregl-ctrl-group button + button {
    border-top: 1px solid ButtonText;
  }
}
.maplibregl-ctrl button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.maplibregl-ctrl-attrib-button:focus,
.maplibregl-ctrl-group button:focus {
  box-shadow: 0 0 2px 2px #0096ff;
}
.maplibregl-ctrl button:disabled {
  cursor: not-allowed;
}
.maplibregl-ctrl button:disabled .maplibregl-ctrl-icon {
  opacity: .25;
}
@media (hover: hover) {
  .maplibregl-ctrl button:not(:disabled):hover {
    background-color: rgba(0, 0, 0, .05);
  }
}
.maplibregl-ctrl button:not(:disabled):active {
  background-color: rgba(0, 0, 0, .05);
}
.maplibregl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}
.maplibregl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}
.maplibregl-ctrl-group button:focus:first-child {
  border-radius: 4px 4px 0 0;
}
.maplibregl-ctrl-group button:focus:last-child {
  border-radius: 0 0 4px 4px;
}
.maplibregl-ctrl-group button:focus:only-child {
  border-radius: inherit;
}
.maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13z'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5'/%3E%3C/svg%3E");
}
@media (forced-colors: active) {
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13z'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5'/%3E%3C/svg%3E");
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-out .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13z'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-zoom-in .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5'/%3E%3C/svg%3E");
  }
}
.maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1z'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1z'/%3E%3C/svg%3E");
}
@media (forced-colors: active) {
  .maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1z'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1z'/%3E%3C/svg%3E");
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  .maplibregl-ctrl button.maplibregl-ctrl-fullscreen .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1z'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-shrink .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1z'/%3E%3C/svg%3E");
  }
}
.maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E");
}
@media (forced-colors: active) {
  .maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E");
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  .maplibregl-ctrl button.maplibregl-ctrl-compass .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29'%3E%3Cpath d='m10.5 14 4-8 4 8z'/%3E%3Cpath fill='%23ccc' d='m10.5 16 4 8 4-8z'/%3E%3C/svg%3E");
  }
}
.maplibregl-ctrl button.maplibregl-ctrl-globe .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='%23333' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='8.5'/%3E%3Cpath d='M17.5 11c0 4.819-3.02 8.5-6.5 8.5S4.5 15.819 4.5 11 7.52 2.5 11 2.5s6.5 3.681 6.5 8.5Z'/%3E%3Cpath d='M13.5 11c0 2.447-.331 4.64-.853 6.206-.262.785-.562 1.384-.872 1.777-.314.399-.58.517-.775.517s-.461-.118-.775-.517c-.31-.393-.61-.992-.872-1.777C8.831 15.64 8.5 13.446 8.5 11s.331-4.64.853-6.206c.262-.785.562-1.384.872-1.777.314-.399.58-.517.775-.517s.461.118.775.517c.31.393.61.992.872 1.777.522 1.565.853 3.76.853 6.206Z'/%3E%3Cpath d='M11 7.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138q.07-.058.224-.138c.299-.151.763-.302 1.379-.434C7.378 5.666 9.091 5.5 11 5.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138q-.07.058-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428ZM4.486 6.436ZM11 16.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138 1.3 1.3 0 0 1 .224-.138c.299-.151.763-.302 1.379-.434C7.378 14.666 9.091 14.5 11 14.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138a1.3 1.3 0 0 1-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428Zm-6.514-1.064ZM11 12.5c-2.46 0-4.672-.222-6.255-.574-.796-.177-1.406-.38-1.805-.59a1.5 1.5 0 0 1-.39-.272.3.3 0 0 1-.047-.064.3.3 0 0 1 .048-.064c.066-.073.189-.167.389-.272.399-.21 1.009-.413 1.805-.59C6.328 9.722 8.54 9.5 11 9.5s4.672.222 6.256.574c.795.177 1.405.38 1.804.59.2.105.323.2.39.272a.3.3 0 0 1 .047.064.3.3 0 0 1-.048.064 1.4 1.4 0 0 1-.389.272c-.399.21-1.009.413-1.804.59-1.584.352-3.796.574-6.256.574Zm-8.501-1.51v.002zm0 .018v.002zm17.002.002v-.002zm0-.018v-.002z'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-globe-enabled .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' stroke='%2333b5e5' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='8.5'/%3E%3Cpath d='M17.5 11c0 4.819-3.02 8.5-6.5 8.5S4.5 15.819 4.5 11 7.52 2.5 11 2.5s6.5 3.681 6.5 8.5Z'/%3E%3Cpath d='M13.5 11c0 2.447-.331 4.64-.853 6.206-.262.785-.562 1.384-.872 1.777-.314.399-.58.517-.775.517s-.461-.118-.775-.517c-.31-.393-.61-.992-.872-1.777C8.831 15.64 8.5 13.446 8.5 11s.331-4.64.853-6.206c.262-.785.562-1.384.872-1.777.314-.399.58-.517.775-.517s.461.118.775.517c.31.393.61.992.872 1.777.522 1.565.853 3.76.853 6.206Z'/%3E%3Cpath d='M11 7.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138q.07-.058.224-.138c.299-.151.763-.302 1.379-.434C7.378 5.666 9.091 5.5 11 5.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138q-.07.058-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428ZM4.486 6.436ZM11 16.5c-1.909 0-3.622-.166-4.845-.428-.616-.132-1.08-.283-1.379-.434a1.3 1.3 0 0 1-.224-.138 1.3 1.3 0 0 1 .224-.138c.299-.151.763-.302 1.379-.434C7.378 14.666 9.091 14.5 11 14.5s3.622.166 4.845.428c.616.132 1.08.283 1.379.434.105.053.177.1.224.138a1.3 1.3 0 0 1-.224.138c-.299.151-.763.302-1.379.434-1.223.262-2.936.428-4.845.428Zm-6.514-1.064ZM11 12.5c-2.46 0-4.672-.222-6.255-.574-.796-.177-1.406-.38-1.805-.59a1.5 1.5 0 0 1-.39-.272.3.3 0 0 1-.047-.064.3.3 0 0 1 .048-.064c.066-.073.189-.167.389-.272.399-.21 1.009-.413 1.805-.59C6.328 9.722 8.54 9.5 11 9.5s4.672.222 6.256.574c.795.177 1.405.38 1.804.59.2.105.323.2.39.272a.3.3 0 0 1 .047.064.3.3 0 0 1-.048.064 1.4 1.4 0 0 1-.389.272c-.399.21-1.009.413-1.804.59-1.584.352-3.796.574-6.256.574Zm-8.501-1.51v.002zm0 .018v.002zm17.002.002v-.002zm0-.018v-.002z'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-terrain .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%23333' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-terrain-enabled .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='%2333b5e5' viewBox='0 0 22 22'%3E%3Cpath d='m1.754 13.406 4.453-4.851 3.09 3.09 3.281 3.277.969-.969-3.309-3.312 3.844-4.121 6.148 6.886h1.082v-.855l-7.207-8.07-4.84 5.187L6.169 6.57l-5.48 5.965v.871ZM.688 16.844h20.625v1.375H.688Zm0 0'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23333' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23aaa' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1z'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e58978' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e54e33' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E");
}
.maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-waiting .maplibregl-ctrl-icon {
  animation: maplibregl-spin 2s linear infinite;
}
@media (forced-colors: active) {
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23fff' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23999' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1z'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-active-error .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e58978' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%2333b5e5' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate.maplibregl-ctrl-geolocate-background-error .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23e54e33' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3C/svg%3E");
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/svg%3E");
  }
  .maplibregl-ctrl button.maplibregl-ctrl-geolocate:disabled .maplibregl-ctrl-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='%23666' viewBox='0 0 20 20'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1m0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7'/%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Cpath fill='red' d='m14 5 1 1-9 9-1-1z'/%3E%3C/svg%3E");
  }
}
@keyframes maplibregl-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
a.maplibregl-ctrl-logo {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  height: 23px;
  margin: 0 0 -4px -4px;
  overflow: hidden;
  width: 88px;
}
a.maplibregl-ctrl-logo.maplibregl-compact {
  width: 14px;
}
@media (forced-colors: active) {
  a.maplibregl-ctrl-logo {
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E");
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  a.maplibregl-ctrl-logo {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='23' fill='none'%3E%3Cpath fill='%23000' fill-opacity='.4' fill-rule='evenodd' d='M17.408 16.796h-1.827l2.501-12.095h.198l3.324 6.533.988 2.19.988-2.19 3.258-6.533h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.929 5.644h-.098l-2.914-5.644-.757-1.71-.345 1.71zm1.958-3.42-.726 3.663a1.255 1.255 0 0 1-1.232 1.011h-1.827a1.255 1.255 0 0 1-1.229-1.509l2.501-12.095a1.255 1.255 0 0 1 1.23-1.001h.197a1.25 1.25 0 0 1 1.12.685l3.19 6.273 3.125-6.263a1.25 1.25 0 0 1 1.123-.695h.181a1.255 1.255 0 0 1 1.227.991l1.443 6.71a5 5 0 0 1 .314-.787l.009-.016a4.6 4.6 0 0 1 1.777-1.887c.782-.46 1.668-.667 2.611-.667a4.6 4.6 0 0 1 1.7.32l.306.134c.21-.16.474-.256.759-.256h1.694a1.255 1.255 0 0 1 1.212.925 1.255 1.255 0 0 1 1.212-.925h1.711c.284 0 .545.094.755.252.613-.3 1.312-.45 2.075-.45 1.356 0 2.557.445 3.482 1.4q.47.48.763 1.064V4.701a1.255 1.255 0 0 1 1.255-1.255h1.86A1.255 1.255 0 0 1 54.44 4.7v9.194h2.217c.19 0 .37.043.532.118v-4.77c0-.356.147-.678.385-.906a2.42 2.42 0 0 1-.682-1.71c0-.665.267-1.253.735-1.7a2.45 2.45 0 0 1 1.722-.674 2.43 2.43 0 0 1 1.705.675q.318.302.504.683V4.7a1.255 1.255 0 0 1 1.255-1.255h1.744A1.255 1.255 0 0 1 65.812 4.7v3.335a4.8 4.8 0 0 1 1.526-.246c.938 0 1.817.214 2.59.69a4.47 4.47 0 0 1 1.67 1.743v-.98a1.255 1.255 0 0 1 1.256-1.256h1.777c.233 0 .451.064.639.174a3.4 3.4 0 0 1 1.567-.372c.346 0 .861.02 1.285.232a1.25 1.25 0 0 1 .689 1.004 4.7 4.7 0 0 1 .853-.588c.795-.44 1.675-.647 2.61-.647 1.385 0 2.65.39 3.525 1.396.836.938 1.168 2.173 1.168 3.528q-.001.515-.056 1.051a1.255 1.255 0 0 1-.947 1.09l.408.952a1.255 1.255 0 0 1-.477 1.552c-.418.268-.92.463-1.458.612-.613.171-1.304.244-2.049.244-1.06 0-2.043-.207-2.886-.698l-.015-.008c-.798-.48-1.419-1.135-1.818-1.963l-.004-.008a5.8 5.8 0 0 1-.548-2.512q0-.429.053-.843a1.3 1.3 0 0 1-.333-.086l-.166-.004c-.223 0-.426.062-.643.228-.03.024-.142.139-.142.59v3.883a1.255 1.255 0 0 1-1.256 1.256h-1.777a1.255 1.255 0 0 1-1.256-1.256V15.69l-.032.057a4.8 4.8 0 0 1-1.86 1.833 5.04 5.04 0 0 1-2.484.634 4.5 4.5 0 0 1-1.935-.424 1.25 1.25 0 0 1-.764.258h-1.71a1.255 1.255 0 0 1-1.256-1.255V7.687a2.4 2.4 0 0 1-.428.625c.253.23.412.561.412.93v7.553a1.255 1.255 0 0 1-1.256 1.255h-1.843a1.25 1.25 0 0 1-.894-.373c-.228.23-.544.373-.894.373H51.32a1.255 1.255 0 0 1-1.256-1.255v-1.251l-.061.117a4.7 4.7 0 0 1-1.782 1.884 4.77 4.77 0 0 1-2.485.67 5.6 5.6 0 0 1-1.485-.188l.009 2.764a1.255 1.255 0 0 1-1.255 1.259h-1.729a1.255 1.255 0 0 1-1.255-1.255v-3.537a1.255 1.255 0 0 1-1.167.793h-1.679a1.25 1.25 0 0 1-.77-.263 4.5 4.5 0 0 1-1.945.429c-.885 0-1.724-.21-2.495-.632l-.017-.01a5 5 0 0 1-1.081-.836 1.255 1.255 0 0 1-1.254 1.312h-1.81a1.255 1.255 0 0 1-1.228-.99l-.782-3.625-2.044 3.939a1.25 1.25 0 0 1-1.115.676h-.098a1.25 1.25 0 0 1-1.116-.68l-2.061-3.994zM35.92 16.63l.207-.114.223-.15q.493-.356.735-.785l.061-.118.033 1.332h1.678V9.242h-1.694l-.033 1.267q-.133-.329-.526-.658l-.032-.028a3.2 3.2 0 0 0-.668-.428l-.27-.12a3.3 3.3 0 0 0-1.235-.23q-1.136-.001-1.974.493a3.36 3.36 0 0 0-1.3 1.382q-.445.89-.444 2.074 0 1.2.51 2.107a3.8 3.8 0 0 0 1.382 1.381 3.9 3.9 0 0 0 1.893.477q.795 0 1.455-.33zm-2.789-5.38q-.576.675-.575 1.762 0 1.102.559 1.794.576.675 1.645.675a2.25 2.25 0 0 0 .934-.19 2.2 2.2 0 0 0 .468-.29l.178-.161a2.2 2.2 0 0 0 .397-.561q.244-.5.244-1.15v-.115q0-.708-.296-1.267l-.043-.077a2.2 2.2 0 0 0-.633-.709l-.13-.086-.047-.028a2.1 2.1 0 0 0-1.073-.285q-1.052 0-1.629.692zm2.316 2.706c.163-.17.28-.407.28-.83v-.114c0-.292-.06-.508-.15-.68a.96.96 0 0 0-.353-.389.85.85 0 0 0-.464-.127c-.4 0-.56.114-.664.239l-.01.012c-.148.174-.275.45-.275.945 0 .506.122.801.27.99.097.11.266.224.68.224.303 0 .504-.09.687-.269zm7.545 1.705a2.6 2.6 0 0 0 .331.423q.319.33.755.548l.173.074q.65.255 1.49.255 1.02 0 1.844-.493a3.45 3.45 0 0 0 1.316-1.4q.493-.904.493-2.089 0-1.909-.988-2.913-.988-1.02-2.584-1.02-.898 0-1.575.347a3 3 0 0 0-.415.262l-.199.166a3.4 3.4 0 0 0-.64.82V9.242h-1.712v11.553h1.729l-.017-5.134zm.53-1.138q.206.29.48.5l.155.11.053.034q.51.296 1.119.297 1.07 0 1.645-.675.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.435 0-.835.16a2 2 0 0 0-.284.136 2 2 0 0 0-.363.254 2.2 2.2 0 0 0-.46.569l-.082.162a2.6 2.6 0 0 0-.213 1.072v.115q0 .707.296 1.267l.135.211zm.964-.818a1.1 1.1 0 0 0 .367.385.94.94 0 0 0 .476.118c.423 0 .59-.117.687-.23.159-.194.28-.478.28-.95 0-.53-.133-.8-.266-.952l-.021-.025c-.078-.094-.231-.221-.68-.221a1 1 0 0 0-.503.135l-.012.007a.86.86 0 0 0-.335.343c-.073.133-.132.324-.132.614v.115a1.4 1.4 0 0 0 .14.66zm15.7-6.222q.347-.346.346-.856a1.05 1.05 0 0 0-.345-.79 1.18 1.18 0 0 0-.84-.329q-.51 0-.855.33a1.05 1.05 0 0 0-.346.79q0 .51.346.855.345.346.856.346.51 0 .839-.346zm4.337 9.314.033-1.332q.191.403.59.747l.098.081a4 4 0 0 0 .316.224l.223.122a3.2 3.2 0 0 0 1.44.322 3.8 3.8 0 0 0 1.875-.477 3.5 3.5 0 0 0 1.382-1.366q.527-.89.526-2.09 0-1.184-.444-2.073a3.24 3.24 0 0 0-1.283-1.399q-.823-.51-1.942-.51a3.5 3.5 0 0 0-1.527.344l-.086.043-.165.09a3 3 0 0 0-.33.214q-.432.315-.656.707a2 2 0 0 0-.099.198l.082-1.283V4.701h-1.744v12.095zm.473-2.509a2.5 2.5 0 0 0 .566.7q.117.098.245.18l.144.08a2.1 2.1 0 0 0 .975.232q1.07 0 1.645-.675.576-.69.576-1.778 0-1.102-.576-1.777-.56-.691-1.645-.692a2.2 2.2 0 0 0-1.015.235q-.22.113-.415.282l-.15.142a2.1 2.1 0 0 0-.42.594q-.223.479-.223 1.1v.115q0 .705.293 1.26zm2.616-.293c.157-.191.28-.479.28-.967 0-.51-.13-.79-.276-.961l-.021-.026c-.082-.1-.232-.225-.67-.225a.87.87 0 0 0-.681.279l-.012.011c-.154.155-.274.38-.274.807v.115c0 .285.057.499.144.669a1.1 1.1 0 0 0 .367.405c.137.082.28.123.455.123.423 0 .59-.118.686-.23zm8.266-3.013q.345-.13.724-.14l.069-.002q.493 0 .642.099l.247-1.794q-.196-.099-.717-.099a2.3 2.3 0 0 0-.545.063 2 2 0 0 0-.411.148 2.2 2.2 0 0 0-.4.249 2.5 2.5 0 0 0-.485.499 2.7 2.7 0 0 0-.32.581l-.05.137v-1.48h-1.778v7.553h1.777v-3.884q0-.546.159-.943a1.5 1.5 0 0 1 .466-.636 2.5 2.5 0 0 1 .399-.253 2 2 0 0 1 .224-.099zm9.784 2.656.05-.922q0-1.743-.856-2.698-.838-.97-2.584-.97-1.119-.001-2.007.493a3.46 3.46 0 0 0-1.4 1.382q-.493.906-.493 2.106 0 1.07.428 1.975.428.89 1.332 1.432.906.526 2.255.526.973 0 1.668-.185l.044-.012.135-.04q.613-.184.984-.421l-.542-1.267q-.3.162-.642.274l-.297.087q-.51.131-1.3.131-.954 0-1.497-.444a1.6 1.6 0 0 1-.192-.193q-.366-.44-.512-1.234l-.004-.021zm-5.427-1.256-.003.022h3.752v-.138q-.011-.727-.288-1.118a1 1 0 0 0-.156-.176q-.46-.428-1.316-.428-.986 0-1.494.604-.379.45-.494 1.234zm-27.053 2.77V4.7h-1.86v12.095h5.333V15.15zm7.103-5.908v7.553h-1.843V9.242h1.843z'/%3E%3Cpath fill='%23fff' d='m19.63 11.151-.757-1.71-.345 1.71-1.12 5.644h-1.827L18.083 4.7h.197l3.325 6.533.988 2.19.988-2.19L26.839 4.7h.181l2.6 12.095h-1.81l-1.218-5.644-.362-1.71-.658 1.71-2.93 5.644h-.098l-2.913-5.644zm14.836 5.81q-1.02 0-1.893-.478a3.8 3.8 0 0 1-1.381-1.382q-.51-.906-.51-2.106 0-1.185.444-2.074a3.36 3.36 0 0 1 1.3-1.382q.839-.494 1.974-.494a3.3 3.3 0 0 1 1.234.231 3.3 3.3 0 0 1 .97.575q.396.33.527.659l.033-1.267h1.694v7.553H37.18l-.033-1.332q-.279.593-1.02 1.053a3.17 3.17 0 0 1-1.662.444zm.296-1.482q.938 0 1.58-.642.642-.66.642-1.711v-.115q0-.708-.296-1.267a2.2 2.2 0 0 0-.807-.872 2.1 2.1 0 0 0-1.119-.313q-1.053 0-1.629.692-.575.675-.575 1.76 0 1.103.559 1.795.577.675 1.645.675zm6.521-6.237h1.711v1.4q.906-1.597 2.83-1.597 1.596 0 2.584 1.02.988 1.005.988 2.914 0 1.185-.493 2.09a3.46 3.46 0 0 1-1.316 1.399 3.5 3.5 0 0 1-1.844.493q-.954 0-1.662-.329a2.67 2.67 0 0 1-1.086-.97l.017 5.134h-1.728zm4.048 6.22q1.07 0 1.645-.674.577-.69.576-1.762 0-1.119-.576-1.777-.558-.675-1.645-.675-.592 0-1.12.296-.51.28-.822.823-.296.527-.296 1.234v.115q0 .708.296 1.267.313.543.823.855.51.296 1.119.297z'/%3E%3Cpath fill='%23e1e3e9' d='M51.325 4.7h1.86v10.45h3.473v1.646h-5.333zm7.12 4.542h1.843v7.553h-1.843zm.905-1.415a1.16 1.16 0 0 1-.856-.346 1.17 1.17 0 0 1-.346-.856 1.05 1.05 0 0 1 .346-.79q.346-.329.856-.329.494 0 .839.33a1.05 1.05 0 0 1 .345.79 1.16 1.16 0 0 1-.345.855q-.33.346-.84.346zm7.875 9.133a3.17 3.17 0 0 1-1.662-.444q-.723-.46-1.004-1.053l-.033 1.332h-1.71V4.701h1.743v4.657l-.082 1.283q.279-.658 1.086-1.119a3.5 3.5 0 0 1 1.778-.477q1.119 0 1.942.51a3.24 3.24 0 0 1 1.283 1.4q.445.888.444 2.072 0 1.201-.526 2.09a3.5 3.5 0 0 1-1.382 1.366 3.8 3.8 0 0 1-1.876.477zm-.296-1.481q1.069 0 1.645-.675.577-.69.577-1.778 0-1.102-.577-1.776-.56-.691-1.645-.692a2.12 2.12 0 0 0-1.58.659q-.642.641-.642 1.694v.115q0 .71.296 1.267a2.4 2.4 0 0 0 .807.872 2.1 2.1 0 0 0 1.119.313zm5.927-6.237h1.777v1.481q.263-.757.856-1.217a2.14 2.14 0 0 1 1.349-.46q.527 0 .724.098l-.247 1.794q-.149-.099-.642-.099-.774 0-1.416.494-.626.493-.626 1.58v3.883h-1.777V9.242zm9.534 7.718q-1.35 0-2.255-.526-.904-.543-1.332-1.432a4.6 4.6 0 0 1-.428-1.975q0-1.2.493-2.106a3.46 3.46 0 0 1 1.4-1.382q.889-.495 2.007-.494 1.744 0 2.584.97.855.956.856 2.7 0 .444-.05.92h-5.43q.18 1.005.708 1.45.542.443 1.497.443.79 0 1.3-.131a4 4 0 0 0 .938-.362l.542 1.267q-.411.263-1.119.46-.708.198-1.711.197zm1.596-4.558q.016-1.02-.444-1.432-.46-.428-1.316-.428-1.728 0-1.991 1.86z'/%3E%3Cpath d='M5.074 15.948a.484.657 0 0 0-.486.659v1.84a.484.657 0 0 0 .486.659h4.101a.484.657 0 0 0 .486-.659v-1.84a.484.657 0 0 0-.486-.659zm3.56 1.16H5.617v.838h3.017z' style='fill:%23fff;fill-rule:evenodd;stroke-width:1.03600001'/%3E%3Cg style='stroke-width:1.12603545'%3E%3Cpath d='M-9.408-1.416c-3.833-.025-7.056 2.912-7.08 6.615-.02 3.08 1.653 4.832 3.107 6.268.903.892 1.721 1.74 2.32 2.902l-.525-.004c-.543-.003-.992.304-1.24.639a1.87 1.87 0 0 0-.362 1.121l-.011 1.877c-.003.402.104.787.347 1.125.244.338.688.653 1.23.656l4.142.028c.542.003.99-.306 1.238-.641a1.87 1.87 0 0 0 .363-1.121l.012-1.875a1.87 1.87 0 0 0-.348-1.127c-.243-.338-.688-.653-1.23-.656l-.518-.004c.597-1.145 1.425-1.983 2.348-2.87 1.473-1.414 3.18-3.149 3.2-6.226-.016-3.59-2.923-6.684-6.993-6.707m-.006 1.1v.002c3.274.02 5.92 2.532 5.9 5.6-.017 2.706-1.39 4.026-2.863 5.44-1.034.994-2.118 2.033-2.814 3.633-.018.041-.052.055-.075.065q-.013.004-.02.01a.34.34 0 0 1-.226.084.34.34 0 0 1-.224-.086l-.092-.077c-.699-1.615-1.768-2.669-2.781-3.67-1.454-1.435-2.797-2.762-2.78-5.478.02-3.067 2.7-5.545 5.975-5.523m-.02 2.826c-1.62-.01-2.944 1.315-2.955 2.96-.01 1.646 1.295 2.988 2.916 2.999h.002c1.621.01 2.943-1.316 2.953-2.961.011-1.646-1.294-2.988-2.916-2.998m-.005 1.1c1.017.006 1.829.83 1.822 1.89s-.83 1.874-1.848 1.867c-1.018-.006-1.829-.83-1.822-1.89s.83-1.874 1.848-1.868m-2.155 11.857 4.14.025c.271.002.49.305.487.676l-.013 1.875c-.003.37-.224.67-.495.668l-4.14-.025c-.27-.002-.487-.306-.485-.676l.012-1.875c.003-.37.224-.67.494-.668' style='color:%23000;font-style:normal;font-variant:normal;font-weight:400;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:%23000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:evenodd;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:%23000;solid-opacity:1;vector-effect:none;fill:%23000;fill-opacity:.4;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-9.415-.316C-12.69-.338-15.37 2.14-15.39 5.207c-.017 2.716 1.326 4.041 2.78 5.477 1.013 1 2.081 2.055 2.78 3.67l.092.076a.34.34 0 0 0 .225.086.34.34 0 0 0 .227-.083l.019-.01c.022-.009.057-.024.074-.064.697-1.6 1.78-2.64 2.814-3.634 1.473-1.414 2.847-2.733 2.864-5.44.02-3.067-2.627-5.58-5.901-5.601m-.057 8.784c1.621.011 2.944-1.315 2.955-2.96.01-1.646-1.295-2.988-2.916-2.999-1.622-.01-2.945 1.315-2.955 2.96s1.295 2.989 2.916 3' style='clip-rule:evenodd;fill:%23e1e3e9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3Cpath d='M-11.594 15.465c-.27-.002-.492.297-.494.668l-.012 1.876c-.003.371.214.673.485.675l4.14.027c.271.002.492-.298.495-.668l.012-1.877c.003-.37-.215-.672-.485-.674z' style='clip-rule:evenodd;fill:%23fff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.47727823;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:.4' transform='translate(15.553 2.85)scale(.88807)'/%3E%3C/g%3E%3C/svg%3E");
  }
}
.maplibregl-ctrl.maplibregl-ctrl-attrib {
  background-color: hsla(0, 0%, 100%, .5);
  margin: 0;
  padding: 0 5px;
}
@media screen {
  .maplibregl-ctrl-attrib.maplibregl-compact {
    background-color: #fff;
    border-radius: 12px;
    box-sizing: content-box;
    color: #000;
    margin: 10px;
    min-height: 20px;
    padding: 2px 24px 2px 0;
    position: relative;
  }
  .maplibregl-ctrl-attrib.maplibregl-compact-show {
    padding: 2px 28px 2px 8px;
    visibility: visible;
  }
  .maplibregl-ctrl-bottom-left > .maplibregl-ctrl-attrib.maplibregl-compact-show,
  .maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact-show {
    border-radius: 12px;
    padding: 2px 8px 2px 28px;
  }
  .maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-inner {
    display: none;
  }
  .maplibregl-ctrl-attrib-button {
    background-color: hsla(0, 0%, 100%, .5);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
    border: 0;
    border-radius: 12px;
    box-sizing: border-box;
    cursor: pointer;
    display: none;
    height: 24px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
  }
  .maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    list-style: none;
  }
  .maplibregl-ctrl-attrib summary.maplibregl-ctrl-attrib-button::-webkit-details-marker {
    display: none;
  }
  .maplibregl-ctrl-bottom-left .maplibregl-ctrl-attrib-button,
  .maplibregl-ctrl-top-left .maplibregl-ctrl-attrib-button {
    left: 0;
  }
  .maplibregl-ctrl-attrib.maplibregl-compact .maplibregl-ctrl-attrib-button,
  .maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-inner {
    display: block;
  }
  .maplibregl-ctrl-attrib.maplibregl-compact-show .maplibregl-ctrl-attrib-button {
    background-color: rgba(0, 0, 0, .05);
  }
  .maplibregl-ctrl-bottom-right > .maplibregl-ctrl-attrib.maplibregl-compact:after {
    bottom: 0;
    right: 0;
  }
  .maplibregl-ctrl-top-right > .maplibregl-ctrl-attrib.maplibregl-compact:after {
    right: 0;
    top: 0;
  }
  .maplibregl-ctrl-top-left > .maplibregl-ctrl-attrib.maplibregl-compact:after {
    left: 0;
    top: 0;
  }
  .maplibregl-ctrl-bottom-left > .maplibregl-ctrl-attrib.maplibregl-compact:after {
    bottom: 0;
    left: 0;
  }
}
@media screen and (forced-colors: active) {
  .maplibregl-ctrl-attrib.maplibregl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
  }
}
@media screen and (forced-colors: active) and (prefers-color-scheme: light) {
  .maplibregl-ctrl-attrib.maplibregl-compact:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill-rule='evenodd' viewBox='0 0 20 20'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");
  }
}
.maplibregl-ctrl-attrib a {
  color: rgba(0, 0, 0, .75);
  text-decoration: none;
}
.maplibregl-ctrl-attrib a:hover {
  color: inherit;
  text-decoration: underline;
}
.maplibregl-attrib-empty {
  display: none;
}
.maplibregl-ctrl-scale {
  background-color: hsla(0, 0%, 100%, .75);
  border: 2px solid #333;
  border-top: #333;
  box-sizing: border-box;
  color: #333;
  font-size: 10px;
  padding: 0 5px;
  white-space: nowrap;
}
.maplibregl-popup {
  display: flex;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  will-change: transform;
}
.maplibregl-popup-anchor-top,
.maplibregl-popup-anchor-top-left,
.maplibregl-popup-anchor-top-right {
  flex-direction: column;
}
.maplibregl-popup-anchor-bottom,
.maplibregl-popup-anchor-bottom-left,
.maplibregl-popup-anchor-bottom-right {
  flex-direction: column-reverse;
}
.maplibregl-popup-anchor-left {
  flex-direction: row;
}
.maplibregl-popup-anchor-right {
  flex-direction: row-reverse;
}
.maplibregl-popup-tip {
  border: 10px solid transparent;
  height: 0;
  width: 0;
  z-index: 1;
}
.maplibregl-popup-anchor-top .maplibregl-popup-tip {
  align-self: center;
  border-bottom-color: #fff;
  border-top: none;
}
.maplibregl-popup-anchor-top-left .maplibregl-popup-tip {
  align-self: flex-start;
  border-bottom-color: #fff;
  border-left: none;
  border-top: none;
}
.maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
  align-self: flex-end;
  border-bottom-color: #fff;
  border-right: none;
  border-top: none;
}
.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
  align-self: center;
  border-bottom: none;
  border-top-color: #fff;
}
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip {
  align-self: flex-start;
  border-bottom: none;
  border-left: none;
  border-top-color: #fff;
}
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
  align-self: flex-end;
  border-bottom: none;
  border-right: none;
  border-top-color: #fff;
}
.maplibregl-popup-anchor-left .maplibregl-popup-tip {
  align-self: center;
  border-left: none;
  border-right-color: #fff;
}
.maplibregl-popup-anchor-right .maplibregl-popup-tip {
  align-self: center;
  border-left-color: #fff;
  border-right: none;
}
.maplibregl-popup-close-button {
  background-color: transparent;
  border: 0;
  border-radius: 0 3px 0 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}
.maplibregl-popup-close-button:hover {
  background-color: rgba(0, 0, 0, .05);
}
.maplibregl-popup-content {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
  padding: 15px 10px;
  pointer-events: auto;
  position: relative;
}
.maplibregl-popup-anchor-top-left .maplibregl-popup-content {
  border-top-left-radius: 0;
}
.maplibregl-popup-anchor-top-right .maplibregl-popup-content {
  border-top-right-radius: 0;
}
.maplibregl-popup-anchor-bottom-left .maplibregl-popup-content {
  border-bottom-left-radius: 0;
}
.maplibregl-popup-anchor-bottom-right .maplibregl-popup-content {
  border-bottom-right-radius: 0;
}
.maplibregl-popup-track-pointer {
  display: none;
}
.maplibregl-popup-track-pointer * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.maplibregl-map:hover .maplibregl-popup-track-pointer {
  display: flex;
}
.maplibregl-map:active .maplibregl-popup-track-pointer {
  display: none;
}
.maplibregl-marker {
  left: 0;
  position: absolute;
  top: 0;
  transition: opacity .2s;
  will-change: transform;
}
.maplibregl-user-location-dot,
.maplibregl-user-location-dot:before {
  background-color: #1da1f2;
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
.maplibregl-user-location-dot:before {
  animation: maplibregl-user-location-dot-pulse 2s infinite;
  content: "";
  position: absolute;
}
.maplibregl-user-location-dot:after {
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, .35);
  box-sizing: border-box;
  content: "";
  height: 19px;
  left: -2px;
  position: absolute;
  top: -2px;
  width: 19px;
}
@keyframes maplibregl-user-location-dot-pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(3);
  }
  to {
    opacity: 0;
    transform: scale(1);
  }
}
.maplibregl-user-location-dot-stale {
  background-color: #aaa;
}
.maplibregl-user-location-dot-stale:after {
  display: none;
}
.maplibregl-user-location-accuracy-circle {
  background-color: #1da1f233;
  border-radius: 100%;
  height: 1px;
  width: 1px;
}
.maplibregl-crosshair,
.maplibregl-crosshair .maplibregl-interactive,
.maplibregl-crosshair .maplibregl-interactive:active {
  cursor: crosshair;
}
.maplibregl-boxzoom {
  background: #fff;
  border: 2px dotted #202020;
  height: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  top: 0;
  width: 0;
}
.maplibregl-cooperative-gesture-screen {
  align-items: center;
  background: rgba(0, 0, 0, .4);
  color: #fff;
  display: flex;
  font-size: 1.4em;
  inset: 0;
  justify-content: center;
  line-height: 1.2;
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: absolute;
  transition: opacity 1s ease 1s;
  z-index: 99999;
}
.maplibregl-cooperative-gesture-screen.maplibregl-show {
  opacity: 1;
  transition: opacity .05s;
}
.maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
  display: none;
}
@media (hover: none), (pointer: coarse) {
  .maplibregl-cooperative-gesture-screen .maplibregl-desktop-message {
    display: none;
  }
  .maplibregl-cooperative-gesture-screen .maplibregl-mobile-message {
    display: block;
  }
}
.maplibregl-pseudo-fullscreen {
  height: 100% !important;
  left: 0 !important;
  position: fixed !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 99999;
}

/* src/styles.scss */
a:hover {
  border-bottom: none !important;
}
bricks-card {
  margin-top: var(--spacing-m);
}
bricks-card h3 {
  margin-top: var(--spacing-l) !important;
  display: flex;
  align-items: center;
  gap: var(--spacing-m);
}
bricks-card h3:first-of-type {
  margin-top: 0 !important;
}
bricks-icon.tooltip-overlay__icon {
  cursor: pointer;
}
bricks-modal {
  display: flex;
  flex-direction: column;
  max-height: min(80vh, 800px);
  max-width: 640px;
}
bricks-modal-body {
  flex: 1 1 auto;
  overflow: auto;
}
bricks-modal-footer {
  flex-shrink: 0;
}
.input-tooltip-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.input-tooltip-row bricks-input,
.input-tooltip-row bricks-input-dropdown,
.input-tooltip-row bricks-input-autocomplete,
.input-tooltip-row bricks-date-picker {
  flex: 1 1 0;
  min-width: 0;
}
.input-tooltip-row bricks-input ::ng-deep mat-form-field,
.input-tooltip-row bricks-input-dropdown ::ng-deep mat-form-field,
.input-tooltip-row bricks-input-autocomplete ::ng-deep mat-form-field,
.input-tooltip-row bricks-date-picker ::ng-deep mat-form-field {
  width: 100% !important;
  min-width: 0;
  box-sizing: border-box;
}
.input-tooltip-row app-tooltip {
  flex: 0 0 auto;
  margin-left: 8px;
  display: flex;
  align-items: center;
  transform: translateY(2px);
}
.bricks-icon {
  height: 16px !important;
  width: 16px !important;
  display: inline-flex;
  vertical-align: middle;
}
.bricks-icon svg {
  height: 16px !important;
  width: 16px !important;
}
bricks-input {
  margin-bottom: var(--spacing-s);
}
bricks-input:not(:has(.mat-mdc-form-field-error-wrapper, bricks-error))[name=applicableValueCentsPerkWh] {
  margin-bottom: 0;
}
bricks-input:not(:has(.mat-mdc-form-field-error-wrapper, bricks-error)) .mat-mdc-form-field-subscript-wrapper {
  display: none;
}
.maplibregl-popup-content .pin-label {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-typo-secondary, #625a55);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
}
.maplibregl-popup-content {
  padding: 8px;
}
app-input-geo .mat-mdc-form-field-subscript-wrapper {
  margin-top: 8px;
}
app-input-geo .mat-mdc-form-field-error,
app-input-geo .mat-mdc-form-field-error-wrapper {
  display: contents !important;
}
.card-custom {
  display: grid;
  gap: 32px;
}
.card-custom__item {
  display: grid;
  gap: 16px;
}

/* node_modules/@enbw_bricks/ui/src/styles.scss */
:root {
  --color-background-body: #f9f7f5;
  --color-background-secondary: #ede6e1;
  --color-background-container: #ffffff;
  --color-text-default: #322a26;
  --color-text-default-rgba:
    50,
    42,
    38;
  --color-inactive: #999999;
  --color-bullets: #cccccc;
  --color-primary-default: #000099;
  --color-primary-default-decimal:
    0,
    0,
    153;
  --color-primary-hover: #0278d4;
  --color-primary-active: #00185d;
  --color-accent-default: #ff8f0f;
  --color-accent-hover: #ffab31;
  --color-accent-active: #ed8c00;
  --color-confirmation: #84c041;
  --color-alert: #ffbb00;
  --color-error: #e20e00;
  --color-marker-background: #f3efec;
  --color-marker-background-alt: #ffe0b3;
  --color-marker-eco-ornament: #94c11c;
  --color-dom-border: #e0e0e0;
  --color-dom-border-hover: #c3bcb6;
  --color-dom-button-border: #e5e5f4;
  --color-dom-button-border-pressed: #a6a6dc;
  --color-dom-warm-grey-00: #f3efec;
  --color-dom-warm-grey-60: #968f89;
  --color-dom-warm-grey-50: #b0a9a3;
  --color-dom-warm-grey-30: #d9cec9;
  --color-dom-warm-grey-20: #e4dad4;
  --color-dom-warm-grey-05: #eeeae7;
  --color-backdrop: rgba(51, 51, 51, 0.4);
  --color-tooltip: rgba(51, 51, 51, 0.77);
  --color-fd-typo-tertiary: #c3bcb6;
  --color-fd-typo-secondary: #7e7570;
  --color-destructive-active: #b50b00;
  --color-destructive-hover: #e83e33;
  --color-confirm-border: #b6dc8e;
  --color-background-confirm: #e3f6d2;
  --color-warning-border: #fede82;
  --color-background-warning: #fcefbd;
  --color-error-border: #fd9e83;
  --color-background-error: #fcddd3;
  --shadow-base: 0px 12px 24px 0px rgba(43, 43, 43, 0.08);
  --shadow-hover: 0px 12px 40px 0px rgba(43, 43, 43, 0.08);
  --shadow-tooltip: 0px 0px 52px rgba(0, 0, 0, 0.42);
  --border-size-s: 1px;
  --border-radius-base: 4px;
  --border-radius-medium: 8px;
  --border-radius-large: 12px;
  --spacing-xxs: 8px;
  --spacing-xs: 12px;
  --spacing-s: 14px;
  --spacing-m: 20px;
  --spacing-l: 25px;
  --spacing-xl: 50px;
  --font-family:
    "EnBW Sans Text",
    "Helvetica Neue",
    sans-serif;
  --font-family-general:
    "EnBW Sans Text",
    "Helvetica Neue",
    sans-serif;
  --font-family-headlines:
    "EnBW Sans Headline",
    "Helvetica Neue",
    sans-serif;
  --font-size-xs: 10px;
  --font-size-s: 14px;
  --font-size-m: 15px;
  --font-size-l: 20px;
  --font-size-xl: 28px;
  --font-size-xxl: 50px;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --letter-spacing-s: 0.15px;
  --letter-spacing-m: 0.25px;
  --letter-spacing-l: 0.42px;
  --line-height-s: 13px;
  --line-height-m: 18px;
  --line-height-l: 24px;
  --toolbar-height: 56px;
  --sidebar-width: auto;
  --sidebar-legacy-width: 390px;
  --sidebar-min-width: 390px;
  --main-menu-height: 56px;
  --sub-menu-height: 48px;
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
html,
body {
  height: 100%;
  overflow: hidden;
}
html .sb-show-main.sb-main-fullscreen,
body .sb-show-main.sb-main-fullscreen {
  overflow: auto;
}
html .sb-show-main.sb-main-padded,
body .sb-show-main.sb-main-padded {
  padding: 0;
}
html .sb-show-main,
body .sb-show-main {
  background-color: var(--color-background-container);
}
body {
  margin: 0;
  background: var(--color-background-body);
  font-family:
    "EnBW Sans Text",
    "Helvetica Neue",
    sans-serif;
  font-size: var(--font-size-s);
  line-height: var(--line-height-m);
  color: var(--color-text-default);
}
body.sb-main-padded {
  height: auto;
}
button {
  font-family:
    "EnBW Sans Text",
    "Helvetica Neue",
    sans-serif;
}
.story-container {
  margin: var(--spacing-l);
}
@font-face {
  font-family: "EnBW Sans Text";
  src: url("./media/EnBWSansText-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "EnBW Sans Text";
  src: url("./media/EnBWSansText-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "EnBW Sans Text";
  src: url("./media/EnBWSansText-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "EnBW Sans Text";
  src: url("./media/EnBWSansText-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "EnBW Sans Headline";
  src: url("./media/EnBWSansHeadline-Bold.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Material Icons";
  src: url("./media/material-icons.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
.material-icons {
  font-family: "Material Icons";
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--font-family);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-default);
}
.app-title {
  font-size: var(--font-size-m) !important;
  font-weight: var(--font-weight-medium) !important;
  font-family: var(--font-family-headlines) !important;
  line-height: var(--line-height-l) !important;
  letter-spacing: var(--letter-spacing-m) !important;
}
.nav-item {
  font-size: var(--font-size-l) !important;
  font-weight: var(--font-weight-medium) !important;
  font-family: var(--font-family-headlines) !important;
  line-height: var(--spacing-l) !important;
  letter-spacing: var(--letter-spacing-s) !important;
}
h1,
h1.sbdocs-h1 {
  font-family: var(--font-family-headlines) !important;
  font-size: var(--font-size-xl) !important;
  line-height: var(--font-size-xl) !important;
  color: var(--color-text-default) !important;
  font-weight: var(--font-weight-medium) !important;
  margin: var(--spacing-s) 0 var(--spacing-xl) 0 !important;
}
h2,
h2.sbdocs-h2,
h2.sbdocs-h2:first-of-type {
  font-family: var(--font-family-headlines) !important;
  font-size: var(--font-size-l) !important;
  font-weight: var(--font-weight-medium) !important;
  line-height: var(--line-height-l) !important;
  margin: var(--spacing-xl) 0 var(--spacing-xs) 0 !important;
}
.empty-state-flex-container h2 {
  margin-top: 0 !important;
}
h3,
h3.sbdocs-h3,
h3.sbdocs-h3:first-of-type {
  font-family: var(--font-family-headlines) !important;
  font-size: var(--font-size-m) !important;
  font-weight: var(--font-weight-medium) !important;
  line-height: var(--font-size-s) !important;
  margin: var(--spacing-xl) 0 var(--spacing-xs) 0 !important;
}
h4,
h4.sbdocs-h4,
h4.sbdocs-h4:first-of-type {
  font-family: var(--font-family-headlines) !important;
}
h5,
h5.sbdocs-h5,
h5.sbdocs-h5:first-of-type {
  font-family: var(--font-family-headlines) !important;
}
p,
p.sbdocs-p {
  margin-bottom: var(--spacing-xxs) !important;
}
a,
a.sbdocs-a,
a:-webkit-any-link {
  color: var(--color-primary-default) !important;
  cursor: pointer !important;
  text-decoration: none !important;
}
.sbdocs h1 a,
.sbdocs h2 a,
.sbdocs h3 a {
  display: none;
}
a:hover,
a.sbdocs-a:hover {
  border-bottom: 1px solid currentColor !important;
  color: var(--color-accent-default) !important;
  text-decoration: none !important;
}
a:active,
a.sbdocs-a:active {
  color: var(--color-primary-active) !important;
}
a.accent,
a.accent.sbdocs-a {
  color: var(--color-accent-default) !important;
}
a.accent:hover,
a.accent.sbdocs-a:hover {
  text-decoration: underline !important;
  color: var(--color-accent-hover) !important;
}
a.accent:active,
a.accent.sbdocs-a:active {
  color: var(--color-accent-active) !important;
}
nav.sidebar-container body {
  font-family: var(--font-family-headlines) !important;
}
bricks-icon svg *[fill="#000099"],
bricks-icon svg *[fill="#FF9900"],
bricks-icon svg *[fill="#333333"],
bricks-icon svg *[fill="#CCCCCC"],
bricks-icon svg *[fill="#322A26"] {
  fill: currentColor;
}
bricks-icon svg *[stroke="#000099"],
bricks-icon svg *[stroke="#FF9900"],
bricks-icon svg *[stroke="#333333"],
bricks-icon svg *[stroke="#CCCCCC"],
bricks-icon svg *[stroke="#322A26"] {
  stroke: currentColor;
}
bricks-icon svg *[opacity="0.5"] {
  opacity: 1;
}
:root {
  --autofill-bg: var(--color-background-body);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px var(--autofill-bg) inset;
  -webkit-text-fill-color: var(--color-text-default);
}
input:-webkit-autofill:-webkit-autofill::first-line,
input:-webkit-autofill:hover:-webkit-autofill::first-line,
input:-webkit-autofill:focus:-webkit-autofill::first-line,
input:-webkit-autofill:-webkit-autofill::first-line,
textarea:-webkit-autofill:-webkit-autofill::first-line,
textarea:-webkit-autofill:hover:-webkit-autofill::first-line,
textarea:-webkit-autofill:focus:-webkit-autofill::first-line,
select:-webkit-autofill:-webkit-autofill::first-line,
select:-webkit-autofill:hover:-webkit-autofill::first-line,
select:-webkit-autofill:focus:-webkit-autofill::first-line {
  font-family: var(--font-family), serif;
  line-height: var(--font-size-l);
}
.mat-date-range-input-container .mat-date-range-input-start-wrapper {
  flex: 1;
  overflow: visible;
}
.mat-mdc-form-field:hover .mat-mdc-form-field-focus-overlay {
  opacity: 0 !important;
}
.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay {
  opacity: 0 !important;
}
.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper {
  padding-left: 12px !important;
}
mat-form-field {
  width: auto;
  padding-top: 5px;
}
mat-form-field.fill-width {
  width: 100%;
}
mat-form-field.single-icon {
  min-width: 255px;
}
mat-form-field.two-icons {
  min-width: 300px;
}
mat-form-field.three-icons {
  min-width: 320px;
}
mat-form-field.reset-date-range {
  min-width: 315px;
}
mat-form-field .mdc-text-field {
  border: solid 1px;
  border-radius: var(--border-radius-large);
  border-color: var(--color-dom-warm-grey-30);
  height: 60px;
  background-color: var(--color-background-container) !important;
}
mat-form-field .mdc-text-field--focused {
  border-color: var(--color-primary-default);
  background-color: var(--color-background-container) !important;
}
mat-form-field .mdc-text-field--invalid {
  border-color: var(--color-error) !important;
}
mat-form-field .mdc-text-field:hover:not(.mdc-text-field--disabled, .mdc-text-field--focused, .read-only) {
  background-color: var(--color-dom-warm-grey-05) !important;
  border-color: var(--color-dom-border-hover) !important;
  --autofill-bg: var(--color-dom-warm-grey-05);
}
mat-form-field.has-value .mdc-text-field--filled {
  background-color: var(--color-background-body) !important;
}
mat-form-field.read-only.mat-mdc-form-field {
  pointer-events: none !important;
}
mat-form-field.read-only .mat-mdc-floating-label.mdc-floating-label {
  pointer-events: none;
}
mat-form-field.read-only .mat-mdc-form-field-text-prefix {
  pointer-events: none;
}
mat-form-field.read-only .mdc-text-field--filled {
  background-color: var(--color-background-body) !important;
  color: black !important;
  pointer-events: none;
  border-color: var(--color-background-body) !important;
}
mat-form-field.read-only .mat-mdc-form-field-icon-suffix {
  pointer-events: none !important;
}
mat-form-field .mdc-text-field .mdc-floating-label {
  font-size: 13px !important;
  line-height: var(--line-height-m) !important;
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  letter-spacing: normal;
}
mat-form-field .mat-mdc-form-field-input-control.mat-mdc-form-field-input-control {
  font-family: var(--font-family);
  font-size: 17px;
  font-weight: var(--font-weight-regular);
  transform: translateY(2px);
}
mat-form-field .mdc-text-field--filled .mdc-floating-label--float-above {
  transform: translateY(-110%) scale(1) !important;
}
mat-form-field .mdc-text-field--filled:not(.mdc-text-field--disabled, .mdc-text-field--invalid) .mdc-floating-label,
mat-form-field .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above {
  color: var(--color-text-default) !important;
}
mat-form-field .mdc-text-field--filled:not(.mdc-text-field--disabled, .mdc-text-field--invalid) .mdc-text-filed--focused,
mat-form-field .mdc-floating-label,
mat-form-field .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above {
  color: var(--color-text-default) !important;
}
mat-form-field .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: var(--color-dom-warm-grey-60) !important;
}
mat-form-field .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: var(--color-error) !important;
}
mat-form-field .mdc-text-field--invalid:not(.mdc-text-field--disabled) mat-select:not(.mat-mdc-select-disabled) .mat-mdc-select-placeholder,
mat-form-field mat-form-field mat-select:not(.mat-mdc-select-disabled) .mat-mdc-select-value {
  color: var(--color-error) !important;
}
mat-form-field .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before {
  border-bottom-width: 0;
}
mat-form-field .mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after {
  border-bottom-width: 0;
}
mat-form-field .mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input {
  color: var(--color-inactive) !important;
}
mat-form-field .mdc-text-field--filled.mdc-text-field--disabled {
  background-color: var(--color-background-body) !important;
  border-color: var(--color-background-body) !important;
}
mat-form-field .mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label {
  color: var(--color-dom-warm-grey-50) !important;
}
mat-form-field .mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before {
  border-bottom-width: 0 !important;
}
mat-form-field .mdc-text-field--filled.mdc-text-field--disabled bricks-icon {
  cursor: default;
  pointer-events: none;
}
mat-form-field .mdc-text-field--filled.mdc-text-field--disabled mat-icon {
  cursor: default;
  color: var(--color-inactive) !important;
}
mat-form-field .mdc-text-field--filled.mdc-text-field--disabled .mat-mdc-form-field-flex .mat-mdc-form-field-infix .placeholder {
  color: var(--color-inactive) !important;
}
mat-form-field .mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input::placeholder {
  color: var(--color-inactive) !important;
}
mat-form-field .mdc-text-field .mdc-text-field__input::placeholder {
  padding-top: 2px;
}
mat-form-field .mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label {
  color: var(--color-error) !important;
}
mat-form-field .required-field {
  font-weight: var(--font-weight-bold);
  color: var(--color-accent-default);
}
mat-form-field.mat-form-field-invalid input {
  color: var(--color-error) !important;
}
mat-form-field.mat-form-field-invalid mat-date-range-input .mat-date-range-input-separator {
  color: var(--color-error);
}
mat-form-field bricks-error,
mat-form-field bricks-option {
  display: none;
}
mat-form-field mat-date-range-input .mat-date-range-input-separator {
  opacity: 1;
  transform: translateX(-5px);
}
mat-form-field.no-values mat-date-range-input .mat-date-range-input-separator {
  opacity: 0;
}
mat-form-field .mat-mdc-form-field-error {
  font-size: var(--font-size-s) !important;
  margin-top: var(--spacing-xxs);
  color: var(--color-error);
}
mat-form-field .mat-mdc-form-field-hint-wrapper,
mat-form-field .mat-mdc-form-field-error-wrapper {
  padding: 0;
}
mat-form-field .mat-mdc-form-field-flex {
  height: 56px;
}
mat-form-field .mat-mdc-form-field-flex input {
  font-family: var(--font-family);
  font-size: var(--font-size-m);
}
mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix {
  width: auto;
  margin: auto;
  padding-bottom: 10px;
  padding-right: 16px;
}
mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix bricks-icon {
  padding-left: 8px;
}
mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix mat-icon,
mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix mat-icon.mat-primary {
  color: var(--color-text-default);
}
mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix bricks-icon.icon-action:hover mat-icon {
  color: var(--color-primary-hover);
  cursor: pointer;
}
mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix bricks-icon.icon-action:active mat-icon {
  color: var(--color-primary-active);
  cursor: pointer;
}
mat-form-field .mat-mdc-form-field-flex .mat-mdc-select-trigger {
  height: auto;
}
mat-form-field .mat-mdc-form-field-flex bricks-icon {
  transform: translateY(5px);
}
mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-label-wrapper {
  overflow: initial;
}
mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-label-wrapper .mat-mdc-form-field-label {
  font-weight: var(--font-weight-medium);
}
mat-form-field mat-select .mat-mdc-select-placeholder,
mat-form-field mat-select .mat-mdc-select-value {
  font-family: var(--font-family);
  font-size: 17px;
}
mat-form-field mat-select:not(.mat-mdc-select-disabled) .mat-mdc-select-placeholder,
mat-form-field mat-select:not(.mat-mdc-select-disabled) .mat-mdc-select-value {
  color: var(--color-text-default);
}
mat-form-field.white-style .mdc-text-field {
  background-color: var(--color-background-container) !important;
}
mat-form-field.input-hi-density.single-icon {
  min-width: 255px;
}
mat-form-field.input-hi-density.two-icons {
  min-width: 300px;
}
mat-form-field.input-hi-density.three-icons {
  min-width: 320px;
}
mat-form-field.input-hi-density.reset-date-range {
  min-width: 315px;
}
mat-form-field.input-hi-density .mdc-text-field {
  height: 48px;
  border-radius: var(--border-radius-medium);
}
mat-form-field.input-hi-density .mdc-text-field input {
  font-size: 16px;
  transform: translateY(-5px);
}
mat-form-field.input-hi-density .mdc-text-field .mdc-floating-label {
  font-size: 12px !important;
  line-height: var(--line-height-l) !important;
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
}
mat-form-field.input-hi-density mat-select {
  transform: translateY(-15px);
}
mat-form-field.input-hi-density mat-select .mat-mdc-select-placeholder,
mat-form-field.input-hi-density mat-select .mat-mdc-select-value {
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-m);
  transform: translateY(8px);
}
mat-form-field.input-hi-density mat-select .mat-mdc-select-arrow-wrapper {
  transform: translateY(2px);
}
mat-form-field.input-hi-density .mat-date-range-input-container {
  transform: translateY(12px);
}
mat-form-field.input-hi-density .mat-date-range-input-container .mat-date-range-input-separator {
  transform: translate(-3px, -5px);
}
mat-form-field.input-hi-density div.placeholder {
  transform: translateY(-5px) !important;
  font-size: var(--font-size-m) !important;
}
mat-form-field.input-hi-density .mat-mdc-form-field-icon-suffix {
  padding-bottom: 20px;
}
mat-form-field.input-hi-density.no-label .mdc-text-field {
  height: 30px;
  border-radius: 4px;
  padding-left: 10px;
}
mat-form-field.input-hi-density.no-label .mdc-text-field input {
  font-size: 12px;
}
mat-form-field.input-hi-density.no-label .mat-mdc-form-field-flex bricks-icon {
  transform: translateY(-3px);
}
mat-form-field.input-hi-density.no-label .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix {
  padding-right: 10px;
}
mat-form-field.input-hi-density.no-label mat-select {
  transform: translateY(-22px);
}
mat-form-field.input-hi-density.no-label mat-select .mat-mdc-select-value {
  font-size: 12px;
}
mat-form-field.input-hi-density.no-label mat-select .mat-mdc-select-placeholder {
  font-size: 12px;
}
mat-form-field.input-hi-density.no-label-date.single-icon {
  min-width: 90px;
}
mat-form-field.input-hi-density.no-label-date.single-icon bricks-icon.input-icon {
  margin-left: 0;
}
mat-form-field.input-hi-density.no-label-date.two-icons {
  min-width: 130px;
}
mat-form-field.input-hi-density.no-label-date .mat-mdc-form-field-infix {
  width: 70px;
}
mat-form-field.input-hi-density.no-label-date .mdc-text-field input {
  transform: translateY(-13px);
}
mat-form-field.input-hi-density.no-label-date .mat-mdc-form-field-flex bricks-icon {
  transform: translateY(-4px);
}
mat-form-field.input-hi-density.no-label-date-range.two-icons {
  min-width: 190px;
}
mat-form-field.input-hi-density.no-label-date-range.two-icons bricks-icon.input-icon {
  margin-left: 0;
}
mat-form-field.input-hi-density.no-label-date-range.reset-date-range {
  min-width: 210px;
}
mat-form-field.input-hi-density.no-label-date-range.reset-date-range bricks-icon.input-icon {
  margin-left: 8px;
}
mat-form-field.input-hi-density.no-label-date-range .mat-date-range-input-container {
  transform: translateY(3px);
}
mat-form-field.input-hi-density.no-label-date-range .mat-date-range-input-container .mat-date-range-input-separator {
  transform: translate(-3px, -5px);
  margin: 0;
}
mat-form-field.input-hi-density.no-label-date-range .mdc-text-field input {
  transform: translateY(-5px);
}
mat-form-field.input-hi-density.no-label-date-range div.placeholder {
  transform: translateY(-12px) !important;
  font-size: 12px !important;
}
mat-form-field.input-extra-hi-density.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper {
  padding-left: 6px !important;
}
mat-form-field.input-extra-hi-density .mat-mdc-icon-button svg {
  width: 16px;
  height: 16px;
}
mat-form-field.input-extra-hi-density.single-icon {
  min-width: 255px;
}
mat-form-field.input-extra-hi-density.two-icons {
  min-width: 288px;
}
mat-form-field.input-extra-hi-density.three-icons {
  min-width: 295px;
}
mat-form-field.input-extra-hi-density.reset-date-range {
  min-width: 270px;
}
mat-form-field.input-extra-hi-density .mat-mdc-form-field-icon-suffix {
  padding-right: 8px;
}
mat-form-field.input-extra-hi-density .mat-mdc-form-field-icon-suffix bricks-icon {
  padding-left: 8px;
}
mat-form-field.input-extra-hi-density .mat-mdc-form-field-input-control.mat-mdc-form-field-input-control {
  width: 170px;
}
mat-form-field.input-extra-hi-density .mat-mdc-form-field-infix {
  width: 170px;
}
mat-form-field.input-extra-hi-density .mdc-text-field {
  padding-left: 10px;
  height: 40px;
  border-radius: var(--border-radius-medium);
}
mat-form-field.input-extra-hi-density .mdc-text-field input {
  font-size: 12px;
  transform: translateY(-10px);
}
mat-form-field.input-extra-hi-density .mdc-text-field--filled .mdc-floating-label--float-above {
  transform: translateY(-170%) scale(1) !important;
}
mat-form-field.input-extra-hi-density .mdc-text-field .mdc-floating-label {
  font-size: var(--font-size-xs) !important;
  line-height: var(--line-height-s) !important;
  font-family: var(--font-family), serif;
  font-weight: var(--font-weight-regular);
}
mat-form-field.input-extra-hi-density .mat-mdc-form-field-error {
  font-size: var(--font-size-xs) !important;
  margin-top: 4px;
  color: var(--color-error);
}
mat-form-field.input-extra-hi-density .cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option,
mat-form-field.input-extra-hi-density .cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option {
  padding: 0 var(--spacing-m);
  height: 40px;
  font-size: 12px;
  line-height: var(--font-size-m);
}
mat-form-field.input-extra-hi-density mat-select {
  transform: translateY(-20px);
}
mat-form-field.input-extra-hi-density mat-select .mat-mdc-select-placeholder,
mat-form-field.input-extra-hi-density mat-select .mat-mdc-select-value {
  padding: 0;
  font-family: var(--font-family), serif;
  font-size: 12px;
  transform: translateY(8px);
}
mat-form-field.input-extra-hi-density mat-select .mat-mdc-select-arrow-wrapper {
  transform: translateY(2px);
}
mat-form-field.input-extra-hi-density .mat-date-range-input-container {
  transform: translateY(6px);
}
mat-form-field.input-extra-hi-density .mat-date-range-input-container .mat-date-range-input-separator {
  transform: translate(-18px, -5px);
}
mat-form-field.input-extra-hi-density .mat-date-range-input-container .mat-date-range-input-end-wrapper {
  transform: translateX(-15px);
}
mat-form-field.input-extra-hi-density div.placeholder {
  font-size: 12px !important;
  transform: translateY(-9px) !important;
}
mat-form-field.input-extra-hi-density .mat-mdc-form-field-icon-suffix {
  padding-bottom: 18px;
}
mat-form-field.input-extra-hi-density .mat-mdc-form-field-flex bricks-icon {
  transform: translateY(0px);
}
mat-form-field.input-extra-hi-density.no-label .mdc-text-field {
  height: 24px;
  border-radius: 4px;
  padding-left: 8px;
}
mat-form-field.input-extra-hi-density.no-label .mdc-text-field input {
  font-size: 12px;
}
mat-form-field.input-extra-hi-density.no-label .mat-mdc-form-field-flex bricks-icon {
  transform: translateY(-8px);
}
mat-form-field.input-extra-hi-density.no-label .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix {
  padding-right: 8px;
  padding-left: 0;
}
mat-form-field.input-extra-hi-density.no-label mat-select {
  transform: translateY(-26px);
}
mat-form-field.input-extra-hi-density.no-label mat-select .mat-mdc-select-value {
  font-size: 12px;
}
mat-form-field.input-extra-hi-density.no-label mat-select .mat-mdc-select-placeholder {
  font-size: 12px;
}
mat-form-field.input-extra-hi-density.no-label-date bricks-icon.input-icon {
  margin-left: 4px;
}
mat-form-field.input-extra-hi-density.no-label-date.single-icon {
  min-width: 90px;
}
mat-form-field.input-extra-hi-density.no-label-date.single-icon bricks-icon.input-icon {
  margin-left: 0;
}
mat-form-field.input-extra-hi-density.no-label-date.two-icons {
  min-width: 130px;
}
mat-form-field.input-extra-hi-density.no-label-date .mat-mdc-form-field-infix {
  width: 70px;
}
mat-form-field.input-extra-hi-density.no-label-date .mat-mdc-form-field-input-control.mat-mdc-form-field-input-control {
  width: 70px;
}
mat-form-field.input-extra-hi-density.no-label-date .mdc-text-field input {
  transform: translateY(-16px);
}
mat-form-field.input-extra-hi-density.no-label-date .mat-mdc-form-field-flex bricks-icon {
  transform: translateY(-7px);
}
mat-form-field.input-extra-hi-density.no-label-date-range.two-icons {
  min-width: 180px;
}
mat-form-field.input-extra-hi-density.no-label-date-range.reset-date-range {
  min-width: 200px;
}
mat-form-field.input-extra-hi-density.no-label-date-range .mat-mdc-form-field-input-control.mat-mdc-form-field-input-control {
  width: 160px;
}
mat-form-field.input-extra-hi-density.no-label-date-range .mat-date-range-input-container {
  transform: translateY(-14px);
}
mat-form-field.input-extra-hi-density.no-label-date-range .mat-date-range-input-container .mat-date-range-input-separator {
  transform: translate(-13px, 0px);
}
mat-form-field.input-extra-hi-density.no-label-date-range .mat-mdc-form-field-flex bricks-icon {
  transform: translateY(-8px);
}
mat-form-field.input-extra-hi-density.no-label-date-range div.placeholder {
  transform: translateY(-15px) !important;
}
mat-form-field.input-extra-hi-density.no-label-date-range .mdc-text-field input {
  transform: translateY(3px) !important;
}
mat-form-field.input-extra-hi-density.no-label-date-range .mdc-text-field input.mat-end-date {
  transform: translateY(0px) !important;
}
mat-paginator mat-form-field {
  padding-top: 0px;
}
mat-paginator mat-form-field .mdc-text-field {
  height: 48px;
  border-radius: var(--border-radius-medium);
}
mat-paginator mat-form-field .mdc-text-field--outlined {
  --mat-form-field-outlined-outline-width: 0px;
  --mat-form-field-outlined-focus-outline-width: 0px;
  --mat-form-field-outlined-container-shape: 0px;
}
mat-paginator mat-form-field .mat-mdc-form-field-flex {
  height: inherit;
  background: transparent;
  padding-left: 0px !important;
  padding-right: 0px !important;
}
mat-paginator mat-form-field .mat-mdc-form-field-flex input {
  font-family: var(--font-family);
}
mat-paginator mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-suffix {
  margin: inherit;
}
mat-paginator mat-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-label-wrapper {
  overflow: initial;
}
.mat-mdc-form-field .mat-mdc-select-arrow-wrapper .mat-mdc-select-arrow {
  border: none;
  margin: 0;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.00037L12 16.0004L20 8.00037' stroke='%23322A26' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center center;
  color: transparent !important;
  width: 24px;
  height: 24px;
  transform: translateY(2px);
  display: none;
}
.mat-mdc-form-field.mat-mdc-form-field-disabled .mat-mdc-select-arrow-wrapper .mat-mdc-select-arrow {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.00037L12 16.0004L20 8.00037' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center center;
}
.mat-mdc-form-field.mat-mdc-form-field-disabled .mat-mdc-form-field-icon-suffix mat-icon,
.mat-mdc-form-field.mat-mdc-form-field-disabled .mat-mdc-form-field-icon-suffix mat-icon.mat-primary {
  cursor: grab;
}
.mat-mdc-form-field.mat-mdc-form-field.mat-focused.mat-primary {
  color: transparent;
}
.mat-mdc-form-field .mat-mdc-form-field-icon-prefix {
  color: var(--color-text-default);
}
.mat-mdc-form-field .mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix {
  padding-left: 8px;
}
.mat-mdc-form-field .mat-mdc-form-field-text-prefix {
  color: var(--color-text-default);
  font-size: 17px;
}
.mat-mdc-form-field .mat-mdc-form-field-text-suffix {
  color: var(--color-text-default);
  font-size: 17px;
}
.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow {
  color: transparent;
}
.cdk-overlay-pane .mat-mdc-autocomplete-panel {
  transform: translateY(1px);
  position: static;
}
.cdk-overlay-pane .hide-control .mat-calendar-period-button {
  pointer-events: none;
}
.cdk-overlay-pane .hide-control .mat-calendar-arrow {
  display: none;
}
.cdk-overlay-pane .mat-mdc-datepicker-content {
  transform: translate(-1px, 5px) !important;
}
.cdk-overlay-pane .mat-mdc-datepicker-content.hi-density {
  transform: translate(-1px, 1px) !important;
}
.cdk-overlay-pane .mat-mdc-select-panel,
.cdk-overlay-pane .mat-mdc-autocomplete-panel {
  border-radius: var(--border-radius-large) !important;
  box-shadow: var(--shadow-base);
  max-height: 245px;
  padding: 0px;
}
.cdk-overlay-pane .mat-mdc-select-panel.hi-density,
.cdk-overlay-pane .mat-mdc-autocomplete-panel.hi-density {
  padding: 0;
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option {
  border-bottom: none;
  padding: 0 var(--spacing-m);
  height: 49px;
  font-family: var(--font-family);
  font-size: 17px;
  color: var(--color-text-default);
  line-height: var(--font-size-l);
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option:last-child,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option:last-child {
  border-bottom: none;
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option:hover,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option:hover {
  background-color: var(--color-marker-background);
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option.mdc-list-item--selected,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected {
  background-color: var(--color-background-secondary) !important;
  color: var(--color-text-default);
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option.mdc-list-item--selected:hover,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected:hover {
  background-color: var(--color-marker-background);
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option.mdc-list-item--selected .mdc-list-item__primary-text,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option.mdc-list-item--selected .mdc-list-item__primary-text {
  color: var(--color-text-default) !important;
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option.mat-active,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option.mat-active {
  background-color: var(--color-marker-background);
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option.mat-mdc-option-disabled,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option.mat-mdc-option-disabled {
  background-color: transparent;
  color: var(--color-inactive);
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option.mat-mdc-option-disabled:hover,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option.mat-mdc-option-disabled:hover {
  background-color: transparent;
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option:focus.mdc-list-item,
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option.mat-mdc-option-active.mdc-list-item,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option:focus.mdc-list-item,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option.mat-mdc-option-active.mdc-list-item {
  background-color: var(--color-marker-background) !important;
}
.cdk-overlay-pane .mat-mdc-select-panel .mat-mdc-option-multiple .mdc-list-item__primary-text,
.cdk-overlay-pane .mat-mdc-autocomplete-panel .mat-mdc-option-multiple .mdc-list-item__primary-text {
  position: relative;
  top: 1px;
}
.cdk-overlay-pane .mdc-menu-surface.mat-mdc-select-panel {
  padding: 0;
}
.cdk-overlay-pane .mat-primary .mat-pseudo-checkbox-checked.mat-pseudo-checkbox-minimal::after,
.cdk-overlay-pane .mat-primary .mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-minimal::after {
  color: var(--color-text-default) !important;
}
.cdk-overlay-pane .mat-pseudo-checkbox-full {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--color-dom-warm-grey-30);
  background: var(--color-background-body);
}
.cdk-overlay-pane .mat-pseudo-checkbox-full:hover:not([disabled]) {
  background-color: var(--color-dom-warm-grey-05) !important;
  border-color: var(--color-dom-border-hover) !important;
}
.cdk-overlay-pane .mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,
.cdk-overlay-pane .mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate {
  border: 1px solid var(--color-primary-default);
  background: var(--color-primary-default);
}
.cdk-overlay-pane .mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked:hover:not([disabled]),
.cdk-overlay-pane .mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate:hover:not([disabled]) {
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
}
.ngx-material-timepicker-toggle {
  border-radius: 0 !important;
  padding: 0 !important;
  position: relative;
  top: 6px;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.53438 17.325C3.82881 17.7923 4.44628 17.9324 4.91354 17.6379C5.3808 17.3435 5.5209 16.726 5.22647 16.2588L3.53438 17.325ZM7.73914 18.7729C7.27199 18.4783 6.65447 18.6182 6.35987 19.0854C6.06528 19.5525 6.20516 20.17 6.67231 20.4646L7.73914 18.7729ZM19.997 12.2211C19.875 16.6377 16.1958 20.1192 11.7792 19.9973L11.724 21.9965C17.2448 22.149 21.8438 17.7971 21.9962 12.2763L19.997 12.2211ZM4.00307 11.7796C4.125 7.36298 7.80421 3.88147 12.2208 4.00341L12.276 2.00417C6.75526 1.85175 2.15625 6.20363 2.00383 11.7244L4.00307 11.7796ZM12.2208 4.00341C16.6374 4.12534 20.1189 7.80455 19.997 12.2211L21.9962 12.2763C22.1486 6.7556 17.7967 2.15659 12.276 2.00417L12.2208 4.00341ZM5.22647 16.2588C4.41132 14.9652 3.95764 13.4249 4.00307 11.7796L2.00383 11.7244C1.94713 13.7779 2.51464 15.7067 3.53438 17.325L5.22647 16.2588ZM11.7792 19.9973C10.2908 19.9562 8.91129 19.5121 7.73914 18.7729L6.67231 20.4646C8.13961 21.3899 9.8671 21.9453 11.724 21.9965L11.7792 19.9973Z' fill='%23000099'/%3E%3Cpath d='M12 8V12L15.4999 15.5' stroke='%23000099' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center center;
  width: 24px;
  height: 24px;
}
.ngx-material-timepicker-toggle:focus {
  background-color: transparent !important;
}
.ngx-material-timepicker-toggle:active {
  background-color: transparent !important;
}
.ngx-material-timepicker-toggle:disabled {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.53438 17.325C3.82881 17.7923 4.44628 17.9324 4.91354 17.6379C5.3808 17.3435 5.5209 16.726 5.22647 16.2588L3.53438 17.325ZM7.73914 18.7729C7.27199 18.4783 6.65447 18.6182 6.35987 19.0854C6.06528 19.5525 6.20516 20.17 6.67231 20.4646L7.73914 18.7729ZM19.997 12.2211C19.875 16.6377 16.1958 20.1192 11.7792 19.9973L11.724 21.9965C17.2448 22.149 21.8438 17.7971 21.9962 12.2763L19.997 12.2211ZM4.00307 11.7796C4.125 7.36298 7.80421 3.88147 12.2208 4.00341L12.276 2.00417C6.75526 1.85175 2.15625 6.20363 2.00383 11.7244L4.00307 11.7796ZM12.2208 4.00341C16.6374 4.12534 20.1189 7.80455 19.997 12.2211L21.9962 12.2763C22.1486 6.7556 17.7967 2.15659 12.276 2.00417L12.2208 4.00341ZM5.22647 16.2588C4.41132 14.9652 3.95764 13.4249 4.00307 11.7796L2.00383 11.7244C1.94713 13.7779 2.51464 15.7067 3.53438 17.325L5.22647 16.2588ZM11.7792 19.9973C10.2908 19.9562 8.91129 19.5121 7.73914 18.7729L6.67231 20.4646C8.13961 21.3899 9.8671 21.9453 11.724 21.9965L11.7792 19.9973Z' fill='%23999'/%3E%3Cpath d='M12 8V12L15.4999 15.5' stroke='%23999' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center center;
  cursor: default;
}
.ngx-material-timepicker-toggle .ng-star-inserted {
  display: none;
}
.toolbar mat-form-field {
  width: auto;
  transform: translateY(8px);
}
.toolbar mat-form-field .mdc-text-field {
  border: none;
  border-radius: 0;
  height: 56px;
  background-color: white !important;
}
.toolbar mat-form-field .mdc-text-field:hover:not(.mdc-text-field--disabled, .mdc-text-field--focused) {
  background-color: var(--color-background-body);
}
.reset-icon mat-icon {
  color: var(--color-dom-warm-grey-30) !important;
}
.reset-icon :hover {
  cursor: pointer;
  color: var(--color-dom-border-hover) !important;
}
.input-icon {
  margin-left: 8px;
}
.arrow-icon-disabled mat-icon {
  color: var(--color-inactive) !important;
}
.disabled-option {
  pointer-events: none;
  cursor: default;
}
.rotate-open mat-icon {
  display: inline-block;
  transform: rotate(180deg);
  transition: transform 100ms ease-in-out 0ms;
}
.rotate-back mat-icon {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 100ms ease-in-out 0ms;
}
.textarea mat-form-field .mdc-text-field {
  height: auto;
}
.textarea mat-form-field .mdc-text-field .mat-mdc-form-field-flex {
  height: auto;
}
.textarea mat-form-field.textarea-hi-density .mdc-text-field {
  border-radius: var(--border-radius-medium);
}
.textarea mat-form-field.textarea-hi-density .mdc-text-field textarea {
  font-size: 16px;
  transform: translateY(-5px);
}
.textarea mat-form-field.textarea-hi-density .mdc-text-field .mdc-floating-label {
  font-size: 12px !important;
  line-height: var(--line-height-l) !important;
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
}
.mat-mdc-form-field-subscript-wrapper,
.mat-mdc-form-field-bottom-align::before {
  font-size: var(--font-size-s) !important;
  color: var(--color-text-default);
}
.input-hi-density .mat-mdc-form-field-subscript-wrapper,
.input-hi-density .mat-mdc-form-field-bottom-align::before {
  font-size: 13px !important;
}
.input-extra-hi-density .mat-mdc-form-field-subscript-wrapper,
.input-extra-hi-density .mat-mdc-form-field-bottom-align::before {
  font-size: var(--font-size-xs) !important;
}
.mat-mdc-form-field-hint-wrapper {
  left: 17px !important;
}
mat-timepicker-toggle .mat-mdc-icon-button.mat-mdc-button-base {
  padding-right: 0;
}
.multi-select-dropdown {
  width: 100% !important;
}
input[type=datetime-local] {
  cursor: text;
}
.stepper-wrapper.no-label mat-form-field .mdc-text-field__input {
  font-size: 12px;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-m);
}
.stepper-wrapper.no-label mat-form-field.input-hi-density .mdc-text-field--filled {
  height: 30.2px;
  transform: translateY(-1px);
}
.stepper-wrapper.no-label mat-form-field.input-hi-density .mdc-text-field__input {
  transform: translateY(-20px);
}
.stepper-wrapper.no-label mat-form-field.input-extra-hi-density .mdc-text-field--filled {
  height: 24px;
  transform: translateY(0px);
}
.stepper-wrapper.no-label mat-form-field.input-extra-hi-density .mdc-text-field__input {
  transform: translateY(-26px);
  padding-left: 4px;
}
.timepicker {
  font-family: var(--font-family);
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-size-l);
}
.timepicker .timepicker-period button {
  cursor: pointer;
}
.timepicker button {
  font-weight: var(--font-weight-light);
}
.timepicker button .mat-mdc-button-wrapper {
  padding: initial;
  display: initial;
  line-height: initial;
}
.timepicker .timepicker-dial {
  padding-top: 7px;
}
.timepicker .timepicker-dial input {
  font-family: var(--font-family);
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-size-xxl);
}
.timepicker .timepicker-dial span {
  font-family: var(--font-family);
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-regular);
  line-height: var(--font-size-xxl);
  transform: translateY(-5px);
}
.timepicker .mat-mdc-fab.mat-primary,
.timepicker .mat-mdc-mini-fab.mat-primary {
  color: white;
}
.timepicker ngx-mat-timepicker-face .clock-face {
  background-color: var(--color-background-secondary) !important;
}
mat-slide-toggle .mat-mdc-slide-toggle-bar {
  width: 34px;
  height: 18px;
  border-radius: 10px;
}
mat-slide-toggle .mat-mdc-slide-toggle-thumb-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  transform: translate3d(-1px, 0, 0);
}
mat-slide-toggle .mat-mdc-slide-toggle-thumb-container .mat-mdc-slide-toggle-thumb {
  width: 12px;
  height: 12px;
  box-shadow: none;
}
mat-slide-toggle.mat-mdc-slide-toggle {
  --mat-slide-toggle-selected-focus-state-layer-color: transparent;
  --mat-slide-toggle-selected-hover-state-layer-color: transparent;
  --mat-slide-toggle-selected-pressed-state-layer-color: transparent;
  --mat-slide-toggle-selected-focus-track-color: var(--color-primary-hover);
  --mat-slide-toggle-selected-hover-track-color: var(--color-primary-hover);
  --mat-slide-toggle-selected-pressed-track-color: var(--color-primary-hover);
  --mat-slide-toggle-selected-track-color: var(--color-primary-hover);
  --mat-slide-toggle-unselected-hover-state-layer-color: transparent;
  --mat-slide-toggle-unselected-focus-state-layer-color: transparent;
  --mat-slide-toggle-unselected-pressed-state-layer-color: transparent;
  --mat-slide-toggle-unselected-handle-color: rgba( var(--color-text-default-rgba), 0.7 );
  --mat-slide-toggle-disabled-unselected-icon-opacity: var( --color-dom-warm-grey-50 );
}
mat-slide-toggle.mat-mdc-slide-toggle .mat-mdc-slide-toggle-content,
mat-slide-toggle.mat-mdc-slide-toggle.mat-primary .mat-mdc-slide-toggle-content,
mat-slide-toggle.mat-mdc-slide-toggle.mat-warn .mat-mdc-slide-toggle-content,
mat-slide-toggle.mat-mdc-slide-toggle.mat-accent .mat-mdc-slide-toggle-content {
  display: block;
  padding-top: 3px;
}
mat-slide-toggle.mat-mdc-slide-toggle.ng-invalid,
mat-slide-toggle.mat-mdc-slide-toggle.mat-primary.ng-invalid,
mat-slide-toggle.mat-mdc-slide-toggle.mat-warn.ng-invalid,
mat-slide-toggle.mat-mdc-slide-toggle.mat-accent.ng-invalid {
  --mat-slide-toggle-unselected-handle-color: var(--color-error);
  --mat-slide-toggle-unselected-hover-handle-color: var(--color-error);
  --mat-slide-toggle-unselected-pressed-handle-color: var(--color-error);
  --mat-slide-toggle-unselected-focus-handle-color: var(--color-error);
}
mat-slide-toggle.mat-mdc-slide-toggle.ng-invalid .mat-mdc-slide-toggle-content,
mat-slide-toggle.mat-mdc-slide-toggle.mat-primary.ng-invalid .mat-mdc-slide-toggle-content,
mat-slide-toggle.mat-mdc-slide-toggle.mat-warn.ng-invalid .mat-mdc-slide-toggle-content,
mat-slide-toggle.mat-mdc-slide-toggle.mat-accent.ng-invalid .mat-mdc-slide-toggle-content {
  color: var(--color-error);
}
mat-slide-toggle.mat-mdc-slide-toggle.ng-invalid .mdc-switch:enabled .mdc-switch__track::before,
mat-slide-toggle.mat-mdc-slide-toggle.mat-primary.ng-invalid .mdc-switch:enabled .mdc-switch__track::before,
mat-slide-toggle.mat-mdc-slide-toggle.mat-warn.ng-invalid .mdc-switch:enabled .mdc-switch__track::before,
mat-slide-toggle.mat-mdc-slide-toggle.mat-accent.ng-invalid .mdc-switch:enabled .mdc-switch__track::before {
  border: 1px solid var(--color-error) !important;
}
mat-slide-toggle.mat-mdc-slide-toggle.ng-invalid .mdc-switch .mdc-switch__handle::before,
mat-slide-toggle.mat-mdc-slide-toggle.mat-primary.ng-invalid .mdc-switch .mdc-switch__handle::before,
mat-slide-toggle.mat-mdc-slide-toggle.mat-warn.ng-invalid .mdc-switch .mdc-switch__handle::before,
mat-slide-toggle.mat-mdc-slide-toggle.mat-accent.ng-invalid .mdc-switch .mdc-switch__handle::before {
  background: var(--color-error);
}
mat-slide-toggle.mat-mdc-slide-toggle.mat-mdc-checked .mat-mdc-slide-toggle-thumb,
mat-slide-toggle.mat-mdc-slide-toggle.mat-primary.mat-mdc-checked .mat-mdc-slide-toggle-thumb,
mat-slide-toggle.mat-mdc-slide-toggle.mat-warn.mat-mdc-checked .mat-mdc-slide-toggle-thumb,
mat-slide-toggle.mat-mdc-slide-toggle.mat-accent.mat-mdc-checked .mat-mdc-slide-toggle-thumb {
  background: var(--color-background-container);
}
mat-slide-toggle.mat-mdc-slide-toggle.mat-checked .mat-mdc-slide-toggle-thumb-container {
  transform: translate3d(15px, 0, 0);
}
mat-slide-toggle .mdc-switch:enabled .mdc-switch__track::before {
  background: var(--color-background-container) !important;
  border: 1px solid var(--color-dom-warm-grey-30) !important;
}
mat-slide-toggle .mdc-switch:enabled .mdc-switch__track:hover::before {
  background-color: var(--color-dom-warm-grey-05) !important;
  border-color: var(--color-dom-border-hover) !important;
}
mat-slide-toggle .mdc-switch:enabled .mdc-switch__track::after {
  background: var(--color-primary-hover);
}
mat-slide-toggle .mdc-switch:disabled .mdc-switch__track::before {
  background: var(--color-background-body) !important;
  border: 1px solid var(--color-background-body) !important;
}
mat-slide-toggle.white-style .mdc-switch:enabled .mdc-switch__track::before {
  background: var(--color-background-container) !important;
}
mat-slide-toggle.read-only {
  pointer-events: none;
}
mat-slide-toggle.read-only button {
  pointer-events: none;
}
mat-slide-toggle.read-only .mdc-switch__handle {
  pointer-events: none;
}
mat-slide-toggle.read-only .mdc-switch:enabled .mdc-switch__track::before {
  background: var(--color-background-body) !important;
  border: 1px solid var(--color-background-body) !important;
}
mat-slide-toggle.read-only .mdc-switch:enabled .mdc-switch__track::after {
  background: var(--color-background-body);
}
mat-slide-toggle.read-only .mdc-switch--selected:enabled .mdc-switch__handle::after {
  background: var(--color-text-default) !important;
}
mat-slide-toggle .mdc-form-field .mdc-label {
  padding-left: 8px;
}
.mdc-switch {
  --mat-slide-toggle-disabled-track-opacity: 1 !important;
}
.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__icons {
  opacity: 1 !important;
}
.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__handle::after {
  background-color: var(--color-background-body);
}
.mdc-switch.mdc-switch--disabled .mdc-switch__track::after {
  background: var(--color-background-body) !important;
}
mat-calendar .mat-calendar-table-header {
  color: inherit;
}
mat-calendar .mat-calendar-table-header .mat-calendar-table-header-divider::after {
  background: var(--color-dom-border);
}
mat-calendar .mat-calendar-content .mat-calendar-body-label {
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-bold);
  color: inherit;
  text-transform: uppercase;
}
mat-calendar .mat-calendar-content .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: transparent;
  background: var(--color-marker-background-alt) !important;
  color: var(--color-text-default);
}
mat-calendar .mat-calendar-content .mat-calendar-body-selected {
  color: var(--color-background-container);
}
mat-calendar .mat-calendar-content .mat-calendar-body-in-preview .mat-calendar-body-cell-preview {
  border: none;
  background-color: var(--color-marker-background);
}
mat-calendar .mat-calendar-content .mat-calendar-body-preview-end {
  color: var(--color-text-default);
}
mat-calendar .mat-calendar-content .mat-calendar-body-range-start:not(.mat-calendar-body-in-comparison-range)::before {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
mat-calendar .mat-calendar-content .mat-calendar-body-range-end:not(.mat-calendar-body-in-comparison-range)::before,
mat-calendar .mat-calendar-content .mat-calendar-body-range-end::after,
mat-calendar .mat-calendar-content .mat-calendar-body-comparison-end:not(.mat-calendar-body-comparison-bridge-end)::before,
mat-calendar .mat-calendar-content .mat-calendar-body-comparison-end::after,
mat-calendar .mat-calendar-content .mat-calendar-body-preview-end .mat-calendar-body-cell-preview {
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}
mat-calendar .mat-calendar-content .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: var(--color-inactive) !important;
}
mat-calendar .mat-calendar-content .mat-calendar-body-cell {
  padding-top: 2px;
}
mat-calendar .mat-calendar-content .mat-calendar-body-cell .mat-calendar-body-cell-content {
  padding-top: 3px;
  border-radius: 8px;
}
mat-calendar .mat-calendar-content .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover .mat-calendar-body-cell-content {
  color: var(--color-background-container);
}
mat-calendar .mat-calendar-content .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: var(--color-background-secondary);
  color: inherit;
}
mat-calendar mat-calendar-header .mat-calendar-controls .mat-calendar-period-button {
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-regular);
}
mat-calendar mat-calendar-header .mat-calendar-controls .mat-calendar-period-button .mat-calendar-arrow {
  width: 4px;
  height: 4px;
  border: 0;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  transform: rotate(45deg) translateY(-3px);
  fill: none;
}
mat-calendar mat-calendar-header .mat-calendar-controls .mat-calendar-period-button {
  font-size: var(--font-size-m) !important;
}
.mat-calendar-body-in-range::before {
  background-color: var(--color-marker-background) !important;
}
.mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: transparent !important;
}
.mat-datepicker-content {
  border-radius: var(--border-radius-large) !important;
}
.mat-calendar-body-selected.mat-calendar-body-today {
  box-shadow: none !important;
}
body .mat-mdc-dialog-container {
  border-radius: 0;
  box-shadow: var(--shadow-base);
  color: var(--color-text-default);
  overflow: inherit;
}
body .mat-mdc-dialog-container .mdc-dialog__surface {
  border-radius: var(--border-radius-large) !important;
}
ngx-mat-timepicker-standalone {
  border-radius: var(--border-radius-large) !important;
  transform: translateY(-22px);
}
.feedback-modal mat-form-field {
  width: 100% !important;
}
.feedback-modal mat-form-field textarea {
  min-height: 120px;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size {
  display: flex;
  align-items: center;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-label {
  line-height: 18px;
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-default);
  cursor: default;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-value {
  margin-left: var(--spacing-xxs);
  line-height: 18px;
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-default);
  cursor: default;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select {
  width: auto;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select .mat-mdc-form-field-infix {
  width: unset;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select .mat-mdc-form-field-infix .mat-mdc-text-field-label-wrapper {
  border-bottom: 1px solid var(--color-text-default);
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select .mat-mdc-form-field-infix .mat-mdc-select-value {
  padding: 0 var(--spacing-xxs);
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-default);
  transform: translateY(3px);
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select .mat-mdc-form-field-infix .mat-mdc-form-field-underline {
  display: none;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select .mat-mdc-form-field-infix .mat-mdc-select-arrow-wrapper .mat-mdc-select-arrow {
  border: none;
  display: block;
  margin: 0;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.9998 10L11.9998 14L7.99976 10' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
  width: 20px;
  height: 20px;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select .mat-mdc-form-field-infix.mat-mdc-form-field-disabled .mat-mdc-form-field-flex {
  background-color: transparent;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select .mat-mdc-form-field-infix.mat-mdc-form-field-disabled .mat-mdc-form-field-label-wrapper {
  border-bottom: 1px solid var(--color-inactive);
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select .mat-mdc-form-field-infix.mat-mdc-form-field-disabled .mat-mdc-select-value {
  color: var(--color-inactive);
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-page-size-select .mat-mdc-form-field-infix.mat-mdc-form-field-disabled .mat-mdc-select-arrow {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.9998 10L11.9998 14L7.99976 10' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-range-actions {
  display: flex;
  align-items: center;
}
.mat-mdc-paginator-outer-container .mat-mdc-paginator-container .mat-mdc-paginator-page-size .mat-mdc-paginator-range-actions .mat-mdc-paginator-range-label {
  font-size: var(--font-size-s);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-default);
}
mat-paginator .mat-mdc-paginator-range-actions button {
  display: none;
}
.paginator-position {
  display: flex;
}
.paginator-position.right {
  justify-content: flex-end;
}
.paginator-position.center {
  justify-content: center;
}
.mat-mdc-menu-panel {
  border-radius: var(--border-radius-medium) !important;
  border: 1px solid var(--color-dom-warm-grey-30);
  box-shadow: var(--shadow-base) !important;
  margin: 8px 0 0 4px;
  min-width: 128px !important;
  max-width: 280px;
  min-height: 49px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.mat-mdc-menu-panel .mat-mdc-menu-content {
  padding: 0 !important;
  background-color: var(--color-background-container);
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item {
  display: flex;
  padding: 8px 24px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  width: 100%;
  height: 49px;
  font-size: var(--font-size-m);
  color: var(--color-text-default);
  line-height: var(--font-size-l);
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item .mat-mdc-menu-item-text {
  font-size: var(--font-size-m);
  display: inline-flex;
  padding-top: 2px;
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item .mat-icon {
  width: 24px !important;
  height: 24px !important;
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item bricks-icon {
  margin-right: 8px;
  transform: translateY(-2px) !important;
  width: 24px !important;
  height: 24px !important;
  padding-top: 2px;
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item svg.mat-mdc-menu-submenu-icon {
  border: none;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 8.00024L14 12.0002L10 16.0002' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
  width: 20px;
  height: 20px;
  transform: translate(12px, 1px);
  right: 10px;
  color: transparent;
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item:hover {
  background-color: var(--color-marker-background);
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item:disabled {
  background-color: transparent;
  color: var(--color-inactive);
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item:disabled svg.mat-mdc-menu-submenu-icon {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 8.00024L14 12.0002L10 16.0002' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center;
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item.mat-mdc-menu-item-highlighted:not([disabled]) {
  background-color: var(--color-marker-background);
}
.cdk-overlay-connected-position-bounding-box + .cdk-overlay-connected-position-bounding-box .mat-mdc-menu-panel {
  margin-left: 0;
}
.user-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 10;
}
.logout .mat-icon {
  color: #d32f2f !important;
}
.cdk-overlay-pane.user-menu-panel {
  max-width: 350px !important;
  width: 350px !important;
}
.cdk-overlay-pane.user-menu-panel .mat-mdc-menu-panel {
  max-width: 350px !important;
  width: 350px !important;
}
mat-tooltip-component .mat-mdc-tooltip {
  margin: var(--spacing-xs);
  background-color: var(--color-tooltip);
  padding: var(--spacing-xxs) var(--spacing-xxs);
  font-size: var(--font-size-s);
  border-radius: 8px;
  font-family: var(--font-family-general);
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.15px;
}
.tooltip-info,
.tooltip-info-outline,
.tooltip-confirm,
.tooltip-warning,
.tooltip-error {
  --mat-tooltip-supporting-text-size: 14px;
}
.tooltip-info.shadow,
.tooltip-info-outline.shadow,
.tooltip-confirm.shadow,
.tooltip-warning.shadow,
.tooltip-error.shadow {
  box-shadow: 0px 10px 70px 0px rgba(0, 0, 0, 0.2);
}
.tooltip-info {
  background-color: var(--color-text-default) !important;
  border: 1px solid var(--warm-grey-30-border);
  --mat-tooltip-container-color: var(--color-text-default) !important;
  --mat-tooltip-supporting-text-size: 14px;
}
.tooltip-info-outline {
  background-color: var(--color-background-body) !important;
  border: 1px solid var(--color-dom-warm-grey-30) !important;
  color: var(--color-dom-warm-grey-30) !important;
  --mat-tooltip-container-color: var(--color-background-body) !important;
  --mat-tooltip-supporting-text-color: var(--color-text-default) !important;
}
.tooltip-confirm {
  background-color: var(--color-confirmation) !important;
  --mat-tooltip-container-color: var(--color-confirmation) !important;
}
.tooltip-warning {
  background-color: var(--color-alert) !important;
  --mat-tooltip-container-color: var(--color-alert) !important;
}
.tooltip-error {
  background-color: var(--color-error) !important;
  --mat-tooltip-container-color: var(--color-error) !important;
}
.mat-mdc-tab-group {
  position: relative;
}
.mat-mdc-tab .mdc-tab-indicator__content--underline {
  border-bottom: 2px solid;
  width: 85%;
  border-color: var(--color-primary-hover) !important;
}
.mdc-tab__text-label {
  display: flex;
  padding: 0px 8px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  font-family: var(--font-family-headlines);
  font-size: var(--font-size-m);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-default);
  line-height: 150%;
  letter-spacing: normal;
  gap: -4px;
}
.mat-mdc-tab-label-container {
  border-bottom-width: 1px !important;
  border-bottom-color: var(--color-dom-warm-grey-30) !important;
}
.mat-mdc-tab:not(.mdc-tab--stacked) {
  height: 56px !important;
}
.mat-mdc-tab .mdc-tab__text-label {
  color: var(--color-text-default) !important;
}
.mat-mdc-tab .mdc-tab__ripple::before {
  background-color: var(--color-marker-background) !important;
}
.mat-mdc-tab:hover .mdc-tab__ripple::before {
  opacity: 1 !important;
}
.mat-mdc-tab-group,
.mat-mdc-tab-nav-bar {
  --mat-tab-active-ripple-color: var(--color-dom-warm-grey-30) !important;
  --mat-tab-inactive-ripple-color: var(--color-dom-warm-grey-30) !important;
}
.mat-mdc-tab-header-pagination-after {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 8.00024L14 12.0002L10 16.0002' stroke='#000099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center !important;
}
.mat-mdc-tab-header-pagination-before {
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 15.9998L10 11.9998L14 7.99976' stroke='#000099' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center !important;
}
mat-tab-group.tabs-hi-density .mat-mdc-tab:not(.mdc-tab--stacked) {
  height: 40px !important;
}
.mat-toolbar {
  z-index: 3;
  position: relative;
}
.mat-mdc-progress-bar {
  border-radius: 30px !important;
  --mat-progress-bar-active-indicator-color: var( --color-primary-hover ) !important;
  --mat-progress-bar-track-color: var(--color-background-secondary) !important;
}
.mdc-linear-progress__bar-inner {
  border-radius: 30px !important;
}
.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,
.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic {
  stroke: var(--color-primary-hover) !important;
}
.mat-mdc-progress-spinner circle {
  stroke-linecap: round !important;
}
.mat-mdc-form-field .mat-mdc-progress-spinner {
  width: 24px !important;
  height: 24px !important;
  transform: translateY(5px);
}
.mat-mdc-form-field.input-extra-hi-density .mat-mdc-progress-spinner {
  width: 16px !important;
  height: 16px !important;
  transform: translateY(0);
}
.mat-mdc-table .mat-elevation-z8,
.mat-mdc-table .mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: var(--shadow-base);
}
.mat-mdc-table .mat-sort-header-content {
  color: var(--color-full-palette-warm-grey-warm-grey-100, #322a26);
  font-feature-settings: "liga" off, "clig" off;
  font-family: var(--font-family), sans-serif;
  font-size: var(--font-size-s);
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.15px;
}
.mat-mdc-table .mat-mdc-header-cell {
  font-weight: 700;
  text-transform: capitalize;
}
.mat-mdc-table .mat-mdc-cell {
  border-bottom-color: var(--color-dom-warm-grey-30);
}
.mat-mdc-table .mat-mdc-no-data-row {
  transform: translateX(16px);
}
.mat-mdc-table .selected-row {
  background-color: var(--color-background-secondary);
}
mat-stepper mat-step-header:hover {
  background-color: transparent !important;
}
mat-stepper mat-step-header:hover .mat-step-icon {
  background-color: var(--color-primary-hover);
}
mat-stepper mat-step-header:hover .mat-step-icon-state-edit {
  background-color: var(--color-primary-hover);
}
mat-stepper mat-step-header:hover .mat-step-icon-content {
  color: var(--color-background-container);
}
mat-stepper mat-step-header.cdk-program-focused {
  background-color: transparent !important;
}
mat-stepper mat-step-header .mat-step-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background-color: var(--color-bullets);
}
mat-stepper mat-step-header .mat-step-icon:hover {
  background-color: var(--color-primary-hover);
}
mat-stepper mat-step-header .mat-step-icon:hover .mat-step-icon-state-edit {
  background-color: var(--color-primary-hover);
}
mat-stepper mat-step-header .mat-step-icon:hover .mat-step-icon-state-edit .mat-step-icon-content {
  color: var(--color-background-container);
}
mat-stepper mat-step-header .mat-step-icon:active {
  background-color: var(--color-primary-default);
}
mat-stepper mat-step-header .mat-step-icon:active .mat-step-icon-state-edit {
  background-color: var(--color-primary-default);
}
mat-stepper mat-step-header .mat-step-icon-selected {
  background-color: var(--color-primary-hover);
}
mat-stepper mat-step-header .mat-step-icon-selected .mat-step-icon-content {
  color: var(--color-background-container);
}
mat-stepper mat-step-header .mat-step-icon-state-edit {
  background-color: var(--color-primary-default);
}
mat-stepper mat-step-header .mat-step-icon-state-edit .mat-step-icon-content {
  color: var(--color-background-container);
}
mat-stepper mat-step-header .mat-focus-indicator {
  background-color: transparent !important;
}
mat-stepper mat-step-header .mat-ripple-element {
  display: none !important;
}
mat-stepper mat-step-header .mat-step-optional {
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  font-style: normal;
}
mat-stepper .mat-stepper-vertical-line::before {
  left: 7px;
  background-color: var(--color-dom-warm-grey-30);
}
mat-stepper .mat-step-icon-content {
  color: var(--color-text-default);
  text-align: center;
  font-family: var(--font-family-general);
  font-style: normal;
}
mat-stepper.mat-stepper-horizontal .mat-step-icon {
  height: 24px;
  width: 24px;
}
mat-stepper.mat-stepper-horizontal .mat-step-icon-content {
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.15px;
}
mat-stepper.mat-stepper-horizontal .mat-step-label {
  font-family: var(--font-family-general);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.15px;
}
mat-stepper.mat-stepper-horizontal .mat-step-label.mat-step-label-selected {
  font-weight: 700;
}
mat-stepper.mat-stepper-vertical .mat-step-icon {
  height: 40px;
  width: 40px;
}
mat-stepper.mat-stepper-vertical .mat-step-icon-content {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}
mat-stepper.mat-stepper-vertical .mat-step-label {
  font-family: var(--font-family-headlines);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.mat-accordion .mat-expansion-panel {
  font-family: var(--font-family-general), serif;
  padding: 24px;
  border: 1px solid var(--color-border-primary, #d9cec9);
  border-radius: 0 !important;
  border-bottom: none;
}
.mat-accordion .mat-expansion-panel:first-of-type {
  border-top-right-radius: var(--border-radius-large) !important;
  border-top-left-radius: var(--border-radius-large) !important;
}
.mat-accordion .mat-expansion-panel:last-of-type {
  border-bottom-right-radius: var(--border-radius-large) !important;
  border-bottom-left-radius: var(--border-radius-large) !important;
  border-bottom: 1px solid var(--color-border-primary, #d9cec9);
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header,
.mat-accordion .mat-expansion-panel .mat-expansion-panel-body {
  padding: 0;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-body {
  border-top: 1px solid var(--color-dom-warm-grey-30);
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.bricks-chevron .mat-expansion-indicator {
  display: none;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.bricks-chevron bricks-icon {
  transition: transform 0.2s ease;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.bricks-chevron bricks-icon.rotated {
  transform: rotate(90deg);
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.bricks-chevron bricks-icon.left-side {
  margin-right: 8px;
  margin-left: -5px;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.bricks-chevron bricks-icon.right-side {
  margin-left: auto;
  color: black;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.bricks-chevron .mat-expansion-panel-header-description {
  margin-right: 0;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.bricks-chevron .mat-expansion-panel-header-description bricks-icon {
  transition: transform 0.2s ease;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.bricks-chevron .mat-expansion-panel-header-description bricks-icon.rotated {
  transform: rotate(90deg);
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding-left: 27px;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.mat-expanded {
  border-radius: 0;
  height: 48px;
}
.mat-accordion .mat-expansion-panel mat-expansion-panel-header.mat-expanded:focus,
.mat-accordion .mat-expansion-panel mat-expansion-panel-header.mat-expanded:hover {
  background-color: white !important;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header-title {
  font-weight: 500;
  font-size: 16px;
  height: 34px;
  margin-right: 0;
  color: var(--color-text-default);
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.vertical {
  height: 80px;
}
.mat-accordion .mat-expansion-panel .mat-expansion-panel-header.vertical .mat-content {
  flex-direction: column;
  gap: 4px;
}
.mat-accordion .mat-expansion-panel:not([class*=mat-elevation-z]) {
  box-shadow: none;
}
.mat-accordion .mat-expansion-panel-spacing {
  margin: 0 !important;
}
.mat-accordion .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover {
  background-color: white !important;
}
.mat-tree {
  background-color: transparent !important;
}
.mat-tree .tree-progress-bar {
  display: block;
  width: 100%;
  height: 4px;
  margin: 30px;
}
.mat-tree .mat-tree-node {
  color: var(--color-text-default);
  font-family: var(--font-family-general), serif;
  font-size: var(--font-size-s);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-m);
  letter-spacing: var(--letter-spacing-s);
  text-align: center;
  min-height: 40px;
}
.mat-tree .mat-tree-node .mat-mdc-icon-button.mat-mdc-button-base {
  height: 40px;
  width: 40px;
  padding: 8px;
}
.mat-tree .mat-tree-node button {
  border: none;
  background-color: transparent;
}
.mat-tree .mat-tree-node button bricks-icon {
  transition: transform 0.2s ease;
}
.mat-tree .mat-tree-node button bricks-icon.rotated {
  transform: rotate(90deg);
}
.mat-tree .mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before {
  opacity: 0;
}
.mat-mdc-slider {
  width: 267px !important;
  --mat-slider-active-track-color: var(--color-primary-default);
  --mat-slider-inactive-track-color: var(--color-background-secondary);
}
.mat-mdc-slider .mdc-slider__value-indicator {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  color: #333;
}
.mat-mdc-slider .mdc-slider__value-indicator::before,
.mat-mdc-slider .mdc-slider__value-indicator::after {
  content: none !important;
  display: none !important;
}
.mat-mdc-slider .mdc-slider__value-indicator .mdc-slider__value-indicator-text {
  text-align: center;
  font-family: var(--font-family-general);
  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: 22px;
  letter-spacing: var(--letter-spacing-s);
}
.mat-mdc-slider .mdc-slider__thumb-knob {
  width: 20px;
  height: 20px;
  background-color: var(--color-primary-default) !important;
  border-color: var(--color-primary-default) !important;
}
.mat-mdc-slider .mdc-slider__thumb-knob::before,
.mat-mdc-slider .mdc-slider__thumb-knob::after,
.mat-mdc-slider .mat-ripple,
.mat-mdc-slider .mat-focus-indicator,
.mat-mdc-slider .mat-mdc-focus-indicator {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  content: none !important;
}
.mat-mdc-slider:hover .mdc-slider__thumb-knob {
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
}
.mat-mdc-slider:active .mdc-slider__thumb-knob,
.mat-mdc-slider:focus-within .mdc-slider__thumb-knob {
  background-color: var(--color-primary-active, var(--color-primary-hover)) !important;
  border-color: var(--color-primary-active, var(--color-primary-hover)) !important;
}
.mat-mdc-slider:hover .mdc-slider__track--active_fill {
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
}
.mat-mdc-slider:active .mdc-slider__track--active_fill,
.mat-mdc-slider:focus-within .mdc-slider__track--active_fill {
  background-color: var(--color-primary-active, var(--color-primary-hover)) !important;
}
.mat-mdc-snack-bar-container bricks-icon {
  margin-left: 10px;
  margin-top: 11px;
}
.mat-mdc-snack-bar-container .mdc-snackbar__label {
  font-family: var(--font-family-general) !important;
  font-size: 16px !important;
  font-weight: var(--font-weight-regular) !important;
  padding-right: 24px !important;
  padding-left: 8px !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}
.mat-mdc-snack-bar-actions {
  color: var(--color-text-default);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.15px;
  transform: translateY(2px);
  padding-right: 10px;
  margin-bottom: 3px;
}
.mat-mdc-snack-bar-actions:hover {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface {
  border-radius: 8px !important;
  box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1) !important;
}
.mat-mdc-snack-bar-container.snackbar-info .mat-mdc-snack-bar-actions {
  color: var(--color-background-body);
  padding-right: 10px;
}
.mat-mdc-snack-bar-container.snackbar-info .mat-mdc-snackbar-surface {
  background-color: var(--color-primary-default) !important;
}
.mat-mdc-snack-bar-container.snackbar-info-outline .mat-mdc-snackbar-surface {
  background-color: var(--color-background-body) !important;
  border: 1px solid var(--color-dom-warm-grey-30) !important;
  color: var(--color-text-default) !important;
}
.mat-mdc-snack-bar-container.snackbar-info-outline .mat-mdc-snackbar-surface bricks-icon {
  color: var(--color-primary-default);
}
.mat-mdc-snack-bar-container.snackbar-info-outline .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled).mat-unthemed {
  color: var(--color-text-default) !important;
}
.mat-mdc-snack-bar-container.snackbar-confirm .mat-mdc-snackbar-surface {
  background-color: var(--color-background-confirm) !important;
  border: 1px solid var(--color-confirm-border) !important;
  color: var(--color-text-default) !important;
}
.mat-mdc-snack-bar-container.snackbar-confirm .mat-mdc-snackbar-surface bricks-icon {
  color: #33b413;
}
.mat-mdc-snack-bar-container.snackbar-confirm .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled).mat-unthemed {
  color: var(--color-text-default) !important;
}
.mat-mdc-snack-bar-container.snackbar-warning .mat-mdc-snackbar-surface {
  background-color: var(--color-background-warning) !important;
  border: 1px solid var(--color-warning-border) !important;
  color: var(--color-text-default) !important;
}
.mat-mdc-snack-bar-container.snackbar-warning .mat-mdc-snackbar-surface bricks-icon {
  color: #ffbb00;
}
.mat-mdc-snack-bar-container.snackbar-warning .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled).mat-unthemed {
  color: var(--color-text-default) !important;
}
.mat-mdc-snack-bar-container.snackbar-error .mat-mdc-snackbar-surface {
  background-color: var(--color-background-error) !important;
  border: 1px solid var(--color-error-border) !important;
  color: var(--color-text-default) !important;
}
.mat-mdc-snack-bar-container.snackbar-error .mat-mdc-snackbar-surface bricks-icon {
  color: #e20e00;
}
.mat-mdc-snack-bar-container.snackbar-error .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled).mat-unthemed {
  color: var(--color-text-default) !important;
}
.mat-elevation-z0,
.mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: var(--mat-app-elevation-shadow-level-0, 0px 0px 0px 0px --mat-sys-shadow, 0px 0px 0px 0px --mat-sys-shadow, 0px 0px 0px 0px --mat-sys-shadow);
}
.mat-elevation-z1,
.mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: var(--mat-app-elevation-shadow-level-1, 0px 2px 1px -1px --mat-sys-shadow, 0px 1px 1px 0px --mat-sys-shadow, 0px 1px 3px 0px --mat-sys-shadow);
}
.mat-elevation-z2,
.mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: var(--mat-app-elevation-shadow-level-2, 0px 3px 1px -2px --mat-sys-shadow, 0px 2px 2px 0px --mat-sys-shadow, 0px 1px 5px 0px --mat-sys-shadow);
}
.mat-elevation-z3,
.mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: var(--mat-app-elevation-shadow-level-3, 0px 3px 3px -2px --mat-sys-shadow, 0px 3px 4px 0px --mat-sys-shadow, 0px 1px 8px 0px --mat-sys-shadow);
}
.mat-elevation-z4,
.mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: var(--mat-app-elevation-shadow-level-4, 0px 2px 4px -1px --mat-sys-shadow, 0px 4px 5px 0px --mat-sys-shadow, 0px 1px 10px 0px --mat-sys-shadow);
}
.mat-elevation-z5,
.mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: var(--mat-app-elevation-shadow-level-5, 0px 3px 5px -1px --mat-sys-shadow, 0px 5px 8px 0px --mat-sys-shadow, 0px 1px 14px 0px --mat-sys-shadow);
}
.mat-elevation-z6,
.mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: var(--mat-app-elevation-shadow-level-6, 0px 3px 5px -1px --mat-sys-shadow, 0px 6px 10px 0px --mat-sys-shadow, 0px 1px 18px 0px --mat-sys-shadow);
}
.mat-elevation-z7,
.mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: var(--mat-app-elevation-shadow-level-7, 0px 4px 5px -2px --mat-sys-shadow, 0px 7px 10px 1px --mat-sys-shadow, 0px 2px 16px 1px --mat-sys-shadow);
}
.mat-elevation-z8,
.mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: var(--mat-app-elevation-shadow-level-8, 0px 5px 5px -3px --mat-sys-shadow, 0px 8px 10px 1px --mat-sys-shadow, 0px 3px 14px 2px --mat-sys-shadow);
}
.mat-elevation-z9,
.mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: var(--mat-app-elevation-shadow-level-9, 0px 5px 6px -3px --mat-sys-shadow, 0px 9px 12px 1px --mat-sys-shadow, 0px 3px 16px 2px --mat-sys-shadow);
}
.mat-elevation-z10,
.mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: var(--mat-app-elevation-shadow-level-10, 0px 6px 6px -3px --mat-sys-shadow, 0px 10px 14px 1px --mat-sys-shadow, 0px 4px 18px 3px --mat-sys-shadow);
}
.mat-elevation-z11,
.mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: var(--mat-app-elevation-shadow-level-11, 0px 6px 7px -4px --mat-sys-shadow, 0px 11px 15px 1px --mat-sys-shadow, 0px 4px 20px 3px --mat-sys-shadow);
}
.mat-elevation-z12,
.mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: var(--mat-app-elevation-shadow-level-12, 0px 7px 8px -4px --mat-sys-shadow, 0px 12px 17px 2px --mat-sys-shadow, 0px 5px 22px 4px --mat-sys-shadow);
}
.mat-elevation-z13,
.mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: var(--mat-app-elevation-shadow-level-13, 0px 7px 8px -4px --mat-sys-shadow, 0px 13px 19px 2px --mat-sys-shadow, 0px 5px 24px 4px --mat-sys-shadow);
}
.mat-elevation-z14,
.mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: var(--mat-app-elevation-shadow-level-14, 0px 7px 9px -4px --mat-sys-shadow, 0px 14px 21px 2px --mat-sys-shadow, 0px 5px 26px 4px --mat-sys-shadow);
}
.mat-elevation-z15,
.mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: var(--mat-app-elevation-shadow-level-15, 0px 8px 9px -5px --mat-sys-shadow, 0px 15px 22px 2px --mat-sys-shadow, 0px 6px 28px 5px --mat-sys-shadow);
}
.mat-elevation-z16,
.mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: var(--mat-app-elevation-shadow-level-16, 0px 8px 10px -5px --mat-sys-shadow, 0px 16px 24px 2px --mat-sys-shadow, 0px 6px 30px 5px --mat-sys-shadow);
}
.mat-elevation-z17,
.mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: var(--mat-app-elevation-shadow-level-17, 0px 8px 11px -5px --mat-sys-shadow, 0px 17px 26px 2px --mat-sys-shadow, 0px 6px 32px 5px --mat-sys-shadow);
}
.mat-elevation-z18,
.mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: var(--mat-app-elevation-shadow-level-18, 0px 9px 11px -5px --mat-sys-shadow, 0px 18px 28px 2px --mat-sys-shadow, 0px 7px 34px 6px --mat-sys-shadow);
}
.mat-elevation-z19,
.mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: var(--mat-app-elevation-shadow-level-19, 0px 9px 12px -6px --mat-sys-shadow, 0px 19px 29px 2px --mat-sys-shadow, 0px 7px 36px 6px --mat-sys-shadow);
}
.mat-elevation-z20,
.mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: var(--mat-app-elevation-shadow-level-20, 0px 10px 13px -6px --mat-sys-shadow, 0px 20px 31px 3px --mat-sys-shadow, 0px 8px 38px 7px --mat-sys-shadow);
}
.mat-elevation-z21,
.mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: var(--mat-app-elevation-shadow-level-21, 0px 10px 13px -6px --mat-sys-shadow, 0px 21px 33px 3px --mat-sys-shadow, 0px 8px 40px 7px --mat-sys-shadow);
}
.mat-elevation-z22,
.mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: var(--mat-app-elevation-shadow-level-22, 0px 10px 14px -6px --mat-sys-shadow, 0px 22px 35px 3px --mat-sys-shadow, 0px 8px 42px 7px --mat-sys-shadow);
}
.mat-elevation-z23,
.mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: var(--mat-app-elevation-shadow-level-23, 0px 11px 14px -7px --mat-sys-shadow, 0px 23px 36px 3px --mat-sys-shadow, 0px 9px 44px 8px --mat-sys-shadow);
}
.mat-elevation-z24,
.mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: var(--mat-app-elevation-shadow-level-24, 0px 11px 15px -7px --mat-sys-shadow, 0px 24px 38px 3px --mat-sys-shadow, 0px 9px 46px 8px --mat-sys-shadow);
}
html {
  --mat-sys-on-surface: initial;
}
.mat-app-background {
  background-color: var(--mat-app-background-color, var(--mat-sys-background, transparent));
  color: var(--mat-app-text-color, var(--mat-sys-on-background, inherit));
}
html {
  --mat-badge-text-font: EnBW Sans Text;
  --mat-badge-line-height: 22px;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-small-size-line-height: 16px;
  --mat-badge-large-size-text-size: 24px;
  --mat-badge-large-size-line-height: 28px;
}
.mat-h1,
.mat-headline-5,
.mat-typography .mat-h1,
.mat-typography .mat-headline-5,
.mat-typography h1 {
  font: 400 24px / 32px EnBW Sans Text;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2,
.mat-headline-6,
.mat-typography .mat-h2,
.mat-typography .mat-headline-6,
.mat-typography h2 {
  font: 500 20px / 32px EnBW Sans Text;
  letter-spacing: 0.0125em;
  margin: 0 0 16px;
}
.mat-h3,
.mat-subtitle-1,
.mat-typography .mat-h3,
.mat-typography .mat-subtitle-1,
.mat-typography h3 {
  font: 400 14px / 18px EnBW Sans Text;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h4,
.mat-body-1,
.mat-typography .mat-h4,
.mat-typography .mat-body-1,
.mat-typography h4 {
  font: 400 16px / 24px EnBW Sans Text;
  letter-spacing: 0.03125em;
  margin: 0 0 16px;
}
.mat-h5,
.mat-typography .mat-h5,
.mat-typography h5 {
  font: 400 calc(14px * 0.83) / 20px EnBW Sans Text;
  margin: 0 0 12px;
}
.mat-h6,
.mat-typography .mat-h6,
.mat-typography h6 {
  font: 400 calc(14px * 0.67) / 20px EnBW Sans Text;
  margin: 0 0 12px;
}
.mat-body-strong,
.mat-subtitle-2,
.mat-typography .mat-body-strong,
.mat-typography .mat-subtitle-2 {
  font: 500 14px / 22px EnBW Sans Text;
  letter-spacing: 0.0071428571em;
}
.mat-body,
.mat-body-2,
.mat-typography .mat-body,
.mat-typography .mat-body-2,
.mat-typography {
  font: 400 14px / 20px EnBW Sans Text;
  letter-spacing: 0.0178571429em;
}
.mat-body p,
.mat-body-2 p,
.mat-typography .mat-body p,
.mat-typography .mat-body-2 p,
.mat-typography p {
  margin: 0 0 12px;
}
.mat-small,
.mat-caption,
.mat-typography .mat-small,
.mat-typography .mat-caption {
  font: 400 12px / 20px EnBW Sans Text;
  letter-spacing: 0.0333333333em;
}
.mat-headline-1,
.mat-typography .mat-headline-1 {
  font: 300 96px / 96px EnBW Sans Text;
  letter-spacing: -0.015625em;
  margin: 0 0 56px;
}
.mat-headline-2,
.mat-typography .mat-headline-2 {
  font: 300 60px / 60px EnBW Sans Text;
  letter-spacing: -0.0083333333em;
  margin: 0 0 64px;
}
.mat-headline-3,
.mat-typography .mat-headline-3 {
  font: 400 48px / 50px EnBW Sans Text;
  letter-spacing: normal;
  margin: 0 0 64px;
}
.mat-headline-4,
.mat-typography .mat-headline-4 {
  font: 400 34px / 40px EnBW Sans Text;
  letter-spacing: 0.0073529412em;
  margin: 0 0 64px;
}
html {
  --mat-bottom-sheet-container-text-font: EnBW Sans Text;
  --mat-bottom-sheet-container-text-line-height: 20px;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: 0.0178571429em;
  --mat-bottom-sheet-container-text-weight: 400;
}
html {
  --mat-button-toggle-label-text-font: EnBW Sans Text;
  --mat-button-toggle-label-text-line-height: 24px;
  --mat-button-toggle-label-text-size: 16px;
  --mat-button-toggle-label-text-tracking: 0.03125em;
  --mat-button-toggle-label-text-weight: 400;
  --mat-button-toggle-legacy-label-text-font: EnBW Sans Text;
  --mat-button-toggle-legacy-label-text-line-height: 24px;
  --mat-button-toggle-legacy-label-text-size: 16px;
  --mat-button-toggle-legacy-label-text-tracking: 0.03125em;
  --mat-button-toggle-legacy-label-text-weight: 400;
}
html {
  --mat-datepicker-calendar-text-font: EnBW Sans Text;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
}
html {
  --mat-expansion-header-text-font: EnBW Sans Text;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: EnBW Sans Text;
  --mat-expansion-container-text-line-height: 20px;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: 0.0178571429em;
  --mat-expansion-container-text-weight: 400;
}
html {
  --mat-grid-list-tile-header-primary-text-size: 14px;
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: 14px;
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
}
html {
  --mat-stepper-container-text-font: EnBW Sans Text;
  --mat-stepper-header-label-text-font: EnBW Sans Text;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 400;
  --mat-stepper-header-error-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
}
html {
  --mat-toolbar-title-text-font: EnBW Sans Text;
  --mat-toolbar-title-text-line-height: 32px;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: 0.0125em;
  --mat-toolbar-title-text-weight: 500;
}
html {
  --mat-tree-node-text-font: EnBW Sans Text;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 400;
}
html {
  --mat-option-label-text-font: EnBW Sans Text;
  --mat-option-label-text-line-height: 24px;
  --mat-option-label-text-size: 16px;
  --mat-option-label-text-tracking: 0.03125em;
  --mat-option-label-text-weight: 400;
}
html {
  --mat-optgroup-label-text-font: EnBW Sans Text;
  --mat-optgroup-label-text-line-height: 24px;
  --mat-optgroup-label-text-size: 16px;
  --mat-optgroup-label-text-tracking: 0.03125em;
  --mat-optgroup-label-text-weight: 400;
}
html {
  --mat-card-title-text-font: EnBW Sans Text;
  --mat-card-title-text-line-height: 32px;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: 0.0125em;
  --mat-card-title-text-weight: 500;
  --mat-card-subtitle-text-font: EnBW Sans Text;
  --mat-card-subtitle-text-line-height: 22px;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: 0.0071428571em;
  --mat-card-subtitle-text-weight: 500;
}
html {
  --mat-tooltip-supporting-text-font: EnBW Sans Text;
  --mat-tooltip-supporting-text-size: 12px;
  --mat-tooltip-supporting-text-weight: 400;
  --mat-tooltip-supporting-text-tracking: 0.0333333333em;
}
html {
  --mat-form-field-container-text-font: EnBW Sans Text;
  --mat-form-field-container-text-line-height: 24px;
  --mat-form-field-container-text-size: 16px;
  --mat-form-field-container-text-tracking: 0.03125em;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 16px;
  --mat-form-field-subscript-text-font: EnBW Sans Text;
  --mat-form-field-subscript-text-line-height: 20px;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
  --mat-form-field-subscript-text-weight: 400;
  --mat-form-field-filled-label-text-font: EnBW Sans Text;
  --mat-form-field-filled-label-text-size: 16px;
  --mat-form-field-filled-label-text-tracking: 0.03125em;
  --mat-form-field-filled-label-text-weight: 400;
  --mat-form-field-outlined-label-text-font: EnBW Sans Text;
  --mat-form-field-outlined-label-text-size: 16px;
  --mat-form-field-outlined-label-text-tracking: 0.03125em;
  --mat-form-field-outlined-label-text-weight: 400;
}
html {
  --mat-select-trigger-text-font: EnBW Sans Text;
  --mat-select-trigger-text-line-height: 24px;
  --mat-select-trigger-text-size: 16px;
  --mat-select-trigger-text-tracking: 0.03125em;
  --mat-select-trigger-text-weight: 400;
}
html {
  --mat-dialog-subhead-font: EnBW Sans Text;
  --mat-dialog-subhead-line-height: 32px;
  --mat-dialog-subhead-size: 20px;
  --mat-dialog-subhead-weight: 500;
  --mat-dialog-subhead-tracking: 0.0125em;
  --mat-dialog-supporting-text-font: EnBW Sans Text;
  --mat-dialog-supporting-text-line-height: 24px;
  --mat-dialog-supporting-text-size: 16px;
  --mat-dialog-supporting-text-weight: 400;
  --mat-dialog-supporting-text-tracking: 0.03125em;
}
.mat-mdc-standard-chip {
  --mat-chip-label-text-font: EnBW Sans Text;
  --mat-chip-label-text-line-height: 20px;
  --mat-chip-label-text-size: 14px;
  --mat-chip-label-text-tracking: 0.0178571429em;
  --mat-chip-label-text-weight: 400;
}
html {
  --mat-slide-toggle-label-text-font: EnBW Sans Text;
  --mat-slide-toggle-label-text-line-height: 20px;
  --mat-slide-toggle-label-text-size: 14px;
  --mat-slide-toggle-label-text-tracking: 0.0178571429em;
  --mat-slide-toggle-label-text-weight: 400;
}
html .mat-mdc-slide-toggle {
  --mat-slide-toggle-label-text-font: EnBW Sans Text;
  --mat-slide-toggle-label-text-line-height: 20px;
  --mat-slide-toggle-label-text-size: 14px;
  --mat-slide-toggle-label-text-tracking: 0.0178571429em;
  --mat-slide-toggle-label-text-weight: 400;
}
html {
  --mat-radio-label-text-font: EnBW Sans Text;
  --mat-radio-label-text-line-height: 20px;
  --mat-radio-label-text-size: 14px;
  --mat-radio-label-text-tracking: 0.0178571429em;
  --mat-radio-label-text-weight: 400;
}
html {
  --mat-slider-label-label-text-font: EnBW Sans Text;
  --mat-slider-label-label-text-size: 14px;
  --mat-slider-label-label-text-line-height: 22px;
  --mat-slider-label-label-text-tracking: 0.0071428571em;
  --mat-slider-label-label-text-weight: 500;
}
html {
  --mat-menu-item-label-text-font: EnBW Sans Text;
  --mat-menu-item-label-text-size: 16px;
  --mat-menu-item-label-text-tracking: 0.03125em;
  --mat-menu-item-label-text-line-height: 24px;
  --mat-menu-item-label-text-weight: 400;
}
html {
  --mat-list-list-item-label-text-font: EnBW Sans Text;
  --mat-list-list-item-label-text-line-height: 24px;
  --mat-list-list-item-label-text-size: 16px;
  --mat-list-list-item-label-text-tracking: 0.03125em;
  --mat-list-list-item-label-text-weight: 400;
  --mat-list-list-item-supporting-text-font: EnBW Sans Text;
  --mat-list-list-item-supporting-text-line-height: 20px;
  --mat-list-list-item-supporting-text-size: 14px;
  --mat-list-list-item-supporting-text-tracking: 0.0178571429em;
  --mat-list-list-item-supporting-text-weight: 400;
  --mat-list-list-item-trailing-supporting-text-font: EnBW Sans Text;
  --mat-list-list-item-trailing-supporting-text-line-height: 20px;
  --mat-list-list-item-trailing-supporting-text-size: 12px;
  --mat-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
  --mat-list-list-item-trailing-supporting-text-weight: 400;
}
.mdc-list-group__subheader {
  font: 400 14px / 18px EnBW Sans Text;
  letter-spacing: normal;
}
html {
  --mat-paginator-container-text-font: EnBW Sans Text;
  --mat-paginator-container-text-line-height: 20px;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: 0.0333333333em;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}
.mat-mdc-tab-header {
  --mat-tab-label-text-font: EnBW Sans Text;
  --mat-tab-label-text-size: 14px;
  --mat-tab-label-text-tracking: 0.0892857143em;
  --mat-tab-label-text-line-height: 36px;
  --mat-tab-label-text-weight: 500;
}
html {
  --mat-checkbox-label-text-font: EnBW Sans Text;
  --mat-checkbox-label-text-line-height: 20px;
  --mat-checkbox-label-text-size: 14px;
  --mat-checkbox-label-text-tracking: 0.0178571429em;
  --mat-checkbox-label-text-weight: 400;
}
html {
  --mat-button-filled-label-text-font: EnBW Sans Text;
  --mat-button-filled-label-text-size: 14px;
  --mat-button-filled-label-text-tracking: 0.0892857143em;
  --mat-button-filled-label-text-transform: none;
  --mat-button-filled-label-text-weight: 500;
  --mat-button-outlined-label-text-font: EnBW Sans Text;
  --mat-button-outlined-label-text-size: 14px;
  --mat-button-outlined-label-text-tracking: 0.0892857143em;
  --mat-button-outlined-label-text-transform: none;
  --mat-button-outlined-label-text-weight: 500;
  --mat-button-protected-label-text-font: EnBW Sans Text;
  --mat-button-protected-label-text-size: 14px;
  --mat-button-protected-label-text-tracking: 0.0892857143em;
  --mat-button-protected-label-text-transform: none;
  --mat-button-protected-label-text-weight: 500;
  --mat-button-text-label-text-font: EnBW Sans Text;
  --mat-button-text-label-text-size: 14px;
  --mat-button-text-label-text-tracking: 0.0892857143em;
  --mat-button-text-label-text-transform: none;
  --mat-button-text-label-text-weight: 500;
  --mat-button-tonal-label-text-font: EnBW Sans Text;
  --mat-button-tonal-label-text-size: 14px;
  --mat-button-tonal-label-text-tracking: 0.0892857143em;
  --mat-button-tonal-label-text-transform: none;
  --mat-button-tonal-label-text-weight: 500;
}
html {
  --mat-fab-extended-label-text-font: EnBW Sans Text;
  --mat-fab-extended-label-text-size: 14px;
  --mat-fab-extended-label-text-tracking: 0.0892857143em;
  --mat-fab-extended-label-text-weight: 500;
}
html {
  --mat-snack-bar-supporting-text-font: EnBW Sans Text;
  --mat-snack-bar-supporting-text-line-height: 20px;
  --mat-snack-bar-supporting-text-size: 14px;
  --mat-snack-bar-supporting-text-weight: 400;
}
html {
  --mat-table-header-headline-font: EnBW Sans Text;
  --mat-table-header-headline-line-height: 22px;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: 0.0071428571em;
  --mat-table-row-item-label-text-font: EnBW Sans Text;
  --mat-table-row-item-label-text-line-height: 20px;
  --mat-table-row-item-label-text-size: 14px;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-row-item-label-text-tracking: 0.0178571429em;
  --mat-table-footer-supporting-text-font: EnBW Sans Text;
  --mat-table-footer-supporting-text-line-height: 20px;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.0178571429em;
}
.mat-h1,
.mat-headline-5,
.mat-typography .mat-h1,
.mat-typography .mat-headline-5,
.mat-typography h1 {
  font: 400 24px / 32px EnBW Sans Text;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2,
.mat-headline-6,
.mat-typography .mat-h2,
.mat-typography .mat-headline-6,
.mat-typography h2 {
  font: 500 20px / 32px EnBW Sans Text;
  letter-spacing: 0.0125em;
  margin: 0 0 16px;
}
.mat-h3,
.mat-subtitle-1,
.mat-typography .mat-h3,
.mat-typography .mat-subtitle-1,
.mat-typography h3 {
  font: 400 14px / 18px EnBW Sans Text;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h4,
.mat-body-1,
.mat-typography .mat-h4,
.mat-typography .mat-body-1,
.mat-typography h4 {
  font: 400 16px / 24px EnBW Sans Text;
  letter-spacing: 0.03125em;
  margin: 0 0 16px;
}
.mat-h5,
.mat-typography .mat-h5,
.mat-typography h5 {
  font: 400 calc(14px * 0.83) / 20px EnBW Sans Text;
  margin: 0 0 12px;
}
.mat-h6,
.mat-typography .mat-h6,
.mat-typography h6 {
  font: 400 calc(14px * 0.67) / 20px EnBW Sans Text;
  margin: 0 0 12px;
}
.mat-body-strong,
.mat-subtitle-2,
.mat-typography .mat-body-strong,
.mat-typography .mat-subtitle-2 {
  font: 500 14px / 22px EnBW Sans Text;
  letter-spacing: 0.0071428571em;
}
.mat-body,
.mat-body-2,
.mat-typography .mat-body,
.mat-typography .mat-body-2,
.mat-typography {
  font: 400 14px / 20px EnBW Sans Text;
  letter-spacing: 0.0178571429em;
}
.mat-body p,
.mat-body-2 p,
.mat-typography .mat-body p,
.mat-typography .mat-body-2 p,
.mat-typography p {
  margin: 0 0 12px;
}
.mat-small,
.mat-caption,
.mat-typography .mat-small,
.mat-typography .mat-caption {
  font: 400 12px / 20px EnBW Sans Text;
  letter-spacing: 0.0333333333em;
}
.mat-headline-1,
.mat-typography .mat-headline-1 {
  font: 300 96px / 96px EnBW Sans Text;
  letter-spacing: -0.015625em;
  margin: 0 0 56px;
}
.mat-headline-2,
.mat-typography .mat-headline-2 {
  font: 300 60px / 60px EnBW Sans Text;
  letter-spacing: -0.0083333333em;
  margin: 0 0 64px;
}
.mat-headline-3,
.mat-typography .mat-headline-3 {
  font: 400 48px / 50px EnBW Sans Text;
  letter-spacing: normal;
  margin: 0 0 64px;
}
.mat-headline-4,
.mat-typography .mat-headline-4 {
  font: 400 34px / 40px EnBW Sans Text;
  letter-spacing: 0.0073529412em;
  margin: 0 0 64px;
}
.mat-ripple-element {
  transition-duration: 0ms !important;
}
html {
  --mat-app-background-color: #fafafa;
  --mat-app-text-color: rgba(0, 0, 0, 0.87);
  --mat-app-elevation-shadow-level-0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14),
    0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(0, 0, 0, 0.2),
    0px 7px 10px 1px rgba(0, 0, 0, 0.14),
    0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(0, 0, 0, 0.2),
    0px 9px 12px 1px rgba(0, 0, 0, 0.14),
    0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14),
    0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(0, 0, 0, 0.2),
    0px 11px 15px 1px rgba(0, 0, 0, 0.14),
    0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 13px 19px 2px rgba(0, 0, 0, 0.14),
    0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(0, 0, 0, 0.2),
    0px 14px 21px 2px rgba(0, 0, 0, 0.14),
    0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(0, 0, 0, 0.2),
    0px 15px 22px 2px rgba(0, 0, 0, 0.14),
    0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(0, 0, 0, 0.2),
    0px 17px 26px 2px rgba(0, 0, 0, 0.14),
    0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(0, 0, 0, 0.2),
    0px 18px 28px 2px rgba(0, 0, 0, 0.14),
    0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(0, 0, 0, 0.2),
    0px 19px 29px 2px rgba(0, 0, 0, 0.14),
    0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 20px 31px 3px rgba(0, 0, 0, 0.14),
    0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 21px 33px 3px rgba(0, 0, 0, 0.14),
    0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(0, 0, 0, 0.2),
    0px 22px 35px 3px rgba(0, 0, 0, 0.14),
    0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(0, 0, 0, 0.2),
    0px 23px 36px 3px rgba(0, 0, 0, 0.14),
    0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
html {
  --mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
}
html {
  --mat-option-selected-state-label-text-color: #000099;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 4%, transparent);
  --mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
}
.mat-accent {
  --mat-option-selected-state-label-text-color: #ff9900;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 4%, transparent);
  --mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
}
.mat-warn {
  --mat-option-selected-state-label-text-color: #f44336;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 4%, transparent);
  --mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
}
html {
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
}
html {
  --mat-pseudo-checkbox-full-selected-icon-color: #ff9900;
  --mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;
  --mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #ff9900;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
}
.mat-primary {
  --mat-pseudo-checkbox-full-selected-icon-color: #000099;
  --mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;
  --mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #000099;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
}
.mat-accent {
  --mat-pseudo-checkbox-full-selected-icon-color: #ff9900;
  --mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;
  --mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #ff9900;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
}
.mat-warn {
  --mat-pseudo-checkbox-full-selected-icon-color: #f44336;
  --mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;
  --mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #f44336;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
}
html {
  --mat-option-label-text-font: EnBW Sans Text;
  --mat-option-label-text-line-height: 24px;
  --mat-option-label-text-size: 16px;
  --mat-option-label-text-tracking: 0.03125em;
  --mat-option-label-text-weight: 400;
}
html {
  --mat-optgroup-label-text-font: EnBW Sans Text;
  --mat-optgroup-label-text-line-height: 24px;
  --mat-optgroup-label-text-size: 16px;
  --mat-optgroup-label-text-tracking: 0.03125em;
  --mat-optgroup-label-text-weight: 400;
}
html {
  --mat-card-elevated-container-shape: 4px;
  --mat-card-outlined-container-shape: 4px;
  --mat-card-filled-container-shape: 4px;
  --mat-card-outlined-outline-width: 1px;
}
html {
  --mat-card-elevated-container-color: white;
  --mat-card-elevated-container-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-card-outlined-container-color: white;
  --mat-card-outlined-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-outlined-outline-color: rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
  --mat-card-filled-container-color: white;
  --mat-card-filled-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-card-title-text-font: EnBW Sans Text;
  --mat-card-title-text-line-height: 32px;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: 0.0125em;
  --mat-card-title-text-weight: 500;
  --mat-card-subtitle-text-font: EnBW Sans Text;
  --mat-card-subtitle-text-line-height: 22px;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: 0.0071428571em;
  --mat-card-subtitle-text-weight: 500;
}
html {
  --mat-progress-bar-active-indicator-height: 4px;
  --mat-progress-bar-track-height: 4px;
  --mat-progress-bar-track-shape: 0;
}
.mat-mdc-progress-bar {
  --mat-progress-bar-active-indicator-color: #000099;
  --mat-progress-bar-track-color: rgba(0, 0, 153, 0.25);
}
.mat-mdc-progress-bar.mat-accent {
  --mat-progress-bar-active-indicator-color: #ff9900;
  --mat-progress-bar-track-color: rgba(255, 153, 0, 0.25);
}
.mat-mdc-progress-bar.mat-warn {
  --mat-progress-bar-active-indicator-color: #f44336;
  --mat-progress-bar-track-color: rgba(244, 67, 54, 0.25);
}
html {
  --mat-tooltip-container-shape: 4px;
  --mat-tooltip-supporting-text-line-height: 16px;
}
html {
  --mat-tooltip-container-color: #424242;
  --mat-tooltip-supporting-text-color: white;
}
html {
  --mat-tooltip-supporting-text-font: EnBW Sans Text;
  --mat-tooltip-supporting-text-size: 12px;
  --mat-tooltip-supporting-text-weight: 400;
  --mat-tooltip-supporting-text-tracking: 0.0333333333em;
}
html {
  --mat-form-field-filled-active-indicator-height: 1px;
  --mat-form-field-filled-focus-active-indicator-height: 2px;
  --mat-form-field-filled-container-shape: 4px;
  --mat-form-field-outlined-outline-width: 1px;
  --mat-form-field-outlined-focus-outline-width: 2px;
  --mat-form-field-outlined-container-shape: 4px;
}
html {
  --mat-form-field-focus-select-arrow-color: color-mix(in srgb, #000099 87%, transparent);
  --mat-form-field-filled-caret-color: #000099;
  --mat-form-field-filled-focus-active-indicator-color: #000099;
  --mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #000099 87%, transparent);
  --mat-form-field-outlined-caret-color: #000099;
  --mat-form-field-outlined-focus-outline-color: #000099;
  --mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #000099 87%, transparent);
  --mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-form-field-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-error-text-color: #f44336;
  --mat-form-field-select-option-text-color: inherit;
  --mat-form-field-select-disabled-option-text-color: GrayText;
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-form-field-hover-state-layer-opacity: 0.04;
  --mat-form-field-focus-state-layer-opacity: 0.12;
  --mat-form-field-filled-container-color: #f6f6f6;
  --mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 4%, transparent);
  --mat-form-field-filled-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-form-field-filled-input-text-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-filled-error-hover-label-text-color: #f44336;
  --mat-form-field-filled-error-focus-label-text-color: #f44336;
  --mat-form-field-filled-error-label-text-color: #f44336;
  --mat-form-field-filled-error-caret-color: #f44336;
  --mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-filled-error-active-indicator-color: #f44336;
  --mat-form-field-filled-error-focus-active-indicator-color: #f44336;
  --mat-form-field-filled-error-hover-active-indicator-color: #f44336;
  --mat-form-field-outlined-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-form-field-outlined-input-text-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-outlined-error-caret-color: #f44336;
  --mat-form-field-outlined-error-focus-label-text-color: #f44336;
  --mat-form-field-outlined-error-label-text-color: #f44336;
  --mat-form-field-outlined-error-hover-label-text-color: #f44336;
  --mat-form-field-outlined-outline-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-outlined-error-focus-outline-color: #f44336;
  --mat-form-field-outlined-error-hover-outline-color: #f44336;
  --mat-form-field-outlined-error-outline-color: #f44336;
}
.mat-mdc-form-field.mat-accent {
  --mat-form-field-focus-select-arrow-color: color-mix(in srgb, #ff9900 87%, transparent);
  --mat-form-field-filled-caret-color: #ff9900;
  --mat-form-field-filled-focus-active-indicator-color: #ff9900;
  --mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #ff9900 87%, transparent);
  --mat-form-field-outlined-caret-color: #ff9900;
  --mat-form-field-outlined-focus-outline-color: #ff9900;
  --mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #ff9900 87%, transparent);
}
.mat-mdc-form-field.mat-warn {
  --mat-form-field-focus-select-arrow-color: color-mix(in srgb, #f44336 87%, transparent);
  --mat-form-field-filled-caret-color: #f44336;
  --mat-form-field-filled-focus-active-indicator-color: #f44336;
  --mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #f44336 87%, transparent);
  --mat-form-field-outlined-caret-color: #f44336;
  --mat-form-field-outlined-focus-outline-color: #f44336;
  --mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #f44336 87%, transparent);
}
html {
  --mat-form-field-container-height: 56px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 16px;
  --mat-form-field-filled-with-label-container-padding-top: 24px;
  --mat-form-field-filled-with-label-container-padding-bottom: 8px;
}
html {
  --mat-form-field-container-text-font: EnBW Sans Text;
  --mat-form-field-container-text-line-height: 24px;
  --mat-form-field-container-text-size: 16px;
  --mat-form-field-container-text-tracking: 0.03125em;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 16px;
  --mat-form-field-subscript-text-font: EnBW Sans Text;
  --mat-form-field-subscript-text-line-height: 20px;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
  --mat-form-field-subscript-text-weight: 400;
  --mat-form-field-filled-label-text-font: EnBW Sans Text;
  --mat-form-field-filled-label-text-size: 16px;
  --mat-form-field-filled-label-text-tracking: 0.03125em;
  --mat-form-field-filled-label-text-weight: 400;
  --mat-form-field-outlined-label-text-font: EnBW Sans Text;
  --mat-form-field-outlined-label-text-size: 16px;
  --mat-form-field-outlined-label-text-tracking: 0.03125em;
  --mat-form-field-outlined-label-text-weight: 400;
}
html {
  --mat-select-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.54);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-select-focused-arrow-color: #000099;
  --mat-select-invalid-arrow-color: #f44336;
}
.mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.54);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-select-focused-arrow-color: #ff9900;
  --mat-select-invalid-arrow-color: #f44336;
}
.mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.54);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-select-focused-arrow-color: #f44336;
  --mat-select-invalid-arrow-color: #f44336;
}
html {
  --mat-select-arrow-transform: translateY(-8px);
}
html {
  --mat-select-trigger-text-font: EnBW Sans Text;
  --mat-select-trigger-text-line-height: 24px;
  --mat-select-trigger-text-size: 16px;
  --mat-select-trigger-text-tracking: 0.03125em;
  --mat-select-trigger-text-weight: 400;
}
html {
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-autocomplete-background-color: white;
}
html {
  --mat-dialog-container-shape: 4px;
  --mat-dialog-container-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
}
html {
  --mat-dialog-container-color: white;
  --mat-dialog-subhead-color: rgba(0, 0, 0, 0.87);
  --mat-dialog-supporting-text-color: rgba(0, 0, 0, 0.54);
}
html {
  --mat-dialog-subhead-font: EnBW Sans Text;
  --mat-dialog-subhead-line-height: 32px;
  --mat-dialog-subhead-size: 20px;
  --mat-dialog-subhead-weight: 500;
  --mat-dialog-subhead-tracking: 0.0125em;
  --mat-dialog-supporting-text-font: EnBW Sans Text;
  --mat-dialog-supporting-text-line-height: 24px;
  --mat-dialog-supporting-text-size: 16px;
  --mat-dialog-supporting-text-weight: 400;
  --mat-dialog-supporting-text-tracking: 0.03125em;
}
.mat-mdc-standard-chip {
  --mat-chip-container-shape-radius: 16px;
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-disabled-outline-color: transparent;
  --mat-chip-flat-selected-outline-width: 0;
  --mat-chip-focus-outline-color: transparent;
  --mat-chip-hover-state-layer-opacity: 0.04;
  --mat-chip-outline-color: transparent;
  --mat-chip-outline-width: 0;
  --mat-chip-selected-hover-state-layer-opacity: 0.04;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-with-avatar-avatar-shape-radius: 14px;
  --mat-chip-with-avatar-avatar-size: 28px;
  --mat-chip-with-avatar-disabled-avatar-opacity: 1;
  --mat-chip-with-icon-disabled-icon-opacity: 1;
  --mat-chip-with-icon-icon-size: 18px;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
}
.mat-mdc-standard-chip {
  --mat-chip-disabled-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-chip-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-chip-focus-state-layer-opacity: 0.12;
  --mat-chip-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-chip-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-focus-state-layer-color: 0.12;
  --mat-chip-selected-focus-state-layer-opacity: 0.12;
  --mat-chip-selected-hover-state-layer-color: 0.04;
  --mat-chip-selected-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-with-icon-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,
.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mat-chip-disabled-label-text-color: #ffffff;
  --mat-chip-elevated-container-color: #000099;
  --mat-chip-elevated-disabled-container-color: #000099;
  --mat-chip-elevated-selected-container-color: #000099;
  --mat-chip-flat-disabled-selected-container-color: #000099;
  --mat-chip-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-chip-focus-state-layer-opacity: 0.12;
  --mat-chip-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-chip-label-text-color: #ffffff;
  --mat-chip-selected-disabled-trailing-icon-color: #ffffff;
  --mat-chip-selected-focus-state-layer-color: 0.12;
  --mat-chip-selected-focus-state-layer-opacity: 0.12;
  --mat-chip-selected-hover-state-layer-color: 0.04;
  --mat-chip-selected-label-text-color: #ffffff;
  --mat-chip-selected-trailing-icon-color: #ffffff;
  --mat-chip-with-icon-disabled-icon-color: #ffffff;
  --mat-chip-with-icon-icon-color: #ffffff;
  --mat-chip-with-icon-selected-icon-color: #ffffff;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;
  --mat-chip-with-trailing-icon-trailing-icon-color: #ffffff;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,
.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mat-chip-disabled-label-text-color: #000000;
  --mat-chip-elevated-container-color: #ff9900;
  --mat-chip-elevated-disabled-container-color: #ff9900;
  --mat-chip-elevated-selected-container-color: #ff9900;
  --mat-chip-flat-disabled-selected-container-color: #ff9900;
  --mat-chip-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-chip-focus-state-layer-opacity: 0.12;
  --mat-chip-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-chip-label-text-color: #000000;
  --mat-chip-selected-disabled-trailing-icon-color: #000000;
  --mat-chip-selected-focus-state-layer-color: 0.12;
  --mat-chip-selected-focus-state-layer-opacity: 0.12;
  --mat-chip-selected-hover-state-layer-color: 0.04;
  --mat-chip-selected-label-text-color: #000000;
  --mat-chip-selected-trailing-icon-color: #000000;
  --mat-chip-with-icon-disabled-icon-color: #000000;
  --mat-chip-with-icon-icon-color: #000000;
  --mat-chip-with-icon-selected-icon-color: #000000;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;
  --mat-chip-with-trailing-icon-trailing-icon-color: #000000;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,
.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mat-chip-disabled-label-text-color: white;
  --mat-chip-elevated-container-color: #f44336;
  --mat-chip-elevated-disabled-container-color: #f44336;
  --mat-chip-elevated-selected-container-color: #f44336;
  --mat-chip-flat-disabled-selected-container-color: #f44336;
  --mat-chip-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-chip-focus-state-layer-opacity: 0.12;
  --mat-chip-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-chip-label-text-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-focus-state-layer-color: 0.12;
  --mat-chip-selected-focus-state-layer-opacity: 0.12;
  --mat-chip-selected-hover-state-layer-color: 0.04;
  --mat-chip-selected-label-text-color: white;
  --mat-chip-selected-trailing-icon-color: white;
  --mat-chip-with-icon-disabled-icon-color: white;
  --mat-chip-with-icon-icon-color: white;
  --mat-chip-with-icon-selected-icon-color: white;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mat-chip-with-trailing-icon-trailing-icon-color: white;
}
.mat-mdc-chip.mat-mdc-standard-chip {
  --mat-chip-container-height: 32px;
}
.mat-mdc-standard-chip {
  --mat-chip-label-text-font: EnBW Sans Text;
  --mat-chip-label-text-line-height: 20px;
  --mat-chip-label-text-size: 14px;
  --mat-chip-label-text-tracking: 0.0178571429em;
  --mat-chip-label-text-weight: 400;
}
html {
  --mat-slide-toggle-disabled-handle-opacity: 0.38;
  --mat-slide-toggle-disabled-selected-handle-opacity: 0.38;
  --mat-slide-toggle-disabled-selected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-track-opacity: 0.12;
  --mat-slide-toggle-disabled-unselected-handle-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-track-outline-color: transparent;
  --mat-slide-toggle-disabled-unselected-track-outline-width: 1px;
  --mat-slide-toggle-handle-height: 20px;
  --mat-slide-toggle-handle-shape: 10px;
  --mat-slide-toggle-handle-width: 20px;
  --mat-slide-toggle-hidden-track-opacity: 1;
  --mat-slide-toggle-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-slide-toggle-pressed-handle-size: 20px;
  --mat-slide-toggle-selected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-handle-horizontal-margin: 0;
  --mat-slide-toggle-selected-handle-size: 20px;
  --mat-slide-toggle-selected-hover-state-layer-opacity: 0.04;
  --mat-slide-toggle-selected-icon-size: 18px;
  --mat-slide-toggle-selected-pressed-handle-horizontal-margin: 0;
  --mat-slide-toggle-selected-pressed-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-track-outline-color: transparent;
  --mat-slide-toggle-selected-track-outline-width: 1px;
  --mat-slide-toggle-selected-with-icon-handle-horizontal-margin: 0;
  --mat-slide-toggle-track-height: 14px;
  --mat-slide-toggle-track-outline-color: transparent;
  --mat-slide-toggle-track-outline-width: 1px;
  --mat-slide-toggle-track-shape: 7px;
  --mat-slide-toggle-track-width: 36px;
  --mat-slide-toggle-unselected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-handle-horizontal-margin: 0;
  --mat-slide-toggle-unselected-handle-size: 20px;
  --mat-slide-toggle-unselected-hover-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-icon-size: 18px;
  --mat-slide-toggle-unselected-pressed-handle-horizontal-margin: 0;
  --mat-slide-toggle-unselected-pressed-state-layer-opacity: 0.1;
  --mat-slide-toggle-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-slide-toggle-visible-track-opacity: 1;
  --mat-slide-toggle-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-slide-toggle-with-icon-handle-size: 20px;
  --mat-slide-toggle-touch-target-size: 48px;
}
html {
  --mat-slide-toggle-selected-icon-color: #ffffff;
  --mat-slide-toggle-disabled-selected-icon-color: #ffffff;
  --mat-slide-toggle-selected-focus-state-layer-color: #000099;
  --mat-slide-toggle-selected-handle-color: #000099;
  --mat-slide-toggle-selected-hover-state-layer-color: #000099;
  --mat-slide-toggle-selected-pressed-state-layer-color: #000099;
  --mat-slide-toggle-selected-focus-handle-color: #000099;
  --mat-slide-toggle-selected-hover-handle-color: #000099;
  --mat-slide-toggle-selected-pressed-handle-color: #000099;
  --mat-slide-toggle-selected-focus-track-color: #0278d4;
  --mat-slide-toggle-selected-hover-track-color: #0278d4;
  --mat-slide-toggle-selected-pressed-track-color: #0278d4;
  --mat-slide-toggle-selected-track-color: #0278d4;
  --mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-slide-toggle-disabled-handle-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, 0.87);
  --mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, 0.87);
  --mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, 0.87);
  --mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;
  --mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, 0.87);
  --mat-slide-toggle-handle-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slide-toggle-handle-surface-color: white;
  --mat-slide-toggle-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-slide-toggle-unselected-hover-handle-color: #424242;
  --mat-slide-toggle-unselected-focus-handle-color: #424242;
  --mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, 0.12);
  --mat-slide-toggle-unselected-icon-color: #f6f6f6;
  --mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, 0.54);
  --mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, 0.12);
  --mat-slide-toggle-unselected-pressed-handle-color: #424242;
  --mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, 0.12);
  --mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, 0.12);
}
.mat-mdc-slide-toggle.mat-accent {
  --mat-slide-toggle-selected-icon-color: #000000;
  --mat-slide-toggle-disabled-selected-icon-color: #000000;
  --mat-slide-toggle-selected-focus-state-layer-color: #ff9900;
  --mat-slide-toggle-selected-handle-color: #ff9900;
  --mat-slide-toggle-selected-hover-state-layer-color: #ff9900;
  --mat-slide-toggle-selected-pressed-state-layer-color: #ff9900;
  --mat-slide-toggle-selected-focus-handle-color: #ff9900;
  --mat-slide-toggle-selected-hover-handle-color: #ff9900;
  --mat-slide-toggle-selected-pressed-handle-color: #ff9900;
  --mat-slide-toggle-selected-focus-track-color: #ffb84d;
  --mat-slide-toggle-selected-hover-track-color: #ffb84d;
  --mat-slide-toggle-selected-pressed-track-color: #ffb84d;
  --mat-slide-toggle-selected-track-color: #ffb84d;
}
.mat-mdc-slide-toggle.mat-warn {
  --mat-slide-toggle-selected-icon-color: white;
  --mat-slide-toggle-disabled-selected-icon-color: white;
  --mat-slide-toggle-selected-focus-state-layer-color: #f44336;
  --mat-slide-toggle-selected-handle-color: #f44336;
  --mat-slide-toggle-selected-hover-state-layer-color: #f44336;
  --mat-slide-toggle-selected-pressed-state-layer-color: #f44336;
  --mat-slide-toggle-selected-focus-handle-color: #f44336;
  --mat-slide-toggle-selected-hover-handle-color: #f44336;
  --mat-slide-toggle-selected-pressed-handle-color: #f44336;
  --mat-slide-toggle-selected-focus-track-color: #e57373;
  --mat-slide-toggle-selected-hover-track-color: #e57373;
  --mat-slide-toggle-selected-pressed-track-color: #e57373;
  --mat-slide-toggle-selected-track-color: #e57373;
}
html {
  --mat-slide-toggle-state-layer-size: 40px;
  --mat-slide-toggle-touch-target-display: block;
}
html {
  --mat-slide-toggle-label-text-font: EnBW Sans Text;
  --mat-slide-toggle-label-text-line-height: 20px;
  --mat-slide-toggle-label-text-size: 14px;
  --mat-slide-toggle-label-text-tracking: 0.0178571429em;
  --mat-slide-toggle-label-text-weight: 400;
}
html .mat-mdc-slide-toggle {
  --mat-slide-toggle-label-text-font: EnBW Sans Text;
  --mat-slide-toggle-label-text-line-height: 20px;
  --mat-slide-toggle-label-text-size: 14px;
  --mat-slide-toggle-label-text-tracking: 0.0178571429em;
  --mat-slide-toggle-label-text-weight: 400;
}
html {
  --mat-radio-disabled-selected-icon-opacity: 0.38;
  --mat-radio-disabled-unselected-icon-opacity: 0.38;
  --mat-radio-state-layer-size: 40px;
  --mat-radio-touch-target-size: 48px;
}
.mat-mdc-radio-button.mat-primary {
  --mat-radio-checked-ripple-color: #000099;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-radio-ripple-color: rgba(0, 0, 0, 0.87);
  --mat-radio-selected-focus-icon-color: #000099;
  --mat-radio-selected-hover-icon-color: #000099;
  --mat-radio-selected-icon-color: #000099;
  --mat-radio-selected-pressed-icon-color: #000099;
  --mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-radio-button.mat-accent {
  --mat-radio-checked-ripple-color: #ff9900;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-radio-ripple-color: rgba(0, 0, 0, 0.87);
  --mat-radio-selected-focus-icon-color: #ff9900;
  --mat-radio-selected-hover-icon-color: #ff9900;
  --mat-radio-selected-icon-color: #ff9900;
  --mat-radio-selected-pressed-icon-color: #ff9900;
  --mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-radio-button.mat-warn {
  --mat-radio-checked-ripple-color: #f44336;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-radio-ripple-color: rgba(0, 0, 0, 0.87);
  --mat-radio-selected-focus-icon-color: #f44336;
  --mat-radio-selected-hover-icon-color: #f44336;
  --mat-radio-selected-icon-color: #f44336;
  --mat-radio-selected-pressed-icon-color: #f44336;
  --mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.87);
}
html {
  --mat-radio-state-layer-size: 40px;
  --mat-radio-touch-target-display: block;
}
html {
  --mat-radio-label-text-font: EnBW Sans Text;
  --mat-radio-label-text-line-height: 20px;
  --mat-radio-label-text-size: 14px;
  --mat-radio-label-text-tracking: 0.0178571429em;
  --mat-radio-label-text-weight: 400;
}
html {
  --mat-slider-active-track-height: 6px;
  --mat-slider-active-track-shape: 9999px;
  --mat-slider-handle-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slider-handle-height: 20px;
  --mat-slider-handle-shape: 50%;
  --mat-slider-handle-width: 20px;
  --mat-slider-inactive-track-height: 4px;
  --mat-slider-inactive-track-shape: 9999px;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-width: auto;
  --mat-slider-with-overlap-handle-outline-width: 1px;
  --mat-slider-with-tick-marks-active-container-opacity: 0.6;
  --mat-slider-with-tick-marks-container-shape: 50%;
  --mat-slider-with-tick-marks-container-size: 2px;
  --mat-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mat-slider-value-indicator-transform-origin: bottom;
}
html {
  --mat-slider-active-track-color: #000099;
  --mat-slider-focus-handle-color: #000099;
  --mat-slider-handle-color: #000099;
  --mat-slider-hover-handle-color: #000099;
  --mat-slider-focus-state-layer-color: color-mix(in srgb, #000099 12%, transparent);
  --mat-slider-hover-state-layer-color: color-mix(in srgb, #000099 4%, transparent);
  --mat-slider-inactive-track-color: #000099;
  --mat-slider-ripple-color: #000099;
  --mat-slider-with-tick-marks-active-container-color: #ffffff;
  --mat-slider-with-tick-marks-inactive-container-color: #000099;
  --mat-slider-disabled-active-track-color: rgba(0, 0, 0, 0.87);
  --mat-slider-disabled-handle-color: rgba(0, 0, 0, 0.87);
  --mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, 0.87);
  --mat-slider-label-container-color: #424242;
  --mat-slider-label-label-text-color: white;
  --mat-slider-value-indicator-opacity: 1;
  --mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, 0.87);
  --mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, 0.87);
}
.mat-accent {
  --mat-slider-active-track-color: #ff9900;
  --mat-slider-focus-handle-color: #ff9900;
  --mat-slider-handle-color: #ff9900;
  --mat-slider-hover-handle-color: #ff9900;
  --mat-slider-focus-state-layer-color: color-mix(in srgb, #ff9900 12%, transparent);
  --mat-slider-hover-state-layer-color: color-mix(in srgb, #ff9900 4%, transparent);
  --mat-slider-inactive-track-color: #ff9900;
  --mat-slider-ripple-color: #ff9900;
  --mat-slider-with-tick-marks-active-container-color: #000000;
  --mat-slider-with-tick-marks-inactive-container-color: #ff9900;
}
.mat-warn {
  --mat-slider-active-track-color: #f44336;
  --mat-slider-focus-handle-color: #f44336;
  --mat-slider-handle-color: #f44336;
  --mat-slider-hover-handle-color: #f44336;
  --mat-slider-focus-state-layer-color: color-mix(in srgb, #f44336 12%, transparent);
  --mat-slider-hover-state-layer-color: color-mix(in srgb, #f44336 4%, transparent);
  --mat-slider-inactive-track-color: #f44336;
  --mat-slider-ripple-color: #f44336;
  --mat-slider-with-tick-marks-active-container-color: white;
  --mat-slider-with-tick-marks-inactive-container-color: #f44336;
}
html {
  --mat-slider-label-label-text-font: EnBW Sans Text;
  --mat-slider-label-label-text-size: 14px;
  --mat-slider-label-label-text-line-height: 22px;
  --mat-slider-label-label-text-tracking: 0.0071428571em;
  --mat-slider-label-label-text-weight: 500;
}
html {
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 4%, transparent);
  --mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-menu-container-color: white;
  --mat-menu-divider-color: rgba(0, 0, 0, 0.12);
}
html {
  --mat-menu-item-label-text-font: EnBW Sans Text;
  --mat-menu-item-label-text-size: 16px;
  --mat-menu-item-label-text-tracking: 0.03125em;
  --mat-menu-item-label-text-line-height: 24px;
  --mat-menu-item-label-text-weight: 400;
}
html {
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
  --mat-list-list-item-container-shape: 0;
  --mat-list-list-item-leading-avatar-shape: 50%;
  --mat-list-list-item-container-color: transparent;
  --mat-list-list-item-selected-container-color: transparent;
  --mat-list-list-item-leading-avatar-color: transparent;
  --mat-list-list-item-leading-icon-size: 24px;
  --mat-list-list-item-leading-avatar-size: 40px;
  --mat-list-list-item-trailing-icon-size: 24px;
  --mat-list-list-item-disabled-state-layer-color: transparent;
  --mat-list-list-item-disabled-state-layer-opacity: 0;
  --mat-list-list-item-disabled-label-text-opacity: 0.38;
  --mat-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mat-list-list-item-disabled-trailing-icon-opacity: 0.38;
}
html {
  --mat-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);
  --mat-list-list-item-leading-icon-color: rgba(0, 0, 0, 0.54);
  --mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.54);
  --mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, 0.54);
  --mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, 0.54);
  --mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, 0.87);
  --mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, 0.54);
  --mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-list-list-item-hover-state-layer-opacity: 0.04;
  --mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, 0.54);
  --mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-list-list-item-focus-state-layer-opacity: 0.12;
}
.mdc-list-item__start,
.mdc-list-item__end {
  --mat-radio-checked-ripple-color: #000099;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-radio-ripple-color: rgba(0, 0, 0, 0.87);
  --mat-radio-selected-focus-icon-color: #000099;
  --mat-radio-selected-hover-icon-color: #000099;
  --mat-radio-selected-icon-color: #000099;
  --mat-radio-selected-pressed-icon-color: #000099;
  --mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.87);
}
.mat-accent .mdc-list-item__start,
.mat-accent .mdc-list-item__end {
  --mat-radio-checked-ripple-color: #ff9900;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-radio-ripple-color: rgba(0, 0, 0, 0.87);
  --mat-radio-selected-focus-icon-color: #ff9900;
  --mat-radio-selected-hover-icon-color: #ff9900;
  --mat-radio-selected-icon-color: #ff9900;
  --mat-radio-selected-pressed-icon-color: #ff9900;
  --mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.87);
}
.mat-warn .mdc-list-item__start,
.mat-warn .mdc-list-item__end {
  --mat-radio-checked-ripple-color: #f44336;
  --mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-radio-ripple-color: rgba(0, 0, 0, 0.87);
  --mat-radio-selected-focus-icon-color: #f44336;
  --mat-radio-selected-hover-icon-color: #f44336;
  --mat-radio-selected-icon-color: #f44336;
  --mat-radio-selected-pressed-icon-color: #f44336;
  --mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-list-option {
  --mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #000099;
  --mat-checkbox-selected-hover-icon-color: #000099;
  --mat-checkbox-selected-icon-color: #000099;
  --mat-checkbox-selected-pressed-icon-color: #000099;
  --mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-checkbox-selected-focus-state-layer-color: #000099;
  --mat-checkbox-selected-hover-state-layer-color: #000099;
  --mat-checkbox-selected-pressed-state-layer-color: #000099;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-list-option.mat-accent {
  --mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #000000;
  --mat-checkbox-selected-focus-icon-color: #ff9900;
  --mat-checkbox-selected-hover-icon-color: #ff9900;
  --mat-checkbox-selected-icon-color: #ff9900;
  --mat-checkbox-selected-pressed-icon-color: #ff9900;
  --mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-checkbox-selected-focus-state-layer-color: #ff9900;
  --mat-checkbox-selected-hover-state-layer-color: #ff9900;
  --mat-checkbox-selected-pressed-state-layer-color: #ff9900;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-list-option.mat-warn {
  --mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: white;
  --mat-checkbox-selected-focus-icon-color: #f44336;
  --mat-checkbox-selected-hover-icon-color: #f44336;
  --mat-checkbox-selected-icon-color: #f44336;
  --mat-checkbox-selected-pressed-icon-color: #f44336;
  --mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-checkbox-selected-focus-state-layer-color: #f44336;
  --mat-checkbox-selected-hover-state-layer-color: #f44336;
  --mat-checkbox-selected-pressed-state-layer-color: #f44336;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #000099;
}
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
html {
  --mat-list-list-item-leading-icon-start-space: 16px;
  --mat-list-list-item-leading-icon-end-space: 32px;
  --mat-list-list-item-one-line-container-height: 48px;
  --mat-list-list-item-two-line-container-height: 64px;
  --mat-list-list-item-three-line-container-height: 88px;
}
.mdc-list-item__start,
.mdc-list-item__end {
  --mat-radio-state-layer-size: 40px;
  --mat-radio-touch-target-display: block;
}
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,
.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,
.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,
.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,
.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}
html {
  --mat-list-list-item-label-text-font: EnBW Sans Text;
  --mat-list-list-item-label-text-line-height: 24px;
  --mat-list-list-item-label-text-size: 16px;
  --mat-list-list-item-label-text-tracking: 0.03125em;
  --mat-list-list-item-label-text-weight: 400;
  --mat-list-list-item-supporting-text-font: EnBW Sans Text;
  --mat-list-list-item-supporting-text-line-height: 20px;
  --mat-list-list-item-supporting-text-size: 14px;
  --mat-list-list-item-supporting-text-tracking: 0.0178571429em;
  --mat-list-list-item-supporting-text-weight: 400;
  --mat-list-list-item-trailing-supporting-text-font: EnBW Sans Text;
  --mat-list-list-item-trailing-supporting-text-line-height: 20px;
  --mat-list-list-item-trailing-supporting-text-size: 12px;
  --mat-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
  --mat-list-list-item-trailing-supporting-text-weight: 400;
}
.mdc-list-group__subheader {
  font: 400 14px / 18px EnBW Sans Text;
  letter-spacing: normal;
}
html {
  --mat-paginator-page-size-select-width: 84px;
  --mat-paginator-page-size-select-touch-target-height: 48px;
}
html {
  --mat-paginator-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: rgba(0, 0, 0, 0.54);
  --mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
}
html {
  --mat-paginator-container-size: 56px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
}
html {
  --mat-paginator-container-text-font: EnBW Sans Text;
  --mat-paginator-container-text-line-height: 20px;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: 0.0333333333em;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}
html {
  --mat-tab-container-height: 48px;
  --mat-tab-divider-color: transparent;
  --mat-tab-divider-height: 0;
  --mat-tab-active-indicator-height: 2px;
  --mat-tab-active-indicator-shape: 0;
}
.mat-mdc-tab-group,
.mat-mdc-tab-nav-bar {
  --mat-tab-disabled-ripple-color: rgba(0, 0, 0, 0.54);
  --mat-tab-pagination-icon-color: rgba(0, 0, 0, 0.87);
  --mat-tab-inactive-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-tab-active-label-text-color: #000099;
  --mat-tab-active-ripple-color: #000099;
  --mat-tab-inactive-ripple-color: #000099;
  --mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-tab-active-focus-label-text-color: #000099;
  --mat-tab-active-hover-label-text-color: #000099;
  --mat-tab-active-focus-indicator-color: #000099;
  --mat-tab-active-hover-indicator-color: #000099;
  --mat-tab-active-indicator-color: #000099;
}
.mat-mdc-tab-group.mat-accent,
.mat-mdc-tab-nav-bar.mat-accent {
  --mat-tab-disabled-ripple-color: rgba(0, 0, 0, 0.54);
  --mat-tab-pagination-icon-color: rgba(0, 0, 0, 0.87);
  --mat-tab-inactive-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-tab-active-label-text-color: #ff9900;
  --mat-tab-active-ripple-color: #ff9900;
  --mat-tab-inactive-ripple-color: #ff9900;
  --mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-tab-active-focus-label-text-color: #ff9900;
  --mat-tab-active-hover-label-text-color: #ff9900;
  --mat-tab-active-focus-indicator-color: #ff9900;
  --mat-tab-active-hover-indicator-color: #ff9900;
  --mat-tab-active-indicator-color: #ff9900;
}
.mat-mdc-tab-group.mat-warn,
.mat-mdc-tab-nav-bar.mat-warn {
  --mat-tab-disabled-ripple-color: rgba(0, 0, 0, 0.54);
  --mat-tab-pagination-icon-color: rgba(0, 0, 0, 0.87);
  --mat-tab-inactive-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-tab-active-label-text-color: #f44336;
  --mat-tab-active-ripple-color: #f44336;
  --mat-tab-inactive-ripple-color: #f44336;
  --mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-tab-active-focus-label-text-color: #f44336;
  --mat-tab-active-hover-label-text-color: #f44336;
  --mat-tab-active-focus-indicator-color: #f44336;
  --mat-tab-active-hover-indicator-color: #f44336;
  --mat-tab-active-indicator-color: #f44336;
}
.mat-mdc-tab-group.mat-background-primary,
.mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-background-color: #000099;
  --mat-tab-foreground-color: #ffffff;
}
.mat-mdc-tab-group.mat-background-accent,
.mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-background-color: #ff9900;
  --mat-tab-foreground-color: #000000;
}
.mat-mdc-tab-group.mat-background-warn,
.mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-background-color: #f44336;
  --mat-tab-foreground-color: white;
}
.mat-mdc-tab-header {
  --mat-tab-container-height: 48px;
}
.mat-mdc-tab-header {
  --mat-tab-label-text-font: EnBW Sans Text;
  --mat-tab-label-text-size: 14px;
  --mat-tab-label-text-tracking: 0.0892857143em;
  --mat-tab-label-text-line-height: 36px;
  --mat-tab-label-text-weight: 500;
}
html {
  --mat-checkbox-disabled-selected-checkmark-color: white;
  --mat-checkbox-selected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mat-checkbox-selected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mat-checkbox-unselected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-touch-target-size: 48px;
}
html {
  --mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #000000;
  --mat-checkbox-selected-focus-icon-color: #ff9900;
  --mat-checkbox-selected-hover-icon-color: #ff9900;
  --mat-checkbox-selected-icon-color: #ff9900;
  --mat-checkbox-selected-pressed-icon-color: #ff9900;
  --mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-checkbox-selected-focus-state-layer-color: #ff9900;
  --mat-checkbox-selected-hover-state-layer-color: #ff9900;
  --mat-checkbox-selected-pressed-state-layer-color: #ff9900;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-checkbox.mat-primary {
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #000099;
  --mat-checkbox-selected-hover-icon-color: #000099;
  --mat-checkbox-selected-icon-color: #000099;
  --mat-checkbox-selected-pressed-icon-color: #000099;
  --mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-checkbox-selected-focus-state-layer-color: #000099;
  --mat-checkbox-selected-hover-state-layer-color: #000099;
  --mat-checkbox-selected-pressed-state-layer-color: #000099;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-checkbox.mat-warn {
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-checkbox-selected-checkmark-color: white;
  --mat-checkbox-selected-focus-icon-color: #f44336;
  --mat-checkbox-selected-hover-icon-color: #f44336;
  --mat-checkbox-selected-icon-color: #f44336;
  --mat-checkbox-selected-pressed-icon-color: #f44336;
  --mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-checkbox-selected-focus-state-layer-color: #f44336;
  --mat-checkbox-selected-hover-state-layer-color: #f44336;
  --mat-checkbox-selected-pressed-state-layer-color: #f44336;
  --mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, 0.87);
}
html {
  --mat-checkbox-touch-target-display: block;
  --mat-checkbox-state-layer-size: 40px;
}
html {
  --mat-checkbox-label-text-font: EnBW Sans Text;
  --mat-checkbox-label-text-line-height: 20px;
  --mat-checkbox-label-text-size: 14px;
  --mat-checkbox-label-text-tracking: 0.0178571429em;
  --mat-checkbox-label-text-weight: 400;
}
html {
  --mat-button-filled-container-shape: 4px;
  --mat-button-filled-horizontal-padding: 16px;
  --mat-button-filled-icon-offset: -4px;
  --mat-button-filled-icon-spacing: 8px;
  --mat-button-filled-touch-target-size: 48px;
  --mat-button-outlined-container-shape: 4px;
  --mat-button-outlined-horizontal-padding: 15px;
  --mat-button-outlined-icon-offset: -4px;
  --mat-button-outlined-icon-spacing: 8px;
  --mat-button-outlined-keep-touch-target: false;
  --mat-button-outlined-outline-width: 1px;
  --mat-button-outlined-touch-target-size: 48px;
  --mat-button-protected-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-container-shape: 4px;
  --mat-button-protected-disabled-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-focus-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-horizontal-padding: 16px;
  --mat-button-protected-hover-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-icon-offset: -4px;
  --mat-button-protected-icon-spacing: 8px;
  --mat-button-protected-pressed-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-button-protected-touch-target-size: 48px;
  --mat-button-text-container-shape: 4px;
  --mat-button-text-horizontal-padding: 8px;
  --mat-button-text-icon-offset: 0;
  --mat-button-text-icon-spacing: 8px;
  --mat-button-text-with-icon-horizontal-padding: 8px;
  --mat-button-text-touch-target-size: 48px;
  --mat-button-tonal-container-shape: 4px;
  --mat-button-tonal-horizontal-padding: 16px;
  --mat-button-tonal-icon-offset: -4px;
  --mat-button-tonal-icon-spacing: 8px;
  --mat-button-tonal-touch-target-size: 48px;
}
html {
  --mat-button-filled-container-color: white;
  --mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
  --mat-button-filled-focus-state-layer-opacity: 0.12;
  --mat-button-filled-hover-state-layer-opacity: 0.04;
  --mat-button-filled-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-button-filled-pressed-state-layer-opacity: 0.12;
  --mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-filled-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, 0.12);
  --mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
  --mat-button-outlined-focus-state-layer-opacity: 0.12;
  --mat-button-outlined-hover-state-layer-opacity: 0.04;
  --mat-button-outlined-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-button-outlined-outline-color: rgba(0, 0, 0, 0.12);
  --mat-button-outlined-pressed-state-layer-opacity: 0.12;
  --mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-outlined-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-button-protected-container-color: white;
  --mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
  --mat-button-protected-focus-state-layer-opacity: 0.12;
  --mat-button-protected-hover-state-layer-opacity: 0.04;
  --mat-button-protected-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-button-protected-pressed-state-layer-opacity: 0.12;
  --mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-protected-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
  --mat-button-text-focus-state-layer-opacity: 0.12;
  --mat-button-text-hover-state-layer-opacity: 0.04;
  --mat-button-text-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-button-text-pressed-state-layer-opacity: 0.12;
  --mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-text-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-button-tonal-container-color: white;
  --mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
  --mat-button-tonal-focus-state-layer-opacity: 0.12;
  --mat-button-tonal-hover-state-layer-opacity: 0.04;
  --mat-button-tonal-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-button-tonal-pressed-state-layer-opacity: 0.12;
  --mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-tonal-state-layer-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-button.mat-primary,
.mat-mdc-unelevated-button.mat-primary,
.mat-mdc-raised-button.mat-primary,
.mat-mdc-outlined-button.mat-primary,
.mat-tonal-button.mat-primary {
  --mat-button-filled-container-color: #000099;
  --mat-button-filled-label-text-color: #ffffff;
  --mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-filled-state-layer-color: #ffffff;
  --mat-button-outlined-label-text-color: #000099;
  --mat-button-outlined-outline-color: rgba(0, 0, 0, 0.12);
  --mat-button-outlined-ripple-color: color-mix(in srgb, #000099 12%, transparent);
  --mat-button-outlined-state-layer-color: #000099;
  --mat-button-protected-container-color: #000099;
  --mat-button-protected-label-text-color: #ffffff;
  --mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-protected-state-layer-color: #ffffff;
  --mat-button-text-label-text-color: #000099;
  --mat-button-text-ripple-color: color-mix(in srgb, #000099 12%, transparent);
  --mat-button-text-state-layer-color: #000099;
  --mat-button-tonal-container-color: #000099;
  --mat-button-tonal-label-text-color: #ffffff;
  --mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-tonal-state-layer-color: #ffffff;
}
.mat-mdc-button.mat-accent,
.mat-mdc-unelevated-button.mat-accent,
.mat-mdc-raised-button.mat-accent,
.mat-mdc-outlined-button.mat-accent,
.mat-tonal-button.mat-accent {
  --mat-button-filled-container-color: #ff9900;
  --mat-button-filled-label-text-color: #000000;
  --mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);
  --mat-button-filled-state-layer-color: #000000;
  --mat-button-outlined-label-text-color: #ff9900;
  --mat-button-outlined-outline-color: rgba(0, 0, 0, 0.12);
  --mat-button-outlined-ripple-color: color-mix(in srgb, #ff9900 12%, transparent);
  --mat-button-outlined-state-layer-color: #ff9900;
  --mat-button-protected-container-color: #ff9900;
  --mat-button-protected-label-text-color: #000000;
  --mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);
  --mat-button-protected-state-layer-color: #000000;
  --mat-button-text-label-text-color: #ff9900;
  --mat-button-text-ripple-color: color-mix(in srgb, #ff9900 12%, transparent);
  --mat-button-text-state-layer-color: #ff9900;
  --mat-button-tonal-container-color: #ff9900;
  --mat-button-tonal-label-text-color: #000000;
  --mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);
  --mat-button-tonal-state-layer-color: #000000;
}
.mat-mdc-button.mat-warn,
.mat-mdc-unelevated-button.mat-warn,
.mat-mdc-raised-button.mat-warn,
.mat-mdc-outlined-button.mat-warn,
.mat-tonal-button.mat-warn {
  --mat-button-filled-container-color: #f44336;
  --mat-button-filled-label-text-color: white;
  --mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);
  --mat-button-filled-state-layer-color: white;
  --mat-button-outlined-label-text-color: #f44336;
  --mat-button-outlined-outline-color: rgba(0, 0, 0, 0.12);
  --mat-button-outlined-ripple-color: color-mix(in srgb, #f44336 12%, transparent);
  --mat-button-outlined-state-layer-color: #f44336;
  --mat-button-protected-container-color: #f44336;
  --mat-button-protected-label-text-color: white;
  --mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);
  --mat-button-protected-state-layer-color: white;
  --mat-button-text-label-text-color: #f44336;
  --mat-button-text-ripple-color: color-mix(in srgb, #f44336 12%, transparent);
  --mat-button-text-state-layer-color: #f44336;
  --mat-button-tonal-container-color: #f44336;
  --mat-button-tonal-label-text-color: white;
  --mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);
  --mat-button-tonal-state-layer-color: white;
}
html {
  --mat-button-filled-container-height: 36px;
  --mat-button-filled-touch-target-display: block;
  --mat-button-outlined-container-height: 36px;
  --mat-button-outlined-touch-target-display: block;
  --mat-button-protected-container-height: 36px;
  --mat-button-protected-touch-target-display: block;
  --mat-button-text-container-height: 36px;
  --mat-button-text-touch-target-display: block;
  --mat-button-tonal-container-height: 36px;
  --mat-button-tonal-touch-target-display: block;
}
html {
  --mat-button-filled-label-text-font: EnBW Sans Text;
  --mat-button-filled-label-text-size: 14px;
  --mat-button-filled-label-text-tracking: 0.0892857143em;
  --mat-button-filled-label-text-transform: none;
  --mat-button-filled-label-text-weight: 500;
  --mat-button-outlined-label-text-font: EnBW Sans Text;
  --mat-button-outlined-label-text-size: 14px;
  --mat-button-outlined-label-text-tracking: 0.0892857143em;
  --mat-button-outlined-label-text-transform: none;
  --mat-button-outlined-label-text-weight: 500;
  --mat-button-protected-label-text-font: EnBW Sans Text;
  --mat-button-protected-label-text-size: 14px;
  --mat-button-protected-label-text-tracking: 0.0892857143em;
  --mat-button-protected-label-text-transform: none;
  --mat-button-protected-label-text-weight: 500;
  --mat-button-text-label-text-font: EnBW Sans Text;
  --mat-button-text-label-text-size: 14px;
  --mat-button-text-label-text-tracking: 0.0892857143em;
  --mat-button-text-label-text-transform: none;
  --mat-button-text-label-text-weight: 500;
  --mat-button-tonal-label-text-font: EnBW Sans Text;
  --mat-button-tonal-label-text-size: 14px;
  --mat-button-tonal-label-text-tracking: 0.0892857143em;
  --mat-button-tonal-label-text-transform: none;
  --mat-button-tonal-label-text-weight: 500;
}
html {
  --mat-icon-button-icon-size: 24px;
  --mat-icon-button-container-shape: 50%;
  --mat-icon-button-touch-target-size: 48px;
}
html {
  --mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-hover-state-layer-opacity: 0.04;
  --mat-icon-button-icon-color: inherit;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
  --mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-icon-button-state-layer-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-icon-button.mat-primary {
  --mat-icon-button-icon-color: #000099;
  --mat-icon-button-state-layer-color: #000099;
  --mat-icon-button-ripple-color: color-mix(in srgb, #000099 12%, transparent);
}
.mat-mdc-icon-button.mat-accent {
  --mat-icon-button-icon-color: #ff9900;
  --mat-icon-button-state-layer-color: #ff9900;
  --mat-icon-button-ripple-color: color-mix(in srgb, #ff9900 12%, transparent);
}
.mat-mdc-icon-button.mat-warn {
  --mat-icon-button-icon-color: #f44336;
  --mat-icon-button-state-layer-color: #f44336;
  --mat-icon-button-ripple-color: color-mix(in srgb, #f44336 12%, transparent);
}
html {
  --mat-icon-button-touch-target-display: block;
}
.mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 48px;
  --mat-icon-button-state-layer-size: 48px;
  width: var(--mat-icon-button-state-layer-size);
  height: var(--mat-icon-button-state-layer-size);
  padding: 12px;
}
html {
  --mat-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-container-shape: 50%;
  --mat-fab-touch-target-size: 48px;
  --mat-fab-extended-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-extended-container-height: 48px;
  --mat-fab-extended-container-shape: 24px;
  --mat-fab-extended-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-fab-extended-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-fab-extended-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-fab-small-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-small-container-shape: 50%;
  --mat-fab-small-touch-target-size: 48px;
  --mat-fab-small-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-fab-small-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-fab-small-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
html {
  --mat-fab-container-color: white;
  --mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-fab-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-fab-hover-state-layer-opacity: 0.04;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-fab-small-container-color: white;
  --mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, 0.54);
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-fab-small-hover-state-layer-opacity: 0.04;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-fab-small-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-fab-state-layer-color: rgba(0, 0, 0, 0.87);
}
.mat-mdc-fab.mat-primary,
.mat-mdc-mini-fab.mat-primary {
  --mat-fab-container-color: #000099;
  --mat-fab-foreground-color: #ffffff;
  --mat-fab-ripple-color: color-mix(in srgb, #000099 12%, transparent);
  --mat-fab-small-container-color: #000099;
  --mat-fab-small-foreground-color: #ffffff;
  --mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-fab-small-state-layer-color: #ffffff;
  --mat-fab-state-layer-color: #ffffff;
}
.mat-mdc-fab.mat-accent,
.mat-mdc-mini-fab.mat-accent {
  --mat-fab-container-color: #ff9900;
  --mat-fab-foreground-color: #000000;
  --mat-fab-ripple-color: color-mix(in srgb, #ff9900 12%, transparent);
  --mat-fab-small-container-color: #ff9900;
  --mat-fab-small-foreground-color: #000000;
  --mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);
  --mat-fab-small-state-layer-color: #000000;
  --mat-fab-state-layer-color: #000000;
}
.mat-mdc-fab.mat-warn,
.mat-mdc-mini-fab.mat-warn {
  --mat-fab-container-color: #f44336;
  --mat-fab-foreground-color: white;
  --mat-fab-ripple-color: color-mix(in srgb, #f44336 12%, transparent);
  --mat-fab-small-container-color: #f44336;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);
  --mat-fab-small-state-layer-color: white;
  --mat-fab-state-layer-color: white;
}
html {
  --mat-fab-small-touch-target-display: block;
  --mat-fab-touch-target-display: block;
}
html {
  --mat-fab-extended-label-text-font: EnBW Sans Text;
  --mat-fab-extended-label-text-size: 14px;
  --mat-fab-extended-label-text-tracking: 0.0892857143em;
  --mat-fab-extended-label-text-weight: 500;
}
html {
  --mat-snack-bar-container-shape: 4px;
}
html {
  --mat-snack-bar-container-color: #424242;
  --mat-snack-bar-supporting-text-color: white;
  --mat-snack-bar-button-color: #0278d4;
}
html {
  --mat-snack-bar-supporting-text-font: EnBW Sans Text;
  --mat-snack-bar-supporting-text-line-height: 20px;
  --mat-snack-bar-supporting-text-size: 14px;
  --mat-snack-bar-supporting-text-weight: 400;
}
html {
  --mat-table-row-item-outline-width: 1px;
}
html {
  --mat-table-background-color: white;
  --mat-table-header-headline-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.12);
}
html {
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
}
html {
  --mat-table-header-headline-font: EnBW Sans Text;
  --mat-table-header-headline-line-height: 22px;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: 0.0071428571em;
  --mat-table-row-item-label-text-font: EnBW Sans Text;
  --mat-table-row-item-label-text-line-height: 20px;
  --mat-table-row-item-label-text-size: 14px;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-row-item-label-text-tracking: 0.0178571429em;
  --mat-table-footer-supporting-text-font: EnBW Sans Text;
  --mat-table-footer-supporting-text-line-height: 20px;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.0178571429em;
}
html {
  --mat-progress-spinner-active-indicator-width: 4px;
  --mat-progress-spinner-size: 48px;
}
html {
  --mat-progress-spinner-active-indicator-color: #000099;
}
.mat-accent {
  --mat-progress-spinner-active-indicator-color: #ff9900;
}
.mat-warn {
  --mat-progress-spinner-active-indicator-color: #f44336;
}
html {
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
}
html {
  --mat-badge-background-color: #000099;
  --mat-badge-text-color: #ffffff;
  --mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
}
.mat-badge-accent {
  --mat-badge-background-color: #ff9900;
  --mat-badge-text-color: #000000;
}
.mat-badge-warn {
  --mat-badge-background-color: #f44336;
  --mat-badge-text-color: white;
}
html {
  --mat-badge-text-font: EnBW Sans Text;
  --mat-badge-line-height: 22px;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-small-size-line-height: 16px;
  --mat-badge-large-size-text-size: 24px;
  --mat-badge-large-size-line-height: 28px;
}
html {
  --mat-bottom-sheet-container-shape: 4px;
}
html {
  --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-bottom-sheet-container-background-color: white;
}
html {
  --mat-bottom-sheet-container-text-font: EnBW Sans Text;
  --mat-bottom-sheet-container-text-line-height: 20px;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: 0.0178571429em;
  --mat-bottom-sheet-container-text-weight: 400;
}
html {
  --mat-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-button-toggle-legacy-focus-state-layer-opacity: 1;
  --mat-button-toggle-legacy-height: 36px;
  --mat-button-toggle-legacy-shape: 2px;
  --mat-button-toggle-shape: 4px;
}
html {
  --mat-button-toggle-background-color: white;
  --mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-button-toggle-disabled-state-background-color: white;
  --mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-button-toggle-divider-color: rgba(0, 0, 0, 0.12);
  --mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-toggle-legacy-disabled-state-background-color: white;
  --mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-toggle-legacy-text-color: rgba(0, 0, 0, 0.87);
  --mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-button-toggle-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-button-toggle-text-color: rgba(0, 0, 0, 0.87);
}
html {
  --mat-button-toggle-height: 48px;
}
html {
  --mat-button-toggle-label-text-font: EnBW Sans Text;
  --mat-button-toggle-label-text-line-height: 24px;
  --mat-button-toggle-label-text-size: 16px;
  --mat-button-toggle-label-text-tracking: 0.03125em;
  --mat-button-toggle-label-text-weight: 400;
  --mat-button-toggle-legacy-label-text-font: EnBW Sans Text;
  --mat-button-toggle-legacy-label-text-line-height: 24px;
  --mat-button-toggle-legacy-label-text-size: 16px;
  --mat-button-toggle-legacy-label-text-tracking: 0.03125em;
  --mat-button-toggle-legacy-label-text-weight: 400;
}
html {
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
html {
  --mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #000099 20%, transparent);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #ff9900 20%, transparent);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-date-selected-state-background-color: #000099;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #000099 38%, transparent);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;
  --mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #000099 12%, transparent);
  --mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #000099 4%, transparent);
  --mat-datepicker-toggle-active-state-icon-color: #000099;
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
}
.mat-datepicker-content.mat-accent,
.mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #ff9900 20%, transparent);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #ff9900 20%, transparent);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
  --mat-datepicker-calendar-date-selected-state-text-color: #000000;
  --mat-datepicker-calendar-date-selected-state-background-color: #ff9900;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #ff9900 38%, transparent);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;
  --mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #ff9900 12%, transparent);
  --mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #ff9900 4%, transparent);
  --mat-datepicker-toggle-active-state-icon-color: #ff9900;
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
}
.mat-datepicker-content.mat-warn,
.mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #f44336 20%, transparent);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #ff9900 20%, transparent);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #f44336;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #f44336 38%, transparent);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #f44336 12%, transparent);
  --mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #f44336 4%, transparent);
  --mat-datepicker-toggle-active-state-icon-color: #f44336;
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
}
.mat-calendar-controls {
  --mat-icon-button-touch-target-display: none;
}
.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 40px;
  --mat-icon-button-state-layer-size: 40px;
  width: var(--mat-icon-button-state-layer-size);
  height: var(--mat-icon-button-state-layer-size);
  padding: 8px;
}
html {
  --mat-datepicker-calendar-text-font: EnBW Sans Text;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
}
html {
  --mat-divider-width: 1px;
}
html {
  --mat-divider-color: rgba(0, 0, 0, 0.12);
}
html {
  --mat-expansion-container-shape: 4px;
  --mat-expansion-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
}
html {
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.12);
  --mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 4%, transparent);
  --mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 38%, transparent);
  --mat-expansion-header-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);
}
html {
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
}
html {
  --mat-expansion-header-text-font: EnBW Sans Text;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: EnBW Sans Text;
  --mat-expansion-container-text-line-height: 20px;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: 0.0178571429em;
  --mat-expansion-container-text-weight: 400;
}
html {
  --mat-grid-list-tile-header-primary-text-size: 14px;
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: 14px;
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
}
html {
  --mat-icon-color: inherit;
}
.mat-icon.mat-primary {
  --mat-icon-color: #000099;
}
.mat-icon.mat-accent {
  --mat-icon-color: #ff9900;
}
.mat-icon.mat-warn {
  --mat-icon-color: #f44336;
}
html {
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
}
html {
  --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-content-background-color: #fafafa;
  --mat-sidenav-content-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);
}
html {
  --mat-stepper-header-focus-state-layer-shape: 0;
  --mat-stepper-header-hover-state-layer-shape: 0;
}
html {
  --mat-stepper-header-icon-foreground-color: #ffffff;
  --mat-stepper-header-selected-state-icon-background-color: #000099;
  --mat-stepper-header-selected-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-done-state-icon-background-color: #000099;
  --mat-stepper-header-done-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-edit-state-icon-background-color: #000099;
  --mat-stepper-header-edit-state-icon-foreground-color: #ffffff;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(0, 0, 0, 0.12);
  --mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 4%, transparent);
  --mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, 0.87) 12%, transparent);
  --mat-stepper-header-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-error-state-label-text-color: #f44336;
  --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-foreground-color: #f44336;
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
.mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: #000000;
  --mat-stepper-header-selected-state-icon-background-color: #ff9900;
  --mat-stepper-header-selected-state-icon-foreground-color: #000000;
  --mat-stepper-header-done-state-icon-background-color: #ff9900;
  --mat-stepper-header-done-state-icon-foreground-color: #000000;
  --mat-stepper-header-edit-state-icon-background-color: #ff9900;
  --mat-stepper-header-edit-state-icon-foreground-color: #000000;
}
.mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #f44336;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #f44336;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #f44336;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
html {
  --mat-stepper-header-height: 72px;
}
html {
  --mat-stepper-container-text-font: EnBW Sans Text;
  --mat-stepper-header-label-text-font: EnBW Sans Text;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 400;
  --mat-stepper-header-error-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
}
html {
  --mat-sort-arrow-color: rgba(0, 0, 0, 0.87);
}
html {
  --mat-toolbar-container-background-color: white;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}
.mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #000099;
  --mat-toolbar-container-text-color: #ffffff;
}
.mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #ff9900;
  --mat-toolbar-container-text-color: #000000;
}
.mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #f44336;
  --mat-toolbar-container-text-color: white;
}
html {
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
}
html {
  --mat-toolbar-title-text-font: EnBW Sans Text;
  --mat-toolbar-title-text-line-height: 32px;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: 0.0125em;
  --mat-toolbar-title-text-weight: 500;
}
html {
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: rgba(0, 0, 0, 0.87);
}
html {
  --mat-tree-node-min-height: 48px;
}
html {
  --mat-tree-node-text-font: EnBW Sans Text;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 400;
}
html {
  --mat-timepicker-container-shape: 4px;
  --mat-timepicker-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-timepicker-container-background-color: white;
}
button.bricks-button {
  --button-text-color: var(--color-background-body);
  --button-background: var(--color-primary-default);
  --button-background-hover: var(--color-primary-hover);
  --button-background-active: var(--color-primary-active);
  --button-glow: var(--color-marker-background);
  --button-border: none;
  --button-text-color-disabled: var(--color-inactive);
  --button-background-disabled: var(--color-dom-border);
  --button-radius: 30px;
  --button-height: 44px;
  --functional-button-radius: 8px;
  --functional-button-height: 40px;
  --functional-button-padding-rl: 15px;
  --functional-button-padding-tb: 10px;
  --functional-button-hover-color: #e4dad4;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: var(--button-radius);
  padding: 0px var(--spacing-l) 0 var(--spacing-l);
  max-height: var(--button-height);
  height: var(--button-height);
  font-family: var(--font-family);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-bold);
  border: none;
  color: var(--button-text-color);
  background: var(--button-background);
}
button.bricks-button.button-icon-left {
  padding-left: var(--spacing-s);
}
button.bricks-button.button-icon-left span {
  padding-bottom: 2px;
}
button.bricks-button.button-icon-right {
  padding-right: var(--spacing-s);
}
button.bricks-button.button-icon-right span {
  padding-bottom: 3px;
}
button.bricks-button bricks-icon {
  margin-top: -2px;
}
button.bricks-button.button-outline {
  color: var(--button-background);
  border: 1px solid currentColor;
  background: none;
}
button.bricks-button.button-fn,
button.bricks-button.button-fn-ghost,
button.bricks-button.button-fn-icon-only,
button.bricks-button.button-fn-no-background,
button.bricks-button.button-fn-secondary {
  border-radius: var(--functional-button-radius);
  height: var(--functional-button-height);
  padding: var(--functional-button-padding-tb) var(--functional-button-padding-rl) var(--functional-button-padding-tb) var(--functional-button-padding-rl);
  font-size: 16px;
}
button.bricks-button.button-fn bricks-icon,
button.bricks-button.button-fn-ghost bricks-icon,
button.bricks-button.button-fn-icon-only bricks-icon,
button.bricks-button.button-fn-no-background bricks-icon,
button.bricks-button.button-fn-secondary bricks-icon {
  margin-top: 0;
}
button.bricks-button.button-fn-secondary {
  color: var(--color-text-default);
  background-color: var(--color-marker-background);
}
button.bricks-button.button-fn-secondary:hover,
button.bricks-button.button-fn-secondary:focus {
  color: var(--color-text-default);
  background: var(--functional-button-hover-color);
}
button.bricks-button.button-fn-secondary:active {
  color: var(--button-text-color);
  background: var(--button-background-active);
}
button.bricks-button.button-fn-no-background {
  color: var(--color-text-default);
  background-color: transparent;
}
button.bricks-button.button-fn-no-background:hover,
button.bricks-button.button-fn-no-background:focus {
  color: var(--color-text-default);
  background: var(--functional-button-hover-color);
}
button.bricks-button.button-fn-no-background:active {
  color: var(--button-text-color);
  background: var(--button-background-active);
}
button.bricks-button.button-fn-icon-only {
  padding: 0;
  width: 40px;
  height: 40px;
  color: var(--color-text-default);
  background-color: var(--color-marker-background);
}
button.bricks-button.button-fn-icon-only:hover,
button.bricks-button.button-fn-icon-only:focus {
  color: var(--color-text-default);
  background: var(--functional-button-hover-color);
}
button.bricks-button.button-fn-icon-only:active {
  color: var(--button-text-color);
  background: var(--button-background-active);
}
button.bricks-button.button-fn-icon-only bricks-icon:first-child,
button.bricks-button.button-fn-icon-only bricks-icon:last-child {
  margin: 0;
}
button.bricks-button.button-hi-density {
  --button-radius: var(--border-radius-base);
  --button-height: 30px;
  padding: 2px var(--spacing-s) 0 var(--spacing-s);
  padding-bottom: 3px;
}
button.bricks-button.button-hi-density bricks-icon:first-child {
  margin-left: calc(var(--spacing-xxs) * -1);
  margin-right: var(--spacing-xxs);
}
button.bricks-button.button-hi-density bricks-icon {
  margin-top: 0px;
}
button.bricks-button.button-hi-density.button-hi-density-icon {
  padding-bottom: 2px;
}
button.bricks-button.button-glow {
  box-shadow: 0 0 0 4px var(--button-glow);
}
button.bricks-button.button-icon-only {
  padding: 0;
  width: 44px;
}
button.bricks-button.button-icon-only bricks-icon:first-child,
button.bricks-button.button-icon-only bricks-icon:last-child {
  margin: 0;
}
button.bricks-button:hover,
button.bricks-button:focus {
  cursor: pointer;
  outline: 0;
  color: var(--button-text-color);
  background: var(--button-background-hover);
}
button.bricks-button:active {
  color: var(--button-text-color);
  background: var(--button-background-active);
}
button.bricks-button:disabled,
button.bricks-button:disabled:hover,
button.bricks-button:disabled:focus {
  background: var(--button-background-disabled);
  color: var(--button-text-color-disabled);
  box-shadow: none;
  cursor: not-allowed !important;
}
button.bricks-button:disabled.button-outline,
button.bricks-button:disabled:hover.button-outline,
button.bricks-button:disabled:focus.button-outline {
  background-color: transparent;
}
button.bricks-button:disabled.button-icon-left span,
button.bricks-button:disabled:hover.button-icon-left span,
button.bricks-button:disabled:focus.button-icon-left span {
  padding-top: 2px;
}
button.bricks-button.destructive {
  --button-text-color: var(--color-background-body);
  color: var(--button-text-color);
  background-color: var(--color-error);
}
button.bricks-button.destructive:hover,
button.bricks-button.destructive:focus {
  background-color: var(--color-destructive-hover);
}
button.bricks-button.destructive:active {
  background-color: var(--color-destructive-active);
}
button.bricks-button.destructive.button-outline {
  color: var(--color-error);
  background-color: transparent;
  border: 1px solid currentColor;
}
button.bricks-button.destructive.button-outline:hover,
button.bricks-button.destructive.button-outline:focus {
  color: var(--button-text-color);
  background-color: var(--color-destructive-hover);
}
button.bricks-button.destructive.button-outline:active {
  background-color: var(--color-destructive-active);
}
button.bricks-button.destructive.button-fn-no-background {
  color: var(--color-error);
  background-color: transparent;
  border: none;
}
button.bricks-button.destructive.button-fn-no-background:hover,
button.bricks-button.destructive.button-fn-no-background:focus {
  color: var(--button-text-color);
  background-color: var(--color-destructive-hover);
}
button.bricks-button.destructive.button-fn-no-background:active {
  background-color: var(--color-destructive-active);
}
button.bricks-button.button-fn-ghost {
  border-radius: var(--border-radius-medium);
  border: 1px dashed var(--color-dom-warm-grey-30);
  color: var(--color-text-default);
  background-color: transparent;
}
button.bricks-button.button-fn-ghost:hover,
button.bricks-button.button-fn-ghost:focus {
  color: var(--color-text-default);
  background: var(--functional-button-hover-color);
}
button.bricks-button.button-fn-ghost:active {
  color: var(--button-text-color);
  background: var(--button-background-active);
}
button.bricks-button.button-extra-hi-density {
  --button-radius: var(--border-radius-base);
  --button-height: 24px;
  font-size: 12px !important;
  font-weight: var(--font-weight-medium);
  padding: 8px 8px 8px;
}
button.bricks-button.button-extra-hi-density bricks-icon:first-child {
  margin-left: calc(var(--spacing-xxs) * -1);
  margin-right: 3px;
}
button.bricks-button.button-extra-hi-density bricks-icon {
  margin-top: 0px;
}
button.bricks-button.button-accent,
button.bricks-button.button-important {
  --button-background: var(--color-accent-default);
  --button-background-hover: var(--color-accent-hover);
  --button-background-active: var(--color-accent-active);
  --button-glow: var(--color-marker-background-alt);
}
button.bricks-button bricks-icon:first-child {
  margin-right: var(--spacing-xs);
}
button.bricks-button bricks-icon:last-child {
  margin-left: var(--spacing-xs);
}
.mat-button-toggle-standalone,
.mat-button-toggle-group {
  height: 40px;
  align-items: center;
  display: flex;
}
mat-button-toggle-group {
  border: none !important;
}
mat-button-toggle {
  display: inline-flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  cursor: pointer !important;
}
.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),
.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]) {
  border-radius: var(--border-radius-medium);
}
.mat-button-toggle-label-content {
  --font-size: 16px;
  --line-height: 16px;
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height) !important;
  top: 1.5px;
}
mat-button-toggle.split-button {
  color: var(--color-background-container);
  background-color: var(--color-primary-default);
  border-radius: 8px 0px 0px 8px;
}
mat-button-toggle.split-button:hover,
mat-button-toggle.split-button:focus-within {
  background-color: var(--color-primary-hover) !important;
  transition: none !important;
}
mat-button-toggle.split-button:active {
  background-color: var(--color-primary-active) !important;
  color: var(--color-background-container) !important;
}
mat-button-toggle.split-button .mat-pseudo-checkbox {
  width: 0px !important;
  height: 40px !important;
}
mat-button-toggle.split-button .mat-pseudo-checkbox-checked::after {
  opacity: 0 !important;
}
mat-button-toggle.split-button .mat-button-toggle-checked .mat-button-toggle-checkbox-wrapper {
  width: 0 !important;
}
mat-button-toggle.mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper) {
  padding-left: 0 !important;
}
mat-button-toggle.drop-down-button {
  height: 40px !important;
  width: 39px;
  padding: 0px;
  border-left: 1px solid var(--color-background-container) !important;
  border-radius: 0px 8px 8px 0px;
  color: var(--color-background-container);
  cursor: pointer !important;
}
mat-button-toggle.drop-down-button:hover {
  background-color: var(--color-primary-hover) !important;
  transition: none !important;
}
mat-button-toggle.drop-down-button:active {
  background-color: var(--color-primary-active) !important;
}
mat-button-toggle.split-button.secondary {
  --button-hover: #e4dad4;
  background-color: var(--color-dom-warm-grey-00);
  color: var(--color-text-default) !important;
  border-radius: 8px 0px 0px 8px;
}
mat-button-toggle.split-button.secondary:hover,
mat-button-toggle.split-button.secondary:focus-within {
  background-color: var(--button-hover) !important;
  transition: none !important;
}
mat-button-toggle.split-button.secondary:active {
  color: var(--color-background-container) !important;
  background-color: var(--color-primary-active) !important;
}
mat-button-toggle.drop-down-button.secondary {
  --button-hover: #e4dad4;
  border-left: 1px solid var(--color-text-default) !important;
  background-color: var(--color-dom-warm-grey-00) !important;
  border-radius: 0px 8px 8px 0px;
  cursor: pointer !important;
}
mat-button-toggle.drop-down-button.secondary:hover,
mat-button-toggle.drop-down-button.secondary:focus-within {
  background-color: var(--button-hover) !important;
  transition: none !important;
}
mat-button-toggle.drop-down-button.secondary:active {
  background-color: var(--color-primary-active) !important;
}
mat-button-toggle.drop-down-button.secondary:active bricks-icon {
  color: var(--color-background-container) !important;
}
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  padding: 0px 0px 7px 0px !important;
}
.mat-button-toggle-appearance-standard.mat-button-toggle-checked {
  background-color: var(--color-primary-default) !important;
  color: var(--color-background-container) !important;
}
.mat-button-toggle-appearance-standard.mat-button-toggle-checked.secondary {
  background-color: var(--color-dom-warm-grey-00) !important;
  color: var(--color-text-default) !important;
}
.mat-button-toggle .mat-pseudo-checkbox {
  margin-right: 0 !important;
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item {
  background-color: var(--color-background-container) !important;
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item:hover {
  background-color: var(--color-marker-background) !important;
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item:disabled:hover {
  background-color: transparent !important;
  cursor: not-allowed;
}
.mat-mdc-menu-panel .mat-mdc-menu-content .mat-mdc-menu-item.secondary:hover {
  background-color: var(--color-marker-background) !important;
}
.css-1hu9ezl :where(span:not(.sb-anchor, .sb-unstyled, .sb-unstyled span)) {
  font-size: revert !important;
}
.bricks-input[type=radio] {
  display: none;
}
.bricks-input[type=radio] + label {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-m);
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transform: translateY(2px);
  margin-right: var(--spacing-m);
}
.bricks-input[type=radio] + label.read-only {
  pointer-events: none;
}
.bricks-input[type=radio] + label.extra-density {
  font-size: 12px;
}
.bricks-input[type=radio] + label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  background: var(--color-background-container);
  border: 1px solid var(--color-dom-warm-grey-30);
  margin-right: var(--spacing-xs);
}
.bricks-input[type=radio] + label.density::before,
.bricks-input[type=radio] + label.extra-density::before {
  width: 18px;
  height: 18px;
  border-radius: 18px;
}
.bricks-input[type=radio] + label.white-style::before {
  background: var(--color-background-container);
}
.bricks-input[type=radio]:not([disabled]) + label:hover::before {
  background-color: var(--color-dom-warm-grey-05) !important;
  border-color: var(--color-dom-border-hover) !important;
}
.bricks-input[type=radio]:disabled + label {
  cursor: initial;
  color: var(--color-dom-warm-grey-50);
}
.bricks-input[type=radio]:disabled + label::before {
  background-color: var(--color-background-body);
  border-color: var(--color-background-body);
}
.bricks-input[type=radio] + label.read-only::before {
  background-color: var(--color-background-body);
  border-color: var(--color-background-body);
}
.bricks-input[type=radio]:checked + label::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  border: 1px solid var(--color-primary-default);
  background: var(--color-primary-default);
  margin-right: var(--spacing-xs);
}
.bricks-input[type=radio]:checked + label.read-only::before {
  border: 1px solid var(--color-background-body);
  background: var(--color-background-body);
}
.bricks-input[type=radio]:checked + label.density::before,
.bricks-input[type=radio]:checked + label.extra-density::before {
  width: 18px;
  height: 18px;
  border-radius: 18px;
}
.bricks-input[type=radio]:checked:not([disabled]) + label:hover::before {
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
}
.bricks-input[type=radio]:checked:disabled + label::before {
  background-color: var(--color-background-body);
  border-color: var(--color-background-body);
}
.bricks-input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  display: inline-block;
  left: 7px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background: var(--color-background-container);
  margin-right: var(--spacing-xs);
}
.bricks-input[type=radio]:checked + label::after:disabled {
  background: var(--color-dom-warm-grey-50);
}
.bricks-input[type=radio]:checked + label.read-only::after {
  background: var(--color-text-default);
}
.bricks-input[type=radio]:checked + label.read-only::after:disabled {
  background: var(--color-dom-warm-grey-50);
}
.bricks-input[type=radio]:checked + label.density::after,
.bricks-input[type=radio]:checked + label.extra-density::after {
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 12px;
}
.bricks-input[type=radio]:checked:disabled + label {
  color: var(--color-dom-warm-grey-50);
}
.bricks-input[type=radio]:checked:disabled + label::after {
  background: var(--color-dom-warm-grey-50);
}
.bricks-input[type=checkbox] {
  display: none;
}
.bricks-input[type=checkbox] + label {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-m);
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transform: translateY(2px);
}
.bricks-input[type=checkbox] + label .required-field {
  font-weight: var(--font-weight-bold);
  color: var(--color-accent-default);
}
.bricks-input[type=checkbox] + label::before,
.bricks-input[type=checkbox] + label .checkbox-box {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--color-background-container);
  border: 1px solid var(--color-dom-warm-grey-30);
  border-radius: 6px;
  margin-right: var(--spacing-xs);
  transform: translateY(-2px);
}
.bricks-input[type=checkbox] + label .checkbox-tick {
  display: none;
  color: var(--color-background-container);
  transform: translate(1px, 2px);
}
.bricks-input[type=checkbox] + label.read-only {
  pointer-events: none;
}
.bricks-input[type=checkbox] + label.read-only::before,
.bricks-input[type=checkbox] + label.read-only .checkbox-box {
  pointer-events: none;
  background: var(--color-text-default);
  border: 1px solid var(--color-dom-warm-grey-30);
}
.bricks-input[type=checkbox] + label.read-only .checkbox-tick {
  display: none;
  pointer-events: none;
  color: var(--color-text-default);
}
.bricks-input[type=checkbox] + label.density::before,
.bricks-input[type=checkbox] + label.density .checkbox-box,
.bricks-input[type=checkbox] + label.extra-density::before,
.bricks-input[type=checkbox] + label.extra-density .checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.bricks-input[type=checkbox] + label.density .checkbox-tick,
.bricks-input[type=checkbox] + label.extra-density .checkbox-tick {
  transform: translateX(2px);
}
.bricks-input[type=checkbox] + label.density .checkbox-tick svg,
.bricks-input[type=checkbox] + label.extra-density .checkbox-tick svg {
  width: 16px !important;
  height: 16px !important;
}
.bricks-input[type=checkbox] + label.white-style::before,
.bricks-input[type=checkbox] + label.white-style .checkbox-box {
  background: var(--color-background-container);
}
.bricks-input[type=checkbox]:not([disabled]) + label:hover::before,
.bricks-input[type=checkbox]:not([disabled]) + label:hover .checkbox-box {
  background-color: var(--color-dom-warm-grey-05) !important;
  border-color: var(--color-dom-border-hover) !important;
}
.bricks-input[type=checkbox]:not([disabled]) + label.read-only:hover::before,
.bricks-input[type=checkbox]:not([disabled]) + label.read-only:hover .checkbox-box {
  background-color: var(--color-background-body) !important;
  border-color: var(--color-background-body) !important;
}
.bricks-input[type=checkbox]:not([disabled]) + label:focus::before,
.bricks-input[type=checkbox]:not([disabled]) + label:focus .checkbox-box {
  border: 1px solid var(--color-primary-hover) !important;
}
.bricks-input[type=checkbox] + label.extra-density {
  font-size: 12px;
}
.bricks-input[type=checkbox]:disabled + label {
  cursor: initial;
  color: var(--color-dom-warm-grey-50);
}
.bricks-input[type=checkbox]:disabled + label::before,
.bricks-input[type=checkbox]:disabled + label .checkbox-box {
  background-color: var(--color-background-body);
  border-color: var(--color-background-body);
}
.bricks-input[type=checkbox]:checked + label::before,
.bricks-input[type=checkbox]:checked + label .checkbox-box {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-primary-default);
  background: var(--color-primary-default);
  margin-right: var(--spacing-xs);
}
.bricks-input[type=checkbox]:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.4144 7.50015L19.7073 8.20726L9.20726 18.7073C8.81673 19.0978 8.18357 19.0978 7.79304 18.7073L4.29304 15.2073L3.58594 14.5002L5.00015 13.0859L5.70726 13.793L8.50015 16.5859L18.293 6.79304L19.0002 6.08594L20.4144 7.50015Z' fill='%23FFFFFF'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position-x: 2px;
  background-position-y: 1px;
}
.bricks-input[type=checkbox]:checked + label .checkbox-tick {
  position: absolute;
  display: inline-block;
  bottom: 7px;
  left: 2px;
  width: 24px;
  height: 24px;
  margin-right: var(--spacing-xs);
}
.bricks-input[type=checkbox]:checked + label.density::before,
.bricks-input[type=checkbox]:checked + label.density .checkbox-box,
.bricks-input[type=checkbox]:checked + label.extra-density::before,
.bricks-input[type=checkbox]:checked + label.extra-density .checkbox-box {
  content: "";
  width: 18px;
  height: 18px;
}
.bricks-input[type=checkbox]:checked + label.density .checkbox-tick,
.bricks-input[type=checkbox]:checked + label.extra-density .checkbox-tick {
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}
.bricks-input[type=checkbox]:checked:not([disabled]) + label:hover::before,
.bricks-input[type=checkbox]:checked:not([disabled]) + label:hover .checkbox-box {
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
}
.bricks-input[type=checkbox]:checked:not([disabled]) + label.read-only:hover::before,
.bricks-input[type=checkbox]:checked:not([disabled]) + label.read-only:hover .checkbox-box {
  pointer-events: none;
  background-color: var(--color-background-body) !important;
  border-color: var(--color-background-body) !important;
}
.bricks-input[type=checkbox].indeterminate + label::before,
.bricks-input[type=checkbox].indeterminate + label .checkbox-box {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: var(--spacing-xs);
  border: 1px solid var(--color-primary-default);
  background: var(--color-primary-default);
}
.bricks-input[type=checkbox].indeterminate + label .checkbox-indeterminate {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 3px;
  width: 24px;
  height: 24px;
  margin-right: var(--spacing-xs);
  color: var(--color-background-body);
}
.bricks-input[type=checkbox].indeterminate + label.density .checkbox-indeterminate,
.bricks-input[type=checkbox].indeterminate + label.extra-density .checkbox-indeterminate {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 2px;
  width: 18px;
  height: 18px;
}
.bricks-input[type=checkbox].indeterminate + label.density svg,
.bricks-input[type=checkbox].indeterminate + label.extra-density svg {
  width: 16px !important;
  height: 16px !important;
}
.bricks-input[type=checkbox].indeterminate + label.density::before,
.bricks-input[type=checkbox].indeterminate + label.density .checkbox-box,
.bricks-input[type=checkbox].indeterminate + label.extra-density::before,
.bricks-input[type=checkbox].indeterminate + label.extra-density .checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}
.bricks-input[type=checkbox].read-only + label::before,
.bricks-input[type=checkbox].read-only + label .checkbox-box {
  border: 1px solid var(--color-background-body);
  background: var(--color-background-body);
}
.bricks-input[type=checkbox]:checked:disabled + label::before {
  background: var(--color-background-body) url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M20.4144 7.50015L19.7073 8.20726L9.20726 18.7073C8.81673 19.0978 8.18357 19.0978 7.79304 18.7073L4.29304 15.2073L3.58594 14.5002L5.00015 13.0859L5.70726 13.793L8.50015 16.5859L18.293 6.79304L19.0002 6.08594L20.4144 7.50015Z' fill='%23B0A9A3'/%3E%3C/svg%3E%0A") no-repeat;
  background-position-x: 3px;
  border-color: var(--color-background-body);
  color: var(--color-dom-warm-grey-50);
}
.bricks-input[type=checkbox]:checked:disabled + label::before,
.bricks-input[type=checkbox]:checked:disabled + label .checkbox-box {
  border-color: var(--color-background-body);
  background-color: var(--color-background-body);
}
.bricks-input[type=checkbox]:checked:disabled + label .checkbox-tick {
  color: var(--color-dom-warm-grey-50);
}
.bricks-input[type=checkbox].indeterminate:not([disabled]) + label:hover::before,
.bricks-input[type=checkbox].indeterminate:not([disabled]) + label:hover .checkbox-box {
  background-color: var(--color-primary-hover) !important;
  border-color: var(--color-primary-hover) !important;
}
.bricks-input[type=checkbox].indeterminate:not([disabled]) + label.read-only:hover::before,
.bricks-input[type=checkbox].indeterminate:not([disabled]) + label.read-only:hover .checkbox-box {
  pointer-events: none;
  background-color: var(--color-background-body) !important;
  border-color: var(--color-background-body) !important;
}
.bricks-input[type=checkbox]:disabled.indeterminate + label::before,
.bricks-input[type=checkbox]:disabled.indeterminate + label .checkbox-box {
  background-color: var(--color-background-body);
  border-color: var(--color-background-body);
}
.bricks-input[type=checkbox]:disabled.indeterminate + label .checkbox-indeterminate {
  color: var(--color-dom-warm-grey-50);
}
.bricks-label .small-icon {
  width: 14px !important;
  height: 14px !important;
}
.bricks-label.confirm bricks-icon {
  color: #33b413;
}
.bricks-label.warning bricks-icon {
  color: #ffbb00;
}
.bricks-label.error bricks-icon {
  color: #e20e00;
}
.mat-mdc-autocomplete-panel .mat-mdc-option.selected-option {
  background-color: var(--color-background-secondary) !important;
}
.mat-mdc-chip.mat-mdc-standard-chip {
  --mat-chip-container-height: 28px !important;
}
mat-chip-grid bricks-icon {
  transform: translateY(0px) !important;
}
.multi-select-autocomplete {
  width: 100%;
}
.multi-select-autocomplete .mdc-text-field,
.multi-select-autocomplete .mat-mdc-form-field-flex {
  height: auto !important;
}
.multi-select-autocomplete .mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) {
  background-color: var(--color-primary-default);
  border-radius: var(--border-radius-medium);
  font-size: var(--font-size-s);
}
.multi-select-autocomplete .mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled):hover {
  background-color: var(--color-primary-hover);
}
.multi-select-autocomplete .mat-mdc-standard-chip .mdc-evolution-chip__text-label {
  line-height: 16px !important;
  transform: translateY(1px);
  color: var(--color-background-container) !important;
}
.multi-select-autocomplete .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary {
  padding-left: 8px !important;
}
.multi-select-autocomplete .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary:hover {
  cursor: default !important;
}
.multi-select-autocomplete bricks-icon .icon {
  height: 18px !important;
}
.multi-select-autocomplete bricks-icon:hover {
  cursor: pointer;
}
.multi-select-autocomplete input.mat-mdc-chip-input {
  margin-left: 0 !important;
}
.multi-select-autocomplete .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.multi-select-autocomplete .mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--trailing {
  color: var(--color-background-container);
}
.multi-select-autocomplete.input-hi-density .mat-mdc-chip-set .mdc-evolution-chip,
.multi-select-autocomplete.input-extra-hi-density .mat-mdc-chip-set .mdc-evolution-chip {
  margin-top: 0 !important;
  transform: translateY(-2px) !important;
}
.multi-select-autocomplete.input-hi-density .mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled),
.multi-select-autocomplete.input-extra-hi-density .mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) {
  height: 22px;
}
.multi-select-autocomplete.input-hi-density bricks-icon .icon,
.multi-select-autocomplete.input-extra-hi-density bricks-icon .icon {
  height: 18px !important;
}
.multi-select-autocomplete.input-hi-density .mat-mdc-standard-chip .mdc-evolution-chip__text-label,
.multi-select-autocomplete.input-extra-hi-density .mat-mdc-standard-chip .mdc-evolution-chip__text-label {
  line-height: 14px !important;
  transform: translateY(0);
}
.multi-select-autocomplete.input-extra-hi-density .mdc-text-field input {
  transform: translateY(0) !important;
}
.top-nav-menu-item {
  font-family: var(--font-family-headlines), serif;
  font-size: 15px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  gap: 8px;
}
.top-nav-menu-item:hover {
  cursor: pointer;
  background-color: var(--color-marker-background);
}
.top-nav-menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: transparent;
}
.top-nav-menu-active .top-nav-menu-item::after {
  background-color: var(--color-primary-hover);
}
.bricks-notification-overlay--transparent {
  opacity: 0;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
