@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 img {
  max-height: 50px;
}
#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, button.export, .btn-gundp--secondary {
  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;
  margin: 0 auto;
}
.btn-gundp i, .btn-gundp-back i, button.export i, .btn-gundp--secondary i {
  margin-right: 8px;
  font-size: 16px;
}
.btn-gundp:hover, .btn-gundp-back:hover, button.export:hover, .btn-gundp--secondary:hover, .btn-gundp:focus, .btn-gundp-back:focus, button.export:focus, .btn-gundp--secondary:focus, .btn-gundp:active, .btn-gundp-back:active, button.export:active, .btn-gundp--secondary: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, button.export:disabled, .btn-gundp--secondary:disabled {
  background-color: #B2B2B2 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-gundp--secondary {
  color: rgb(255, 255, 255);
  background-color: rgb(191, 13, 62) !important;
}
.btn-gundp--secondary:hover, .btn-gundp--secondary:focus, .btn-gundp--secondary:active {
  background-color: rgb(0, 0, 0) !important;
  color: rgb(255, 255, 255) !important;
}
.btn-gundp--secondary:disabled {
  background-color: #B2B2B2 !important;
  cursor: not-allowed;
  pointer-events: none;
}

button.export {
  margin: 10px;
}

.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(0, 52, 45);
  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);
}

.dash-table-container .dash-spreadsheet-container .dash-cell {
  font-family: "Grandview", sans-serif;
  font-size: 16px;
}

.dash-table-container .dash-header {
  font-family: "Grandview", sans-serif;
  font-weight: bold;
  font-size: 16px;
}

form {
  display: flex;
  flex-direction: column;
}

@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;
}

/* Home page styling for QuietPave application
 * This file contains styles for the login page and responsive layouts
 */
/* Main container for the index/login page with background image */
#index-body {
  background-image: url("/static/img/cpx-fahrzeug-background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  /* Header section with language selection */
  /* Trapezoid-shaped container for the login area with distinctive angled edge */
}
#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 .trapezoid-wrapper {
  position: absolute;
  top: 202px;
  left: 0;
  width: 60%;
  min-width: 600px;
  max-width: 900px;
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0% 100%); /* Creates the trapezoid shape */
  color: white;
  /*padding: 40px 60px;*/
  box-sizing: border-box;
}
#index-body .trapezoid-wrapper .logo-img {
  width: 53%;
  min-width: 180px;
}
#index-body .trapezoid-wrapper .header-content {
  padding: 20px;
  background-color: rgb(0, 52, 45);
}

/* Main login container with semi-transparent background */
.login-container {
  /* margin-top: 40px; */
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
  color: white;
  padding: 16px;
  width: 100%;
  min-height: 33vh;
  display: flex; /* Uses flexbox for layout */
  /* border-radius: 10px; */
}
.login-container .left-text {
  width: 60%;
  padding-right: 20px;
  font-size: 14pt;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-container .left-text a {
  color: rgb(105, 162, 74);
}
.login-container .login-form {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-container .login-form .input-container {
  display: flex;
  flex-direction: column;
}
.login-container .login-form .input-container label {
  margin-top: 1rem;
}
.login-container .login-form .input-container input {
  max-width: 95%;
  font-size: small;
}
.login-container #submit {
  margin-block-start: 2rem;
  background-color: rgb(105, 162, 74);
  color: rgb(255, 255, 255);
  width: 100%;
  border: none;
  font-size: unset;
}
.login-container #submit:focus {
  border: none;
  outline: none;
}

/* Introduction section using CSS grid for layout */
#introduction {
  margin: auto;
  width: 600px;
  height: 450px;
  display: grid;
  grid-template-rows: auto;
  grid-template-areas: "logo logo" "claim login"; /* Claim text and login form in the bottom row */
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  grid-template-rows: 25% 1fr; /* Top row takes 25% of height, bottom row takes the rest */
}

#logo-container {
  grid-area: logo;
  background-color: rgb(255, 255, 255);
}
#logo-container img {
  height: 100%;
  display: block;
  padding: 1.5rem;
}

#claim {
  grid-area: claim;
  margin-block-end: 0;
  display: flex;
  align-items: center;
  font-size: 14pt;
  text-align: center;
}

#login-container {
  grid-area: login;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#login-container #flashed-messages li {
  color: rgb(191, 13, 62);
}

/* Responsive design for tablets and mobile devices */
@media (max-width: 767.98px) {
  /* Remove trapezoid shape and adjust layout for smaller screens */
  #index-body .trapezoid-wrapper {
    clip-path: none; /* Remove the trapezoid shape */
    width: 100%;
    min-width: 180px;
    position: relative;
    padding: 40px;
    top: unset; /* Reset the top position */
  }
  #index-body .trapezoid-wrapper .login-container {
    flex-direction: column;
  }
  #index-body .trapezoid-wrapper .login-container form {
    padding-top: 1cm;
  }
  #index-body .trapezoid-wrapper .login-container .left-text {
    width: 100%;
    text-align: center;
    margin-right: 0;
    padding: 0;
  }
  #index-body .trapezoid-wrapper .login-container .login-form {
    width: 100%;
  }
  #index-body .trapezoid-wrapper .login-container .login-form .input-container input {
    max-width: 100%;
  }
}
/* Additional adjustments for very small mobile screens */
@media (max-width: 420px) {
  body main {
    margin: 0; /* Remove margin for small screens */
  }
  #index-body .trapezoid-wrapper {
    padding: 0; /* Remove padding to maximize available space */
  }
}
@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 .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 .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 #close-graph-mw {
  margin: 0;
}
.labi-dash #close-graph {
  margin: 0;
}
.labi-dash .popup-container.container {
  position: absolute;
  top: 108px;
  right: -11px;
  width: 55%;
  z-Index: 1000;
  min-width: 500px;
}

@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 */
