@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-v19-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter-v19-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inter-v19-latin-700.woff2') format('woff2');
}


/* Default für Schriftart und Schriftgrösse */
body{
  font-family: 'Inter', sans-serif; 
  font-size: 16px !important;
}  

/* Maximale Breite der Inhalte in Abhängigkeit der Bildschirmgrösse*/
.container-fluid {
  padding-left: 0px !important;
  --bs-gutter-x: 0rem;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 560px !important;
  padding-bottom: 60px !important;
}

@media (min-width: 768px) {
  .container-fluid {
      max-width: 768px !important;
  }
}

@media (min-width: 1024px) {
  .container-fluid {
      max-width: 836px !important;
      padding-bottom: 70px !important;
  }
}

@media (min-width: 1210px) {
  .container-fluid {
      max-width: 1120px !important;
      padding-bottom: 90px !important;
  }
}

.navbar .container-fluid {
  padding-bottom: 0px !important;
}

.no-padding {
  padding-bottom: 0 !important;
}

.html-fill-container {
  height: auto !important;
  overflow: visible !important;
  padding-bottom: 0px !important;
}

@media (max-width: 575.98px) {
  .card-body .bslib-grid.grid {
      gap: 0px !important;
  }
}

/* Für Abschnitte, bei denen die hellgrüne Hintergrundfarbe die ganze Breite ausfüllen soll, aber der Inhalt trotzdem eingerückt ist */
.full-width-div {
  width: calc(100vw - var(--scrollbar-width));
  margin-left: calc(-50vw + var(--scrollbar-width) / 2);
  left: 50%;
  position: relative;
  background: #ddecde;
  padding: 24px;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
}

