/* 
  Silktide Consent Manager - https://silktide.com/consent-manager/  
*/

/* --------------------------------
  Global Styles
-------------------------------- */
/* Wrapper (Global) */
#stcm-wrapper {
  --boxShadow: -5px 5px 10px 0px #00000012, 0px 0px 50px 0px #0000001a;
  --fontFamily: 'Geist Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  --primaryColor: #F9D000;
  --backgroundColor: #050505;
  --textColor: #F4F0DF;
  --backdropBackgroundColor: #00000077;
  --backdropBackgroundBlur: 0px;
  --iconColor: #050505;
  --iconBackgroundColor: #F9D000;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  pointer-events: none;
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --------------------------------
Links
-------------------------------- */
#stcm-wrapper a {
  all: unset;
  display: inline-block;
  color: var(--primaryColor);
  text-decoration: underline;
}

#stcm-wrapper a:hover {
  cursor: pointer;
  color: var(--textColor);
}

/* --------------------------------
Focus Styles
-------------------------------- */
#stcm-wrapper a:focus,
#stcm-wrapper #stcm-banner button:focus,
#stcm-wrapper #stcm-modal button:focus,
#stcm-wrapper #stcm-icon:focus {
  outline: none;
}

#stcm-wrapper a:focus-visible,
#stcm-wrapper #stcm-banner button:focus-visible,
#stcm-wrapper #stcm-modal button:focus-visible,
#stcm-wrapper #stcm-icon:focus-visible {
  box-shadow: 0 0 0 1px var(--backgroundColor), 0 0 0 4px var(--primaryColor);
}

#stcm-wrapper #stcm-icon:focus {
  border-radius: 50%;
}

/* --------------------------------
General Styles
-------------------------------- */
#stcm-wrapper .stcm-button {
  color: var(--backgroundColor);
  background-color: var(--primaryColor);
  border: 2px solid var(--primaryColor);
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  border-radius: 5px;
}

#stcm-wrapper .stcm-button-primary:hover {
  background-color: var(--backgroundColor);
  color: var(--primaryColor);
}

#stcm-wrapper .stcm-button-secondary {
  background-color: var(--backgroundColor);
  color: var(--primaryColor);
}

#stcm-wrapper .stcm-button-secondary:hover {
  background-color: var(--primaryColor);
  color: var(--backgroundColor);
}

/* --------------------------------
Banner
-------------------------------- */
#stcm-banner {
  font-family: var(--fontFamily);
  color: var(--textColor);
  background-color: var(--backgroundColor);
  box-sizing: border-box;
  padding: 32px;
  border-radius: 12px;
  pointer-events: auto;
  border: 0px;
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 600px;
  overflow: auto;
  max-width: calc(100% - 32px);
  max-height: calc(100vh - 32px);
  transform: translate(0, -20px);
  opacity: 0;
  animation: stcm-slide-down 350ms ease-out;
  animation-delay: 0.3s;
  box-shadow: -5px 5px 10px 0px #00000012, 0px 0px 50px 0px #0000001a;
}

#stcm-banner.stcm-loaded {
  opacity: 1;
  transform: none;
  animation: none;
}

#stcm-banner:focus {
  border-radius: 50%;
}

#stcm-banner.stcm-pos-center {
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  position: fixed;
  transform: translate(-50%, calc(-50% - 20px));
  animation: stcm-slide-down-center 350ms ease-out forwards;
}

#stcm-banner.stcm-pos-bottom-left {
  bottom: 16px;
  left: 16px;
  position: fixed;
}

#stcm-banner.stcm-pos-bottom-center {
  bottom: 16px;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -20px);
  animation: stcm-slide-down-bottom-center 350ms ease-out forwards;
}

#stcm-banner .stcm-preferences-button {
  display: flex;
  gap: 5px;
  border: none;
  padding: 15px 0px;
  background-color: transparent;
  color: var(--primaryColor);
  cursor: pointer;
  font-size: 16px;
}

#stcm-banner .stcm-preferences-button span {
  display: block;
  white-space: nowrap;
  text-decoration: none;
  pointer-events: none;
}

#stcm-banner .stcm-preferences-button span:hover {
  color: inherit;
}

#stcm-banner p {
  font-size: 16px;
  line-height: 24px;
  color: var(--textColor);
  margin: 0px 0px 15px;
}

