.dp-widget,
.dp-top-donors,
.dp-wall,
.dp-progress {
--dp-ink: #10202b;
--dp-ink-soft: #3a5361;
--dp-paper: #eff2ed;
--dp-paper-raised: #ffffff;
--dp-brass: #a9832e;
--dp-brass-soft: #f1e6c8;
--dp-signal: #2f6f5e;
--dp-signal-dark: #21503f;
--dp-line: #d7dad1;
--dp-danger: #b3492a;
--dp-radius: 18px;
--dp-font-display: 'Fraunces', Georgia, serif;
--dp-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--dp-font-mono: 'IBM Plex Mono', 'Courier New', monospace;
box-sizing: border-box;
font-family: var(--dp-font-body);
color: var(--dp-ink);
}
.dp-widget *, .dp-top-donors *, .dp-wall *, .dp-progress * {
box-sizing: border-box;
}
.dp-widget button:focus-visible,
.dp-widget input:focus-visible,
.dp-widget select:focus-visible,
.dp-widget textarea:focus-visible,
.dp-widget a:focus-visible {
outline: none;
box-shadow: 0 0 0 2px var(--dp-paper-raised), 0 0 0 4px var(--dp-signal);
} .dp-tab:focus-visible,
.dp-chip:focus-visible,
.dp-stepper-btn:focus-visible,
.dp-copy-btn:focus-visible {
box-shadow: 0 0 0 2px var(--dp-signal);
} .dp-widget {
position: relative;
max-width: 420px;
margin: 0 auto;
background: var(--dp-paper-raised);
border: 1px solid var(--dp-line);
border-radius: var(--dp-radius);
padding: 28px 26px 24px;
box-shadow: 0 1px 2px rgba(16, 32, 43, 0.04), 0 12px 32px -18px rgba(16, 32, 43, 0.35);
animation: dp-widget-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes dp-widget-in {
from { opacity: 0; transform: translateY(14px); }
to { opacity: 1; transform: translateY(0); }
}
.dp-widget__stub {
position: absolute;
top: -1px;
left: 24px;
right: 24px;
display: flex;
justify-content: space-between;
transform: translateY(-50%);
pointer-events: none;
}
.dp-widget__stub-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--dp-paper);
border: 1px solid var(--dp-line);
}
.dp-widget__header-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-bottom: 6px;
}
.dp-lang-select {
font-family: var(--dp-font-mono);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.04em;
color: var(--dp-ink-soft);
background: var(--dp-paper);
border: 1px solid var(--dp-line);
border-radius: 999px;
padding: 4px 10px;
cursor: pointer;
}
.dp-lang-select:focus {
outline: none;
border-color: var(--dp-signal);
}
.dp-widget__eyebrow {
flex: 1;
font-family: var(--dp-font-mono);
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 11px;
color: var(--dp-brass);
margin: 0;
font-weight: 500;
} .dp-align-center .dp-widget__eyebrow,
.dp-align-center .dp-widget__title,
.dp-align-center .dp-widget__desc,
.dp-align-center .dp-label,
.dp-align-center .dp-thanks-card p[data-dp-thanks-message] {
text-align: center;
}
.dp-align-right .dp-widget__eyebrow,
.dp-align-right .dp-widget__title,
.dp-align-right .dp-widget__desc,
.dp-align-right .dp-label,
.dp-align-right .dp-thanks-card p[data-dp-thanks-message] {
text-align: right;
}
.dp-widget__title {
font-family: var(--dp-font-display);
font-size: 26px;
font-weight: 600;
line-height: 1.15;
margin: 0 0 8px;
color: var(--dp-ink);
}
.dp-widget__desc {
font-size: 14px;
line-height: 1.5;
color: var(--dp-ink-soft);
margin: 0 0 20px;
} .dp-tabs {
position: relative;
display: flex;
flex-wrap: wrap;
gap: 6px;
background: var(--dp-paper);
padding: 4px;
border-radius: 18px;
margin-bottom: 20px;
}
.dp-tab-indicator {
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
border-radius: 999px;
background: var(--dp-ink);
transition: transform 0.28s cubic-bezier(0.65, 0, 0.35, 1), width 0.28s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.15s ease;
z-index: 0;
pointer-events: none;
opacity: 0;
}
.dp-tab {
position: relative;
z-index: 1;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
flex: 1 1 auto;
white-space: nowrap;
border: none;
background: transparent;
padding: 9px 14px;
border-radius: 999px;
font-family: var(--dp-font-body);
font-size: 13px;
font-weight: 600;
color: var(--dp-ink-soft);
cursor: pointer;
transition: color 0.2s ease;
}
.dp-method-icon {
flex-shrink: 0;
border-radius: 50%;
transition: transform 0.2s ease;
}
.dp-tab:hover .dp-method-icon {
transform: scale(1.08);
}
.dp-tab.is-active {
color: #fff;
}
.dp-panel-method-label {
display: flex;
align-items: center;
gap: 8px;
font-family: var(--dp-font-body);
font-weight: 600;
font-size: 14px;
color: var(--dp-ink);
margin-bottom: 12px;
}
.dp-privacy-link {
display: block;
margin-top: 6px;
color: var(--dp-signal-dark);
text-decoration: underline;
} .dp-donors-panel[hidden] {
display: none !important;
}
.dp-donors-panel:not([hidden]) {
display: block;
animation: dp-fade-in 0.2s ease;
}
.dp-donors-panel__section {
margin-bottom: 24px;
}
.dp-donors-panel__section:last-child {
margin-bottom: 0;
}
.dp-donors-panel .dp-donor-list,
.dp-donors-panel .dp-wall-list {
margin-top: 12px;
max-height: 260px;
overflow-y: auto;
}
.dp-tab--donors {
flex-shrink: 0;
}
.dp-trust-badges {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-top: 22px;
margin-bottom: 12px;
}
.dp-trust-badge {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 11px;
font-weight: 600;
color: var(--dp-ink-soft);
background: var(--dp-paper);
border: 1px solid var(--dp-line);
border-radius: 999px;
padding: 5px 11px;
}
.dp-trust-badge svg {
flex-shrink: 0;
color: var(--dp-signal);
}
.dp-creator-credit {
margin-top: 14px;
padding-top: 12px;
border-top: 1px dotted var(--dp-line);
font-size: 11px;
color: var(--dp-ink-soft);
text-align: center;
}
.dp-creator-credit a {
color: var(--dp-signal-dark);
font-weight: 600;
text-decoration: none;
}
.dp-creator-credit a:hover {
text-decoration: underline;
}
.dp-tab.is-active {
background: var(--dp-ink);
color: #fff;
} .dp-label {
display: block;
font-size: 12px;
font-weight: 600;
color: var(--dp-ink-soft);
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.dp-amount-block {
margin-bottom: 20px;
padding-bottom: 18px;
border-bottom: 1px dashed var(--dp-line);
}
.dp-amount-input {
display: flex;
align-items: center;
gap: 6px;
border: 1.5px solid var(--dp-line);
border-radius: 10px;
padding: 6px 8px;
background: var(--dp-paper);
}
.dp-stepper-btn {
flex-shrink: 0;
width: 32px;
height: 32px;
border-radius: 8px;
border: 1px solid var(--dp-line);
background: var(--dp-paper-raised);
color: var(--dp-ink);
font-size: 16px;
line-height: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.15s ease, transform 0.1s ease;
}
.dp-stepper-btn:hover {
background: var(--dp-signal);
color: #fff;
border-color: var(--dp-signal);
}
.dp-stepper-btn:active {
transform: scale(0.92);
}
.dp-amount-input:focus-within {
border-color: var(--dp-signal);
}
.dp-amount-symbol,
.dp-amount-currency {
font-family: var(--dp-font-mono);
color: var(--dp-ink-soft);
font-size: 15px;
}
.dp-amount-input input {
flex: 1;
border: none;
background: transparent;
font-family: var(--dp-font-mono);
font-size: 20px;
font-weight: 500;
color: var(--dp-ink);
outline: none;
min-width: 0;
text-align: center;
}
.dp-amount-input input::-webkit-outer-spin-button,
.dp-amount-input input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.dp-amount-input input[type='number'] {
-moz-appearance: textfield;
}
.dp-chip-row {
display: flex;
gap: 8px;
margin-top: 10px;
flex-wrap: wrap;
}
.dp-chip {
display: inline-flex;
align-items: center;
gap: 4px;
border: 1px solid var(--dp-line);
background: #fff;
border-radius: 999px;
padding: 6px 14px;
font-size: 13px;
font-family: var(--dp-font-mono);
color: var(--dp-ink);
cursor: pointer;
transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.dp-chip:active {
transform: scale(0.95);
}
.dp-chip__check {
display: inline-flex;
align-items: center;
width: 0;
opacity: 0;
overflow: hidden;
transition: width 0.2s ease, opacity 0.2s ease;
}
.dp-chip__check svg {
flex-shrink: 0;
}
.dp-chip.is-active .dp-chip__check {
width: 13px;
opacity: 1;
}
.dp-chip:hover {
border-color: var(--dp-signal);
}
.dp-chip.is-active {
background: var(--dp-signal);
border-color: var(--dp-signal);
color: #fff;
} .dp-panel {
display: none;
}
.dp-panel.is-active {
display: block;
animation: dp-fade-in 0.2s ease;
}
@keyframes dp-fade-in {
from { opacity: 0; transform: translateY(2px); }
to { opacity: 1; transform: translateY(0); }
}
.dp-panel-hint {
font-size: 12px;
color: var(--dp-ink-soft);
margin: 10px 0 0;
line-height: 1.5;
}
.dp-paypal-container {
min-height: 45px;
}
.dp-paypal-fallback {
margin-top: 10px;
}
.dp-paypal-fallback-hint {
color: var(--dp-danger);
} .dp-crypto {
display: flex;
gap: 16px;
align-items: center;
padding: 18px;
margin-bottom: 4px;
border: 1px solid var(--dp-line);
border-left: 3px solid var(--dp-crypto-color, var(--dp-brass));
border-radius: 12px;
background: var(--dp-paper);
}
.dp-crypto__qr img {
display: block;
border-radius: 6px;
border: 1px solid var(--dp-line);
background: #fff;
padding: 4px;
}
.dp-crypto__info {
display: flex;
flex-direction: column;
gap: 8px;
min-width: 0;
}
.dp-crypto__badge {
font-family: var(--dp-font-mono);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.06em;
color: var(--dp-crypto-color, var(--dp-brass));
text-transform: uppercase;
}
.dp-crypto__address {
font-family: var(--dp-font-mono);
font-size: 12px;
background: #fff;
border: 1px solid var(--dp-line);
border-radius: 6px;
padding: 7px 9px;
word-break: break-all;
color: var(--dp-ink);
}
.dp-copy-btn {
align-self: flex-start;
border: 1px solid var(--dp-ink);
background: transparent;
color: var(--dp-ink);
font-size: 12px;
font-weight: 600;
padding: 6px 12px;
border-radius: 999px;
cursor: pointer;
transition: background 0.15s ease, color 0.15s ease;
}
.dp-copy-btn:hover {
background: var(--dp-ink);
color: #fff;
}
.dp-copy-btn.is-copied {
background: var(--dp-signal);
border-color: var(--dp-signal);
color: #fff;
animation: dp-copy-pulse 0.4s ease;
}
@keyframes dp-copy-pulse {
0% { transform: scale(1); }
40% { transform: scale(1.06); }
100% { transform: scale(1); }
} .dp-btn {
display: inline-block;
width: 100%;
text-align: center;
font-family: var(--dp-font-body);
font-size: 14px;
font-weight: 600;
padding: 12px 16px;
border-radius: 10px;
cursor: pointer;
margin-top: 16px;
transition: opacity 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.dp-btn:active {
transform: scale(0.98);
}
.dp-report-toggle {
margin-top: 18px;
}
.dp-btn--solid {
background: var(--dp-signal);
border: 1px solid var(--dp-signal);
color: #fff;
}
.dp-btn--solid:hover {
background: var(--dp-signal-dark);
}
.dp-btn--outline {
background: transparent;
border: 1px solid var(--dp-line);
color: var(--dp-ink);
}
.dp-btn--outline:hover {
border-color: var(--dp-ink);
} .dp-report-form {
margin-top: 16px;
padding-top: 16px;
border-top: 1px dashed var(--dp-line);
flex-direction: column;
gap: 10px;
}
.dp-report-form[hidden] {
display: none !important;
}
.dp-report-form:not([hidden]) {
display: flex;
}
.dp-report-form input[type="text"],
.dp-report-form textarea {
font-family: var(--dp-font-body);
font-size: 13px;
padding: 9px 11px;
border: 1px solid var(--dp-line);
border-radius: 8px;
background: #fff;
color: var(--dp-ink);
resize: vertical;
}
.dp-report-form textarea {
min-height: 60px;
}
.dp-hp-field {
position: absolute !important;
left: -9999px !important;
width: 1px;
height: 1px;
opacity: 0;
pointer-events: none;
}
.dp-checkbox {
display: flex;
align-items: center;
gap: 8px;
font-size: 12px;
color: var(--dp-ink-soft);
} .dp-security-note {
display: flex;
gap: 8px;
align-items: flex-start;
font-size: 11.5px;
line-height: 1.5;
color: var(--dp-ink-soft);
background: var(--dp-paper);
border-radius: 10px;
padding: 10px 12px;
margin-top: 20px;
}
.dp-lock-icon {
flex-shrink: 0;
} .dp-feedback {
margin-top: 12px;
font-size: 13px;
padding: 10px 12px;
border-radius: 8px;
background: #fbeae5;
color: var(--dp-danger);
}
.dp-feedback.is-success {
background: #e7f2ec;
color: var(--dp-signal-dark);
} .dp-thanks-overlay {
position: absolute;
inset: 0;
background: rgba(10, 16, 28, 0.72);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
border-radius: var(--dp-radius);
align-items: center;
justify-content: center;
padding: 24px;
z-index: 5;
} .dp-thanks-overlay[hidden] {
display: none !important;
}
.dp-thanks-overlay:not([hidden]) {
display: flex;
animation: dp-overlay-in 0.25s ease;
}
@keyframes dp-overlay-in {
from { opacity: 0; }
to { opacity: 1; }
}
.dp-thanks-card {
text-align: center;
color: #fff;
max-width: 280px;
animation: dp-thanks-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes dp-thanks-pop {
from { opacity: 0; transform: scale(0.85) translateY(8px); }
to { opacity: 1; transform: scale(1) translateY(0); }
}
.dp-thanks-seal {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
border-radius: 50%;
background: linear-gradient(135deg, var(--dp-signal), var(--dp-brass));
color: #fff;
font-size: 26px;
margin-bottom: 16px;
box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.5);
}
.dp-thanks-seal::before,
.dp-thanks-seal::after {
content: '';
position: absolute;
inset: -6px;
border-radius: 50%;
border: 1.5px solid rgba(255, 255, 255, 0.5);
animation: dp-ring-pulse 1.8s ease-out infinite;
}
.dp-thanks-seal::after {
animation-delay: 0.5s;
}
@keyframes dp-ring-pulse {
0% { transform: scale(0.85); opacity: 0.8; }
100% { transform: scale(1.6); opacity: 0; }
}
.dp-thanks-card h4 {
font-family: var(--dp-font-display);
font-size: 22px;
margin: 0 0 8px;
}
.dp-thanks-card p {
font-size: 14px;
line-height: 1.5;
color: #d7dad1;
margin: 0 0 16px;
}
.dp-thanks-card .dp-btn {
border-color: rgba(255,255,255,0.35);
color: #fff;
} .dp-top-donors {
max-width: 420px;
margin: 0 auto;
background: var(--dp-paper-raised);
border: 1px solid var(--dp-line);
border-radius: var(--dp-radius);
padding: 26px;
}
.dp-donor-list {
list-style: none;
margin: 16px 0 0;
padding: 0;
}
.dp-donor-row {
display: flex;
align-items: center;
gap: 12px;
padding: 11px 0;
border-bottom: 1px dotted var(--dp-line);
}
.dp-donor-row:last-child {
border-bottom: none;
}
.dp-donor-rank {
font-family: var(--dp-font-mono);
font-size: 12px;
color: var(--dp-ink-soft);
width: 22px;
}
.dp-donor-row.is-first .dp-donor-rank {
color: var(--dp-brass);
font-weight: 700;
}
.dp-donor-name {
flex: 1;
font-size: 14px;
font-weight: 500;
color: var(--dp-ink);
}
.dp-donor-row.is-first .dp-donor-name {
font-family: var(--dp-font-display);
font-size: 15.5px;
}
.dp-donor-amount {
font-family: var(--dp-font-mono);
font-size: 13px;
color: var(--dp-signal-dark);
font-weight: 600;
} .dp-wall {
max-width: 480px;
margin: 0 auto;
background: var(--dp-paper-raised);
border: 1px solid var(--dp-line);
border-radius: var(--dp-radius);
padding: 26px;
}
.dp-wall-list {
list-style: none;
margin: 16px 0 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 14px;
}
.dp-wall-row {
padding-bottom: 14px;
border-bottom: 1px dashed var(--dp-line);
}
.dp-wall-row:last-child {
border-bottom: none;
padding-bottom: 0;
}
.dp-wall-row__top {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
font-weight: 600;
}
.dp-wall-name {
display: inline-flex;
align-items: center;
gap: 6px;
}
.dp-wall-amount {
font-family: var(--dp-font-mono);
color: var(--dp-signal-dark);
}
.dp-wall-message {
font-size: 13px;
font-style: italic;
color: var(--dp-ink-soft);
margin: 6px 0;
}
.dp-wall-date {
font-family: var(--dp-font-mono);
font-size: 11px;
color: var(--dp-ink-soft);
text-transform: uppercase;
letter-spacing: 0.04em;
} .dp-progress {
max-width: 420px;
margin: 0 auto;
background: var(--dp-paper-raised);
border: 1px solid var(--dp-line);
border-radius: var(--dp-radius);
padding: 20px 22px;
}
.dp-progress__meta {
display: flex;
justify-content: space-between;
font-family: var(--dp-font-mono);
font-size: 13px;
font-weight: 600;
margin-bottom: 10px;
}
.dp-progress__bar {
height: 10px;
border-radius: var(--dp-radius);
background: var(--dp-paper);
overflow: hidden;
border: 1px solid var(--dp-line);
}
.dp-progress__fill {
position: relative;
height: 100%;
background: linear-gradient(90deg, var(--dp-signal), var(--dp-brass));
border-radius: var(--dp-radius);
transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
overflow: hidden;
}
.dp-progress__fill::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
transform: translateX(-100%);
animation: dp-shimmer 2.2s ease-in-out infinite;
}
@keyframes dp-shimmer {
100% { transform: translateX(100%); }
}
.dp-progress__goal {
margin-top: 8px;
font-size: 12px;
color: var(--dp-ink-soft);
}
.dp-widget__progress {
margin-bottom: 20px;
}
.dp-widget__progress .dp-progress {
max-width: none;
border: none;
border-radius: 0;
padding: 0 0 18px;
border-bottom: 1px dashed var(--dp-line);
margin: 0;
} .dp-empty-notice {
font-size: 13px;
color: var(--dp-ink-soft);
text-align: center;
padding: 20px 0;
}
@media (max-width: 480px) {
.dp-widget, .dp-top-donors, .dp-wall, .dp-progress {
border-radius: 10px;
padding: 20px 18px;
}
.dp-crypto {
flex-direction: column;
align-items: flex-start;
}
}
@media (prefers-reduced-motion: reduce) {
.dp-panel.is-active,
.dp-progress__fill,
.dp-progress__fill::after,
.dp-widget,
.dp-thanks-overlay:not([hidden]),
.dp-thanks-card,
.dp-thanks-seal::before,
.dp-thanks-seal::after,
.dp-tab-indicator,
.dp-theme-aurora.dp-widget::before {
animation: none !important;
transition: none !important;
}
}  .dp-theme-ledger.dp-widget,
.dp-theme-ledger.dp-top-donors,
.dp-theme-ledger.dp-wall,
.dp-theme-ledger.dp-progress {
background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
box-shadow: 0 1px 2px rgba(16, 32, 43, 0.05), 0 20px 45px -22px rgba(16, 32, 43, 0.45);
}
.dp-theme-ledger.dp-widget::before {
content: '';
position: absolute;
top: 0;
left: 24px;
right: 24px;
height: 3px;
border-radius: 0 0 3px 3px;
background: linear-gradient(90deg, var(--dp-brass), var(--dp-signal));
opacity: 0.9;
}
.dp-theme-ledger .dp-tabs {
background: linear-gradient(180deg, #e9ece4, var(--dp-paper));
box-shadow: inset 0 1px 2px rgba(16, 32, 43, 0.06);
}
.dp-theme-ledger .dp-crypto {
background: linear-gradient(135deg, #ffffff, var(--dp-paper));
} .dp-theme-aurora {
--dp-ink: #eef2f7;
--dp-ink-soft: #9aa7c2;
--dp-paper: #141b30;
--dp-paper-raised: #10152a;
--dp-brass: #9b8cff;
--dp-signal: #00d9c0;
--dp-signal-dark: #00b39d;
--dp-line: rgba(255, 255, 255, 0.1);
--dp-radius: 22px;
}
.dp-theme-aurora.dp-widget,
.dp-theme-aurora.dp-top-donors,
.dp-theme-aurora.dp-wall,
.dp-theme-aurora.dp-progress {
background: var(--dp-paper-raised);
border-color: var(--dp-line);
box-shadow: 0 0 0 1px rgba(155, 140, 255, 0.12), 0 20px 60px -24px rgba(0, 217, 192, 0.35);
position: relative;
overflow: hidden;
}
.dp-theme-aurora .dp-widget__stub {
display: none;
}
.dp-theme-aurora.dp-widget::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #9b8cff, #00d9c0, #9b8cff);
background-size: 200% 100%;
animation: dp-aurora-flow 6s linear infinite;
}
@keyframes dp-aurora-flow {
from { background-position: 0% 0; }
to { background-position: 200% 0; }
}
.dp-theme-aurora .dp-tabs {
background: rgba(255, 255, 255, 0.05);
}
.dp-theme-aurora .dp-tab.is-active {
background: linear-gradient(90deg, #00d9c0, #9b8cff);
color: #0b0f1f;
}
.dp-theme-aurora .dp-amount-input,
.dp-theme-aurora .dp-crypto,
.dp-theme-aurora .dp-security-note,
.dp-theme-aurora .dp-chip,
.dp-theme-aurora .dp-crypto__address,
.dp-theme-aurora .dp-report-form input,
.dp-theme-aurora .dp-report-form textarea {
background: rgba(255, 255, 255, 0.05);
border-color: var(--dp-line);
color: var(--dp-ink);
}
.dp-theme-aurora .dp-btn--outline {
border-color: var(--dp-line);
color: var(--dp-ink);
}
.dp-theme-aurora .dp-lang-select {
background: rgba(255, 255, 255, 0.06);
border-color: var(--dp-line);
color: var(--dp-ink-soft);
}
.dp-theme-aurora .dp-donor-amount,
.dp-theme-aurora .dp-wall-amount {
color: var(--dp-signal);
} .dp-theme-nova {
--dp-ink: #1a1a2e;
--dp-ink-soft: #5b5b7a;
--dp-paper: rgba(255, 255, 255, 0.45);
--dp-paper-raised: rgba(255, 255, 255, 0.6);
--dp-brass: #ff6584;
--dp-signal: #7c5cff;
--dp-signal-dark: #6142e0;
--dp-line: rgba(255, 255, 255, 0.55);
--dp-radius: 26px;
}
.dp-theme-nova.dp-widget,
.dp-theme-nova.dp-top-donors,
.dp-theme-nova.dp-wall,
.dp-theme-nova.dp-progress {
background:
radial-gradient(560px circle at 12% 10%, rgba(255, 138, 222, 0.35), transparent 60%),
radial-gradient(480px circle at 88% 15%, rgba(124, 156, 255, 0.35), transparent 55%),
radial-gradient(480px circle at 50% 105%, rgba(126, 232, 250, 0.32), transparent 55%),
rgba(255, 255, 255, 0.58);
backdrop-filter: blur(18px) saturate(160%);
-webkit-backdrop-filter: blur(18px) saturate(160%);
border: 1px solid rgba(255, 255, 255, 0.65);
box-shadow: 0 25px 70px -25px rgba(124, 92, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.dp-theme-nova .dp-widget__stub {
display: none;
}
.dp-theme-nova .dp-widget__eyebrow {
background: linear-gradient(135deg, #7c5cff, #ff6584);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.dp-theme-nova .dp-tabs {
background: rgba(255, 255, 255, 0.4);
}
.dp-theme-nova .dp-tab-indicator {
background: linear-gradient(135deg, #7c5cff, #ff6584);
box-shadow: 0 4px 14px -4px rgba(124, 92, 255, 0.6);
}
.dp-theme-nova .dp-amount-input,
.dp-theme-nova .dp-crypto,
.dp-theme-nova .dp-security-note,
.dp-theme-nova .dp-chip,
.dp-theme-nova .dp-trust-badge,
.dp-theme-nova .dp-crypto__address,
.dp-theme-nova .dp-stepper-btn,
.dp-theme-nova .dp-report-form input,
.dp-theme-nova .dp-report-form textarea {
background: rgba(255, 255, 255, 0.5);
border-color: rgba(255, 255, 255, 0.65);
color: var(--dp-ink);
}
.dp-theme-nova .dp-chip.is-active {
background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(255, 101, 132, 0.18));
border-color: #7c5cff;
}
.dp-theme-nova .dp-btn--solid {
background: linear-gradient(135deg, #7c5cff, #ff6584);
border: none;
color: #fff;
box-shadow: 0 12px 28px -10px rgba(124, 92, 255, 0.6);
}
.dp-theme-nova .dp-btn--solid:hover {
filter: brightness(1.08);
}
.dp-theme-nova .dp-btn--outline {
border-color: rgba(255, 255, 255, 0.65);
background: rgba(255, 255, 255, 0.35);
}
.dp-theme-nova .dp-stepper-btn:hover {
background: linear-gradient(135deg, #7c5cff, #ff6584);
border-color: transparent;
color: #fff;
}
.dp-theme-nova .dp-lang-select {
background: rgba(255, 255, 255, 0.5);
border-color: rgba(255, 255, 255, 0.65);
}
.dp-theme-nova .dp-thanks-overlay {
background: rgba(124, 92, 255, 0.32);
}
.dp-theme-nova .dp-thanks-seal {
background: linear-gradient(135deg, #7c5cff, #ff6584);
}
.dp-theme-nova .dp-donor-amount,
.dp-theme-nova .dp-wall-amount {
background: linear-gradient(135deg, #7c5cff, #ff6584);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 700;
} @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
.dp-theme-nova.dp-widget,
.dp-theme-nova.dp-top-donors,
.dp-theme-nova.dp-wall,
.dp-theme-nova.dp-progress {
background: linear-gradient(135deg, #f3f0ff, #ffe9ef);
}
} .dp-theme-clean {
--dp-ink: #111111;
--dp-ink-soft: #6b6b6b;
--dp-paper: #fafafa;
--dp-paper-raised: #ffffff;
--dp-brass: #111111;
--dp-signal: #111111;
--dp-signal-dark: #000000;
--dp-line: #e6e6e6;
--dp-radius: 4px;
}
.dp-theme-clean.dp-widget,
.dp-theme-clean.dp-top-donors,
.dp-theme-clean.dp-wall,
.dp-theme-clean.dp-progress {
box-shadow: none;
border: 1px solid var(--dp-line);
}
.dp-theme-clean .dp-widget__stub {
display: none;
}
.dp-theme-clean .dp-widget__eyebrow {
color: var(--dp-ink-soft);
}
.dp-theme-clean .dp-tabs {
background: transparent;
border-bottom: 1px solid var(--dp-line);
border-radius: 0;
padding: 0;
gap: 0;
}
.dp-theme-clean .dp-tab {
border-radius: 0;
border-bottom: 2px solid transparent;
padding: 10px 14px;
}
.dp-theme-clean .dp-tab.is-active {
background: transparent;
color: var(--dp-ink);
border-bottom-color: var(--dp-ink);
}
.dp-theme-clean .dp-chip {
border-radius: 4px;
}
.dp-theme-clean .dp-btn {
border-radius: 4px;
}
.dp-theme-clean .dp-copy-btn {
border-radius: 4px;
}
.dp-theme-clean .dp-thanks-seal {
border-radius: 0;
} .dp-theme-care {
--dp-ink: #4a3728;
--dp-ink-soft: #8a7362;
--dp-paper: #fff6ea;
--dp-paper-raised: #fffdf8;
--dp-brass: #e08e45;
--dp-signal: #e8637a;
--dp-signal-dark: #cf4763;
--dp-line: #f1ddc4;
--dp-radius: 26px;
}
.dp-theme-care.dp-widget,
.dp-theme-care.dp-top-donors,
.dp-theme-care.dp-wall,
.dp-theme-care.dp-progress {
box-shadow: 0 20px 45px -20px rgba(224, 142, 69, 0.35);
}
.dp-theme-care .dp-widget__stub {
display: none;
}
.dp-theme-care.dp-widget::before {
content: '';
position: absolute;
top: 0;
left: 24px;
right: 24px;
height: 6px;
border-radius: 0 0 6px 6px;
background: linear-gradient(90deg, var(--dp-brass), var(--dp-signal));
}
.dp-theme-care .dp-tabs,
.dp-theme-care .dp-amount-input,
.dp-theme-care .dp-crypto {
border-radius: 999px;
}
.dp-theme-care .dp-crypto {
border-radius: 20px;
}
.dp-theme-care .dp-btn,
.dp-theme-care .dp-copy-btn,
.dp-theme-care .dp-chip {
border-radius: 999px;
}
.dp-theme-care .dp-report-form input,
.dp-theme-care .dp-report-form textarea {
border-radius: 14px;
} .dp-theme-bold {
--dp-ink: #111111;
--dp-ink-soft: #333333;
--dp-paper: #ffffff;
--dp-paper-raised: #fff200;
--dp-brass: #111111;
--dp-signal: #ff3d57;
--dp-signal-dark: #d81e3a;
--dp-line: #111111;
--dp-radius: 0px;
}
.dp-theme-bold.dp-widget,
.dp-theme-bold.dp-top-donors,
.dp-theme-bold.dp-wall,
.dp-theme-bold.dp-progress {
border: 3px solid #111111;
box-shadow: 8px 8px 0 #111111;
}
.dp-theme-bold .dp-widget__stub {
display: none;
}
.dp-theme-bold .dp-progress__bar,
.dp-theme-mono .dp-progress__bar,
.dp-theme-pixel .dp-progress__bar {
border-width: 2px;
}
.dp-theme-bold .dp-widget__eyebrow {
background: #111111;
color: #fff200;
display: inline-block;
padding: 2px 8px;
}
.dp-theme-bold .dp-tabs {
background: transparent;
border: 3px solid #111111;
border-radius: 0;
padding: 3px;
gap: 3px;
}
.dp-theme-bold .dp-tab {
border-radius: 0;
}
.dp-theme-bold .dp-tab-indicator {
border-radius: 0;
background: #111111;
box-shadow: none;
}
.dp-theme-bold .dp-amount-input,
.dp-theme-bold .dp-crypto,
.dp-theme-bold .dp-security-note,
.dp-theme-bold .dp-crypto__address,
.dp-theme-bold .dp-trust-badge,
.dp-theme-bold .dp-report-form input,
.dp-theme-bold .dp-report-form textarea,
.dp-theme-bold .dp-stepper-btn {
border-radius: 0;
border: 2px solid #111111;
background: #fff;
}
.dp-theme-bold .dp-chip {
border-radius: 0;
border: 2px solid #111111;
font-weight: 700;
}
.dp-theme-bold .dp-chip.is-active {
background: #fff200;
box-shadow: 3px 3px 0 #111111;
}
.dp-theme-bold .dp-btn {
border-radius: 0;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.dp-theme-bold .dp-btn--solid {
border: 2px solid #111111;
box-shadow: 4px 4px 0 #111111;
transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.dp-theme-bold .dp-btn--solid:hover {
transform: translate(-2px, -2px);
box-shadow: 6px 6px 0 #111111;
}
.dp-theme-bold .dp-btn--outline {
border: 2px solid #111111;
border-radius: 0;
}
.dp-theme-bold .dp-copy-btn {
border-radius: 0;
border: 2px solid #111111;
}
.dp-theme-bold .dp-thanks-seal {
border-radius: 0;
background: #fff200;
color: #111111;
border: 3px solid #111111;
box-shadow: 5px 5px 0 #111111;
}
.dp-theme-bold .dp-thanks-seal::before,
.dp-theme-bold .dp-thanks-seal::after {
display: none;
} .dp-theme-silk {
--dp-ink: #363b54;
--dp-ink-soft: #7d84a6;
--dp-paper: #e8ebf3;
--dp-paper-raised: #e8ebf3;
--dp-brass: #ff9f6b;
--dp-signal: #8a7cff;
--dp-signal-dark: #6c5ce0;
--dp-line: #d3d8e8;
--dp-radius: 28px;
}
.dp-theme-silk.dp-widget,
.dp-theme-silk.dp-top-donors,
.dp-theme-silk.dp-wall,
.dp-theme-silk.dp-progress {
border: none;
box-shadow: 10px 10px 24px #c7cbd8, -10px -10px 24px #ffffff;
}
.dp-theme-silk .dp-widget__stub {
display: none;
}
.dp-theme-silk .dp-tabs,
.dp-theme-silk .dp-amount-input,
.dp-theme-silk .dp-crypto,
.dp-theme-silk .dp-security-note,
.dp-theme-silk .dp-trust-badge,
.dp-theme-silk .dp-crypto__address,
.dp-theme-silk .dp-stepper-btn,
.dp-theme-silk .dp-report-form input,
.dp-theme-silk .dp-report-form textarea {
border: none;
background: #e8ebf3;
box-shadow: inset 4px 4px 8px #c7cbd8, inset -4px -4px 8px #ffffff;
}
.dp-theme-silk .dp-chip {
border: none;
background: #e8ebf3;
box-shadow: 4px 4px 8px #c7cbd8, -4px -4px 8px #ffffff;
}
.dp-theme-silk .dp-chip.is-active {
box-shadow: inset 3px 3px 6px #6c5ce0, inset -3px -3px 6px #a89bff;
color: #fff;
}
.dp-theme-silk .dp-btn--solid {
border: none;
box-shadow: 5px 5px 10px #c7cbd8, -5px -5px 10px #ffffff;
}
.dp-theme-silk .dp-btn--outline {
border: none;
background: #e8ebf3;
box-shadow: 4px 4px 8px #c7cbd8, -4px -4px 8px #ffffff;
}
.dp-theme-silk .dp-copy-btn {
border: none;
box-shadow: 3px 3px 6px #c7cbd8, -3px -3px 6px #ffffff;
}
.dp-theme-silk .dp-stepper-btn:hover {
box-shadow: inset 3px 3px 6px #6c5ce0, inset -3px -3px 6px #a89bff;
color: #fff;
background: var(--dp-signal);
}
.dp-theme-silk .dp-thanks-seal {
box-shadow: 6px 6px 14px #c7cbd8, -6px -6px 14px #ffffff;
} .dp-theme-terminal {
--dp-ink: #d6ffe0;
--dp-ink-soft: #6fae7f;
--dp-paper: #0e140e;
--dp-paper-raised: #0a0e0a;
--dp-brass: #00ff66;
--dp-signal: #00ff66;
--dp-signal-dark: #00cc52;
--dp-line: #1c3d24;
--dp-radius: 4px;
}
.dp-theme-terminal.dp-widget,
.dp-theme-terminal.dp-top-donors,
.dp-theme-terminal.dp-wall,
.dp-theme-terminal.dp-progress {
border: 1px solid #00ff66;
box-shadow: 0 0 0 1px rgba(0, 255, 102, 0.15), 0 0 30px -6px rgba(0, 255, 102, 0.35);
font-family: var(--dp-font-mono);
}
.dp-theme-terminal .dp-widget__stub {
display: none;
}
.dp-theme-terminal .dp-widget__title,
.dp-theme-terminal .dp-widget__desc,
.dp-theme-terminal .dp-label,
.dp-theme-terminal .dp-tab span,
.dp-theme-terminal .dp-btn,
.dp-theme-terminal .dp-checkbox,
.dp-theme-terminal .dp-panel-hint,
.dp-theme-terminal .dp-security-note,
.dp-theme-terminal .dp-crypto__badge {
font-family: var(--dp-font-mono) !important;
}
.dp-theme-terminal .dp-widget__eyebrow::before {
content: '> ';
}
.dp-theme-terminal .dp-tabs {
background: transparent;
border: 1px solid var(--dp-line);
border-radius: 4px;
}
.dp-theme-terminal .dp-tab {
border-radius: 2px;
color: var(--dp-ink-soft);
}
.dp-theme-terminal .dp-tab-indicator {
background: rgba(0, 255, 102, 0.18);
border: 1px solid #00ff66;
border-radius: 2px;
}
.dp-theme-terminal .dp-tab.is-active {
color: #00ff66;
}
.dp-theme-terminal .dp-amount-input,
.dp-theme-terminal .dp-crypto,
.dp-theme-terminal .dp-security-note,
.dp-theme-terminal .dp-crypto__address,
.dp-theme-terminal .dp-trust-badge,
.dp-theme-terminal .dp-stepper-btn,
.dp-theme-terminal .dp-chip,
.dp-theme-terminal .dp-report-form input,
.dp-theme-terminal .dp-report-form textarea {
background: #0e140e;
border: 1px solid var(--dp-line);
border-radius: 2px;
color: var(--dp-ink);
}
.dp-theme-terminal .dp-chip.is-active {
border-color: #00ff66;
color: #00ff66;
}
.dp-theme-terminal .dp-btn--solid {
background: #00ff66;
border: 1px solid #00ff66;
color: #0a0e0a;
border-radius: 2px;
font-weight: 700;
}
.dp-theme-terminal .dp-btn--outline {
border: 1px solid #00ff66;
border-radius: 2px;
color: #00ff66;
background: transparent;
}
.dp-theme-terminal .dp-copy-btn {
border-radius: 2px;
border-color: #00ff66;
}
.dp-theme-terminal .dp-thanks-overlay {
background: rgba(0, 10, 4, 0.9);
}
.dp-theme-terminal .dp-thanks-seal {
background: transparent;
border: 2px solid #00ff66;
color: #00ff66;
border-radius: 4px;
}
.dp-theme-terminal .dp-donor-amount,
.dp-theme-terminal .dp-wall-amount {
color: #00ff66;
} .dp-theme-sunset {
--dp-ink: #3a2233;
--dp-ink-soft: #8a6b7d;
--dp-paper: rgba(255, 255, 255, 0.4);
--dp-paper-raised: rgba(255, 255, 255, 0.55);
--dp-brass: #ff8a5c;
--dp-signal: #ff5f7e;
--dp-signal-dark: #e6415f;
--dp-line: rgba(255, 255, 255, 0.55);
--dp-radius: 26px;
}
.dp-theme-sunset.dp-widget,
.dp-theme-sunset.dp-top-donors,
.dp-theme-sunset.dp-wall,
.dp-theme-sunset.dp-progress {
background:
radial-gradient(560px circle at 10% 100%, rgba(255, 138, 92, 0.4), transparent 60%),
radial-gradient(480px circle at 90% 0%, rgba(255, 95, 126, 0.4), transparent 55%),
radial-gradient(420px circle at 50% 50%, rgba(255, 214, 130, 0.35), transparent 60%),
rgba(255, 255, 255, 0.55);
backdrop-filter: blur(18px) saturate(160%);
-webkit-backdrop-filter: blur(18px) saturate(160%);
border: 1px solid rgba(255, 255, 255, 0.6);
box-shadow: 0 25px 65px -25px rgba(255, 95, 126, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.dp-theme-sunset .dp-widget__stub { display: none; }
.dp-theme-sunset .dp-widget__eyebrow {
background: linear-gradient(135deg, #ff8a5c, #ff5f7e);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.dp-theme-sunset .dp-tab-indicator {
background: linear-gradient(135deg, #ff8a5c, #ff5f7e);
}
.dp-theme-sunset .dp-amount-input,
.dp-theme-sunset .dp-crypto,
.dp-theme-sunset .dp-security-note,
.dp-theme-sunset .dp-trust-badge,
.dp-theme-sunset .dp-chip,
.dp-theme-sunset .dp-crypto__address,
.dp-theme-sunset .dp-stepper-btn,
.dp-theme-sunset .dp-report-form input,
.dp-theme-sunset .dp-report-form textarea {
background: rgba(255, 255, 255, 0.5);
border-color: rgba(255, 255, 255, 0.65);
}
.dp-theme-sunset .dp-btn--solid {
background: linear-gradient(135deg, #ff8a5c, #ff5f7e);
border: none;
color: #fff;
box-shadow: 0 12px 26px -10px rgba(255, 95, 126, 0.6);
}
.dp-theme-sunset .dp-thanks-seal {
background: linear-gradient(135deg, #ff8a5c, #ff5f7e);
} .dp-theme-halo {
--dp-ink: #1c1c1e;
--dp-ink-soft: #6e6e73;
--dp-paper: rgba(120, 120, 128, 0.08);
--dp-paper-raised: rgba(255, 255, 255, 0.72);
--dp-brass: #0a84ff;
--dp-signal: #0a84ff;
--dp-signal-dark: #0066cc;
--dp-line: rgba(60, 60, 67, 0.12);
--dp-radius: 22px;
}
.dp-theme-halo.dp-widget,
.dp-theme-halo.dp-top-donors,
.dp-theme-halo.dp-wall,
.dp-theme-halo.dp-progress {
background: rgba(255, 255, 255, 0.72);
backdrop-filter: blur(24px) saturate(180%);
-webkit-backdrop-filter: blur(24px) saturate(180%);
border: 1px solid rgba(60, 60, 67, 0.1);
box-shadow: 0 20px 45px -22px rgba(0, 0, 0, 0.25);
}
.dp-theme-halo .dp-widget__stub { display: none; }
.dp-theme-halo .dp-widget__eyebrow {
color: var(--dp-signal);
}
.dp-theme-halo .dp-tabs {
background: rgba(120, 120, 128, 0.12);
}
.dp-theme-halo .dp-amount-input,
.dp-theme-halo .dp-crypto,
.dp-theme-halo .dp-security-note,
.dp-theme-halo .dp-trust-badge,
.dp-theme-halo .dp-crypto__address,
.dp-theme-halo .dp-stepper-btn,
.dp-theme-halo .dp-chip,
.dp-theme-halo .dp-report-form input,
.dp-theme-halo .dp-report-form textarea {
background: rgba(120, 120, 128, 0.08);
border-color: rgba(60, 60, 67, 0.1);
}
.dp-theme-halo .dp-btn--solid {
box-shadow: 0 10px 22px -8px rgba(10, 132, 255, 0.45);
} .dp-theme-synth {
--dp-ink: #ffe3fb;
--dp-ink-soft: #b98fd6;
--dp-paper: #150826;
--dp-paper-raised: #0f0620;
--dp-brass: #ff2ec4;
--dp-signal: #05e0ff;
--dp-signal-dark: #00b3cc;
--dp-line: rgba(255, 46, 196, 0.25);
--dp-radius: 10px;
}
.dp-theme-synth.dp-widget,
.dp-theme-synth.dp-top-donors,
.dp-theme-synth.dp-wall,
.dp-theme-synth.dp-progress {
background-color: #0f0620;
background-image:
linear-gradient(rgba(255, 46, 196, 0.18) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 46, 196, 0.18) 1px, transparent 1px),
radial-gradient(circle at 50% 0%, rgba(5, 224, 255, 0.25), transparent 60%);
background-size: 24px 24px, 24px 24px, 100% 100%;
border: 1px solid #ff2ec4;
box-shadow: 0 0 0 1px rgba(5, 224, 255, 0.2), 0 0 40px -8px rgba(255, 46, 196, 0.5);
position: relative;
overflow: hidden;
}
.dp-theme-synth.dp-widget::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #ff2ec4, #05e0ff, #ff2ec4);
background-size: 200% 100%;
animation: dp-aurora-flow 6s linear infinite;
}
.dp-theme-synth .dp-widget__stub { display: none; }
.dp-theme-synth .dp-widget__eyebrow {
color: #ff2ec4;
text-shadow: 0 0 8px rgba(255, 46, 196, 0.6);
}
.dp-theme-synth .dp-tabs {
background: rgba(255, 255, 255, 0.04);
border: 1px solid var(--dp-line);
}
.dp-theme-synth .dp-tab-indicator {
background: linear-gradient(135deg, #ff2ec4, #05e0ff);
box-shadow: 0 0 14px rgba(5, 224, 255, 0.7);
}
.dp-theme-synth .dp-tab.is-active {
color: #0f0620;
}
.dp-theme-synth .dp-amount-input,
.dp-theme-synth .dp-crypto,
.dp-theme-synth .dp-security-note,
.dp-theme-synth .dp-trust-badge,
.dp-theme-synth .dp-crypto__address,
.dp-theme-synth .dp-stepper-btn,
.dp-theme-synth .dp-chip,
.dp-theme-synth .dp-report-form input,
.dp-theme-synth .dp-report-form textarea {
background: rgba(255, 255, 255, 0.05);
border-color: var(--dp-line);
color: var(--dp-ink);
}
.dp-theme-synth .dp-btn--solid {
background: linear-gradient(135deg, #ff2ec4, #05e0ff);
border: none;
color: #0f0620;
font-weight: 800;
box-shadow: 0 0 20px rgba(255, 46, 196, 0.5);
}
.dp-theme-synth .dp-btn--outline {
border-color: #05e0ff;
color: #05e0ff;
}
.dp-theme-synth .dp-thanks-overlay {
background: rgba(15, 6, 32, 0.88);
}
.dp-theme-synth .dp-thanks-seal {
background: linear-gradient(135deg, #ff2ec4, #05e0ff);
color: #0f0620;
}
.dp-theme-synth .dp-donor-amount,
.dp-theme-synth .dp-wall-amount {
color: #05e0ff;
} .dp-theme-botanical {
--dp-ink: #24382b;
--dp-ink-soft: #63795f;
--dp-paper: #eef3e6;
--dp-paper-raised: #f7faf2;
--dp-brass: #8ba888;
--dp-signal: #4c7a52;
--dp-signal-dark: #385c3d;
--dp-line: #dbe6d3;
--dp-radius: 30px;
}
.dp-theme-botanical.dp-widget,
.dp-theme-botanical.dp-top-donors,
.dp-theme-botanical.dp-wall,
.dp-theme-botanical.dp-progress {
background: linear-gradient(160deg, #f7faf2, #eef3e6);
box-shadow: 0 22px 50px -24px rgba(76, 122, 82, 0.35);
border: 1px solid var(--dp-line);
}
.dp-theme-botanical.dp-widget::before {
content: '';
position: absolute;
top: -14px;
left: 28px;
width: 46px;
height: 46px;
background: radial-gradient(circle, rgba(139, 168, 136, 0.35), transparent 70%);
border-radius: 50%;
}
.dp-theme-botanical .dp-widget__stub { display: none; }
.dp-theme-botanical .dp-tabs,
.dp-theme-botanical .dp-amount-input,
.dp-theme-botanical .dp-crypto,
.dp-theme-botanical .dp-chip {
border-radius: 999px;
}
.dp-theme-botanical .dp-crypto {
border-radius: 22px;
}
.dp-theme-botanical .dp-btn,
.dp-theme-botanical .dp-copy-btn {
border-radius: 999px;
}
.dp-theme-botanical .dp-report-form input,
.dp-theme-botanical .dp-report-form textarea {
border-radius: 16px;
} .dp-theme-metal {
--dp-ink: #1c2226;
--dp-ink-soft: #5c6b73;
--dp-paper: #dfe4e7;
--dp-paper-raised: #e9edef;
--dp-brass: #ff7a1a;
--dp-signal: #37474f;
--dp-signal-dark: #263238;
--dp-line: #b9c2c7;
--dp-radius: 6px;
}
.dp-theme-metal.dp-widget,
.dp-theme-metal.dp-top-donors,
.dp-theme-metal.dp-wall,
.dp-theme-metal.dp-progress {
background: linear-gradient(170deg, #eef1f2, #d8dee1 55%, #eef1f2);
border: 1px solid #aeb8bd;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 16px 34px -18px rgba(0, 0, 0, 0.45);
}
.dp-theme-metal .dp-widget__stub { display: none; }
.dp-theme-metal.dp-widget::before,
.dp-theme-metal.dp-widget::after {
content: '';
position: absolute;
top: 10px;
width: 8px;
height: 8px;
border-radius: 50%;
background: radial-gradient(circle at 35% 35%, #fff, #9aa5aa 70%);
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}
.dp-theme-metal.dp-widget::before { left: 12px; }
.dp-theme-metal.dp-widget::after { right: 12px; }
.dp-theme-metal .dp-widget__eyebrow {
color: var(--dp-brass);
}
.dp-theme-metal .dp-tabs {
background: #cfd6d9;
border-radius: 6px;
}
.dp-theme-metal .dp-tab,
.dp-theme-metal .dp-tab-indicator,
.dp-theme-metal .dp-chip,
.dp-theme-metal .dp-btn,
.dp-theme-metal .dp-copy-btn,
.dp-theme-metal .dp-amount-input,
.dp-theme-metal .dp-crypto,
.dp-theme-metal .dp-stepper-btn {
border-radius: 4px;
}
.dp-theme-metal .dp-btn--solid {
background: linear-gradient(180deg, #ff8a33, var(--dp-brass));
border: 1px solid #cc5e00;
color: #fff;
text-transform: uppercase;
letter-spacing: 0.04em;
font-weight: 700;
} .dp-theme-pixel {
--dp-ink: #1a1a2e;
--dp-ink-soft: #4a4a68;
--dp-paper: #fdf6e3;
--dp-paper-raised: #fffdf5;
--dp-brass: #ffb400;
--dp-signal: #ff4d6d;
--dp-signal-dark: #d63356;
--dp-line: #1a1a2e;
--dp-radius: 0px;
}
.dp-theme-pixel.dp-widget,
.dp-theme-pixel.dp-top-donors,
.dp-theme-pixel.dp-wall,
.dp-theme-pixel.dp-progress {
border: 4px solid #1a1a2e;
box-shadow: 6px 6px 0 #1a1a2e, 6px 6px 0 1px rgba(255, 77, 109, 0.4);
image-rendering: pixelated;
}
.dp-theme-pixel .dp-widget__stub { display: none; }
.dp-theme-pixel .dp-widget__title,
.dp-theme-pixel .dp-widget__eyebrow,
.dp-theme-pixel .dp-btn,
.dp-theme-pixel .dp-tab span {
font-family: var(--dp-font-mono);
}
.dp-theme-pixel .dp-tabs {
background: #1a1a2e;
border-radius: 0;
padding: 4px;
}
.dp-theme-pixel .dp-tab-indicator {
border-radius: 0;
background: var(--dp-brass);
}
.dp-theme-pixel .dp-tab.is-active {
color: #1a1a2e;
}
.dp-theme-pixel .dp-amount-input,
.dp-theme-pixel .dp-crypto,
.dp-theme-pixel .dp-security-note,
.dp-theme-pixel .dp-trust-badge,
.dp-theme-pixel .dp-crypto__address,
.dp-theme-pixel .dp-stepper-btn,
.dp-theme-pixel .dp-chip,
.dp-theme-pixel .dp-report-form input,
.dp-theme-pixel .dp-report-form textarea {
border: 2px solid #1a1a2e;
border-radius: 0;
background: #fffdf5;
}
.dp-theme-pixel .dp-chip.is-active {
background: var(--dp-brass);
}
.dp-theme-pixel .dp-btn {
border-radius: 0;
text-transform: uppercase;
font-weight: 700;
}
.dp-theme-pixel .dp-btn--solid {
border: 3px solid #1a1a2e;
box-shadow: 4px 4px 0 #1a1a2e;
}
.dp-theme-pixel .dp-btn--solid:active {
box-shadow: none;
transform: translate(4px, 4px);
}
.dp-theme-pixel .dp-copy-btn {
border-radius: 0;
border: 2px solid #1a1a2e;
}
.dp-theme-pixel .dp-thanks-seal {
border-radius: 0;
border: 3px solid #1a1a2e;
background: var(--dp-brass);
color: #1a1a2e;
}
.dp-theme-pixel .dp-thanks-seal::before,
.dp-theme-pixel .dp-thanks-seal::after {
display: none;
} .dp-theme-paper {
--dp-ink: #4a3826;
--dp-ink-soft: #8a7256;
--dp-paper: #ede0c8;
--dp-paper-raised: #f7efdd;
--dp-brass: #b5793a;
--dp-signal: #a0522d;
--dp-signal-dark: #7a3d20;
--dp-line: #ddcba4;
--dp-radius: 4px;
}
.dp-theme-paper.dp-widget,
.dp-theme-paper.dp-top-donors,
.dp-theme-paper.dp-wall,
.dp-theme-paper.dp-progress {
background: #f7efdd;
border: 1px solid var(--dp-line);
box-shadow: 3px 4px 0 rgba(160, 82, 45, 0.15), 0 18px 40px -22px rgba(74, 56, 38, 0.4);
clip-path: polygon(0.6% 1%, 99.2% 0.3%, 99.6% 98.8%, 0.3% 99.4%);
}
.dp-theme-paper .dp-widget__stub { display: none; }
.dp-theme-paper .dp-widget__eyebrow {
font-family: var(--dp-font-display);
font-style: italic;
text-transform: none;
letter-spacing: 0;
}
.dp-theme-paper .dp-tabs {
background: var(--dp-paper);
border: 1px dashed var(--dp-line);
}
.dp-theme-paper .dp-amount-input,
.dp-theme-paper .dp-crypto,
.dp-theme-paper .dp-security-note,
.dp-theme-paper .dp-trust-badge,
.dp-theme-paper .dp-crypto__address,
.dp-theme-paper .dp-chip,
.dp-theme-paper .dp-report-form input,
.dp-theme-paper .dp-report-form textarea {
background: var(--dp-paper);
border: 1px dashed var(--dp-line);
}
.dp-theme-paper .dp-btn--solid {
box-shadow: 2px 3px 0 rgba(74, 56, 38, 0.3);
} .dp-theme-velvet {
--dp-ink: #f3e6d8;
--dp-ink-soft: #b79f8e;
--dp-paper: #2a1620;
--dp-paper-raised: #22111a;
--dp-brass: #d4af37;
--dp-signal: #d4af37;
--dp-signal-dark: #b8942c;
--dp-line: rgba(212, 175, 55, 0.25);
--dp-radius: 16px;
}
.dp-theme-velvet.dp-widget,
.dp-theme-velvet.dp-top-donors,
.dp-theme-velvet.dp-wall,
.dp-theme-velvet.dp-progress {
background: linear-gradient(160deg, #2a1620, #1a0c13);
border: 1px solid var(--dp-line);
box-shadow: 0 25px 60px -25px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(212, 175, 55, 0.15);
}
.dp-theme-velvet .dp-widget__stub { display: none; }
.dp-theme-velvet .dp-widget__title {
font-family: var(--dp-font-display);
}
.dp-theme-velvet .dp-widget__eyebrow {
color: var(--dp-brass);
}
.dp-theme-velvet .dp-tabs {
background: rgba(212, 175, 55, 0.08);
border: 1px solid var(--dp-line);
}
.dp-theme-velvet .dp-tab-indicator {
background: linear-gradient(135deg, #d4af37, #f3d878);
}
.dp-theme-velvet .dp-tab.is-active {
color: #2a1620;
}
.dp-theme-velvet .dp-amount-input,
.dp-theme-velvet .dp-crypto,
.dp-theme-velvet .dp-security-note,
.dp-theme-velvet .dp-trust-badge,
.dp-theme-velvet .dp-crypto__address,
.dp-theme-velvet .dp-stepper-btn,
.dp-theme-velvet .dp-chip,
.dp-theme-velvet .dp-report-form input,
.dp-theme-velvet .dp-report-form textarea {
background: rgba(212, 175, 55, 0.06);
border-color: var(--dp-line);
color: var(--dp-ink);
}
.dp-theme-velvet .dp-btn--solid {
background: linear-gradient(135deg, #d4af37, #f3d878);
border: none;
color: #2a1620;
font-weight: 700;
}
.dp-theme-velvet .dp-thanks-overlay {
background: rgba(26, 12, 19, 0.9);
}
.dp-theme-velvet .dp-thanks-seal {
background: linear-gradient(135deg, #d4af37, #f3d878);
color: #2a1620;
}
.dp-theme-velvet .dp-donor-amount,
.dp-theme-velvet .dp-wall-amount {
color: var(--dp-brass);
} .dp-theme-holo {
--dp-ink: #211a2e;
--dp-ink-soft: #756b8c;
--dp-paper: rgba(255, 255, 255, 0.45);
--dp-paper-raised: rgba(255, 255, 255, 0.6);
--dp-brass: #ff8ad8;
--dp-signal: #7c5cff;
--dp-signal-dark: #5f3fe0;
--dp-line: rgba(255, 255, 255, 0.6);
--dp-radius: 24px;
}
.dp-theme-holo.dp-widget,
.dp-theme-holo.dp-top-donors,
.dp-theme-holo.dp-wall,
.dp-theme-holo.dp-progress {
background:
linear-gradient(120deg, rgba(255, 138, 216, 0.35) 0%, rgba(124, 92, 255, 0.32) 25%, rgba(112, 220, 255, 0.32) 50%, rgba(255, 226, 138, 0.32) 75%, rgba(255, 138, 216, 0.35) 100%),
rgba(255, 255, 255, 0.55);
background-size: 300% 300%;
animation: dp-holo-shift 10s ease infinite;
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.7);
box-shadow: 0 25px 65px -25px rgba(124, 92, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
@keyframes dp-holo-shift {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.dp-theme-holo .dp-widget__stub { display: none; }
.dp-theme-holo .dp-widget__eyebrow,
.dp-theme-holo .dp-donor-amount,
.dp-theme-holo .dp-wall-amount {
background: linear-gradient(90deg, #ff8ad8, #7c5cff, #70dcff, #ffe28a);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 700;
}
.dp-theme-holo .dp-tab-indicator {
background: linear-gradient(90deg, #ff8ad8, #7c5cff, #70dcff);
}
.dp-theme-holo .dp-amount-input,
.dp-theme-holo .dp-crypto,
.dp-theme-holo .dp-security-note,
.dp-theme-holo .dp-trust-badge,
.dp-theme-holo .dp-crypto__address,
.dp-theme-holo .dp-stepper-btn,
.dp-theme-holo .dp-chip,
.dp-theme-holo .dp-report-form input,
.dp-theme-holo .dp-report-form textarea {
background: rgba(255, 255, 255, 0.5);
border-color: rgba(255, 255, 255, 0.7);
}
.dp-theme-holo .dp-btn--solid {
background: linear-gradient(90deg, #ff8ad8, #7c5cff, #70dcff);
border: none;
color: #fff;
box-shadow: 0 12px 26px -10px rgba(124, 92, 255, 0.55);
}
.dp-theme-holo .dp-thanks-seal {
background: linear-gradient(90deg, #ff8ad8, #7c5cff, #70dcff);
}
@media (prefers-reduced-motion: reduce) {
.dp-theme-holo.dp-widget {
animation: none;
}
} .dp-theme-origami {
--dp-ink: #1e2430;
--dp-ink-soft: #626d80;
--dp-paper: #eef1f6;
--dp-paper-raised: #ffffff;
--dp-brass: #ff6b4a;
--dp-signal: #3b5bfd;
--dp-signal-dark: #2941c9;
--dp-line: #dde2ea;
--dp-radius: 2px;
}
.dp-theme-origami.dp-widget,
.dp-theme-origami.dp-top-donors,
.dp-theme-origami.dp-wall,
.dp-theme-origami.dp-progress {
background: #ffffff;
border: 1px solid var(--dp-line);
clip-path: polygon(0 0, 96% 0, 100% 6%, 100% 100%, 4% 100%, 0 94%);
box-shadow: 18px 18px 0 -14px rgba(59, 91, 253, 0.12), 0 20px 45px -24px rgba(30, 36, 48, 0.4);
}
.dp-theme-origami.dp-widget::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 34px 34px 0;
border-color: transparent var(--dp-paper) transparent transparent;
}
.dp-theme-origami .dp-widget__stub { display: none; }
.dp-theme-origami .dp-tabs {
border-radius: 2px;
}
.dp-theme-origami .dp-tab,
.dp-theme-origami .dp-tab-indicator,
.dp-theme-origami .dp-chip,
.dp-theme-origami .dp-btn,
.dp-theme-origami .dp-copy-btn,
.dp-theme-origami .dp-amount-input,
.dp-theme-origami .dp-crypto,
.dp-theme-origami .dp-stepper-btn {
border-radius: 2px;
}
.dp-theme-origami .dp-btn--solid {
background: var(--dp-signal);
position: relative;
overflow: hidden;
}
.dp-theme-origami .dp-btn--solid::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 0 14px 14px;
border-color: transparent transparent rgba(255, 255, 255, 0.25) transparent;
}
.dp-theme-origami .dp-thanks-seal {
border-radius: 2px;
background: var(--dp-signal);
transform: rotate(45deg);
}
.dp-theme-origami .dp-thanks-seal::before,
.dp-theme-origami .dp-thanks-seal::after {
display: none;
} .dp-theme-frost {
--dp-ink: #12283a;
--dp-ink-soft: #5c7d95;
--dp-paper: #eaf4fb;
--dp-paper-raised: rgba(255, 255, 255, 0.65);
--dp-brass: #7fd9f2;
--dp-signal: #2ba9d1;
--dp-signal-dark: #1e88ab;
--dp-line: rgba(180, 224, 245, 0.6);
--dp-radius: 20px;
}
.dp-theme-frost.dp-widget,
.dp-theme-frost.dp-top-donors,
.dp-theme-frost.dp-wall,
.dp-theme-frost.dp-progress {
background:
linear-gradient(160deg, rgba(255, 255, 255, 0.75), rgba(210, 238, 250, 0.55)),
radial-gradient(500px circle at 100% 0%, rgba(127, 217, 242, 0.4), transparent 60%);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border: 1px solid rgba(255, 255, 255, 0.8);
box-shadow: 0 20px 50px -24px rgba(43, 169, 209, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.9);
position: relative;
overflow: hidden;
}
.dp-theme-frost.dp-widget::before {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
background-size: 200% 200%;
pointer-events: none;
}
.dp-theme-frost .dp-widget__stub { display: none; }
.dp-theme-frost .dp-widget__eyebrow {
color: var(--dp-signal-dark);
}
.dp-theme-frost .dp-tabs,
.dp-theme-frost .dp-amount-input,
.dp-theme-frost .dp-crypto,
.dp-theme-frost .dp-security-note,
.dp-theme-frost .dp-trust-badge,
.dp-theme-frost .dp-crypto__address,
.dp-theme-frost .dp-stepper-btn,
.dp-theme-frost .dp-chip,
.dp-theme-frost .dp-report-form input,
.dp-theme-frost .dp-report-form textarea {
background: rgba(255, 255, 255, 0.55);
border-color: var(--dp-line);
}
.dp-theme-frost .dp-btn--solid {
background: linear-gradient(135deg, #7fd9f2, #2ba9d1);
border: none;
color: #fff;
box-shadow: 0 10px 24px -10px rgba(43, 169, 209, 0.55);
}
.dp-theme-frost .dp-thanks-seal {
background: linear-gradient(135deg, #7fd9f2, #2ba9d1);
} .dp-theme-circuit {
--dp-ink: #dce8f0;
--dp-ink-soft: #6f93a8;
--dp-paper: #0a1622;
--dp-paper-raised: #08121c;
--dp-brass: #ffb454;
--dp-signal: #38e5c8;
--dp-signal-dark: #22b89d;
--dp-line: rgba(56, 229, 200, 0.25);
--dp-radius: 10px;
}
.dp-theme-circuit.dp-widget,
.dp-theme-circuit.dp-top-donors,
.dp-theme-circuit.dp-wall,
.dp-theme-circuit.dp-progress {
background-color: #08121c;
background-image:
linear-gradient(rgba(56, 229, 200, 0.12) 1px, transparent 1px),
linear-gradient(90deg, rgba(56, 229, 200, 0.12) 1px, transparent 1px),
radial-gradient(circle at 100% 100%, rgba(56, 229, 200, 0.18), transparent 55%);
background-size: 20px 20px, 20px 20px, 100% 100%;
border: 1px solid var(--dp-line);
box-shadow: 0 0 0 1px rgba(56, 229, 200, 0.08), 0 25px 55px -25px rgba(56, 229, 200, 0.35);
position: relative;
}
.dp-theme-circuit.dp-widget::before {
content: '';
position: absolute;
top: 18px;
left: -1px;
width: 24px;
height: 1px;
background: var(--dp-signal);
box-shadow: 0 0 6px var(--dp-signal);
}
.dp-theme-circuit .dp-widget__stub { display: none; }
.dp-theme-circuit .dp-widget__eyebrow {
color: var(--dp-signal);
}
.dp-theme-circuit .dp-widget__eyebrow::before {
content: '// ';
}
.dp-theme-circuit .dp-tabs {
background: rgba(56, 229, 200, 0.05);
border: 1px solid var(--dp-line);
}
.dp-theme-circuit .dp-tab-indicator {
background: var(--dp-signal);
box-shadow: 0 0 10px var(--dp-signal);
}
.dp-theme-circuit .dp-tab.is-active {
color: #08121c;
}
.dp-theme-circuit .dp-amount-input,
.dp-theme-circuit .dp-crypto,
.dp-theme-circuit .dp-security-note,
.dp-theme-circuit .dp-trust-badge,
.dp-theme-circuit .dp-crypto__address,
.dp-theme-circuit .dp-stepper-btn,
.dp-theme-circuit .dp-chip,
.dp-theme-circuit .dp-report-form input,
.dp-theme-circuit .dp-report-form textarea {
background: rgba(56, 229, 200, 0.06);
border-color: var(--dp-line);
color: var(--dp-ink);
}
.dp-theme-circuit .dp-btn--solid {
background: var(--dp-signal);
border: none;
color: #08121c;
font-weight: 700;
}
.dp-theme-circuit .dp-btn--outline {
border-color: var(--dp-signal);
color: var(--dp-signal);
}
.dp-theme-circuit .dp-thanks-overlay {
background: rgba(8, 18, 28, 0.92);
}
.dp-theme-circuit .dp-thanks-seal {
background: transparent;
border: 2px solid var(--dp-signal);
color: var(--dp-signal);
}
.dp-theme-circuit .dp-donor-amount,
.dp-theme-circuit .dp-wall-amount {
color: var(--dp-signal);
} .dp-theme-mono {
--dp-ink: #000000;
--dp-ink-soft: #6b6b6b;
--dp-paper: #f2f2f2;
--dp-paper-raised: #ffffff;
--dp-brass: #000000;
--dp-signal: #000000;
--dp-signal-dark: #000000;
--dp-line: #000000;
--dp-radius: 0px;
}
.dp-theme-mono.dp-widget,
.dp-theme-mono.dp-top-donors,
.dp-theme-mono.dp-wall,
.dp-theme-mono.dp-progress {
border: 1px solid #000000;
box-shadow: none;
}
.dp-theme-mono .dp-widget__stub { display: none; }
.dp-theme-mono .dp-widget__title {
font-size: 30px;
letter-spacing: -0.01em;
}
.dp-theme-mono .dp-widget__eyebrow {
border-bottom: 1px solid #000;
padding-bottom: 6px;
display: block;
}
.dp-theme-mono .dp-tabs {
background: transparent;
border-radius: 0;
border-bottom: 1px solid #000;
padding: 0;
gap: 0;
}
.dp-theme-mono .dp-tab {
border-radius: 0;
border-right: 1px solid #000;
}
.dp-theme-mono .dp-tab:last-child { border-right: none; }
.dp-theme-mono .dp-tab-indicator {
display: none;
}
.dp-theme-mono .dp-tab.is-active {
color: #000;
background: #f2f2f2;
}
.dp-theme-mono .dp-amount-input,
.dp-theme-mono .dp-crypto,
.dp-theme-mono .dp-security-note,
.dp-theme-mono .dp-trust-badge,
.dp-theme-mono .dp-crypto__address,
.dp-theme-mono .dp-stepper-btn,
.dp-theme-mono .dp-chip,
.dp-theme-mono .dp-report-form input,
.dp-theme-mono .dp-report-form textarea {
border-radius: 0;
border: 1px solid #000;
}
.dp-theme-mono .dp-btn,
.dp-theme-mono .dp-copy-btn {
border-radius: 0;
}
.dp-theme-mono .dp-btn--solid {
text-transform: uppercase;
letter-spacing: 0.06em;
}
.dp-theme-mono .dp-thanks-seal {
border-radius: 0;
border: 2px solid #000;
background: #000;
}
.dp-theme-mono .dp-thanks-seal::before,
.dp-theme-mono .dp-thanks-seal::after {
border-color: rgba(0, 0, 0, 0.3);
} .dp-theme-liquid {
--dp-ink: #1a1a1e;
--dp-ink-soft: #6c6c74;
--dp-paper: #e7e8ec;
--dp-paper-raised: #f2f3f6;
--dp-brass: #9199a6;
--dp-signal: #4b4f58;
--dp-signal-dark: #2e3138;
--dp-line: #d3d5db;
--dp-radius: 40px;
}
.dp-theme-liquid.dp-widget,
.dp-theme-liquid.dp-top-donors,
.dp-theme-liquid.dp-wall,
.dp-theme-liquid.dp-progress {
background: linear-gradient(135deg, #ffffff 0%, #dcdde3 30%, #f7f8fa 55%, #c9cbd3 80%, #ffffff 100%);
border: 1px solid #d3d5db;
box-shadow: 0 25px 60px -28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.9);
border-radius: 40px 18px 40px 18px;
}
.dp-theme-liquid .dp-widget__stub { display: none; }
.dp-theme-liquid .dp-tabs {
border-radius: 999px;
background: linear-gradient(135deg, #f7f8fa, #dcdde3);
}
.dp-theme-liquid .dp-amount-input,
.dp-theme-liquid .dp-crypto,
.dp-theme-liquid .dp-chip,
.dp-theme-liquid .dp-stepper-btn {
border-radius: 999px;
background: linear-gradient(135deg, #ffffff, #e4e5ea);
border-color: var(--dp-line);
}
.dp-theme-liquid .dp-crypto {
border-radius: 26px;
}
.dp-theme-liquid .dp-btn--solid {
background: linear-gradient(135deg, #6b6f78, #2e3138);
border: none;
border-radius: 999px;
}
.dp-theme-liquid .dp-btn--outline,
.dp-theme-liquid .dp-copy-btn {
border-radius: 999px;
}
.dp-theme-liquid .dp-thanks-seal {
background: linear-gradient(135deg, #9199a6, #2e3138);
} .dp-theme-carbon {
--dp-ink: #f2f2f2;
--dp-ink-soft: #9a9a9a;
--dp-paper: #1c1c1e;
--dp-paper-raised: #18181a;
--dp-brass: #e10600;
--dp-signal: #e10600;
--dp-signal-dark: #b80500;
--dp-line: #333335;
--dp-radius: 8px;
}
.dp-theme-carbon.dp-widget,
.dp-theme-carbon.dp-top-donors,
.dp-theme-carbon.dp-wall,
.dp-theme-carbon.dp-progress {
background-color: #18181a;
background-image:
repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 2px, transparent 2px, transparent 4px),
repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 2px, transparent 2px, transparent 4px);
border: 1px solid #333335;
box-shadow: 0 20px 45px -22px rgba(225, 6, 0, 0.35);
position: relative;
}
.dp-theme-carbon.dp-widget::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--dp-signal);
border-radius: 8px 8px 0 0;
}
.dp-theme-carbon .dp-widget__stub { display: none; }
.dp-theme-carbon .dp-widget__eyebrow {
color: var(--dp-signal);
}
.dp-theme-carbon .dp-tabs {
background: rgba(255, 255, 255, 0.05);
}
.dp-theme-carbon .dp-tab.is-active {
color: #fff;
}
.dp-theme-carbon .dp-amount-input,
.dp-theme-carbon .dp-crypto,
.dp-theme-carbon .dp-security-note,
.dp-theme-carbon .dp-trust-badge,
.dp-theme-carbon .dp-crypto__address,
.dp-theme-carbon .dp-stepper-btn,
.dp-theme-carbon .dp-chip,
.dp-theme-carbon .dp-report-form input,
.dp-theme-carbon .dp-report-form textarea {
background: rgba(255, 255, 255, 0.05);
border-color: var(--dp-line);
color: var(--dp-ink);
}
.dp-theme-carbon .dp-btn--solid {
background: var(--dp-signal);
border: none;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.dp-theme-carbon .dp-thanks-overlay {
background: rgba(24, 24, 26, 0.94);
}
.dp-theme-carbon .dp-thanks-seal {
background: var(--dp-signal);
}
.dp-theme-carbon .dp-donor-amount,
.dp-theme-carbon .dp-wall-amount {
color: var(--dp-signal);
} .dp-theme-vapor {
--dp-ink: #4a2f6b;
--dp-ink-soft: #9a80b8;
--dp-paper: #fceeff;
--dp-paper-raised: #fef6ff;
--dp-brass: #ff8ad4;
--dp-signal: #6ee7ff;
--dp-signal-dark: #3bc4e0;
--dp-line: #f0cdf5;
--dp-radius: 18px;
}
.dp-theme-vapor.dp-widget,
.dp-theme-vapor.dp-top-donors,
.dp-theme-vapor.dp-wall,
.dp-theme-vapor.dp-progress {
background:
linear-gradient(180deg, #fef6ff 0%, #fceeff 60%, #fbe3ff 100%);
border: 1px solid #f0cdf5;
box-shadow: 0 20px 45px -22px rgba(255, 138, 212, 0.4);
position: relative;
overflow: hidden;
}
.dp-theme-vapor.dp-widget::before {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 40%;
background-image:
linear-gradient(rgba(255, 138, 212, 0.25) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 138, 212, 0.25) 1px, transparent 1px);
background-size: 22px 14px;
-webkit-mask-image: linear-gradient(to top, black, transparent);
mask-image: linear-gradient(to top, black, transparent);
pointer-events: none;
}
.dp-theme-vapor .dp-widget__stub { display: none; }
.dp-theme-vapor .dp-widget__eyebrow {
background: linear-gradient(90deg, #ff8ad4, #6ee7ff);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.dp-theme-vapor .dp-tab-indicator {
background: linear-gradient(90deg, #ff8ad4, #6ee7ff);
}
.dp-theme-vapor .dp-amount-input,
.dp-theme-vapor .dp-crypto,
.dp-theme-vapor .dp-security-note,
.dp-theme-vapor .dp-trust-badge,
.dp-theme-vapor .dp-crypto__address,
.dp-theme-vapor .dp-stepper-btn,
.dp-theme-vapor .dp-chip,
.dp-theme-vapor .dp-report-form input,
.dp-theme-vapor .dp-report-form textarea {
background: rgba(255, 255, 255, 0.6);
border-color: var(--dp-line);
}
.dp-theme-vapor .dp-btn--solid {
background: linear-gradient(90deg, #ff8ad4, #6ee7ff);
border: none;
color: #4a2f6b;
font-weight: 700;
}
.dp-theme-vapor .dp-thanks-seal {
background: linear-gradient(90deg, #ff8ad4, #6ee7ff);
color: #4a2f6b;
} .dp-theme-studio {
--dp-ink: #1c2536;
--dp-ink-soft: #6b7690;
--dp-paper: #f4f6fb;
--dp-paper-raised: #ffffff;
--dp-brass: #ff9f43;
--dp-signal: #4f5eff;
--dp-signal-dark: #3b46d1;
--dp-line: #e4e8f2;
--dp-radius: 18px;
}
.dp-theme-studio.dp-widget,
.dp-theme-studio.dp-top-donors,
.dp-theme-studio.dp-wall,
.dp-theme-studio.dp-progress {
background: #ffffff;
border: 1px solid var(--dp-line);
box-shadow: 0 20px 45px -26px rgba(79, 94, 255, 0.35);
padding-top: 0 !important;
overflow: hidden;
}
.dp-theme-studio .dp-widget__stub { display: none; }
.dp-theme-studio .dp-widget__header {
background: linear-gradient(135deg, #4f5eff, #7c8bff);
margin: 0 -26px 20px;
padding: 26px 26px 20px;
}
.dp-theme-studio .dp-widget__eyebrow {
color: rgba(255, 255, 255, 0.8);
}
.dp-theme-studio .dp-widget__title,
.dp-theme-studio .dp-widget__desc {
color: #fff;
}
.dp-theme-studio .dp-lang-select {
background: rgba(255, 255, 255, 0.18);
border-color: rgba(255, 255, 255, 0.3);
color: #fff;
}
.dp-theme-studio .dp-tab-indicator {
background: var(--dp-signal);
}
.dp-theme-studio .dp-btn--solid {
background: var(--dp-signal);
border: none;
box-shadow: 0 10px 22px -8px rgba(79, 94, 255, 0.5);
}  .dp-widget.dp-layout-banner {
max-width: none;
width: 100%;
display: grid;
grid-template-columns: minmax(220px, 1fr) minmax(300px, 1.5fr);
align-items: start;
gap: 8px 36px;
padding: 24px 32px;
}
.dp-widget.dp-layout-banner .dp-widget__stub {
display: none;
} .dp-widget.dp-layout-banner > * {
grid-column: 2;
}
.dp-widget.dp-layout-banner > .dp-widget__header,
.dp-widget.dp-layout-banner > .dp-widget__progress {
grid-column: 1;
}
.dp-widget.dp-layout-banner .dp-widget__title {
font-size: 22px;
} .dp-widget.dp-layout-grid {
max-width: 760px;
width: 100%;
display: grid;
grid-template-columns: 1fr 1.15fr;
gap: 22px 44px;
padding: 34px 38px;
}
.dp-widget.dp-layout-grid .dp-widget__stub {
display: none;
} .dp-widget.dp-layout-grid > * {
grid-column: 2;
}
.dp-widget.dp-layout-grid > .dp-widget__header,
.dp-widget.dp-layout-grid > .dp-widget__progress {
grid-column: 1;
}
.dp-widget.dp-layout-grid .dp-widget__title {
font-size: 34px;
}
.dp-widget.dp-layout-grid .dp-widget__desc {
font-size: 15.5px;
}
.dp-widget.dp-layout-grid .dp-chip-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
}
.dp-widget.dp-layout-grid .dp-chip {
text-align: center;
}
@media (max-width: 720px) {
.dp-widget.dp-layout-banner,
.dp-widget.dp-layout-grid {
grid-template-columns: 1fr;
} .dp-widget.dp-layout-banner > *,
.dp-widget.dp-layout-grid > * {
grid-column: 1;
}
} .dp-widget.dp-layout-sidebar {
max-width: 280px;
padding: 18px 16px;
}
.dp-widget.dp-layout-sidebar .dp-widget__title {
font-size: 19px;
}
.dp-widget.dp-layout-sidebar .dp-widget__desc {
font-size: 12.5px;
}
.dp-widget.dp-layout-sidebar .dp-tab {
padding: 7px 8px;
font-size: 11.5px;
}
.dp-widget.dp-layout-sidebar .dp-amount-input input {
font-size: 17px;
}
.dp-widget.dp-layout-sidebar .dp-crypto {
flex-direction: column;
align-items: flex-start;
padding: 12px;
}
.dp-widget.dp-layout-sidebar .dp-crypto__qr img {
width: 100px;
height: 100px;
}
.dp-widget.dp-layout-sidebar .dp-chip-row {
gap: 6px;
}
.dp-widget.dp-layout-sidebar .dp-chip {
padding: 5px 10px;
font-size: 12px;
} .dp-widget.dp-size-sm,
.dp-top-donors.dp-size-sm,
.dp-wall.dp-size-sm,
.dp-progress.dp-size-sm {
max-width: 320px;
padding: 18px 16px;
}
.dp-widget.dp-size-sm .dp-widget__title { font-size: 18px; }
.dp-widget.dp-size-sm .dp-widget__desc { font-size: 12px; }
.dp-widget.dp-size-sm .dp-tab { font-size: 11.5px; padding: 6px 10px; }
.dp-widget.dp-size-sm .dp-amount-input input { font-size: 17px; }
.dp-widget.dp-size-sm .dp-stepper-btn { width: 30px; height: 30px; font-size: 14px; }
.dp-widget.dp-size-sm .dp-chip { font-size: 11.5px; padding: 5px 10px; }
.dp-widget.dp-size-sm .dp-btn { font-size: 13px; padding: 9px 14px; }
.dp-widget.dp-size-sm .dp-crypto__qr img { width: 110px; height: 110px; }
.dp-widget.dp-size-sm .dp-trust-badge { font-size: 10px; padding: 3px 8px; }
.dp-widget.dp-size-lg,
.dp-top-donors.dp-size-lg,
.dp-wall.dp-size-lg,
.dp-progress.dp-size-lg {
max-width: 480px;
padding: 34px 32px;
}
.dp-widget.dp-size-lg .dp-widget__title { font-size: 30px; }
.dp-widget.dp-size-lg .dp-widget__desc { font-size: 15.5px; }
.dp-widget.dp-size-lg .dp-tab { font-size: 14px; padding: 10px 16px; }
.dp-widget.dp-size-lg .dp-amount-input input { font-size: 23px; }
.dp-widget.dp-size-lg .dp-stepper-btn { width: 38px; height: 38px; font-size: 18px; }
.dp-widget.dp-size-lg .dp-chip { font-size: 14px; padding: 7px 16px; }
.dp-widget.dp-size-lg .dp-btn { font-size: 15px; padding: 12px 18px; }
.dp-widget.dp-size-lg .dp-crypto__qr img { width: 160px; height: 160px; }
.dp-widget.dp-size-xl,
.dp-top-donors.dp-size-xl,
.dp-wall.dp-size-xl,
.dp-progress.dp-size-xl {
max-width: 560px;
padding: 40px 38px;
}
.dp-widget.dp-size-xl .dp-widget__title { font-size: 36px; }
.dp-widget.dp-size-xl .dp-widget__desc { font-size: 17px; }
.dp-widget.dp-size-xl .dp-tab { font-size: 15px; padding: 11px 18px; }
.dp-widget.dp-size-xl .dp-amount-input input { font-size: 26px; }
.dp-widget.dp-size-xl .dp-stepper-btn { width: 42px; height: 42px; font-size: 20px; }
.dp-widget.dp-size-xl .dp-chip { font-size: 15px; padding: 8px 18px; }
.dp-widget.dp-size-xl .dp-btn { font-size: 16px; padding: 13px 20px; }
.dp-widget.dp-size-xl .dp-crypto__qr img { width: 180px; height: 180px; }  .dp-widget.dp-layout-banner.dp-size-sm,
.dp-widget.dp-layout-banner.dp-size-md,
.dp-widget.dp-layout-banner.dp-size-lg,
.dp-widget.dp-layout-banner.dp-size-xl {
max-width: none;
width: 100%;
}
.dp-widget.dp-layout-grid.dp-size-sm,
.dp-widget.dp-layout-grid.dp-size-md,
.dp-widget.dp-layout-grid.dp-size-lg,
.dp-widget.dp-layout-grid.dp-size-xl {
max-width: 760px;
width: 100%;
}
.dp-widget.dp-layout-banner.dp-size-sm,
.dp-widget.dp-layout-grid.dp-size-sm { padding: 18px 20px; }
.dp-widget.dp-layout-banner.dp-size-lg,
.dp-widget.dp-layout-grid.dp-size-lg { padding: 38px 40px; }
.dp-widget.dp-layout-banner.dp-size-xl,
.dp-widget.dp-layout-grid.dp-size-xl { padding: 44px 48px; } .dp-widget.dp-layout-sidebar.dp-size-lg,
.dp-widget.dp-layout-sidebar.dp-size-xl {
max-width: 320px;
} @media (max-width: 600px) {
.dp-widget,
.dp-widget.dp-size-lg,
.dp-widget.dp-size-xl {
max-width: 100%;
}
.dp-widget__header-row {
flex-wrap: wrap;
row-gap: 6px;
}
.dp-widget__title {
font-size: clamp(18px, 6vw, 24px) !important;
}
.dp-widget.dp-size-xl .dp-widget__title,
.dp-widget.dp-size-lg .dp-widget__title {
font-size: clamp(20px, 6vw, 28px) !important;
}
.dp-tab span {
display: none;
}
.dp-tab {
padding: 10px !important;
}
.dp-method-icon {
width: 22px !important;
height: 22px !important;
}
.dp-stepper-btn {
width: 38px !important;
height: 38px !important;
}
.dp-btn,
.dp-copy-btn,
.dp-lang-select,
.dp-report-toggle {
min-height: 40px;
}
.dp-widget.dp-layout-grid .dp-chip-row {
grid-template-columns: repeat(2, 1fr);
}
.dp-crypto__qr img {
width: 120px !important;
height: 120px !important;
}
}
@media (max-width: 380px) {
.dp-widget {
padding: 20px 16px;
}
.dp-amount-input {
flex-wrap: nowrap;
}
.dp-amount-symbol,
.dp-amount-currency {
font-size: 13px;
}
.dp-chip-row {
gap: 6px;
}
.dp-chip {
flex: 1 1 calc(33% - 6px);
text-align: center;
}
} .dp-auto-position {
display: flex;
justify-content: center;
box-sizing: border-box;
padding: 0 16px;
}
.dp-auto-position--header {
margin: 0 0 28px;
padding-top: 40px;
padding-bottom: 8px;
}
.dp-auto-position--middle {
margin: 32px auto;
}
.dp-auto-position--footer {
margin: 28px 0 0;
}.footer-widgets-container{padding:40px}.inside-footer-widgets{display:flex}.inside-footer-widgets>div{flex:1 1 0}.site-footer .footer-widgets-container .inner-padding{padding:0 0 0 40px}.site-footer .footer-widgets-container .inside-footer-widgets{margin-left:-40px}.top-bar{font-weight:400;text-transform:none;font-size:13px}.top-bar .inside-top-bar{display:flex;align-items:center;flex-wrap:wrap}.top-bar .inside-top-bar .widget{padding:0;display:inline-block;margin-bottom:0}.top-bar .inside-top-bar .textwidget p:last-child{margin:0}.top-bar .widget-title{display:none}.top-bar .widget{margin:0 10px}.top-bar .widget_nav_menu>div>ul{display:flex;align-items:center}.top-bar .widget_nav_menu li{margin:0 10px;padding:0}.top-bar .widget_nav_menu li:first-child{margin-left:0}.top-bar .widget_nav_menu li:last-child{margin-right:0}.top-bar .widget_nav_menu li ul{display:none}.inside-top-bar{padding:10px 40px}div.top-bar .widget{margin-bottom:0}.top-bar-align-right .widget{margin-right:0}.top-bar-align-right .widget:first-child{margin-left:auto}.top-bar-align-right .widget:nth-child(even){order:-20}.top-bar-align-right .widget:nth-child(2){margin-left:0}.top-bar-align-left .widget{margin-left:0}.top-bar-align-left .widget:nth-child(odd){order:-20}.top-bar-align-left .widget:nth-child(2){margin-left:auto}.top-bar-align-left .widget:last-child{margin-right:0}.top-bar-align-center .widget:first-child{margin-left:auto}.top-bar-align-center .widget:last-child{margin-right:auto}.top-bar-align-center .widget:not(:first-child):not(:last-child){margin:0 5px}.footer-bar-active .footer-bar .widget{padding:0}.footer-bar .widget_nav_menu>div>ul{display:flex;align-items:center;flex-wrap:wrap}.footer-bar .widget_nav_menu li{margin:0 10px;padding:0}.footer-bar .widget_nav_menu li:first-child{margin-left:0}.footer-bar .widget_nav_menu li:last-child{margin-right:0}.footer-bar .widget_nav_menu li ul{display:none}.footer-bar .textwidget p:last-child{margin:0}.footer-bar .widget-title{display:none}.footer-bar-align-right .copyright-bar{order:-20;margin-right:auto}.footer-bar-align-left .copyright-bar{margin-left:auto}.footer-bar-align-center .inside-site-info{flex-direction:column}.footer-bar-align-center .footer-bar{margin-bottom:10px}.site-footer:not(.footer-bar-active) .copyright-bar{margin:0 auto}@media (max-width:768px){.top-bar .inside-top-bar{justify-content:center}.top-bar .inside-top-bar>.widget{order:1;margin:0 10px}.top-bar .inside-top-bar:first-child{margin-left:auto}.top-bar .inside-top-bar:last-child{margin-right:auto}.top-bar .widget_nav_menu li{padding:5px 0}.top-bar-align-center{text-align:center}.inside-footer-widgets{flex-direction:column}.inside-footer-widgets>div:not(:last-child){margin-bottom:40px}.site-footer .footer-widgets .footer-widgets-container .inside-footer-widgets{margin:0}.site-footer .footer-widgets .footer-widgets-container .inner-padding{padding:0}.footer-bar-active .inside-site-info{flex-direction:column}.footer-bar-active .footer-bar{margin-bottom:10px}.footer-bar .widget_nav_menu>div>ul{justify-content:center}.footer-bar .widget_nav_menu li{padding:5px 0}.footer-bar .widget_nav_menu li:first-child{margin-left:10px}.footer-bar .widget_nav_menu li:last-child{margin-right:10px}.footer-bar-align-left .copyright-bar{margin-left:0}.footer-bar-align-right .copyright-bar{order:unset;margin-right:0}}blockquote,body,dd,dl,dt,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,html,iframe,legend,li,ol,p,pre,textarea,ul{margin:0;padding:0;border:0}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}main{display:block}progress{vertical-align:baseline}html{box-sizing:border-box}*,::after,::before{box-sizing:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;margin:0}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}body,button,input,select,textarea{font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-weight:400;text-transform:none;font-size:17px;line-height:1.5}p{margin-bottom:1.5em}h1,h2,h3,h4,h5,h6{font-family:inherit;font-size:100%;font-style:inherit;font-weight:inherit}pre{background:rgba(0,0,0,.05);font-family:inherit;font-size:inherit;line-height:normal;margin-bottom:1.5em;padding:20px;overflow:auto;max-width:100%}blockquote{border-left:5px solid rgba(0,0,0,.05);padding:20px;font-size:1.2em;font-style:italic;margin:0 0 1.5em;position:relative}blockquote p:last-child{margin:0}table,td,th{border:1px solid rgba(0,0,0,.1)}table{border-collapse:separate;border-spacing:0;border-width:1px 0 0 1px;margin:0 0 1.5em;width:100%}td,th{padding:8px}th{border-width:0 1px 1px 0}td{border-width:0 1px 1px 0}hr{background-color:rgba(0,0,0,.1);border:0;height:1px;margin-bottom:40px;margin-top:40px}fieldset{padding:0;border:0;min-width:inherit}fieldset legend{padding:0;margin-bottom:1.5em}h1{font-size:42px;margin-bottom:20px;line-height:1.2em;font-weight:400;text-transform:none}h2{font-size:35px;margin-bottom:20px;line-height:1.2em;font-weight:400;text-transform:none}h3{font-size:29px;margin-bottom:20px;line-height:1.2em;font-weight:400;text-transform:none}h4{font-size:24px}h5{font-size:20px}h4,h5,h6{margin-bottom:20px}ol,ul{margin:0 0 1.5em 3em}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}b,strong{font-weight:700}cite,dfn,em,i{font-style:italic}address{margin:0 0 1.5em}code,kbd,tt,var{font:15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{text-decoration:none}sub,sup{font-size:75%;height:0;line-height:0;position:relative;vertical-align:baseline}sup{bottom:1ex}sub{top:.5ex}small{font-size:75%}big{font-size:125%}figure{margin:0}table{margin:0 0 1.5em;width:100%}th{font-weight:700}img{height:auto;max-width:100%}button,input[type=button],input[type=reset],input[type=submit]{background:#55555e;color:#fff;border:1px solid transparent;cursor:pointer;-webkit-appearance:button;padding:10px 20px}input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea{border:1px solid;border-radius:0;padding:10px 15px;max-width:100%}textarea{width:100%}a,button,input{transition:color .1s ease-in-out,background-color .1s ease-in-out}a{text-decoration:none}.button,.wp-block-button .wp-block-button__link{padding:10px 20px;display:inline-block}.wp-block-button .wp-block-button__link{font-size:inherit;line-height:inherit}.using-mouse :focus{outline:0}.using-mouse ::-moz-focus-inner{border:0}.alignleft{float:left;margin-right:1.5em}.alignright{float:right;margin-left:1.5em}.aligncenter{clear:both;display:block;margin:0 auto}.size-auto,.size-full,.size-large,.size-medium,.size-thumbnail{max-width:100%;height:auto}.no-sidebar .entry-content .alignfull{margin-left:calc(-100vw / 2 + 100% / 2);margin-right:calc(-100vw / 2 + 100% / 2);max-width:100vw;width:auto}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#21759b;display:block;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#primary[tabindex="-1"]:focus{outline:0}.main-navigation{z-index:100;padding:0;clear:both;display:block}.main-navigation a{display:block;text-decoration:none;font-weight:400;text-transform:none;font-size:15px}.main-navigation ul{list-style:none;margin:0;padding-left:0}.main-navigation .main-nav ul li a{padding-left:20px;padding-right:20px;line-height:60px}.inside-navigation{position:relative}.main-navigation .inside-navigation{display:flex;align-items:center;flex-wrap:wrap;justify-content:space-between}.main-navigation .main-nav>ul{display:flex;flex-wrap:wrap;align-items:center}.main-navigation li{position:relative}.main-navigation .menu-bar-items{display:flex;align-items:center;font-size:15px}.main-navigation .menu-bar-items a{color:inherit}.main-navigation .menu-bar-item{position:relative}.main-navigation .menu-bar-item.search-item{z-index:20}.main-navigation .menu-bar-item>a{padding-left:20px;padding-right:20px;line-height:60px}.sidebar .main-navigation .main-nav{flex-basis:100%}.sidebar .main-navigation .main-nav>ul{flex-direction:column}.sidebar .main-navigation .menu-bar-items{margin:0 auto}.sidebar .main-navigation .menu-bar-items .search-item{order:10}.nav-align-center .inside-navigation{justify-content:center}.nav-align-center .main-nav>ul{justify-content:center}.nav-align-right .inside-navigation{justify-content:flex-end}.main-navigation ul ul{display:block;box-shadow:1px 1px 0 rgba(0,0,0,.1);float:left;position:absolute;left:-99999px;opacity:0;z-index:99999;width:200px;text-align:left;top:auto;transition:opacity 80ms linear;transition-delay:0s;pointer-events:none;height:0;overflow:hidden}.main-navigation ul ul a{display:block}.main-navigation ul ul li{width:100%}.main-navigation .main-nav ul ul li a{line-height:normal;padding:10px 20px;font-size:14px}.main-navigation .main-nav ul li.menu-item-has-children>a{padding-right:0;position:relative}.main-navigation.sub-menu-left ul ul{box-shadow:-1px 1px 0 rgba(0,0,0,.1)}.main-navigation.sub-menu-left .sub-menu{right:0}.main-navigation:not(.toggled) ul li.sfHover>ul,.main-navigation:not(.toggled) ul li:hover>ul{left:auto;opacity:1;transition-delay:150ms;pointer-events:auto;height:auto;overflow:visible}.main-navigation:not(.toggled) ul ul li.sfHover>ul,.main-navigation:not(.toggled) ul ul li:hover>ul{left:100%;top:0}.main-navigation.sub-menu-left:not(.toggled) ul ul li.sfHover>ul,.main-navigation.sub-menu-left:not(.toggled) ul ul li:hover>ul{right:100%;left:auto}.nav-float-right .main-navigation ul ul ul{top:0}.menu-item-has-children .dropdown-menu-toggle{display:inline-block;height:100%;clear:both;padding-right:20px;padding-left:10px}.menu-item-has-children ul .dropdown-menu-toggle{padding-top:10px;padding-bottom:10px;margin-top:-10px}.sidebar .menu-item-has-children .dropdown-menu-toggle,nav ul ul .menu-item-has-children .dropdown-menu-toggle{float:right}.widget-area .main-navigation li{float:none;display:block;width:100%;padding:0;margin:0}.sidebar .main-navigation.sub-menu-right ul li.sfHover ul,.sidebar .main-navigation.sub-menu-right ul li:hover ul{top:0;left:100%}.sidebar .main-navigation.sub-menu-left ul li.sfHover ul,.sidebar .main-navigation.sub-menu-left ul li:hover ul{top:0;right:100%}.site-main .comment-navigation,.site-main .post-navigation,.site-main .posts-navigation{margin:0 0 2em;overflow:hidden}.site-main .post-navigation{margin-bottom:0}.paging-navigation .nav-next,.paging-navigation .nav-previous{display:none}.paging-navigation .nav-links>*{padding:0 5px}.paging-navigation .nav-links .current{font-weight:700}.nav-links>:first-child{padding-left:0}.site-header{position:relative}.inside-header{padding:20px 40px}.main-title{margin:0;font-size:25px;line-height:1.2em;word-wrap:break-word;font-weight:700;text-transform:none}.site-description{margin:0;line-height:1.5;font-weight:400;text-transform:none;font-size:15px}.site-logo{display:inline-block;max-width:100%}.site-header .header-image{vertical-align:middle}.inside-header{display:flex;align-items:center}.header-widget{margin-left:auto}.header-widget p:last-child{margin-bottom:0}.nav-float-right .header-widget{margin-left:20px}.nav-float-right #site-navigation{margin-left:auto}.nav-float-left #site-navigation{margin-right:auto;order:-10}.nav-float-left .header-widget{margin-left:0;margin-right:20px;order:-15}.header-aligned-center:not([class*=nav-float-]) .inside-header{justify-content:center;flex-direction:column;text-align:center}.header-aligned-center:not([class*=nav-float-]) .header-widget{margin-left:auto;margin-right:auto}.header-aligned-center:not([class*=nav-float-]) .inside-header>:not(:first-child){margin-top:1em}.header-aligned-right:not([class*=nav-float-]) .inside-header{justify-content:flex-end}.header-aligned-right:not([class*=nav-float-]) .header-widget{margin-right:auto;margin-left:0;order:-10}.site-branding-container{display:inline-flex;align-items:center;text-align:left;flex-shrink:0}.site-branding-container .site-logo{margin-right:1em}.sticky{display:block}.entry-header .gp-icon,.posted-on .updated{display:none}.byline,.entry-header .cat-links,.entry-header .comments-link,.entry-header .tags-links,.group-blog .byline,.single .byline{display:inline}footer.entry-meta .byline,footer.entry-meta .posted-on{display:block}.entry-content:not(:first-child),.entry-summary:not(:first-child),.page-content:not(:first-child){margin-top:2em}.page-links{clear:both;margin:0 0 1.5em}.archive .format-aside .entry-header,.archive .format-status .entry-header,.archive .format-status .entry-meta,.archive .format-status .entry-title,.blog .format-aside .entry-header,.blog .format-status .entry-header,.blog .format-status .entry-meta,.blog .format-status .entry-title{display:none}.archive .format-aside .entry-content,.archive .format-status .entry-content,.blog .format-aside .entry-content,.blog .format-status .entry-content{margin-top:0}.archive .format-status .entry-content p:last-child,.blog .format-status .entry-content p:last-child{margin-bottom:0}.entry-header,.site-content{word-wrap:break-word}.entry-title{margin-bottom:0}.author .page-header .page-title{display:flex;align-items:center}.author .page-header .avatar{margin-right:20px}.page-header .author-info>:last-child,.page-header>:last-child{margin-bottom:0}.entry-meta{font-size:85%;margin-top:.5em;line-height:1.5}footer.entry-meta{margin-top:2em}.cat-links,.comments-link,.tags-links{display:block}.entry-content>p:last-child,.entry-summary>p:last-child,.page-content>p:last-child,.read-more-container,.taxonomy-description p:last-child{margin-bottom:0}.wp-caption{margin-bottom:1.5em;max-width:100%;position:relative}.wp-caption img[class*=wp-image-]{display:block;margin:0 auto 0;max-width:100%}.wp-caption .wp-caption-text{font-size:75%;padding-top:5px;opacity:.8}.wp-caption img{position:relative;vertical-align:bottom}.wp-block-image figcaption{font-size:13px;text-align:center}.wp-block-gallery,ul.blocks-gallery-grid{margin-left:0}.wp-block-gallery .blocks-gallery-image figcaption,.wp-block-gallery .blocks-gallery-item figcaption{background:rgba(255,255,255,.7);color:#000;padding:10px;box-sizing:border-box}.gallery{margin-bottom:1.5em}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}.site-main .gallery{margin-bottom:1.5em}.gallery-item img{vertical-align:bottom}.gallery-icon{padding:5px}embed,iframe,object{max-width:100%}.wp-block-post-template{margin-left:0}.widget-area .widget{padding:40px}.widget select{max-width:100%}.footer-widgets .widget :last-child,.sidebar .widget :last-child{margin-bottom:0}.widget-title{margin-bottom:30px;font-size:20px;line-height:1.5;font-weight:400;text-transform:none}.widget ol,.widget ul{margin:0}.widget .search-field{width:100%}.widget .search-form{display:flex}.widget .search-form button.search-submit{font-size:15px}.footer-widgets .widget{margin-bottom:30px}.footer-widgets .widget:last-child,.sidebar .widget:last-child{margin-bottom:0}.widget ul li{list-style-type:none;position:relative;margin-bottom:.5em}.widget ul li ul{margin-left:1em;margin-top:.5em}.wp-calendar-table{table-layout:fixed}.site-content{display:flex}.grid-container{margin-left:auto;margin-right:auto;max-width:1200px}.page-header,.sidebar .widget,.site-main>*{margin-bottom:20px}.both-left .inside-left-sidebar,.both-right .inside-left-sidebar{margin-right:10px}.both-left .inside-right-sidebar,.both-right .inside-right-sidebar{margin-left:10px}.one-container.both-right .site-main,.one-container.right-sidebar .site-main{margin-right:40px}.one-container.both-left .site-main,.one-container.left-sidebar .site-main{margin-left:40px}.one-container.both-sidebars .site-main{margin:0 40px 0 40px}.one-container.archive .post:not(:last-child),.one-container.blog .post:not(:last-child){padding-bottom:40px}.one-container .site-content{padding:40px}.separate-containers .comments-area,.separate-containers .inside-article,.separate-containers .page-header,.separate-containers .paging-navigation{padding:40px}.separate-containers .site-main{margin:20px}.separate-containers.no-sidebar .site-main{margin-left:0;margin-right:0}.separate-containers.both-right .site-main,.separate-containers.right-sidebar .site-main{margin-left:0}.separate-containers.both-left .site-main,.separate-containers.left-sidebar .site-main{margin-right:0}.separate-containers .inside-left-sidebar,.separate-containers .inside-right-sidebar{margin-top:20px;margin-bottom:20px}.inside-page-header{padding:40px}.widget-area .main-navigation{margin-bottom:20px}.one-container .site-main>:last-child,.separate-containers .site-main>:last-child{margin-bottom:0}.full-width-content .container.grid-container{max-width:100%}.full-width-content.no-sidebar.separate-containers .site-main{margin:0}.full-width-content.one-container .site-content,.full-width-content.separate-containers .inside-article{padding:0}.full-width-content .entry-content .alignwide{margin-left:0;width:auto;max-width:unset}.contained-content.one-container .site-content,.contained-content.separate-containers .inside-article{padding:0}.sidebar .grid-container{max-width:100%;width:100%}.both-left .is-left-sidebar,.both-sidebars .is-left-sidebar,.left-sidebar .sidebar{order:-10}.both-left .is-right-sidebar{order:-5}.both-right .is-left-sidebar{order:5}.both-right .is-right-sidebar,.both-sidebars .is-right-sidebar{order:10}.inside-site-info{display:flex;align-items:center;justify-content:center;padding:20px 40px}.site-info{text-align:center;font-size:15px}.post-image:not(:first-child){margin-top:2em}.featured-image{line-height:0}.separate-containers .featured-image{margin-top:20px}.separate-containers .inside-article>.featured-image{margin-top:0;margin-bottom:2em}.one-container .inside-article>.featured-image{margin-top:0;margin-bottom:2em}.gp-icon{display:inline-flex;align-self:center}.gp-icon svg{height:1em;width:1em;top:.125em;position:relative;fill:currentColor}.close-search .icon-search svg:nth-child(1),.icon-menu-bars svg:nth-child(2),.icon-search svg:nth-child(2),.toggled .icon-menu-bars svg:nth-child(1){display:none}.close-search .icon-search svg:nth-child(2),.toggled .icon-menu-bars svg:nth-child(2){display:block}.entry-meta .gp-icon{margin-right:.6em;opacity:.7}nav.toggled .icon-arrow-left svg{transform:rotate(-90deg)}nav.toggled .icon-arrow-right svg{transform:rotate(90deg)}nav.toggled .sfHover>a>.dropdown-menu-toggle .gp-icon svg{transform:rotate(180deg)}nav.toggled .sfHover>a>.dropdown-menu-toggle .gp-icon.icon-arrow-left svg{transform:rotate(-270deg)}nav.toggled .sfHover>a>.dropdown-menu-toggle .gp-icon.icon-arrow-right svg{transform:rotate(270deg)}.container.grid-container{width:auto}.menu-toggle,.mobile-bar-items,.sidebar-nav-mobile{display:none}.menu-toggle{padding:0 20px;line-height:60px;margin:0;font-weight:400;text-transform:none;font-size:15px;cursor:pointer}.menu-toggle .mobile-menu{padding-left:3px}.menu-toggle .gp-icon+.mobile-menu{padding-left:9px}.menu-toggle .mobile-menu:empty{display:none}button.menu-toggle{background-color:transparent;flex-grow:1;border:0;text-align:center}button.menu-toggle:active,button.menu-toggle:focus,button.menu-toggle:hover{background-color:transparent}.has-menu-bar-items button.menu-toggle{flex-grow:0}nav.toggled ul ul.sub-menu{width:100%}.toggled .menu-item-has-children .dropdown-menu-toggle{padding-left:20px}.main-navigation.toggled .main-nav{flex-basis:100%;order:3}.main-navigation.toggled .main-nav>ul{display:block}.main-navigation.toggled .main-nav li{width:100%;text-align:left}.main-navigation.toggled .main-nav ul ul{transition:0s;visibility:hidden;box-shadow:none;border-bottom:1px solid rgba(0,0,0,.05)}.main-navigation.toggled .main-nav ul ul li:last-child>ul{border-bottom:0}.main-navigation.toggled .main-nav ul ul.toggled-on{position:relative;top:0;left:auto!important;right:auto!important;width:100%;pointer-events:auto;height:auto;opacity:1;display:block;visibility:visible;float:none}.main-navigation.toggled .menu-item-has-children .dropdown-menu-toggle{float:right}.mobile-menu-control-wrapper{display:none;margin-left:auto;align-items:center}.has-inline-mobile-toggle #site-navigation.toggled{margin-top:1.5em}.has-inline-mobile-toggle #site-navigation.has-active-search{margin-top:1.5em}.has-inline-mobile-toggle #site-navigation.has-active-search .nav-search-active{position:relative}.has-inline-mobile-toggle #site-navigation.has-active-search .navigation-search input{outline:auto}.nav-float-left .mobile-menu-control-wrapper{order:-10;margin-left:0;margin-right:auto;flex-direction:row-reverse}@media (max-width:768px){.hide-on-mobile{display:none!important}a,body,button,input,select,textarea{transition:all 0s ease-in-out}.inside-header{flex-direction:column;text-align:center}.site-header .header-widget{margin-top:1.5em;margin-left:auto;margin-right:auto;text-align:center}.site-content{flex-direction:column}.container .site-content .content-area{width:auto}.is-left-sidebar.sidebar,.is-right-sidebar.sidebar{width:auto;order:initial}.is-left-sidebar+.is-right-sidebar .inside-right-sidebar{margin-top:0}.both-left .inside-left-sidebar,.both-left .inside-right-sidebar,.both-right .inside-left-sidebar,.both-right .inside-right-sidebar{margin-right:0;margin-left:0}#main{margin-left:0;margin-right:0}body:not(.no-sidebar) #main{margin-bottom:0}.alignleft,.alignright{float:none;display:block;margin-left:auto;margin-right:auto}.comment .children{padding-left:10px;margin-left:0}.entry-meta{font-size:inherit}.entry-meta a{line-height:1.8em}}@media (min-width:769px) and (max-width:1024px){.hide-on-tablet{display:none!important}}@media (min-width:1025px){.hide-on-desktop{display:none!important}}