@import url("https://fonts.cdnfonts.com/css/grandview");
html {
  font-family: "Grandview", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: "Grandview", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(0, 0, 0);
}

#footer {
  background-color: rgb(0, 52, 45);
  color: rgb(255, 255, 255);
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 2.5rem;
}
#footer a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
#footer a:hover {
  color: rgb(105, 162, 74);
}

@media (max-width: 767.98px) {
  footer {
    font-size: small;
  }
}
#header {
  position: sticky;
  top: 0;
  z-index: 1;
}
#header #burger-btn {
  display: none;
}
#header nav {
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 20px;
  padding-inline-start: 1rem;
  padding-inline-end: 1rem;
  height: 40px;
}
#header nav #burger-menu {
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding: 0;
}
#header nav #burger-menu #languages {
  list-style: none;
  margin-block-end: 0;
  padding-inline-start: 0;
  display: flex;
  column-gap: 15px;
  padding-inline-start: 15px;
  padding-inline-end: 15px;
  border-right: 1px solid rgb(0, 52, 45);
}
#header nav #burger-menu #languages .language a {
  color: rgb(0, 52, 45);
  text-decoration: none;
  cursor: pointer;
}
#header nav #burger-menu #languages .language a:hover {
  color: rgb(105, 162, 74);
  text-decoration-color: rgb(105, 162, 74);
}
#header nav #burger-menu #languages .language.active {
  font-weight: bold !important;
  text-decoration: underline;
  text-decoration-color: rgb(0, 52, 45);
}
#header nav #burger-menu #languages .language.active:hover {
  text-decoration-color: rgb(105, 162, 74);
}
#header hgroup {
  display: flex;
  height: 80px;
  background-color: rgb(0, 52, 45);
}
#header hgroup h1 {
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  flex: 1;
  margin-block-start: auto;
  margin-block-end: auto;
  padding-inline-start: 2rem;
  padding-inline-end: 2rem;
  overflow: hidden;
}
#header hgroup #container-qpc-logo {
  background-color: rgb(255, 255, 255);
}
#header hgroup #container-qpc-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1rem;
}
#header hgroup #container-qpc-logo a img {
  height: 100%;
}
#header hgroup #container-bafu {
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
  padding-inline-start: 1rem;
  padding-inline-end: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#header hgroup #container-bafu p {
  margin-bottom: 0;
}
#header hgroup #container-bafu a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
#header hgroup #container-bafu a:hover {
  color: rgb(105, 162, 74);
}

@media (max-width: 1199.98px) {
  #header hgroup {
    height: 70px !important;
  }
  #header hgroup h1 {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 767.98px) {
  #header {
    display: flex;
    align-content: space-around;
    flex-direction: row-reverse;
    justify-content: space-between;
    background-color: rgb(0, 52, 45);
  }
  #header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(0, 52, 45);
    height: 60px;
    padding: 0 1rem;
  }
  #header nav #burger-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    color: rgb(255, 255, 255);
    transition: transform 0.3s ease;
  }
  #header nav #burger-menu {
    position: absolute;
    padding: 1rem;
    top: 100%;
    right: 0;
    background-color: rgb(255, 255, 255);
    width: 250px;
    border: 1px solid rgb(0, 52, 45);
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.7s ease-in-out;
  }
  #header nav #burger-menu #languages {
    border: none;
  }
  #header nav #burger-menu.visible {
    display: flex;
    gap: 0.5rem;
    opacity: 1;
    transform: translateY(0);
  }
  #header nav #burger-menu li {
    padding: 10px 15px;
    border-bottom: 1px solid rgb(0, 52, 45);
  }
  #header nav #burger-menu li a {
    color: rgb(0, 52, 45);
    text-decoration: none;
  }
  #header nav #burger-menu li a:hover {
    color: rgb(105, 162, 74);
  }
  #header hgroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #header hgroup h1 {
    display: none;
  }
  #header hgroup #container-bafu {
    display: none;
  }
  #header hgroup #container-qpc-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
  }
  #header hgroup #container-qpc-logo a {
    display: flex;
    align-items: center;
  }
  #header hgroup #container-qpc-logo a img {
    max-height: 100%;
    width: auto;
  }
  #header span.icon-text {
    display: block;
  }
}
.navbar {
  background-color: rgb(191, 13, 62) !important;
}
.navbar .navbar-title {
  color: rgb(255, 255, 255);
}