#stcm-banner a {
  display: inline-block;
  color: var(--primaryColor);
  text-decoration: underline;
  background-color: var(--backgroundColor);
}

#stcm-banner a:hover {
  color: var(--textColor);
}

#stcm-banner a.stcm-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--primaryColor); /* passed down to svg > path */
  margin-left: auto;
  width: 48px;
  height: 48px;
  text-decoration: none;
}

#stcm-banner .stcm-actions {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-top: 24px;
}

@media (min-width: 600px) {
  #stcm-banner .stcm-actions {
    flex-direction: row;
    align-items: center;
  }
}

#stcm-banner .stcm-actions-row {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

/* --------------------------------
Modal
-------------------------------- */
#stcm-modal {
  display: none;
  pointer-events: auto;
  overflow: auto;
  width: 800px;
  max-width: 100%;
  max-height: 100%;
  border: 0px;
  transform: translate(0px, -20px);
  opacity: 0;
  animation: stcm-slide-up-center 350ms ease-out forwards;
  box-shadow: -5px 5px 10px 0px #00000012, 0px 0px 50px 0px #0000001a;
  font-family: var(--fontFamily);
  color: var(--textColor);
  flex-direction: column;
  padding: 30px;
  background-color: var(--backgroundColor);
  border-radius: 12px;
  box-sizing: border-box;
}

/* --------------------------------
Modal - Header
-------------------------------- */
#stcm-modal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}

#stcm-modal h1 {
  font-family: var(--fontFamily);
  color: var(--textColor);
  font-size: 24px;
  font-weight: 500;
  margin: 0px;
}

#stcm-modal .stcm-modal-close {
  display: inline-flex;
  border: none;
  padding: 13px;
  cursor: pointer;
  background: var(--backgroundColor);
  color: var(--primaryColor);
}

#stcm-modal .stcm-modal-close svg {
  fill: var(--primaryColor);
}

/* --------------------------------
Modal - Content
-------------------------------- */
#stcm-modal section {
  flex: 1;
  margin-top: 32px;
}

#stcm-modal section::-webkit-scrollbar {
  display: block; /* Force scrollbars to show */
  width: 5px; /* Width of the scrollbar */
}

#stcm-modal section::-webkit-scrollbar-thumb {
  background-color: var(--textColor); /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the thumb */
}

#stcm-modal p {
  font-size: 16px;
  line-height: 24px;
  color: var(--textColor);
  opacity: 0.6;
  margin: 0px 0px 15px;
}

#stcm-modal p:last-of-type {
  margin: 0px;
}

#stcm-modal fieldset {
  padding: 0px;
  border: none;
  margin: 0px 0px 32px;
}

#stcm-modal fieldset:last-of-type {
  margin: 0px;
}

#stcm-modal legend {
  padding: 0px;
  margin: 0px 0px 10px;
  font-weight: 700;
  color: var(--textColor);
  font-size: 16px;
}

#stcm-modal .stcm-consent-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;  
}

/* --------------------------------
Modal - Switches
-------------------------------- */
#stcm-modal .stcm-toggle {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  height: 34px;
  width: 74px;
  cursor: pointer;
}

#stcm-modal .stcm-toggle:focus-within {
  outline: none;
  box-shadow: 0 0 0 2px var(--backgroundColor), 0 0 0 4px #ffffff;
  border-radius: 25px;
}

#stcm-modal .stcm-toggle input {
  opacity: 0;
  position: absolute;
}

/* Unchecked Switch Styles */
#stcm-modal .stcm-toggle-track {
  position: relative;
  display: block;
  height: 34px;
  width: 74px;
  background: var(--textColor);
  border-radius: 25px;
}

#stcm-modal .stcm-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  height: 30px;
  width: 30px;
  background: var(--backgroundColor);
  border-radius: 50%;
  transition: left 150ms ease-out;
}

#stcm-modal .stcm-toggle-off,
#stcm-modal .stcm-toggle-on {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  color: var(--backgroundColor);
  position: absolute;
  top: 5px;
  right: 8px;
  transition: right 150ms ease-out, opacity 150ms ease-out;
}

#stcm-modal .stcm-toggle-off {
  opacity: 1;
}

