
:root {
  --container-max-width: 1400px;
  --primary-color: #008e5c;
  --primary-color-light: #f2f5f5;
  --primary-gray: #6f6f6e;
  --primary-gray-light: #f1f1f1;
  --text-color: #475256;
  --header-height: 5.75rem;
  --header-border-color: #ccc;
  --gutter: 2.5rem;
  --pane-bg: transparent;
}

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

html {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

body {
  margin: 0;
  padding: 0;

  color: var(--text-color);
  font-size: 1.125rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
  font-family: "Roboto Condensed", sans-serif;
}

h1 {
  margin-bottom: 5rem;
  font-size: 3rem;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

p {
  margin: 0;
}

img {
  display: block;
}

a[name] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

main {
  padding: 0rem 0;
}

body[data-page="home"] main {
  padding-top: 0;
}

input[type="checkbox"],
input[type="radio"] {
  margin: 0;
}

.nowrap {
  white-space: nowrap;
}

.select {
  position: relative;
}

.select::after {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-25%);
  border: 0.375rem solid transparent;
  border-top-color: currentColor;
  width: 0;
  height: 0;
  pointer-events: none;
  content: "";
}

select {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.0625);
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  padding: 0.25rem 0.5rem;
  width: 100%;
  color: inherit;
  font-size: 1rem;
  line-height: inherit;
  font-family: inherit;
}

@media (max-width: 992px) {
  body {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  h3 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 4rem;
    --gutter: 1.25rem;
  }

  h1 {
    margin-bottom: 3rem;
  }

  main {
    padding: 3rem 0 6rem;
  }
}

@media (max-width: 360px) {
  :root {
    --gutter: 1rem;
  }
}


.sas_components-SegmentedButton-SegmentedButton_button {
  padding: 0 !important;
  --button-spacing-pd: 0 !important;
  --button-spacing-pd-inline: 0 !important;
}

/********** TABELLEN DOWNLOAD UNTEN **********/

.data-download {
      margin-top: 3rem;
margin-left: 10rem;
      padding-top: 1rem;
      border-top: 1px solid #ccc;
    }

    .data-download h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .data-download ul {
      list-style: none;
      padding: 0;
    }

    .data-download li {
      margin-bottom: 0.5rem;
    }

    .data-download a {
      color: var(--primary-color);
      text-decoration: underline dotted;
      font-weight: 500;
    }



/********** LABEL **********/

.label {
  --line-height: 1.5;
  --font-size: 1.125rem;
  display: flex;
  font-size: var(--font-size);
  line-height: var(--line-height);
}

.label--horizontal {
  align-items: flex-start;
  gap: 0.5rem;
}

.label--horizontal > :first-child {
  height: calc(var(--line-height) * var(--font-size));
}

.label--vertical {
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}

