#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

body {
  font-family: "TNG Pro";
}

body:has(.popup-backdrop) {
    overflow-y: hidden;
}

a {
  text-decoration: none;
}

.home {
  display: flex;
  padding-bottom: var(--Spacing-40, 40px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--Spacing-32, 32px);
}

.headline {
  display: flex;
  /*padding-bottom: var(--Spacing-64, 64px);*/
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-s, 16px);
}

.headline > h1 {
  align-self: stretch;
  color: var(--Color-Primary-Dark-Blue, #00003C);
  font-feature-settings: 'liga' off, 'clig' off;
  /* Headline M/Desktop [1440] */
  font-family: "TNG Pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 38.4px */
}

.headline > h2 {
  color: var(--Color-Primary-Dark-Blue, #00003C);
  /* Copy/400/Desktop */
  font-family: "TNG Pro";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}

.home-layout .home-region {
  display: flex;
  padding-bottom: var(--Spacing-40, 40px);
  flex-direction: column;
  align-items: flex-start;
  gap: var(--Spacing-32, 32px);
}

.home-region .home-counter {
  display: flex;
  align-items: flex-start;
  gap: var(--Spacing-24, 24px);
  align-self: stretch;
}

.home-region > h3 {
  align-self: stretch;
  color: var(--Color-Primary-Dark-Blue, #00003C);
  font-feature-settings: 'liga' off, 'clig' off;
  /* Headline S/Desktop [1440] */
  font-family: "TNG Pro";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 32.5px */
}


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.nav-item-layout {
    color: var(--Color-Primary-Dark-Blue);
    display: flex;
    padding: var(--Spacing-16, 16px);
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.nav-item-active {
    color: var(--Color-Primary-Electric-Blue, #001ED2);
}

.tn-input {
    border: 1px solid rgba(214, 220, 226, 1);
    border-radius: 4px;
    padding: 12px;
    background: var(--Primary-Weiss, #ffffff);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 60, 0.07);
}

.group {
}

.group-header {
    font-size: 18px;
    padding: 15px 5px 10px 5px;
    color: rgba(0, 0, 60, 1);
    font-weight: 600;
    border-bottom: 1px solid rgba(196, 202, 208, 1);
}

.group-body {
    padding: 16px 5px 5px 5px;
    margin-bottom: 5px;
}

.datagrid {
    display: grid;
    grid-template-columns: 30% 30% auto;
    gap: 16px;
}

.datagrid div {
    font-size: 16px;
}

.datagrid div::first-line {
    font-size: 13px;
    color: rgba(84, 84, 109, 1);
    line-height: 24px;
    font-weight: 700;
}