#stcm-modal .stcm-toggle-on {
  opacity: 0;
}

/* Checked Switch Styles */
#stcm-modal .stcm-toggle input:checked + .stcm-toggle-track {
  background: var(--primaryColor);
}

#stcm-modal .stcm-toggle input:checked ~ .stcm-toggle-thumb {
  left: calc(100% - 32px);
}

#stcm-modal .stcm-toggle input:checked ~ .stcm-toggle-off {
  right: calc(100% - 32px);
  opacity: 0;
}

#stcm-modal .stcm-toggle input:checked ~ .stcm-toggle-on {
  right: calc(100% - 34px);
  opacity: 1;
}

#stcm-modal .stcm-toggle input:disabled + .stcm-toggle-track {
  opacity: 0.65;
  filter: grayscale(100%);
  cursor: not-allowed;
}

/* --------------------------------
Modal - Footer
-------------------------------- */
#stcm-modal footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 600px) {
  #stcm-modal footer {
    flex-direction: row;
    align-items: center;
  }
}

#stcm-modal footer a {
  margin-left: auto;
  padding: 0;
}

#stcm-modal footer a.stcm-credit-link {
  text-decoration: none;
}

#stcm-modal footer a.stcm-credit-link:hover {
  text-decoration: underline;
}

/* Cookie Icon */
#stcm-icon {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 10px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0px;
  border: none;
  background-color: var(--iconColor);
  cursor: pointer;
  box-shadow: 0px 0px 6px 0px #0000001a;
  pointer-events: auto;
  animation: stcm-fade-in 0.3s ease-in-out forwards;
}

#stcm-icon.stcm-pos-bottom-right {
  left: auto;
  right: 10px;
}

#stcm-icon svg {
  fill: var(--iconBackgroundColor);
}

/* --------------------------------
Backdrop
-------------------------------- */
#stcm-backdrop {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--backdropBackgroundColor);
  backdrop-filter: blur(var(--backdropBackgroundBlur));
  pointer-events: all;
}

/* --------------------------------
Animations
-------------------------------- */
@keyframes stcm-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes stcm-slide-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stcm-slide-down-center {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 20px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes stcm-slide-down-bottom-center {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes stcm-slide-up-center {
  from {
    opacity: 0;
    transform: translate(0px, 20px);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

/* --------------------------------
Animation - backdrop click feedback
-------------------------------- */
@keyframes stcm-nudge {
  0%, 100% { right: 16px; }
  10%, 30%, 50%, 70%, 90% { right: 20px; }
  20%, 40%, 60%, 80% { right: 12px; }
}

/* Apply to banner */
#stcm-banner.stcm-nudge {
  animation: stcm-nudge 1s ease-in-out;
}

/* Apply to modal */
#stcm-modal.stcm-nudge {
  animation: stcm-nudge 0.5s ease-in-out;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  #stcm-banner.stcm-nudge,
  #stcm-modal.stcm-nudge {
    animation: stcm-pulse 0.5s ease-in-out;
  }
  
  @keyframes stcm-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
  }
}

/* ============================================================
   edo – Design Override (Dark Theme)
   ============================================================ */

#stcm-wrapper {
  --fontFamily:              'Geist Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  --primaryColor:            #7C5CFF;
  --backgroundColor:         #0D1322;
  --textColor:               #E7EAF5;
  --backdropBackgroundColor: rgba(5, 7, 15, 0.72);
  --backdropBackgroundBlur:  6px;
  --iconColor:               #0D1322;
  --iconBackgroundColor:     #7C5CFF;
  --boxShadow:               0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* ── Banner ────────────────────────────────────────────────── */
#stcm-banner {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px 32px;
  bottom: 20px;
  right: 20px;
  width: 520px;
  background: rgba(13, 19, 34, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation-delay: 0.6s;
}

#stcm-banner h2,
#stcm-banner h3 {
  font-family: 'Geist Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #E7EAF5;
  margin: 0 0 10px;
}

#stcm-banner p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #98A2C3;
  margin: 0 0 4px;
}

#stcm-banner a {
  background-color: transparent;
  color: #7C5CFF;
}

#stcm-banner a:hover {
  color: #E7EAF5;
}

/* ── Buttons (wie .btn auf der Website) ────────────────────── */
#stcm-wrapper .stcm-button {
  font-family: var(--fontFamily);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