html,
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}
html main,
body main {
  margin: 2rem;
}

@media (max-width: 767.98px) {
  body main {
    margin: 1rem;
  }
  .btn-gundp-back {
    top: 100px !important;
  }
}
.home-btn {
  position: fixed;
  top: 10px;
  left: 25px;
  z-index: 1050;
}

.qpc-round-button, .qpc-warning-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em; /* Adjust font size to match text */
  line-height: 1; /* Ensures it aligns with text */
  width: 1.2em; /* Small enough to fit inline */
  height: 1.2em;
  border-radius: 50%; /* Makes it round */
  border: 1px solid rgb(191, 13, 62); /* Border color */
  color: rgb(191, 13, 62); /* Text color */
  background-color: transparent;
  cursor: pointer;
  text-align: center;
  margin-left: 4px;
  padding: 9px;
}
.qpc-round-button:hover, .qpc-warning-button:hover {
  background-color: rgb(191, 13, 62);
  color: rgb(255, 255, 255); /* Changes text color on hover */
  border-color: rgb(191, 13, 62);
}

.qpc-warning-button {
  width: 1.2em; /* Small enough to fit inline */
  height: 1.2em;
  border-radius: 25%;
}

.icon-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 0;
}
.icon-btn a {
  text-decoration: none;
}
.icon-btn .icon-wrapper {
  background-color: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0;
}
.icon-btn .icon-wrapper a {
  color: rgb(0, 52, 45);
  text-decoration: none;
  font-size: 25px;
}
.icon-btn .icon-text {
  color: rgb(0, 52, 45);
}
.icon-btn:hover {
  color: rgb(105, 162, 74);
}
.icon-btn:hover .icon-wrapper a {
  color: rgb(105, 162, 74);
}
.icon-btn:hover .icon-text {
  color: rgb(105, 162, 74);
}
.icon-btn:focus {
  border: none;
  outline: none;
}

.btn-gundp, .btn-gundp-back {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgb(206, 220, 0) !important;
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 1px 1px 3px rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  font-size: 16px;
}
.btn-gundp i, .btn-gundp-back i {
  margin-right: 8px;
  font-size: 16px;
}
.btn-gundp:hover, .btn-gundp-back:hover, .btn-gundp:focus, .btn-gundp-back:focus, .btn-gundp:active, .btn-gundp-back:active {
  background-color: rgb(0, 0, 0) !important;
  border: 1px solid rgb(0, 0, 0) !important;
  box-shadow: 1px 1px 3px rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.btn-gundp:disabled, .btn-gundp-back:disabled {
  background-color: #B2B2B2 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-gundp-back {
  position: fixed;
  top: 145px;
  right: 20px;
  z-index: 0;
}

#button-prev,
#button-next,
#button-new-analysis {
  background-color: rgb(191, 13, 62);
  color: rgb(255, 255, 255);
}

.btn-tabSwitch {
  border: none;
}
.btn-tabSwitch:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: all !important;
}
.btn-tabSwitch.hidden {
  display: none;
}
.btn-tabSwitch:not(:disabled):hover {
  opacity: 0.8;
}

input[type=checkbox] {
  accent-color: rgb(0, 52, 45);
}

input[type=radio] {
  accent-color: rgb(0, 52, 45);
}

.rc-slider-track {
  background-color: rgb(105, 162, 74);
}

.rc-slider-dot {
  border-color: rgb(105, 162, 74);
}

.rc-slider-handle {
  border-color: rgb(105, 162, 74);
}
.rc-slider-handle:active {
  border-color: rgb(0, 52, 45);
}
.rc-slider-handle:hover {
  border-color: rgb(0, 52, 45);
}
.rc-slider-handle:focus {
  border-color: rgb(0, 52, 45);
}

