/* Colors */
:root {
	--bs-primary: #b70000;
	--bs-primary-rgb: #b70000;
  --bs-light: #f8fafc;
	--bs-light-rgb: #f8fafc;
}

/* Einsätze */
.meta-data {
font-size: 0.8rem;
}
.emergency-row p {
margin-bottom: 0;
}

/* Footer */
.footer {
background-color: var(--bs-light);
}
.social {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.2s ease-in-out;
}
.social.instagram {
  border: 2px solid #e134ae;
  color: #e134ae;
}
.social.facebook {
  border: 2px solid #1877F2;
  color: #1877F2;
}
.social.whatsapp {
  border: 2px solid #25D366;
  color: #25D366;
}
.social.mail {
  border: 2px solid #6c757d;
  color: #6c757d;
}
.social:hover {
  color: white;
  transform: translateY(-3px);
}
.social.instagram:hover {
  background-color: #e134ae;
}
.social.facebook:hover {
  background-color: #1877F2;
}
.social.whatsapp:hover {
  background-color: #25D366;
}
.social.mail:hover {
  background-color: #6c757d;
}

/* Header */
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler:focus .navbar-nav {
background-color: white;
}
.dropdown>.dropdown-menu {
	border-radius: 0;
}
.navbar-fw-logo {
	max-height: 25px;
}
.dropdown-item {
color: var(--bs-nav-link-color);
}
.navbar button:hover {
background-color: unset;
}
.navbar-glass {
background: rgba(255, 255, 255, 0.6); /* halbtransparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari Support */
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.navbar-nav {
background-color: white;
}


@media (min-width: 992px) {
	/* Header */
	.dropdown>.dropdown-menu {
	visibility: hidden;
		opacity: 0;
		top: 100%;
		display: block;
		transition: all 0.1s ease-out;
	}
	.dropdown:hover>.dropdown-menu {
	padding: 20px 0;
		display: block;
		visibility: visible;
		opacity: 1;
		transition: all 0.3s ease-in-out;
	}
	.navbar-fw-logo {
	max-height: 40px;
	}
	.navbar-nav {
background-color: unset;
}
}