#stcm-wrapper .stcm-button-primary {
  background: #7C5CFF;
  color: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.4), 0 10px 34px rgba(124, 92, 255, 0.35);
}

#stcm-wrapper .stcm-button-primary:hover {
  transform: translateY(-3px);
  color: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.6), 0 18px 50px rgba(124, 92, 255, 0.5);
}

#stcm-wrapper .stcm-button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #E7EAF5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

#stcm-wrapper .stcm-button-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  color: #E7EAF5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

#stcm-banner .stcm-preferences-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  font-family: var(--fontFamily);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.04);
  color: #E7EAF5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}

#stcm-banner .stcm-preferences-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  color: #E7EAF5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

#stcm-banner .stcm-preferences-button span {
  text-decoration: none;
  pointer-events: none;
}

#stcm-banner .stcm-actions {
  margin-top: 20px;
  gap: 10px;
}

#stcm-banner .stcm-actions-row {
  align-items: center;
}

/* ── Links ─────────────────────────────────────────────────── */
#stcm-wrapper a { color: #7C5CFF; }
#stcm-wrapper a:hover { color: #E7EAF5; }

/* ── Branding ausblenden ───────────────────────────────────── */
#stcm-banner a.stcm-logo,
#stcm-modal footer a.stcm-credit-link,
#stcm-modal footer a[href*="silktide"] {
  display: none !important;
}

/* ── Modal ─────────────────────────────────────────────────── */
#stcm-modal {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 32px;
  background: #0D1322;
  max-height: 90vh;
}

#stcm-modal h1 {
  font-family: 'Geist Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #E7EAF5;
}

#stcm-modal p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #98A2C3;
  opacity: 1;
}

#stcm-modal legend {
  font-size: 0.9rem;
  font-weight: 600;
  color: #E7EAF5;
  margin-bottom: 6px;
}

#stcm-modal fieldset {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#stcm-modal fieldset:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#stcm-modal .stcm-modal-close {
  background: transparent;
  color: #5E6A8F;
  border-radius: 12px;
  padding: 8px;
  transition: color 0.2s, background 0.2s;
}

#stcm-modal .stcm-modal-close:hover {
  color: #7C5CFF;
  background: rgba(255, 255, 255, 0.06);
}

#stcm-modal .stcm-modal-close svg { fill: currentColor; }

/* ── Toggle-Schalter ───────────────────────────────────────── */
#stcm-modal .stcm-toggle-track { background: rgba(255, 255, 255, 0.12); }
#stcm-modal .stcm-toggle-thumb { background: #E7EAF5; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); }
#stcm-modal .stcm-toggle input:checked + .stcm-toggle-track { background: #7C5CFF; }
#stcm-modal .stcm-toggle-off { color: #98A2C3; }
#stcm-modal .stcm-toggle-on  { color: #FFFFFF; }

/* ── Modal Footer ──────────────────────────────────────────── */
#stcm-modal footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 20px;
  gap: 10px;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
#stcm-modal section::-webkit-scrollbar { width: 4px; }
#stcm-modal section::-webkit-scrollbar-thumb {
  background-color: rgba(124, 92, 255, 0.35);
  border-radius: 4px;
}

/* ── Cookie-Icon ───────────────────────────────────────────── */
#stcm-icon {
  display: none !important;
}

/* ── Focus-Styles ──────────────────────────────────────────── */
#stcm-wrapper a:focus,
#stcm-wrapper #stcm-banner button:focus,
#stcm-wrapper #stcm-modal button:focus,
#stcm-wrapper #stcm-icon:focus {
  outline: none;
}

#stcm-wrapper a:focus-visible,
#stcm-wrapper #stcm-banner button:focus-visible,
#stcm-wrapper #stcm-modal button:focus-visible,
#stcm-wrapper #stcm-icon:focus-visible {
  box-shadow: 0 0 0 2px #0D1322, 0 0 0 4px #7C5CFF;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 560px) {
  #stcm-banner {
    bottom: 0; right: 0; left: 0;
    width: 100%; max-width: 100%;
    border-radius: 18px 18px 0 0;
    border-left: none; border-right: none; border-bottom: none;
    padding: 24px 20px;
  }
  #stcm-banner .stcm-actions { flex-direction: column; gap: 8px; }
  #stcm-wrapper .stcm-button { width: 100%; text-align: center; }
  #stcm-modal { border-radius: 18px 18px 0 0; padding: 24px 20px; max-height: 92vh; }
}

/* ── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #stcm-banner,
  #stcm-modal,
  #stcm-icon {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Light Theme (aktiv via data-theme="light" auf <html>)
   ============================================================ */
html[data-theme="light"] #stcm-wrapper {
  --backgroundColor:         #FFFFFF;
  --textColor:               #0E1226;
  --backdropBackgroundColor: rgba(237, 238, 245, 0.72);
  --iconColor:               #FFFFFF;
  --boxShadow:               0 24px 70px rgba(14, 18, 38, 0.18), 0 0 0 1px rgba(14, 18, 38, 0.08);
}

html[data-theme="light"] #stcm-banner {
  border-color: rgba(14, 18, 38, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] #stcm-banner h2,
html[data-theme="light"] #stcm-banner h3 {
  color: #0E1226;
}

html[data-theme="light"] #stcm-banner p {
  color: #454B66;
}

html[data-theme="light"] #stcm-banner a:hover,
html[data-theme="light"] #stcm-wrapper a:hover {
  color: #0E1226;
}

html[data-theme="light"] #stcm-wrapper .stcm-button-secondary {
  background: rgba(14, 18, 38, 0.05);
  color: #0E1226;
  box-shadow: inset 0 0 0 1px rgba(14, 18, 38, 0.14);
}

html[data-theme="light"] #stcm-wrapper .stcm-button-primary {
  background: #7C5CFF;
  color: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(124, 92, 255, 0.4), 0 10px 30px rgba(124, 92, 255, 0.28);
}

html[data-theme="light"] #stcm-wrapper .stcm-button-primary:hover {
  background: #5B3DF0;
  color: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(91, 61, 240, 0.5), 0 16px 38px rgba(91, 61, 240, 0.32);
}

html[data-theme="light"] #stcm-wrapper .stcm-button-secondary:hover {
  background: rgba(14, 18, 38, 0.08);
  color: #0E1226;
  box-shadow: inset 0 0 0 1px rgba(14, 18, 38, 0.22);
}

html[data-theme="light"] #stcm-banner .stcm-preferences-button {
  background: rgba(14, 18, 38, 0.05);
  color: #0E1226;
  box-shadow: inset 0 0 0 1px rgba(14, 18, 38, 0.14);
}

html[data-theme="light"] #stcm-banner .stcm-preferences-button:hover {
  background: rgba(14, 18, 38, 0.08);
  color: #0E1226;
  box-shadow: inset 0 0 0 1px rgba(14, 18, 38, 0.22);
}

html[data-theme="light"] #stcm-modal {
  border-color: rgba(14, 18, 38, 0.12);
  background: #FFFFFF;
}

html[data-theme="light"] #stcm-modal h1,
html[data-theme="light"] #stcm-modal legend {
  color: #0E1226;
}

html[data-theme="light"] #stcm-modal p {
  color: #454B66;
}

html[data-theme="light"] #stcm-modal fieldset {
  border-bottom-color: rgba(14, 18, 38, 0.08);
}

html[data-theme="light"] #stcm-modal .stcm-modal-close {
  color: #767CA0;
}

html[data-theme="light"] #stcm-modal .stcm-modal-close:hover {
  background: rgba(14, 18, 38, 0.06);
}

html[data-theme="light"] #stcm-modal .stcm-toggle-track { background: rgba(14, 18, 38, 0.12); }
html[data-theme="light"] #stcm-modal .stcm-toggle-thumb { background: #FFFFFF; }
html[data-theme="light"] #stcm-modal .stcm-toggle-off { color: #454B66; }

html[data-theme="light"] #stcm-modal footer {
  border-top-color: rgba(14, 18, 38, 0.08);
}

html[data-theme="light"] #stcm-wrapper a:focus-visible,
html[data-theme="light"] #stcm-wrapper #stcm-banner button:focus-visible,
html[data-theme="light"] #stcm-wrapper #stcm-modal button:focus-visible,
html[data-theme="light"] #stcm-wrapper #stcm-icon:focus-visible {
  box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px #7C5CFF;
}