#input_akustik .rc-slider-track {
  background-color: rgb(191, 13, 62);
}
#input_akustik .rc-slider-dot {
  border-color: rgb(191, 13, 62);
}
#input_akustik .rc-slider-handle {
  border-color: rgb(191, 13, 62);
}
#input_akustik .rc-slider-handle:active {
  border-color: rgb(0, 0, 0);
}
#input_akustik .rc-slider-handle:hover {
  border-color: rgb(0, 0, 0);
}
#input_akustik .rc-slider-handle:focus {
  border-color: rgb(0, 0, 0);
}

.gundp-card {
  margin: auto;
}
.gundp-card.border-black {
  border: 1px solid rgb(0, 0, 0);
}
.gundp-card.shadow {
  box-shadow: 14px 18px 21px rgb(0, 0, 0) !important;
}
.gundp-card .card-header {
  background-color: rgb(191, 13, 62);
  color: rgb(255, 255, 255);
  border-bottom: none;
}
.gundp-card .card-header h4 {
  margin-top: 1rem;
}
.gundp-card .card-body {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.gundp-card .card-text {
  text-align: left;
}

.custom-tabs {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: none;
  padding: 0;
  margin: 0;
  list-style: none;
}
.custom-tabs .nav-item {
  flex: 1;
  text-align: center;
}
.custom-tabs .nav-item .nav-link {
  display: block;
  background-color: rgba(178, 178, 178, 0.6);
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 0;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  height: 100%;
  align-content: center;
}
.custom-tabs .nav-item .nav-link.active {
  background-color: rgb(0, 52, 45);
  font-weight: bold;
  color: rgb(255, 255, 255);
  box-shadow: none;
}
.custom-tabs .nav-item .nav-link:not(.active):hover {
  background-color: rgb(105, 162, 74);
  color: rgb(0, 0, 0) !important;
}

.custom-tab {
  border: 1px solid rgb(0, 0, 0);
  padding: 5px;
}
.custom-tab #line-summary {
  text-align: left;
}

.modal-content {
  border: rgb(0, 52, 45);
}

.modal-header {
  background-color: rgb(0, 52, 45);
  color: rgb(255, 255, 255);
}
.modal-header .btn-close {
  filter: invert(1);
}

@page {
  size: A4;
  margin-top: 20mm;
  margin-right: 12mm;
  margin-left: 12mm;
  @top-left {
    width: 78%;
    vertical-align: center;
    horizontal-align: center;
    background: rgb(0, 52, 45);
    height: 1cm;
    color: rgb(255, 255, 255);
    padding-left: 0.25cm; /* Adjust as needed */
    text-align: left;
  }
  @bottom-left {
    font-size: 9pt;
    height: 1cm;
    vertical-align: middle;
    width: 100%;
  }
  @bottom-right {
    background: rgb(0, 52, 45);
    color: rgb(255, 255, 255);
    content: counter(page);
    height: 1cm;
    text-align: center;
    width: 1cm;
  }
  @bottom-center {
    background: rgb(0, 52, 45);
    content: "";
    display: block;
    height: 0.05cm;
    width: 100%;
  }
}
.pdf-report {
  background: rgb(255, 255, 255);
  font-family: "Grandview", sans-serif;
  color: rgb(0, 0, 0);
  text-align: justify;
  font-size: 12px;
  padding-top: 8px;
  padding-left: 8px;
  padding-right: 8px;
}
.pdf-report #header {
  display: none;
}
.pdf-report h1 {
  color: rgb(0, 52, 45);
  font-size: large;
}
.pdf-report h2 {
  color: rgb(0, 52, 45);
  font-size: larger;
  margin-top: 8px;
}
.pdf-report .new-page {
  page-break-before: always; /* Legacy property */
  break-before: page;
}
.pdf-report section figure img {
  width: 80%;
  min-width: 500px;
}
.pdf-report section figcaption {
  margin-block-start: 0.5rem;
  font-style: italic;
}
.pdf-report table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}
.pdf-report td, .pdf-report th {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 8px;
}
.pdf-report thead th {
  font-weight: bold;
}
.pdf-report tr:nth-child(even) {
  background-color: #dddddd;
}
.pdf-report .chart {
  width: 100%;
  text-align: center;
}
.pdf-report .container-pdf {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.pdf-report .container-pdf .box {
  flex-basis: 33.15%;
  padding: 0;
  text-align: center;
  border: 1px solid rgb(0, 0, 0);
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
}
.pdf-report .labi-container {
  position: relative;
  width: 150px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.59);
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  font-family: "Arial", sans-serif;
  font-weight: bold;
  font-size: 48px;
  border-radius: 3px;
}
.pdf-report .labi-container::after {
  content: "";
  position: absolute;
  bottom: 23px;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(90deg, rgb(255, 255, 255) 0, rgb(255, 255, 255) 10px, transparent 10px, transparent 20px);
  z-index: 1;
}
.pdf-report .labi-text {
  position: relative;
  z-index: 2;
  color: rgb(191, 13, 62);
  -webkit-text-stroke: 1px rgb(0, 0, 0);
  text-shadow: 1px 1px 0px rgb(255, 255, 255), -1px -1px 0px rgb(255, 255, 255), 1px -1px 0px rgb(255, 255, 255), -1px 1px 0px rgb(255, 255, 255);
}
.pdf-report .list-group {
  width: fit-content;
  text-align: center;
}
.pdf-report .warning-div {
  display: flex;
  justify-content: center;
  border: 2px solid rgba(191, 13, 62, 0.6);
  color: rgba(191, 13, 62, 0.6);
  border-radius: 3px;
  padding: 5px;
  margin: 0 auto;
  text-align: center;
}