.full-width-inner {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 560px !important;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .full-width-inner {
      max-width: 768px !important;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .full-width-inner {
      max-width: 836px !important;
  }
}

@media (min-width: 1210px) {
  .full-width-inner {
      max-width: 1120px !important;
  }
}

/* Links */
a {
  /*color: #1E4557 !important;*/
  text-decoration: none !important;
  font-size: 16px !important;
}

a:hover { 
  color: #079bca !important;
}

/* Überschriften in Abhängigkeit der Bildschirmgrösse */
h1 {
  font-size: 24px !important;
  line-height: 30px !important;
  color: #32834a !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 700;
  margin-bottom: 0px !important;
  margin-top: 10px;
}

@media (min-width: 576px) {
  h1 {
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 34px !important;
  }
}

@media (min-width: 1024px) {
  h1 {
      font-size: 36px !important;
      line-height: 40px !important;
  }
}

@media (min-width: 1210px) {
  h1 {
      font-size: 48px !important;
      line-height: 48px !important;
  }
}

h2{
  font-size: 36px !important;
  line-height: 40px !important;
  color: #32834a !important;
  word-wrap: break-word;
  overflow-wrap: break-word; 
  font-weight: 700;
}

@media (max-width: 576px) {
  h2{
    font-size: 20px !important;
    line-height: 24px;
  }
}

h3{
  font-size: 18px !important;
  line-height: 24px !important;
  color: #333333 !important;
  word-wrap: break-word; 
  overflow-wrap: break-word; 
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  h3{
    font-size: 18px !important;
    line-height: 20px;
  }
}

@media (min-width: 768px) {
  h3{
  font-size: 20px !important;
  line-height: 28px !important;
  }
}

@media (min-width: 1210px) {
h3{
  font-size: 24px !important;
  line-height: 32px !important;
}
}

h4{
  font-size: 20px !important;
  color: #32834a !important;
  margin-top: 40px;
  margin-bottom: 0.8em !important;
  font-weight: 700 !important;
}

@media (max-width: 576px) {
  h4{
    font-size: 18px !important;
    margin-top: 20px;
  }
  }

h4:nth-of-type(n+2) {
  margin-top: 20px;
}

h5 {
  font-size: 18px !important;
  line-height: 24px;
  color: #32834a !important;
  margin-top: 12px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Defaultmässige Abstände zwischen den Elementen etwas verkleinern */
.bslib-mb-spacing {
  margin-bottom: 5px !important;
}

.bslib-gap-spacing {
  gap: 0px !important;
}

.bslib-gap-spacing>p {
  margin-bottom: 1rem !important;
}

/* Page Header */
.header-container {
  display: flex !important;
  align-items: center !important;
  padding-left: 40px !important;
  gap: 8px !important;
  height: 70px !important;
  border-bottom: 1px solid #a5a5a5 !important;
}

.link-header {
  color: inherit !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.link-header:hover {
  color: #535353 !important;
}

.logo {
  height: 24px !important;
}

.kanton-name {
  border-left: 1px solid black !important;
  line-height: 1.2 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  padding-left: 0.25em !important;
}

.about {
  display: inline-flex !important;
  margin-left: auto !important;
  margin-right: 60px !important;
  padding: 5px 15px 4px !important;
  font-size: 12px !important;
  line-height: 18px !important;
  color: #1e4557 !important;
  background-color: #f8f8f8 !important;
  border: 1px solid #1e4557 !important;
  border-radius: 30px !important;
  text-decoration: none !important;
}

.about:hover {
  color: white !important;
  background-color: #1e6d8b !important;
}

.arrow-up-right {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  vertical-align: middle !important;
  margin-left: 7px !important;
}

.go-hilfe .arrow-up-right {
  margin-left: 8px; 
  font-weight: 900; 
  margin-top: 4px;
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
}


@media (max-width: 1024px) {
  .header-container {
    padding-left: 25px !important;
  }

  .logo {
    height: 16px !important;
  }

  .kanton-name {
    font-size: 18px !important;
    border-left-color: #535353 !important;
  }

  .link-header {
    gap: 0.3em !important;
  }

  .about {
    margin-right: 25px !important;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding-left: 15px !important;
  }

  .logo {
    height: 16px !important;
  }

  .kanton-name {
    font-size: 16px !important;
  }

  .about {
    margin-right: 15px !important;
  }
}

/* Page Footer */
.footer-container {
  width: 100%;
  background-color: rgb(227, 227, 227);
  padding: 40px 0;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 60px !important;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 20px 0 !important;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    margin-top: 70px !important;
  }
}

@media (min-width: 1350px) {
  .footer-container {
    margin-top: 90px !important;
  }
}

.footer-inner {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 560px !important;
  padding: 0 15px !important;
}

@media (min-width: 768px) {
  .footer-inner {
    max-width: 768px !important;
    padding: 0 20px !important;
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    max-width: 836px !important;
  }
}

@media (min-width: 1210px) {
  .footer-inner {
    max-width: 1120px !important;
    padding: 0 40px !important;
  }
}

.footer-links {
  display: flex !important;
  padding-left: 0 !important;
  margin-bottom: 25px !important;
}

@media (max-width: 400px) {
  .footer-links {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
}

.link-footer {
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 500 !important;
  color: #146c8b !important;
  margin: 0 15px 0 0 !important;
  text-decoration: underline white solid 1px !important;
  text-underline-offset: 4px !important;
}

.link-footer:hover {
  color: #512e61 !important;
  text-decoration-color: #146c8b !important;
}

.footer-copyright {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #1e4557 !important;
  padding-left: 0 !important;
}

/* Navbar */
.navbar {
  max-width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100000 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.navbar-header,
.navbar-toggle {
  display: none !important;
}

.navbar-collapse {
  display: flex !important;
  justify-content: flex-end !important;
}

.navbar-nav {
  flex-direction: row !important;
  padding: 0 0 0 1.5rem !important;
}

.navbar-expand-lg .navbar-nav,
.navbar-expand-md .navbar-nav,
.navbar-expand-sm .navbar-nav,
.navbar:not(.navbar-expand) .navbar-nav {
  flex-direction: row !important;
}

.navbar .nav-link {
  color: #1e4557 !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  padding: 20px !important;
}

.navbar .nav-item .nav-link:hover {
  color: #079bca !important;
  background-color: #b8d6be !important;
}

.navbar .nav-item .nav-link.active {
  color: #1e4557 !important;
  background-color: #f0f9eb !important;
}

@media (max-width: 768px) {
  .navbar,
  .navbar-brand {
    padding: 0 !important;
  }

  .navbar .nav-link {
    font-size: 18px !important;
    padding: 15px !important;
  }

  .navbar-nav {
    padding-left: 0 !important;
  }
}

.dropdown-menu{
  font-size: 18px !important;
  box-shadow: 0 0 7.5px 2px rgba(145, 86, 180, 0.5);
}

.dropdown-item.active, 
.dropdown-menu > li > a.active {
  color: white !important;
  background-color: #1e6d8b !important;
}

.dropdown-item:hover, 
.dropdown-menu > li > a:hover {
  color: white !important;
  background-color: #1e6d8b !important;
}

.navbar-nav .dropdown-menu {
  position: absolute !important
}

@media (max-width: 768px){
.dropdown-menu{
  font-size: 16px !important;
}
}

/* Styling der navset_pill_list-Elemente (linke Seite) */
.navbar-brand{
  font-size: 1.2em !important;
  font-weight: 700 !important;
  color: #1E4557 !important;
  padding-bottom: 10px !important;
}
.nav-pills .nav-link{
  color: #1E4557 !important;
  }

.nav-pills .nav-link.active{
color: white !important;
}

.nav-underline {
  margin-bottom: 15px !important;
}

.nav-underline .nav-link{
  font-size: 16px !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.nav-underline .nav-link.active{
  color: #32834a !important;
  font-weight: 600 !important;
}

details > summary {
  list-style: none !important;         /* Entfernt den Pfeil */
  cursor: pointer;
  color: #1E4557 !important;
  font-size: 16px !important;
}
details > summary::-webkit-details-marker {
  display: none !important;            /* Entfernt den Pfeil in WebKit-Browsern */
}

/* Radio-Buttons */
.shiny-options-group {
  margin-top: 2em !important;
  padding: .375rem .75rem 0rem 0rem !important;
  vertical-align: center !important;
}

@media (max-width: 576px) {
.shiny-options-group {
  margin-top: 0px !important;
}
}

    .shiny-input-radiogroup input[type='radio'] {
      width: 20px !important;
      height: 20px !important;
      border-radius: 50%;

      border-width: 1px;
      border-color: #1e4557;
      transition: box-shadow 0.2s ease-in-out;
      font-size: 16px !important;
    }
    
    .shiny-input-radiogroup input[type='radio']:checked {
      background-color: #1e4557;
      border-color: #1e4557;
      font-size: 16px !important;
    }
    
    .shiny-input-radiogroup input[type='radio']:focus {
      box-shadow: 0 0 7.5px 2px rgba(145, 86, 180, 0.8);
    }
    
    .shiny-input-radiogroup input[type='radio']:hover {
      background-color: #079bca;
      border-color: #079bca;
    }

    .shiny-input-radiogroup label {
      font-size: 16px !important;
    }

    .form-group.shiny-input-radiogroup.shiny-input-container.shiny-input-container-inline.shiny-bound-input {
      margin-top: 0px !important;
    }

.shiny-input-container .radio-inline input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  background-size: 12px 12px !important; /* oder z. B. 10px 10px */
}

/* Input switch */
.shiny-input-switch input[type='checkbox'] {
  border-width: 1px;
  border-color: #1e4557;
  transition: box-shadow 0.2s ease-in-out;
}

.shiny-input-switch input[type='checkbox']:checked {
  background-color: #1e4557;
  border-color: #1e4557;
}

.shiny-input-switch input[type='checkbox']:focus {
  box-shadow: 0 0 7.5px 2px rgba(145, 86, 180, 0.8);
}

.shiny-input-switch input[type='checkbox']:hover {
  background-color: #079bca;
  border-color: #079bca;
}

.shiny-input-switch label {
  font-size: 14px;
}

/* Popup welches beim initialen Laden aufgeht */
.modal-content {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.modal-body {
  background: transparent !important;
}

.modal-backdrop {
  background-color: #ddecde !important; 
}

  .modal-dialog {
    max-width: 100%;
  }
  
  .modal-content {
    background-color: #ddecde !important;
    width: 100% !important;
    border: none !important;
    padding: 20px !important;
  }

  .modal-content h5, 
  .modal-content p {
    font-family: Arial, sans-serif;
    color: #333333;
    font-size: 18px;
    line-height: 24px;
  }
  
  .modal-content h5 {
    font-family: Arial, sans-serif;
    color: #333333;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 9px;
    font-weight: 600;
  }
  
  .modal-content p {
    font-family: Arial, sans-serif;
    color: #333333;
    font-size: 18px;
    line-height: 24px;
  }
  
/* Klasse für OK-Button im Popup beim Aufstarten */
#ok_button {
  background-color: #1e4557;
  color: white;
  border-radius: 25px;
  padding: 8px 12px;
  font-size: 16px;
  border: none;
}

#ok_button:hover {
  color: white; 
  background-color: #1e6d8b; 
}

  /* Klasse für die Detail-Buttons bei den Value-Boxen */
  .details {
    border: 1px solid #1e4557 !important;
    border-radius: 30px !important;
    padding: 5px 15px 5px 5px !important;
    font-size: 12px !important;
    color: #1e4557 !important;
    background-color: #F8F8F8;
    line-height: 18px !important;
    margin-top: 0px !important;
    text-decoration: none;
  }
  .details:hover{
    color: white !important;
    background-color: #1e6d8b !important;
  }

  /* Klasse für die Buttons der Kontaktangabe */
  .kontakt {
    border: 1px solid #1e4557 !important;
    border-radius: 30px !important;
    padding: 10px 10px 10px 5px !important;
    font-size: 14px !important;
    color: #1e4557 !important;
    background-color: #F8F8F8;
    line-height: 20px !important;
    margin-top: 25px !important;
    margin-right: 10px !important;
    text-decoration: none;
  }
  .kontakt:hover{
    color: white !important;
    background-color: #1e6d8b !important;
  }

  @media (max-width: 600px) {
    .kontakt {
      margin-right: 0px !important;
      padding: 10px 5px 10px 0px !important;
    }
  }
  
  .kontakt:hover .phone-icon {
    content: url('phone_weiss.svg') !important;

  }
  .kontakt.active .phone-icon {
    content: url('phone_weiss.svg');
  }
  
  /* Select Input (Dropdown) */
  .selectize-input {
    color: #1E4557 !important;
    border-color: #1E4557 !important;
    border-radius: 4px !important;
    /*width: auto !important;
    padding-right: 40px !important;
    margin-top: 10px !important;*/
 }

 .selectize-input .item {
  font-size : 16px !important;
 }

.selectize-input:hover{
    cursor:pointer !important;
    color:  #1E4557 !important;
    border-color: #51b9da !important;
    border-width: 1px;
}

.selectize-input.focus {
    cursor:pointer !important;
    color:  #1E4557 !important;
    border-color: #1E4557!important;
    border-width: 1px;
    box-shadow: 0px 2px 12px 2px  #D7BDEA, 0px 2px 12px 2px  #F4EDFA, 0px 2px 12px 2px  #ffffff !important;
}

.selectize-input:checked{
    color: #1E4557 !important;
    background-color: #D7BDEA !important;
    border-color: #1E4557 !important;
    border-width: 1px;
}

.selectize-input:disabled{
  cursor: not-allowed !important;
    color: #1E4557 !important;
    background-color: #BABABA  !important;
    border-color: transparent !important;
}

/* Buttons und Form Control (Dropdowns, Kalender, etc.) */
.form-control {
  font-size: 16px !important; 
  color: #1E4557 !important;
  border-color: #1E4557 !important;
  border-radius: 4px !important;
  border-width: 1px !important;
  box-shadow: none !important;
} 

.form-control:hover{
  cursor: pointer !important;
  color: #1E4557 !important;
  border-color: #51b9da !important;
  border-width: 1px;
}

.form-control:focus{
  cursor: pointer !important;
  color:  #1E4557 !important;
  border-color: #1E4557!important;
  border-width: 1px;
  box-shadow: 0px 2px 12px 2px  #D7BDEA, 0px 2px 12px 2px  #F4EDFA, 0px 2px 12px 2px  #ffffff !important;
}

.form-control:disabled{
  cursor: not-allowed !important;
  color: #1E4557 !important;
  background-color: #BABABA  !important;
  border-color: transparent !important;
}

/* Accordion (ausklappbare Definitionsboxen) */
.accordion .accordion-item {
  border-radius: 10px;
  background-color: #ffffff;
  margin-bottom: 10px;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.accordion .accordion-item:first-child {
border-radius: 10px;
}

.accordion .accordion-item:last-child {
border-radius: 10px;
}

.accordion .accordion-button {
color: #1e4557;
padding: 10px 20px;
border-radius: 10px;
background-color: #ffffff;
border-radius: 10px;
box-shadow: none;
border: none;
font-weight: bold;
font-size: 20px;
}

.accordion .accordion-button:not(.collapsed) {
border: none !important;
box-shadow: none !important;
}

.accordion .accordion-body {
  color: #000000;
}

.accordion .accordion-button::after {
  font-size: 0.6rem;
box-shadow: none;
border: none;
}

.accordion .accordion-button:focus,
.accordion .accordion-button:active {
outline: none;
box-shadow: none;
border: none;
}

.accordion .accordion-button:focus::after,
.accordion .accordion-button:active::after {
outline: none;
box-shadow: none;
border: none;
}

.tooltip {
  /*all: unset !important;*/
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  pointer-events: none !important;
  font-family: unset !important;
  font-weight: unset !important;
  font-size: unset !important;
  font-style: unset !important;
  line-height: unset !important;
  letter-spacing: unset !important;
  text-align: unset !important;
  text-decoration: unset !important;
  text-transform: unset !important;
  white-space: unset !important;
  word-break: unset !important;
  word-spacing: unset !important;
  direction: unset !important;
  vertical-align: unset !important;
}

.tooltip.show {
  border: none !important;
  background-color: none !important;  /* helle Farbe */
  opacity: 1 !important; /* nicht transparent */
}

.tooltip-inner {
  text-align: left !important;
  max-width: 600px !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 10px !important;
}

.tooltip-arrow {
  display: none !important;
  opacity: 1 !important; 
}

/* Card */
.bslib-card .bslib-card {
  border-radius: 4px !important;
  border-width: 0px !important;
  border-color: #2a9749 !important;
  margin-left: 0px !important;
}
.card-body{
  gap: 0px !important;
  padding-bottom: 15px !important;
  padding-top: 15px !important;
}
/*Alternative von Tourismus
.bslib-card .card-body {
  gap: 0px !important;
  }*/

/* Value-Boxen */
.value-box-value{
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #2a9749 !important;
}


.value-box-title{
  font-weight: bold !important;
}

.value-box-area {
 /* border-bottom: 1px solid #dee2e6;*/
  padding: 0px 10px 15px 10px !important;
}

/*
.card-body div:nth-child(3) .value-box-area {
  border-bottom: unset !important;
  padding-bottom: 0 !important;
}*/
/*
.value-box-headline {
  font-weight: bold !important;
}

.value-box-subline {
  font-size: 0.8em !important;
  padding-top: 4px !important;
}*/

/*Nach der dritten Value-Box soll keine Trennlinie mehr kommen */

/* Überschrift für die Cards mit den KPIs */
/*.custom-box-title {
font-size: 24px !important;
color: #1E4557 !important;
}*/
.custom-box-title {
  font-weight: 700 !important;
  font-size: 18px !important;
  padding-bottom: 0px !important;
  color: #2a9749 !important;
  }

.shiny-input-container:not(.shiny-input-container-inline) {
  width: auto !important;
}
/*
.form-check-label, .shiny-input-container .checkbox label, .shiny-input-container .checkbox-inline label, .shiny-input-container .radio label, .shiny-input-container .radio-inline label {
  display: none !important;
}*/
/*.shiny-input-container:not(.shiny-input-container-inline) {
  width: 35px !important;
  max-width: 100% !important;

}*/


.card-info {
  background-color: #f2f7f3 !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  padding: 15px !important;
  padding-right: 0px !important;
}
@media (min-width: 1024px) {
  .card-info { 
      max-width: 610px !important;
  }
}

.card-info-header {
  color: #32834a !important;
  font-size: 20px !important;
  line-height: 28px;
  font-weight: 600 !important;
  padding-bottom: 0px !important;
}
.card-info-text {
  color: #333333 !important;
  font-size: 16px !important;
  margin-top: 15px !important;
  padding-right: 50px !important;
  line-height: 22px !important;
}
.card-info .card-body{
  gap: 0px !important;
  padding-bottom: 0px !important;
  padding-top: 0px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.card-info-icon {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  width: 50px !important;
  height: 50px !important;
  border: 2px solid #32834a !important;
  border-radius: 9999px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Switch Input */
.form-switch .form-check {
padding-right: 0px !important;
}

.form-switch {
  vertical-align: top !important;
  padding-left: 1em !important;
  padding-right: 1em !important;
}
      .form-check-input:checked {
        border-color: #1E4557; 
        background-color: white;
      }

      .form-switch .form-check-input:hover {
        background-color: #079BCA;
        border-color: #079BCA;
      }

      .form-check-input {
        border-color: #1E4557;
      }
      .form-switch .form-check-input {
        --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(30,69,87,1)'/%3e%3c/svg%3e");
        width: 2em;
        margin-left: 0em;
        background-image: var(--bs-form-switch-bg);
        background-position: left center;
        border-radius: 2em;
        transition: background-position 0.15s ease-in-out;
    }
    .form-switch .form-check-input:checked {
      --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(30,69,87,1)'/%3e%3c/svg%3e");
  }
    
      .form-check-input:focus {
        box-shadow: 0 0 7.5px 2px rgba(145, 86, 180, 0.8);
         background-color: white !important;
         border-color: #1E4557;
      }
      .form-switch .form-check-input:focus {
        --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(30,69,87,1)'/%3e%3c/svg%3e");
    }

    /* Zeitslider und Play-Button 
    .irs{
      font-family: 'Inter', sans-serif !important;
    }

    .irs--shiny .irs-min, .irs--shiny .irs-max {
      background-color: white !important;
      color: #1E4557 !important;
      padding: 0px 5px;
      font-family: 'Inter', sans-serif !important;
  }

  .irs--shiny .irs-from, .irs--shiny .irs-to, .irs--shiny .irs-single {
    color: #1E4557 !important;
    text-shadow: none;
    padding: 5px 0px;
    background-color: white !important;
    border-radius: 3px;
    font-size: 10px;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.333;
}

.irs--shiny .irs-handle {
  border: none;
  background-color: #1E4557 ! important;
  box-shadow: none;
  border-radius: 19px;
  z-index: 2;
}

.irs.irs--shiny .irs-handle:hover {
  background-color: #079BCA !important;
}

.irs.irs--shiny .irs-handle:active {
  box-shadow: 0 0 7.5px 2px rgba(145, 86, 180, 0.8);
}

.irs.irs--shiny .irs-bar {
  background: #e3e3e3 ! important;
  height: 10px !important; 
  top: 28px !important;
  border-radius: 30px !important;
}

.irs--shiny .irs-line::before {
  background: #e3e3e3 ! important;
  height: 10px !important; 
  top: 0px !important;
  border-radius: 30px !important;
}
*/

.irs{
  font-family: 'Inter', sans-serif !important;
}

.irs-single {
  color: #1E4557 !important;
  background-color: white !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}
.irs-min, .irs-max {
  color: #a5a5a5 !important;
  background-color: white !important;
  font-size: 12px !important;
}

.irs-line {
  background-color: #a5a5a5 !important;
  height: 5px !important;
  top: 31px !important;
  border-radius: 30px !important;
}

.irs-bar {
  background-color: #a5a5a5 !important;
  height: 5px !important;
  top: 31px !important;
  border-radius: 30px !important;
}

.irs--shiny .irs-handle {
  background-color: #1E4557 ! important;
}

.irs.irs--shiny .irs-handle:hover {
  background-color: #079BCA !important;
}

.irs.irs--shiny .irs-handle:active {
  box-shadow: 0 0 7.5px 2px rgba(145, 86, 180, 0.8);
}

.glyphicon {
  /*border: 1px solid #1E4557 !important;
  background-color: #e3e3e3 !important;
  border-radius: 50% !important;
  padding: 10px !important;*/
  color: #1E4557 !important;
}

.glyphicon:hover {
  color: #079BCA !important;
  /*color: white !important;*/
  }
  .glyphicon-pause {
    /*background-color: #e8daf4 !important;*/
    color: #a5a5a5 !important;
    }

/* Klasse für Link-Button */
#linkext_btn {
  background-color: white; 
  color: #1e4557; 
  border: 1px solid #1e4557;
  border-radius: 25px;
  padding: 8px 12px;
  font-size: 16px;
}
#linkext_btn:hover {
  color: white; 
  background-color: #1e4557; 
}
#linkext_btn img {
  transition: all 0.3s ease;
}
#linkext_btn:hover img {
  content: url('arrow-up-right-hover.svg');
}

.btn-secondary{
  background-color:#ffffff !important;
  color: #1E4557 !important;
  border-color: #1E4557 !important;
  border-radius: 20px !important;
  margin: 10px 2px 0px 0px !important; /* top, right, bottom, left */
  padding: 5px 10px 5px 10px !important;
}

.btn-secondary:hover{
  color: white !important;
  background-color: #079bca !important;
  border-color: #079bca !important;
  
}
.btn-secondary:checked{
  color: white !important;
  background-color: rgb(145, 86, 180) !important;
  border-color: rgb(145, 86, 180) !important;
}

.btn-secondary:hover .hover-icon {
    content: url('download_weiss.svg');

  }
.btn-secondary:active .hover-icon {
    content: url('download_weiss.svg');
  }




tbody, td, tfoot, th, thead, tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

 /* Gesamter Tabellenhintergrund */
 table.dataTable {
  background-color: white !important;
  font-size: 16px !important;
}

/* Header-Zeile */
table.dataTable thead th {
  background-color: white !important;
  color: #2a9749 !important;
  font-size: 16px !important;
}

.table {
  --bs-table-striped-bg: white !important;
}

table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting:after{
  color: #2a9749 !important;
}

.info-icon {
  font-size: 1em !important;
  color: #1e4557 !important;
  /*padding-left: 15px !important;
  margin-left: auto !important;*/
}
h4 .info-icon {
  font-size: 16px !important;
  color: #1e4557 !important;
  margin-left: auto !important;
}

.info-icon:hover {
  color: #079BCA !important;
}


a{
  color: #1e4557 !important; 
}

.go-monat:hover .arrow-up-right {
  content: url('arrow-up-right-hover.svg');
}

.go-zeitreihe:hover .arrow-right {
  content: url('arrow-right-hover.svg');
}

.go-info:hover .arrow-right {
  content: url('arrow-right-hover.svg');
}

@keyframes jump-xy {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(3px, -3px);  /* diagonal hoch-rechts */
  }
  70% {
    transform: translate(-2px, 2px);  /* diagonal runter-links (unter Start) */
  }
  100% {
    transform: translate(0, 0);
  }
}


.go-monat:hover .arrow-up-right {
  animation: jump-xy var(--animation-duration, 0.5s) ease-in-out;
  animation-iteration-count: 1;
}

@keyframes jump-x {
  0% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(3px);
  }
  70% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

.go-zeitreihe:hover .arrow-right,
.go-info:hover .arrow-right {
  animation: jump-x var(--animation-duration, 0.5s) ease-in-out;
  animation-iteration-count: 1;
}

.switch-label-text {
  color: #333333;
  font-size: 16px;
}

.switch-label-bold {
  font-weight: 700;
}

.switch-container-flex {
  display: flex;
  align-items: center;
  padding-top: 0px;
  flex-wrap: nowrap;
}

@media (max-width: 600px) {
  .switch-label-text {
    font-size: 14px;
  }
  .switch-label-compare {
    display: none !important;
  }
}

.vscomp-wrapper{
  color:#1E4557  !important;
  border-color:  #1E4557 !important;
  font-family: 'Inter', sans-serif; 
  font-size: 16px !important; 
}

.vscomp-toggle-button {
    border-radius: 4px !important;
    color:#1E4557  !important;
    border-color: #1E4557 !important;
    border-width: 1px;
    box-shadow: none !important;
}

.vscomp-toggle-button:hover{
  cursor:pointer !important;
  color:  #1E4557 !important;
  border-color: #51b9da !important;
  border-width: 1px;
}

.vscomp-toggle-button.focus {
  cursor: pointer !important;
  color:  #1E4557 !important;
  border-color: #1E4557!important;
  border-width: 1px;
  box-shadow: 0px 2px 12px 2px  #D7BDEA, 0px 2px 12px 2px  #F4EDFA, 0px 2px 12px 2px  #ffffff !important;
}

.vscomp-toggle-button:checked{
  color: #1E4557 !important;
  background-color: #D7BDEA !important;
  border-color: #1E4557 !important;
  border-width: 1px;
}

.vscomp-value {
  font-family: 'Inter', sans-serif; 
  font-size: 16px !important; 
  color: #333333;
}
.vscomp-option{
  color: #1E4557  !important;
  /*border: none !important;*/
  outline: none !important;
}
.vscomp-option.focused, .vscomp-option.selected, .vscomp-option.hover{
  color:#0E81A7  !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
}
.vscomp-wrapper:focus .vscomp-toggle-button{
  border-color:  #1E4557 !important;
  border-radius: 4px !important;
  border-width: 1px !important;
  box-shadow: none !important;
}
.vscomp-options, .pop-comp-wrapper {
  border-color:  #1E4557 !important;
  border-radius: 4px !important;
  border-width: 1px !important;
  box-shadow: 0px 2px 12px 2px  #D7BDEA, 0px 2px 12px 2px  #F4EDFA, 0px 2px 12px 2px  #ffffff !important;
}

.vscomp-ele[disabled] {
    border: none !important;
    outline: none !important;
    background-color: #BABABA !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}
.vscomp-ele[disabled] .vscomp-wrapper .vscomp-toggle-button {
    border: none !important;
    color:#1E4557  !important;
    outline: none !important;
    background-color: #BABABA !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}



.bi.bi-info-circle-fill:hover {
  color: #079BCA !important;
}

.air-datepicker {
  background-color: #f0f8ff;
  border: 1px solid #9156b4 !important;
  box-shadow: 0px 2px 12px 2px  #D7BDEA, 0px 2px 12px 2px  #F4EDFA, 0px 2px 12px 2px  #ffffff !important;
  border-radius: 4px;
}

/* Markiere ausgewähltes Datum */
.air-datepicker-cell.-selected- {
  background-color: #1e4557 !important;
  color: white !important;
}

.air-datepicker-nav--title {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #1e4557 !important;
  border-bottom: none !important;
}

#warnung_Zieldatum, #warnung_Zieldatum_2{
  font-size: 10px !important;
  font-weight: bold !important;
  color: red !important;
}