.label__group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label__color {
  display: inline-block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.label__text {
  position: relative;
}

.label__text[data-tooltip] {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.label__text[data-tooltip]::before {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 1rem);
  z-index: 100;
  background: var(--primary-color);
  padding: 0.5rem;
  width: 16rem;
  pointer-events: none;
  content: attr(data-tooltip);
  color: #fff;
  line-height: 1.2;
}

.label__text[data-tooltip]::after {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 100;
  border: 0.5rem solid transparent;
  border-bottom-color: var(--primary-color);
  width: 0;
  height: 0;
  content: "";
}

.label:hover .label__text[data-tooltip]::before,
.label:hover .label__text[data-tooltip]::after {
  display: block;
}

.label__text--mobile {
  display: none;
}

@media (max-width: 992px) {
  .label {
    --font-size: 1rem;
  }

  .label__text[data-tooltip] {
    display: none;
  }

  .label__text--mobile {
    display: block;
  }
}

/********** LAYOUT **********/

[class*="container"] {
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  max-width: var(--container-max-width);
}

.container--small {
  --container-max-width: 68rem;
}

/********** HEADER **********/

.header--page {
  display: flex;
  position: sticky;
  top: 0;
  flex-direction: column;
  justify-content: center;
  z-index: 100;
  border-bottom: 1px solid var(--header-border-color);
  background: #fff;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
  line-height: 1;
  text-decoration: none;
}

.logo img {
  width: 3rem;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  color: inherit;
  font-weight: 300;
  font-size: 1.5rem;
  font-family: "Roboto Condensed", sans-serif;
}

.logo__text--sub {
  color: var(--primary-gray);
  font-style: italic;
  font-size: 0.875rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.nav__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  height: 2.5rem;
  list-style: none;
}

.nav__logos-item {
  height: 100%;
}

.nav__logos-item img {
  height: 100%;
}

.nav__burger {
  --stroke-width: 0.25rem;
  display: none;
  position: relative;
  align-items: center;
  cursor: pointer;
  border-top: var(--stroke-width) solid currentColor;
  border-bottom: var(--stroke-width) solid currentColor;
  width: 1.75rem;
  height: 1.5rem;
}

.nav__burger::before {
  border-top: var(--stroke-width) solid currentColor;
  width: 100%;
  content: "";
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__links ul {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.nav__links li {
  display: flex;
  align-items: center;
}

.nav__links a {
  color: inherit;
  font-weight: 700;
  line-height: 1;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.0625rem;
  text-decoration-line: none;
  text-decoration-thickness: 0.1875rem;
  text-underline-offset: 0.375rem;
  text-transform: uppercase;
}

.nav__links a:hover {
  text-decoration-line: underline;
}

ul.nav__lang {
  gap: 0.25rem;
  background: var(--primary-color);
  padding: 0.5rem 0.5rem;
}

.nav__lang-item {
  padding: 0.25rem 0.5rem;
  color: #fff;
  line-height: 1;
}

a.nav__lang-link:hover {
  text-decoration-line: none;
}

html[lang="en"] .nav__lang-item--en,
html[lang="de"] .nav__lang-item--de {
  background: #fff;
  color: var(--primary-color);
}

.nav__lang-link-short {
  display: none;
}

@media (max-width: 768px) {
  .logo {
    gap: 0.5rem;
  }

  .logo img {
    width: 2.25rem;
  }

  .logo__text {
    font-size: 1.25rem;
  }

  .nav__burger {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
    background: var(--primary-color);
    width: 100%;
  }

  .nav__menu[aria-expanded="true"] .nav__links {
    display: flex;
  }

  .nav__links ul {
    flex-direction: column;
    gap: 0;
  }

  ul.nav__lang {
    background: none;
    padding: 0;
  }

  .nav__menu.nav__menu ul > li {
    background: none;
    padding: 0;
    color: #fff;
  }

  .nav__menu a {
    padding: var(--gutter);
    width: 100%;
  }

  .nav__links a:hover {
    text-decoration-line: none;
  }

  .nav__links ul + ul,
  .nav__links li + li {
    border-top: 1px solid var(--primary-color-light);
  }
}


/********** HERO **********/

.hero {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 2rem 0 2rem;
}

.hero__title {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}


.hero h1 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center; 
}


.hero__title h1.title-box {
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid #ddd; 
  border-radius: 8px;
  font-size: 4rem;
  font-weight: bold;
  background-color: #F0F0F0;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}


.hero__title h1.title-box::before,
.hero__title h1.title-box::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #A8D5BA;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.hero__title h1.title-box::before {
  bottom: 10px;
  left: 10px; 
}


.hero__title h1.title-box::after {
  top: 10px; 
  right: 10px; 
}


.hero__logos {
  padding: 0 0 0 3%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 3%;
  max-width: 100rem;
}

.hero__logos-item {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.hero__logos-item img {
  margin: 0;  /* Remove default margins */
  padding: 0; /* Remove any padding */
  display: block; /* Remove any inline-block behavior that adds space */
  width: 100%; /* Make the image responsive */
}

.hero__line {
  margin: 0 auto;
  border-bottom: 2px solid var(--primary-color);
}

@media (max-width: 992px) {
  .hero {
    padding-bottom: 6rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

}

@media (max-width: 768px) {
  .hero {
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 5px solid var(--primary-color);
    padding: 1rem 0 2rem;
  }

  .hero__title {
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__logos {
    max-width: 28rem;
  }

  }

/********** DASHBOARD **********/

.dashboard__widgets {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/********** SAS-REPORT **********/

.sas_tile_container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 0;
  margin-bottom: 3rem;
}

.sas_tile_slim {
  display: flex;
  flex-direction: column;
  background-color: #e5f7f0;
  text-align: center;
  border-radius: 20px;
  padding: 2rem;
  width: 45%;
  justify-content: space-between;
}

.sas_tile {
  display: flex;
  flex-direction: column;
  background-color: #e5f7f0;
  text-align: center;
  border-radius: 20px;
  padding: 2rem;
  width: 55%;
  justify-content: space-between;
}

.sas_tile_wide {
  display: flex;
  flex-direction: column;
  background-color: #e5f7f0;
  text-align: center;
  border-radius: 20px;
  padding: 2rem;
  width: 50%;
  justify-content: space-between;
}

.sas_tile_container h1 {
  color: #005333;
  font-weight: 700;
  line-height: 1.25;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.sas_tile_container h2 {
  color: #005333;
  font-weight: 700;
  line-height: 1.25;
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sas_tile_container h3 {
  color: #005333;
  font-weight: 300;
  line-height: 1.25;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.sas_kpi {
  color: #009058;
  font-weight: 700;
  line-height: 1.25;
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  margin: 0;
}

.sas_kpi_small {
  color: #009058;
  font-weight: 700;
  line-height: 1.25;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin: 0;
}

.sas_kpi_prev {
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.sas_kpi_prev2 {
  font-size: 0.8rem;
  margin-top: 1.1rem;
}

.sas_row {
  display: flex;
  flex-direction: row;
  text-align: center;
  margin: 0;
  padding: 0;
}

.sas_tile_row {
  display: flex;
  flex-direction: row;
  text-align: center;
  margin: 0;
  padding: 0;
}

.sas_row_to_column {
  display: flex;
  flex-direction: row;
  text-align: center;
  margin: 0;
  padding: 0;
  gap: 2rem;
  width: 50%;
}

.sas_column {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: space-between;
}

.sas_column_category {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 40%;
  justify-content: space-between;
}

.sas_column_total {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 20%;
  justify-content: space-between;
}

.sas_chart_row {
  display: flex;
  flex-direction: row;
  text-align: center;
  margin-bottom: 5rem;
  padding: 0;
}

.sas_chart {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 75%;
  height: 75vh;
}

.sas_filter {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 25%;
}

.sas_filter_mobile {
	display: flex;
    flex-direction: column;
	margin: 0;
	padding: 0;
	width: 100%;
 }

.sas_filter_obj {
	padding-top: 1rem;
	padding-bottom: 1rem;
	width: 100%;
}
 
 
@media (max-width: 1500px) {
  .sas_tile_container {
    flex-direction: column;
	width: 750px;
	margin-bottom: 5rem;
  }
  
  .sas_row_to_column {
   width: 100%;
  }
  
  .sas_tile_slim {
	width: 100%
  }
  
  .sas_tile {
	width: 100%
  }
  
  .sas_tile_wide {
	width: 100%
  }
  
  .sas_column_category {
	padding-left: 3%;
	padding-right: 3%;
  }
  
  .sas_kpi_prev2 {
    margin-top: 0.8rem;
  }
}

@media (max-width: 1025px) {
  .sas_tile_container {
    flex-direction: column;
	width: 430px;
  }
  
  .sas_row_to_column {
	flex-direction: column;  
    width: 100%;
  }
  
  .sas_tile_container h1 {
	font-size: 1.5rem;
  }
  
  .sas_tile_container h2 {
	font-size: 1.3rem;
  }
  
  .sas_tile_container h3 {
	font-size: 1.2rem;
	margin-top: 0.2rem;
	margin-bottom: 0rem;
  }
  
  .sas_kpi_small {
	font-size: 2rem;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
  }
  
  .sas_kpi_prev {
    font-size: 0.9rem;
	margin: 0;
  }
  
  .sas_kpi_prev2 {
	font-size: 0.9rem;
    margin: 0;
  }
  
  .sas_tile_slim {
	width: 100%
  }
  
  .sas_kpi {
    font-size: 3rem;
	margin-bottom: 0.5rem;
  }
  
  .sas_column_total {
	width: 100%; 
  }
  
  .sas_column_category {
	width: 80%;
	padding: 0;
	margin-left: 10%;
	margin-right: 10%;
  }
	
  .sas_row {
    flex-direction: column;
	grid-row-gap: 3rem;
  }
  
  .sas_chart_row {
    flex-direction: column;
	grid-row-gap: 1rem;
	margin-bottom: 8rem;
  }
  
  .sas_chart {
	width: 100%;
	height: 75vh;
  }
  
  .sas_filter {
    flex-direction: row;
	width: 100%;
  }
  
  .sas_filter_mobile {
    flex-direction: column;
	width: 50%;
  }
}

@media (max-width: 768px) {
}

/********** WIDGET **********/

.widget {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 2rem;
}

.widget p {
  max-width: 50rem;
}

.widget__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.widget__header h2 {
  margin: 0;
  font-size: 1.75rem;
}

.widget__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.widget[data-layout="columns"] .widget__body {
  flex-direction: row;
  overflow: hidden;
}

.widget__desc {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
}

.widget__content {
  display: flex;
  flex: 3;
  gap: 2rem;
  overflow: hidden;
}

.widget__chart {
  display: flex;
  position: relative;
  flex: 1 1 0;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
}

.widget__chart-content {
  height: 32rem;
}

.widget__chart-slider {
  position: relative;
}

.widget__chart-slider-input {
  padding: 1rem 36px 2rem;
}

html[lang="en"] .widget__chart-slider-input {
  padding: 1rem 42px 2rem;
}

.widget__chart-slider-info {
  opacity: 0.75;
  font-size: 0.875rem;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
}

.widget__chart-slider .noUi-connect {
  background: var(--primary-color);
}

.widget__chart-slider .noUi-tooltip {
  border: none;
  padding: 4px 0 0;
  color: var(--primary-color);
  font-size: 0.875rem;
  font-family: "Roboto Condensed", sans-serif;
}

.widget__chart-slider .noUi-horizontal .noUi-tooltip {
  top: 120%;
  bottom: auto;
}

.widget__chart canvas {
  height: 100%;
}

.widget__sidebar {
  background-color: var(--primary-color-light);
  width: 20rem;
}

.widget__footer {
  font-size: 0.75rem;
}

.widget__footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 1200px) {
  .widget[data-layout="columns"] .widget__body {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .widget__header h2 {
    font-size: 1.5rem;
  }

  .widget__desc {
    font-size: 1rem;
  }
}

@media (max-width: 960px) {
  .widget__content {
    flex-direction: column;
    gap: 1rem;
  }

  .widget__chart {
    overflow: visible;
  }

  .widget__chart-content {
    height: 24rem;
  }

  .widget__sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .widget {
    gap: 1rem;
    box-shadow: none;
    padding: 0;
  }
}

/********** FOOTER **********/

.footer--page {
  padding-top: 1rem;
  padding-bottom: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.footer--page a {
  color: inherit;
  text-decoration: none;
}

.footer--page a:hover {
  text-decoration: underline;
}

.footer__links {
  display: flex;
justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__links-item {
  display: flex;
}

.footer__links-item + .footer__links-item::before {
  margin: 0 0.5rem;
  content: "/";
}



div[tabindex="-1"] {
  padding-bottom: 0 !important;
}


.sas_components-TabBar-__internal__-Tab_tab-inner {
  --tab-item-font-size: 1rem !important;
}



#sas_RC-TabBar-label-5 {
    --text-font-size-m: 1.2rem !important;
}


.sas_components-Scrollable-Scrollable_fade-container{
padding-left: 0 !important;
padding-right: 0 !important;
}


.sas_components-Scrollable-Scrollable_scroll-container{
padding-right: 0 !important;
}


.sas_components-TabBar-__internal__-Tab_tab-overflow-button-container{
padding-left: 0 !important;
}


.sas_components-Layouts-Flow-Flow_flow_horizontal.sas_components-List-Item-Item_content-container{
padding-left: 0 !important;
padding-right: 0 !important;
}

.sas_components-Table-Table_body-container{
padding-right: 1rem !important;
}