#index-body {
  background-image: url("/static/img/QuietPave-Check_Background.png");
  background-size: cover;
}
#index-body #index-header {
  background-color: transparent;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 10px;
  height: 40px;
}
#index-body #index-header #languages {
  background-color: rgba(0, 0, 0, 0.4);
  list-style-type: none;
  margin-block-end: 0;
  display: flex;
  column-gap: 15px;
  padding-inline-start: 15px;
  padding-inline-end: 15px;
}
#index-body #index-header .language a {
  color: rgb(255, 255, 255);
}
#index-body #introduction {
  margin: auto;
  width: 600px;
  height: 450px;
  display: grid;
  grid-template-rows: auto;
  grid-template-areas: "logo logo" "claim login";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 25% 1fr;
}
#index-body #logo-container {
  grid-area: logo;
  background-color: rgb(255, 255, 255);
}
#index-body #logo-container img {
  height: 100%;
  display: block;
  padding: 1.5rem;
}
#index-body #claim {
  grid-area: claim;
  margin-block-end: 0;
  display: flex;
  align-items: center;
  font-size: 14pt;
  text-align: center;
}
#index-body #login-container {
  grid-area: login;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#index-body #login-container #flashed-messages li {
  color: rgb(191, 13, 62);
}
#index-body #login-container .input-container {
  margin-block-end: 0.5rem;
}
#index-body #login-container label,
#index-body #login-container input {
  width: 100%;
}
#index-body #login-container label {
  color: rgb(255, 255, 255);
}
#index-body #login-container #submit {
  margin-block-start: 2rem;
  background-color: rgb(105, 162, 74);
  color: rgb(255, 255, 255);
  width: 100%;
  border: none;
}
#index-body #login-container #submit:focus {
  border: none;
  outline: none;
}
#index-body #claim, #index-body #login-container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
}
#index-body #claim, #index-body #login-request {
  color: rgb(255, 255, 255);
}
#index-body #login-request {
  font-size: 0.8rem;
  margin-block-start: 1rem;
  margin-block-end: 1rem;
}
#index-body #login-request a {
  color: rgb(105, 162, 74);
}

