/* Shared consent presentation: independent of the page's main stylesheet. */
#cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 100001;
  max-height: calc(100vh - 16px);
  max-height: calc(100dvh - 16px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  color: #1c2075;
  border-top: 1px solid #e1e2ef;
  box-shadow: 0 -8px 32px rgba(22, 28, 112, .12);
  visibility: hidden;
  transform: translateY(100%);
  transition: transform .3s ease, visibility .3s;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
}
#cookie-consent.cc-visible { visibility: visible; transform: translateY(0); }
#cookie-consent, #cookie-consent * { box-sizing: border-box; }
#cookie-consent .cc-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 28px max(22px, env(safe-area-inset-bottom));
  background: #fff;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#cookie-consent .cc-text { margin: 0 0 16px; color: #1c2075; font-size: 15px; line-height: 1.5; }
#cookie-consent .cc-text strong { display: block; margin: 0 0 6px; font-size: 19px; line-height: 1.3; font-weight: 700; }
#cookie-consent .cc-text p { max-width: none; margin: 0; color: #565a7f; opacity: 1; font-size: inherit; line-height: inherit; }
#cookie-consent .cc-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
#cookie-consent .cc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 24px;
  font: inherit;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
  cursor: pointer;
  box-shadow: none;
  transition: background-color .15s, border-color .15s;
}
#cookie-consent .cc-primary { background: #ef006e; color: #fff; }
#cookie-consent .cc-dark { background: #1c2075; color: #fff; }
#cookie-consent .cc-outline { background: #fff; color: #1c2075; border-color: #c7c9df; }
#cookie-consent .cc-primary:hover { background: #d50062; filter: none; }
#cookie-consent .cc-dark:hover { background: #303690; filter: none; }
#cookie-consent .cc-outline:hover { background: #f5f5fc; }
#cookie-consent .cc-btn:focus-visible, #cookie-consent .cc-switch:focus-within { outline: 3px solid #2585b0; outline-offset: 3px; }
#cookie-consent .cc-panel { margin: 18px 0 0; padding: 8px 0 0; border-top: 1px solid #e1e2ef; }
#cookie-consent .cc-row { display: flex; gap: 18px; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid #e1e2ef; }
#cookie-consent .cc-info { flex: 1; min-width: 0; }
#cookie-consent .cc-info strong { display: block; color: #1c2075; font-size: 15px; line-height: 1.5; }
#cookie-consent .cc-info span { color: #565a7f; opacity: 1; font-size: 14px; line-height: 1.5; }
#cookie-consent .cc-always { color: #287452; font-size: 13px; font-weight: 600; white-space: nowrap; }
#cookie-consent .cc-switch { position: relative; display: inline-block; flex: 0 0 48px; width: 48px; height: 44px; }
#cookie-consent .cc-switch input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
#cookie-consent .cc-track { position: absolute; inset: 9px 0; background: #9b9fb6; border-radius: 24px; cursor: pointer; pointer-events: none; transition: background-color .15s; }
#cookie-consent .cc-track:before { content: ''; position: absolute; left: 3px; bottom: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .15s; }
#cookie-consent .cc-switch input:checked + .cc-track { background: #ef006e; }
#cookie-consent .cc-switch input:checked + .cc-track:before { transform: translateX(22px); }
#cookie-consent .cc-panel .cc-btn { margin-top: 18px; }
@media (max-width: 640px) {
  #cookie-consent .cc-inner { padding: 20px max(20px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left)); }
  #cookie-consent .cc-buttons { flex-direction: column; gap: 8px; }
  #cookie-consent .cc-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  #cookie-consent, #cookie-consent .cc-track, #cookie-consent .cc-track:before { transition: none; }
}
@media print { #cookie-consent { display: none !important; } }
