@charset "UTF-8";
@font-face {
  font-family: Roboto;
  src: url("/public/css/fonts/Roboto.ttf");
}
@font-face {
  font-family: "Roboto";
  src: url("/public/css/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/public/css/fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/public/css/fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("/public/css/fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
body {
  --bs-info-rgb: 94, 112, 134;
  --bs-secondary-rgb: 204, 168, 87;
  --bs-tertiary-rgb: 175, 145, 75;
  --bs-primary-rgb: 50, 82, 151;
  --bs-dark-rgb: 16, 33, 54;
  --bs-darker-rgb: 13, 28, 47;
  --bs-light-rgb: 239, 239, 239;
}

/* Inaktive Farbe */
body {
  font-family: "Roboto" !important;
}

.bg-darker {
  background-color: rgb(var(--bs-darker-rgb)) !important;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.form-control:focus {
  box-shadow: none !important;
}

.accordion-item {
  border-bottom: 0 !important;
}

.fade-in {
  opacity: 0;
  transform: scale(0.8) translateY(30px); /* Start leicht skaliert und verschoben */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: scale(1) translateY(0); /* Fade-In und Bewegung zurück */
}

.form-hover:hover {
  background-color: rgb(var(--bs-tertiary-rgb)) !important;
  transition: ease-in 0.1s, ease-out 0.3s;
}

#cookie-overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  cursor: not-allowed;
  z-index: 1000000000;
}
#cookie-overlay #cookieconsent {
  position: absolute;
  bottom: 2vh;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1000000001;
}
#cookie-overlay #cookieconsent .menu {
  flex: 1 1 30%;
  min-width: min-content;
  max-width: max-content;
  padding: 20px;
  background-color: white;
  box-shadow: 2px 2px 10px 1px;
  border-radius: 10px;
}
#cookie-overlay #cookieconsent .menu p {
  max-width: max-content;
}
#cookie-overlay #cookieconsent .menu .footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 1em;
}
#cookie-overlay #cookieconsent .menu .footer button {
  background-color: rgb(50, 82, 151);
  border-radius: 10px;
  border: none;
  color: white;
  padding: 10px;
}
#cookie-overlay #cookieconsent .menu .footer button:hover, #cookie-overlay #cookieconsent .menu .footer button:active {
  filter: brightness(0.7);
}
#cookie-overlay #cookieconsent .menu .footer button.essential {
  color: rgb(50, 82, 151);
  border: 2px rgb(50, 82, 151) solid;
  background-color: white;
}
#cookie-overlay #cookieconsent .menu .footer button.deny {
  background-color: #4b0000;
}

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