@media (max-width: 767.98px) {
  #introduction {
    display: flex !important;
    flex-direction: column !important;
    width: auto !important;
  }
  #introduction #logo-container {
    height: 7rem;
  }
}
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.labi-dash {
  display: block;
}
.labi-dash #react-entry-point > div {
  height: auto;
}
.labi-dash .dbc.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.labi-dash .dash-spinner.dash-default-spinner::before,
.labi-dash .dash-spinner.dash-default-spinner::after {
  border-color: magenta;
  border-top-color: magenta;
}
.labi-dash #result-text:has(span) {
  padding: 3px;
  border: 3px solid rgba(191, 13, 62, 0.6);
  border-radius: 8px;
  display: inline-block;
}
.labi-dash #recommendations {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text-suitable text-not-suitable" "list-suitable list-not-suitable" "remark remark";
}
.labi-dash #recommendations #text-suitable {
  grid-area: text-suitable;
}
.labi-dash #recommendations #text-suitable.highlight {
  font-weight: bold;
  color: rgb(191, 13, 62);
}
.labi-dash #recommendations #list-suitable {
  grid-area: list-suitable;
  box-shadow: none;
}
.labi-dash #recommendations #list-suitable .list-group-item {
  background-color: rgba(105, 162, 74, 0.6);
}
.labi-dash #recommendations #text-not-suitable {
  grid-area: text-not-suitable;
}
.labi-dash #recommendations #list-not-suitable {
  grid-area: list-not-suitable;
  box-shadow: none;
}
.labi-dash #recommendations #list-not-suitable .list-group-item {
  background-color: rgba(191, 13, 62, 0.6);
  color: rgb(255, 255, 255);
}
.labi-dash #recommendations #empty-list {
  color: rgba(178, 178, 178, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(178, 178, 178, 0.6);
}
.labi-dash #recommendations #remark {
  grid-area: remark;
}
.labi-dash #ortschaft_select {
  z-index: 1050;
  background-color: #F2F2F2;
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.labi-dash #radio_items_input_street label input[type=radio] {
  margin-right: 8px;
}
.labi-dash .dash-dropdown {
  min-width: 300px;
}
.labi-dash .leaflet-control-layers-list.leaflet-control-layers-scrollbar,
.labi-dash .leaflet-control-layers.leaflet-control-layers-expanded.leaflet-control {
  background-color: #F2F2F2;
}
.labi-dash .leaflet-control-layers-base,
.labi-dash .leaflet-control-layers-overlays {
  color: rgb(0, 0, 0);
  text-align: left;
}
.labi-dash .leaflet-draw-section {
  visibility: hidden;
}
.labi-dash #progress_div {
  border: 1px solid #B2B2B2;
  padding-block-start: 1rem;
  padding-block-end: 1rem;
  margin-block-start: 2rem;
  margin-block-end: 2rem;
}
.labi-dash #stepper {
  list-style: none;
  padding-inline-start: 0;
  display: flex;
}
.labi-dash .step.active-step .circle {
  background-color: rgb(191, 13, 62);
}
.labi-dash .step.active-step .step-title {
  font-weight: bold;
}
.labi-dash .step {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  text-align: center;
  font-size: 0.8rem;
}
.labi-dash .step .circle {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #B2B2B2;
  margin: 0 auto 0.5rem;
}
.labi-dash .step:not(:last-child):after {
  content: "";
  position: relative;
  height: 2px;
  background-color: #B2B2B2;
  top: 10px;
  width: calc(100% - 20px);
  left: calc(50% + 10px);
  order: -1;
}
.labi-dash .offcanvas.offcanvas-start {
  top: 150px;
  left: 8px;
  width: calc(100% - 16px);
  max-height: calc(95% - 150px);
}
.labi-dash .offcanvas.offcanvas-start .help_img {
  width: 200px;
  padding: 2rem;
}
.labi-dash #map_tab .nav-item {
  background-color: transparent;
  height: 0;
  z-index: -1;
}
.labi-dash #map_tab .nav-item .nav-link.active {
  box-shadow: none;
}
.labi-dash .map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
.labi-dash .map-container .map_interaction_div {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #F2F2F2;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 425;
}
.labi-dash .map-container .map_interaction_div.hidden {
  visibility: hidden;
}
.labi-dash .map-container .map_interaction_div .button-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.labi-dash .map-container .map_interaction_div .button-container button {
  width: 225px;
}
.labi-dash .map-container .map-settings {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 300px;
  right: 10px;
  z-index: 1000;
}
.labi-dash #model-param-container {
  padding: 1rem;
}
.labi-dash #model-param-container #model-param p {
  margin: 0; /* Removes default Bootstrap margin */
}
.labi-dash #model-param-container #model-param,
.labi-dash #model-param-container #calculated-param {
  margin-bottom: 2rem;
}
.labi-dash #model-param-container #model-param h2,
.labi-dash #model-param-container #calculated-param h2 {
  font-size: 1.5rem;
}
.labi-dash #results {
  padding: 1rem;
}
.labi-dash #results #age-progression,
.labi-dash #results #recommendation {
  margin-bottom: 2rem;
}
.labi-dash #results #export-button-container {
  margin-bottom: 1rem;
  text-align: right;
}
.labi-dash #results #export-button-container #export_btn {
  display: inline-block;
}
.labi-dash #Results .graph-container {
  align-content: center;
  align-items: center;
  flex-direction: column;
  width: 32%;
  min-width: 310px;
}
.labi-dash #Results .dash-graph {
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  height: 524px;
}
.labi-dash .dash-gauge {
  max-width: 30vw;
  min-width: 30vw;
  min-height: 5vh;
  margin: auto;
}
.labi-dash .span-result {
  font-weight: bold;
  font-size: x-large;
  text-align: center;
  margin: auto;
  color: rgb(0, 0, 0);
  border: 3px solid rgb(0, 0, 0);
  border-radius: 25px;
  padding-left: 7px;
  padding-right: 7px;
}
.labi-dash #res_div {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
}
.labi-dash #input_akustik {
  max-width: 1cm;
}
.labi-dash #label_inputAkustik {
  transform: rotate(-90deg);
  transform-origin: center;
  width: 19px;
  white-space: nowrap;
}
.labi-dash #result-figure {
  width: 90%;
}
.labi-dash .Select-control {
  z-index: 0 !important;
}

