/* Imported from: ../../sub-components/Toast/styles.css */
.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast-stack {
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: calc(100vw - 32px);
  pointer-events: none;
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  min-width: 220px;
  max-width: 100%;
  border-radius: var(--r-pill, 999px);
  background: var(--ink, #15130f);
  color: var(--paper, #faf7f2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(21, 19, 15, 0.22);
  font-family: var(--font-body, system-ui, sans-serif);
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
  animation: cp-toast-in 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: var(--r-pill, 999px);
  background: rgba(255, 255, 255, 0.12);
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast__message {
  flex: 1 1 auto;
  font-weight: 500;
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast--success .cp-toast__icon {
  background: var(--sage, #6b8e5a);
  color: var(--paper, #faf7f2);
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast--error .cp-toast__icon {
  background: var(--clay, #c8542a);
  color: var(--paper, #faf7f2);
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast--info .cp-toast__icon {
  background: var(--blush, #e8a8a1);
  color: var(--ink, #15130f);
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast--warning .cp-toast__icon {
  background: var(--mustard, #d8a21b);
  color: var(--ink, #15130f);
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast__action {
  flex: 0 0 auto;
  margin-left: 4px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r-pill, 999px);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast__action:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

@keyframes cp-toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast-stack {
    bottom: 16px;
    width: calc(100vw - 24px);
  }

.cc_wVIiTW1dYB_CR4fQLTERM .cp-toast {
    min-width: 0;
    width: 100%;
  }
}

/* End import: ../../sub-components/Toast/styles.css */

.cc_wVIiTW1dYB_CR4fQLTERM .cp-header {
  width: 100%;
  display: block;
}

.cc_wVIiTW1dYB_CR4fQLTERM .cp-header:has(.cp-navbar--sticky) {
  position: sticky;
  top: 0;
  z-index: 50;
}
