/* Clean Consent 1.0.6 — deliberately small, cool and non-modal. */
#cleanconsent.cc-card {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2147483000;
  width: min(410px, calc(100vw - 28px));
  box-sizing: border-box;
  padding: 17px 18px 15px;
  color: #272b30;
  background: rgba(255,255,255,.985);
  border: 2px solid var(--cc-accent, #20242a);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.11);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.45;
}
#cleanconsent[hidden], #cleanconsent [hidden] { display: none !important; }
#cleanconsent .cc-title {
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: .01em;
  color: #1f2328;
}
#cleanconsent p { margin: 0 0 12px; color: #4b5158; }
#cleanconsent .cc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 0 9px; }
#cleanconsent .cc-actions-single { grid-template-columns: 1fr; }
#cleanconsent .cc-btn {
  appearance: none;
  min-height: 35px;
  padding: 7px 10px;
  border: 1px solid var(--cc-accent, #20242a);
  border-radius: 5px;
  background: #fff;
  color: var(--cc-accent, #20242a);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
#cleanconsent .cc-btn:hover,
#cleanconsent .cc-btn:focus-visible { background: #f2f3f4; outline: none; }
#cleanconsent .cc-links { color: #7a8087; font-size: 12px; line-height: 1.4; }
#cleanconsent .cc-links a,
#cleanconsent .cc-linkbtn {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: #555c63;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
#cleanconsent .cc-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 9px 0;
  border-top: 1px solid #eceef0;
  cursor: pointer;
}
#cleanconsent .cc-choice > span:first-child { display: block; min-width: 0; }
#cleanconsent .cc-choice strong { display: block; font-size: 13px; font-weight: 600; color: #2b3035; }
#cleanconsent .cc-choice small { display: block; margin-top: 2px; color: #70767d; font-size: 11.5px; line-height: 1.35; }
#cleanconsent .cc-choice input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--cc-accent, #20242a); }
#cleanconsent .cc-required { cursor: default; }
#cleanconsent .cc-always { white-space: nowrap; font-size: 11px; color: #6f757b; }
#cleanconsent .cc-details .cc-actions { margin-top: 11px; }
.cc-footer-entry {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 7px 10px 10px;
  font-size: 11px;
  line-height: 1.2;
  color: #777;
}
.cc-footer-entry button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
[data-cleanconsent-category][data-cleanconsent-src]:is(iframe,img) { visibility: hidden; }
@media (max-width: 620px) {
  #cleanconsent.cc-card {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 15px 15px 13px;
    border-radius: 7px;
    font-size: 12.5px;
  }
  #cleanconsent .cc-title { font-size: 14px; }
  #cleanconsent .cc-actions { gap: 7px; }
  #cleanconsent .cc-btn { min-height: 34px; padding: 6px 8px; font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  #cleanconsent .cc-btn { transition: none; }
}