@media (max-width: 768px) {
  #Inputs .col {
    padding: 0 0 0 0;
  }
  #res_div {
    display: block;
    margin: 0 auto;
  }
  #label_inputAkustik {
    rotate: 0deg;
  }
  #button-next {
    margin-left: 1rem;
  }
  #button-prev {
    margin-right: 1rem;
  }
  #progress_div {
    padding-top: 1em;
  }
  #result-figure {
    width: 100%;
  }
  .Orientation {
    display: none;
  }
  #leaflet-map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div.leaflet-control-layers.leaflet-control-layers-expanded.leaflet-control {
    display: none;
  }
  #leaflet-map > div.leaflet-control-container > div.leaflet-top.leaflet-left > div.leaflet-control-zoom.leaflet-bar.leaflet-control {
    display: none;
  }
  .w-100-md {
    width: 100% !important;
  }
  #Results .dash-graph {
    width: 100% !important;
  }
}
@media (max-width: 767.98px) {
  .button-container {
    font-size: small;
    gap: 4px;
  }
  .button-container button {
    width: auto !important;
  }
  .leaflet-control-layers-expanded.leaflet-control {
    display: none;
  }
  #MapSettingsDiv {
    display: none;
  }
}
@media (max-width: 991.98px) {
  #recommendations {
    display: flex !important;
    flex-direction: column !important;
  }
}
#about,
#instructions,
#data-sources,
#disclaimer {
  max-width: 1000px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  margin-block-start: 1rem;
  margin-block-end: 2rem;
}

#about p,
#disclaimer p {
  text-align: justify;
}

#about figure {
  text-align: center;
  margin-block-start: 2rem;
  margin-block-end: 2rem;
}
#about figure img {
  width: 80%;
  min-width: 500px;
}
#about figcaption {
  margin-block-start: 0.5rem;
  font-style: italic;
}

#instructions #instruction-steps {
  list-style-type: none;
}
#instructions #instruction-steps > li {
  margin-block-end: 1rem;
}
#instructions #instruction-steps h3 {
  font-size: 1.5rem;
}
#instructions #instruction-steps h4 {
  font-size: 1.2rem;
}

@media (max-width: 767.98px) {
  #about figure img {
    width: 100%;
    min-width: 300px;
  }
}
#impressum {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}
#impressum #credits a {
  color: rgb(191, 13, 62);
}
#impressum #credits a:hover {
  color: rgb(0, 0, 0);
}
#impressum h2 {
  margin: 1rem 0;
}
#impressum h3, #impressum h4 {
  margin-top: 1rem;
}

/*# sourceMappingURL=main.css.map */
