html {
  min-height: 100%;
}

body {
  min-height: 100%;
}

* {
  box-sizing: border-box;
}

.profile-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu[open] .language-menu-chevron,
.profile-menu[open] .profile-menu-chevron {
  transform: rotate(180deg);
}

.profile-trigger {
  width: 1.5rem;
  height: 1.5rem;
}

.profile-trigger-initial {
  font-size: 0.85rem;
  line-height: 1;
}

.language-flag {
  display: inline-block;
  width: 1.3rem;
  min-width: 1.3rem;
  height: 1.3rem;
  border-radius: 9999px;
  background-color: #f4f4f5;
  background-size: cover!important;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(161, 161, 170, 0.18);
  overflow: hidden;
}

.language-menu-link,
.profile-menu-link {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  color: #18181b;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 0.9rem;
  text-align: left;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.language-menu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-menu-link-active {
  background: #ecfeff;
  color: #0f766e;
}

.language-menu-link:hover,
.language-menu-link:focus-visible,
.profile-menu-link:hover,
.profile-menu-link:focus-visible {
  background: #f4f4f5;
  color: #0f766e;
  outline: none;
}

a.text-sm.font-semibold.text-zinc-500.transition.hover\:text-zinc-900 {
  white-space: nowrap;
}

.cookiepopup-status-container {
  pointer-events: none;
  align-items: flex-start;
}

.cookiepopup-status-container > [data-cookiepopup-status-item] {
  backdrop-filter: blur(10px);
}

.cookiepopup-status-item {
  width: fit-content;
  min-width: 18rem;
  max-width: min(42rem, calc(100vw - 2rem));
  margin-inline: auto;
  text-align: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.cookiepopup-status-hidden {
  opacity: 0;
  transform: translateY(calc(-100% - 1.5rem));
}

.cookiepopup-status-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .cookiepopup-status-item {
    min-width: min(18rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
  }
}

[data-popup-html-preview] > :first-child {
  margin-top: 0;
}

[data-popup-html-preview] > :last-child {
  margin-bottom: 0;
}

[data-popup-html-preview] h1,
[data-popup-html-preview] h2,
[data-popup-html-preview] h3,
[data-popup-html-preview] h4,
[data-popup-html-preview] h5,
[data-popup-html-preview] h6 {
  margin: 0 0 0.75rem;
  color: #18181b;
  font-weight: 700;
  line-height: 1.2;
}

[data-popup-html-preview] h1 {
  font-size: 1.5rem;
}

[data-popup-html-preview] h2 {
  font-size: 1.25rem;
}

[data-popup-html-preview] h3 {
  font-size: 1.125rem;
}

[data-popup-html-preview] p,
[data-popup-html-preview] ul,
[data-popup-html-preview] ol,
[data-popup-html-preview] blockquote {
  margin: 0 0 0.75rem;
  color: #52525b;
  line-height: 1.6;
}

[data-popup-html-preview] ul,
[data-popup-html-preview] ol {
  padding-left: 1.25rem;
}

[data-popup-html-preview] ul {
  list-style: disc;
}

[data-popup-html-preview] ol {
  list-style: decimal;
}

[data-popup-html-preview] a {
  color: #1d4ed8;
  text-decoration: underline;
}

[data-popup-html-preview] strong {
  color: #18181b;
  font-weight: 700;
}

.cookiepopup-busy-open {
  cursor: progress;
}

.cookiepopup-busy-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookiepopup-busy-overlay.hidden {
  display: none;
}

.cookiepopup-busy-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 27, 0.24);
  backdrop-filter: blur(6px);
}

.cookiepopup-busy-overlay-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid #e4e4e7;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  color: #18181b;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 50px rgba(24, 24, 27, 0.14);
}

.cookiepopup-busy-overlay-spinner {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: cookiepopup-busy-spin 0.8s linear infinite;
}

.cookiepopup-busy-overlay-label {
  font-size: 0.95rem;
  font-weight: 600;
}

@keyframes cookiepopup-busy-spin {
  to {
    transform: rotate(360deg);
  }
}
