/* pgpl-checkout */
.pgpl-co {
--ink: #0b0e1c;
--mute: #55607d;
--mute-2: #66708b;
--tint: #f6f7fd;
--line: rgba(11, 14, 28, 0.09);
--line-2: rgba(11, 14, 28, 0.06);
--line-strong: rgba(11, 14, 28, 0.18);
--ultra: var(--pgpl-ultra, #2436e4);
--ultra-deep: var(--pgpl-ultra-deep, #1b29b8);
--wash: #eef1ff;
--night: var(--pgpl-aurora, #0b0e1c);
--volt: #d8ff3e;
--grad: linear-gradient(135deg, var(--ultra), #5b32e8);
--ok: #16a34a;
--ok-bg: rgba(22, 163, 74, 0.08);
--warn: #8a6100;
--warn-bg: #fdf6e3;
--bad: #b42323;
--bad-bg: #fdecec;
--font: "Bricolage Grotesque", "Poppins", system-ui, sans-serif;
--hair: 1px solid var(--line);
--r-sm: 10px;
--r-md: 16px;
--r-lg: 22px;
--r-full: 999px;
--stack: 1.4rem;
--shadow-card: 0 0 0 1px rgba(11, 14, 28, 0.07), 0 10px 24px -18px rgba(11, 14, 28, 0.45);
--shadow-pop: 0 0 0 1px rgba(11, 14, 28, 0.07), 0 26px 44px -24px rgba(11, 14, 28, 0.5);
--glow-btn: 0 14px 28px -14px rgba(60, 80, 255, 0.7);
--ease: cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
font-family: var(--font);
color: var(--ink);
background: var(--tint);
line-height: 1.55;
letter-spacing: -0.006em;
width: 100%;
min-width: 0;
padding: clamp(1.5rem, 3.5vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
-webkit-font-smoothing: antialiased;
}
.pgpl-co::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 230px;
background-image: radial-gradient(circle, rgba(11, 14, 28, 0.13) 1px, transparent 1px);
background-size: 26px 26px;
-webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
opacity: 0.6;
pointer-events: none;
}
.pgpl-co *,
.pgpl-co *::before,
.pgpl-co *::after { box-sizing: border-box; }
.pgpl-co a:focus-visible,
.pgpl-co button:focus-visible,
.pgpl-co input:focus-visible,
.pgpl-co select:focus-visible,
.pgpl-co textarea:focus-visible {
outline: 2.5px solid var(--ultra);
outline-offset: 2px;
border-radius: 6px;
}
.pgpl-co ::selection { background: var(--volt); color: var(--ink); }
.pgpl-co .screen-reader-text {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.pgpl-co__shell {
position: relative;
z-index: 1;
max-width: 1170px;
margin: 0 auto;
padding-left: max(1.1rem, env(safe-area-inset-left));
padding-right: max(1.1rem, env(safe-area-inset-right));
}
.pgpl-co__head {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
justify-content: space-between;
gap: 1rem;
margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.pgpl-co__title {
margin: 0;
font-family: var(--font);
font-size: clamp(1.75rem, 4.5vw, 2.5rem);
font-weight: 800;
line-height: 1.08;
letter-spacing: -0.028em;
color: var(--ink);
text-wrap: balance;
}
.pgpl-co__sub {
margin: 0.4rem 0 0;
font-size: 0.95rem;
color: var(--mute);
}
.pgpl-co__head-main { min-width: 0; }
.pgpl-co__head-aside {
display: flex;
align-items: center;
gap: 0.75rem;
flex-wrap: wrap;
}
.pgpl-co__secure {
display: inline-flex;
align-items: center;
gap: 0.4rem;
margin: 0;
padding: 0.35rem 0.8rem;
background: var(--ok-bg);
color: var(--ok);
border: 1px solid rgba(22, 163, 74, 0.3);
border-radius: var(--r-full);
font-size: 0.8rem;
font-weight: 700;
white-space: nowrap;
}
.pgpl-co__secure-lock { font-size: 0.9em; }
.pgpl-co__currency {
display: inline-flex;
gap: 0.25rem;
padding: 0.25rem;
background: #fff;
border: 1px solid var(--line);
border-radius: var(--r-full);
}
.pgpl-co__currency-btn {
display: inline-block;
padding: 0.3rem 0.85rem;
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.02em;
color: var(--mute);
text-decoration: none;
border-radius: var(--r-full);
transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.pgpl-co__currency-btn:hover { background: var(--tint); color: var(--ink); }
.pgpl-co__currency-btn.is-active {
background: var(--ink);
color: #fff;
box-shadow: 0 6px 16px -8px rgba(11, 14, 28, 0.55);
}
.pgpl-co #edd_checkout_wrap {
display: grid;
grid-template-columns: minmax(0, 1fr);
gap: var(--stack);
align-items: start;
}
@media (min-width: 62rem) {
.pgpl-co #edd_checkout_wrap {
grid-template-columns: minmax(0, 1fr) 22.5rem;
gap: 2.25rem;
}
.pgpl-co-aside { grid-column: 2; grid-row: 1; align-self: start; }
.pgpl-co #edd_checkout_form_wrap {
grid-column: 1;
grid-row: 1;
min-width: 0;
}
}
@media (min-width: 62rem) and (min-height: 52rem) {
.pgpl-co-aside {
position: sticky;
top: 1.5rem;
}
.pgpl-co--aside-tall .pgpl-co-aside { position: static; }
}
.pgpl-co-aside {
display: flex;
flex-direction: column;
gap: var(--stack);
min-width: 0;
order: 1;
}
.pgpl-co #edd_checkout_cart_form { margin: 0; min-width: 0; }
.pgpl-co #edd_checkout_cart_wrap { min-width: 0; }
.pgpl-co--empty #edd_checkout_wrap { grid-template-columns: minmax(0, 1fr); }
.pgpl-co #edd_checkout_cart,
.pgpl-co .pgpl-sum {
display: block;
width: 100%;
margin: 0;
padding: 1.5rem;
background: #fff;
border: 0;
border-radius: var(--r-lg);
box-shadow: var(--shadow-card);
border-collapse: separate;
}
.pgpl-co .pgpl-sum td,
.pgpl-co .pgpl-sum th { display: block; border: 0; padding: 0; }
.pgpl-co .pgpl-sum__fold { display: block; }
.pgpl-co .pgpl-sum__fold > summary { list-style: none; }
.pgpl-co .pgpl-sum__fold > summary::-webkit-details-marker { display: none; }
.pgpl-co .pgpl-sum__head {
display: flex;
align-items: center;
gap: 0.5rem;
padding-bottom: 0.9rem;
border-bottom: 1px solid var(--line);
}
.pgpl-co .pgpl-sum__count { margin-left: auto; }
.pgpl-co .pgpl-sum__peek {
display: none;
align-items: center;
gap: 0.5rem;
margin-left: auto;
white-space: nowrap;
}
.pgpl-co .pgpl-sum__peek-amount {
font-size: 1.05rem;
font-weight: 800;
letter-spacing: -0.02em;
color: var(--ultra);
font-variant-numeric: tabular-nums;
}
.pgpl-co .pgpl-sum__chev {
color: var(--mute);
transition: transform 0.18s var(--ease);
}
.pgpl-co .pgpl-sum__fold[open] .pgpl-sum__chev { transform: rotate(180deg); }
@media (min-width: 62rem) {
.pgpl-co .pgpl-sum__head { pointer-events: none; }
}
@media (max-width: 61.999rem) {
.pgpl-co .pgpl-sum__head { cursor: pointer; }
.pgpl-co .pgpl-sum__count { margin-left: 0; }
.pgpl-co .pgpl-sum__peek { display: inline-flex; }
.pgpl-co .pgpl-sum__fold:not([open]) .pgpl-sum__head {
border-bottom: 0;
padding-bottom: 0;
}
}
.pgpl-co .pgpl-sum__title {
margin: 0;
font-size: 1.05rem;
font-weight: 800;
letter-spacing: -0.02em;
color: var(--ink);
}
.pgpl-co .pgpl-sum__count {
padding: 0.15rem 0.6rem;
background: var(--tint);
border: 1px solid var(--line);
border-radius: var(--r-full);
font-size: 0.78rem;
font-weight: 700;
color: var(--mute);
white-space: nowrap;
}
.pgpl-co .pgpl-sum__items { display: flex; flex-direction: column; }
.pgpl-co .pgpl-sum__item {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
grid-template-areas:
"main price"
"acts acts";
gap: 0.4rem 0.75rem;
padding: 0.95rem 0;
border-bottom: 1px solid var(--line-2);
}
.pgpl-co .pgpl-sum__item:last-child { border-bottom: 0; }
.pgpl-co .pgpl-sum__item-main {
grid-area: main;
display: flex;
align-items: center;
gap: 0.7rem;
min-width: 0;
}
.pgpl-co .pgpl-sum__thumb { flex: 0 0 auto; line-height: 0; }
.pgpl-co .pgpl-sum__thumb img {
display: block;
width: 48px;
height: 48px;
object-fit: cover;
border: 0;
border-radius: var(--r-sm);
box-shadow: 0 0 0 1px var(--line);
}
.pgpl-co .pgpl-sum__item-text { min-width: 0; }
.pgpl-co .edd_checkout_cart_item_title {
display: block;
font-size: 0.95rem;
font-weight: 700;
line-height: 1.3;
color: var(--ink);
overflow-wrap: anywhere;
}
.pgpl-co .pgpl-sum__item-price {
grid-area: price;
font-size: 0.98rem;
font-weight: 800;
color: var(--ink);
white-space: nowrap;
text-align: right;
font-variant-numeric: tabular-nums;
}
.pgpl-co .pgpl-sum__item-actions {
grid-area: acts;
display: flex;
align-items: center;
gap: 0.75rem;
flex-wrap: wrap;
}
.pgpl-co .pgpl-sum__qty .edd-item-quantity {
width: 4.2rem;
padding: 0.3rem 0.45rem;
font-family: inherit;
font-size: 0.85rem;
border: 1px solid var(--line-strong);
border-radius: var(--r-sm);
}
.pgpl-co .pgpl-sum__remove {
margin-left: auto;
font-size: 0.8rem;
font-weight: 700;
color: var(--mute);
text-decoration: none;
border-bottom: 1.5px solid transparent;
transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.pgpl-co .pgpl-sum__remove:hover { color: var(--bad); border-bottom-color: var(--bad); }
.pgpl-co .pgpl-sum__fee {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
padding: 0.6rem 0;
border-bottom: 1px solid var(--line-2);
font-size: 0.9rem;
}
.pgpl-co .pgpl-sum__fee .edd_cart_fee_amount {
font-weight: 700;
font-variant-numeric: tabular-nums;
}
.pgpl-co .pgpl-sum__totals {
display: flex;
flex-direction: column;
gap: 0.5rem;
margin-top: 0.9rem;
padding-top: 0.9rem;
border-top: 1px solid var(--line);
}
.pgpl-co .pgpl-sum__row {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 0.75rem;
font-size: 0.92rem;
color: var(--mute);
}
.pgpl-co .pgpl-sum__row-label { min-width: 0; }
.pgpl-co .pgpl-sum__row-value {
font-weight: 700;
color: var(--ink);
font-variant-numeric: tabular-nums;
}
.pgpl-co .pgpl-sum__buttons:not(.edd-no-js) {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
padding-bottom: 0.35rem;
}
.pgpl-co .pgpl-sum__buttons .edd-submit,
.pgpl-co .pgpl-sum__buttons .edd-submit:hover,
.pgpl-co .pgpl-sum__buttons .edd-submit:focus {
padding: 0.4rem 0.9rem;
font-family: inherit;
font-size: 0.8rem;
font-weight: 700;
color: var(--ink);
background: var(--tint);
border: 1px solid var(--line);
border-radius: var(--r-full);
cursor: pointer;
transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}
.pgpl-co .pgpl-sum__buttons .edd-submit:hover { background: #fff; border-color: var(--line-strong); }
.pgpl-co .pgpl-sum__row .edd_cart_tax {
display: flex;
width: 100%;
align-items: baseline;
justify-content: space-between;
gap: 0.75rem;
}
.pgpl-co .pgpl-sum__row--discount { color: var(--ok); font-weight: 700; }
.pgpl-co .pgpl-sum__row-discount { width: 100%; }
.pgpl-co .edd_discount_remove {
display: inline-block;
margin-left: 0.35rem;
color: var(--bad);
text-decoration: none;
font-weight: 700;
}
.pgpl-co .pgpl-sum__row--total {
align-items: center;
margin-top: 0.25rem;
padding-top: 0.35rem;
}
.pgpl-co .pgpl-sum__total-label {
font-size: 1rem;
font-weight: 800;
color: var(--ink);
}
.pgpl-co .pgpl-sum__total-value,
.pgpl-co .edd_cart_amount {
font-size: clamp(1.45rem, 3.4vw, 1.7rem);
font-weight: 800;
letter-spacing: -0.025em;
line-height: 1.15;
color: var(--ultra);
font-variant-numeric: tabular-nums;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
.pgpl-co .pgpl-sum__total-value,
.pgpl-co .edd_cart_amount,
.pgpl-co .pgpl-co-rail__amount,
.pgpl-co .pgpl-sum__peek-amount {
background: var(--grad);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
}
.pgpl-co .pgpl-sum__icons {
margin-top: 1rem;
padding-top: 0.9rem;
border-top: 1px solid var(--line-2);
}
.pgpl-co .pgpl-sum__icons .edd-payment-icons {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.4rem;
margin: 0;
}
.pgpl-co .pgpl-sum__icons .payment-icon { height: 26px; width: auto; border-radius: 4px; }
.pgpl-co .pgpl-sum__trust {
list-style: none;
margin: 0.9rem 0 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0.4rem;
}
.pgpl-co .pgpl-sum__trust li {
position: relative;
padding-left: 1.4rem;
font-size: 0.85rem;
line-height: 1.4;
color: var(--mute);
}
.pgpl-co .pgpl-sum__trust li::before {
content: "";
position: absolute;
left: 0;
top: 0.42em;
width: 0.85rem;
height: 0.45rem;
border-left: 2.5px solid var(--ok);
border-bottom: 2.5px solid var(--ok);
transform: rotate(-45deg);
}
.pgpl-co #edd_checkout_form_wrap {
order: 2;
display: flex;
flex-direction: column;
gap: var(--stack);
}
.pgpl-co #edd_purchase_form {
display: flex;
flex-direction: column;
gap: var(--stack);
margin: 0;
}
.pgpl-co #edd_purchase_form fieldset fieldset:not(.edd-no-js) + fieldset:not(.edd-no-js),
.pgpl-co #edd_purchase_form_wrap fieldset fieldset:not(.edd-no-js) + fieldset:not(.edd-no-js) { margin-top: var(--stack); }
.pgpl-co #edd_purchase_form fieldset:not(.edd-no-js),
.pgpl-co #edd_purchase_form_wrap fieldset:not(.edd-no-js) {
display: flow-root;
margin: 0;
padding: 1.5rem;
min-width: 0;
background: #fff;
border: 0;
border-radius: var(--r-lg);
box-shadow: var(--shadow-card);
}
.pgpl-co #edd_purchase_form legend,
.pgpl-co #edd_purchase_form_wrap legend {
float: left;
width: 100%;
max-width: 100%;
margin: 0 0 1.1rem;
padding: 0;
border: 0;
font-size: 1.1rem;
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1.3;
color: var(--ink);
}
.pgpl-co #edd_purchase_form legend::before,
.pgpl-co #edd_purchase_form_wrap legend::before {
content: "";
display: inline-block;
width: 0.5em;
height: 0.5em;
margin-right: 0.55em;
background: var(--grad);
border-radius: 3px;
transform: rotate(-8deg);
box-shadow: 0 4px 10px -4px rgba(60, 80, 255, 0.85);
}
.pgpl-co #edd_purchase_form legend + *,
.pgpl-co #edd_purchase_form_wrap legend + * { clear: both; }
.pgpl-co #edd_purchase_form #edd_register_fields,
.pgpl-co #edd_purchase_form #edd_payment_mode_submit,
.pgpl-co #edd_purchase_form #edd_terms_agreement,
.pgpl-co #edd_purchase_form #edd-privacy-policy-agreement,
.pgpl-co #edd_checkout_form_wrap #edd_register_fields,
.pgpl-co #edd_checkout_form_wrap #edd_payment_mode_submit,
.pgpl-co #edd_checkout_form_wrap #edd_terms_agreement,
.pgpl-co #edd_checkout_form_wrap #edd-privacy-policy-agreement {
background: transparent !important;
border: 0 !important;
box-shadow: none !important;
padding: 0 !important;
}
.pgpl-co #edd_checkout_login_register { margin: 0; }
.pgpl-co .edd-label,
.pgpl-co #edd_purchase_form label:not(.edd-gateway-option) {
display: block;
margin-bottom: 0.35rem;
font-size: 0.88rem;
font-weight: 700;
color: var(--ink);
}
.pgpl-co .edd-required-indicator { color: var(--bad); margin-left: 0.2rem; font-size: 0.8em; }
.pgpl-co .edd-description {
display: block;
margin: -0.15rem 0 0.45rem;
font-size: 0.78rem;
font-weight: 500;
color: var(--mute-2);
}
.pgpl-co #edd-first-description,
.pgpl-co #edd-last-description,
.pgpl-co #edd-user-login-wrap .edd-description,
.pgpl-co #edd-user-pass-wrap .edd-description,
.pgpl-co #edd-user-pass-confirm-wrap .edd-description { display: none; }
.pgpl-co #edd_purchase_form p[id$="-wrap"],
.pgpl-co #edd_purchase_form_wrap p[id$="-wrap"] {
display: flex;
flex-direction: column;
}
.pgpl-co p[id$="-wrap"] > .edd-label { order: 1; }
.pgpl-co p[id$="-wrap"] > .edd-input,
.pgpl-co p[id$="-wrap"] > .edd-select,
.pgpl-co p[id$="-wrap"] > input,
.pgpl-co p[id$="-wrap"] > select { order: 2; }
.pgpl-co p[id$="-wrap"] > .edd-description { order: 3; margin: 0.4rem 0 0; }
.pgpl-co p[id$="-wrap"] > .pgpl-field-error { order: 4; }
@media (min-width: 40rem) {
.pgpl-co #edd-first-name-wrap,
.pgpl-co #edd-user-pass-wrap { float: left; width: calc(50% - 0.5rem); }
.pgpl-co #edd-last-name-wrap,
.pgpl-co #edd-user-pass-confirm-wrap { float: right; width: calc(50% - 0.5rem); }
.pgpl-co #edd-last-name-wrap + *,
.pgpl-co #edd-user-pass-confirm-wrap + * { clear: both; }
}
.pgpl-co .edd-input,
.pgpl-co .edd-select,
.pgpl-co #edd_purchase_form input[type="text"],
.pgpl-co #edd_purchase_form input[type="email"],
.pgpl-co #edd_purchase_form input[type="tel"],
.pgpl-co #edd_purchase_form input[type="password"],
.pgpl-co #edd_purchase_form input[type="number"],
.pgpl-co #edd_purchase_form select {
width: 100%;
max-width: 100%;
padding: 0.8rem 0.95rem;
font-family: inherit;
font-size: 1rem;
line-height: 1.4;
color: var(--ink);
background: #fff;
border: 1px solid var(--line-strong);
border-radius: var(--r-sm);
box-shadow: inset 0 1px 2px rgba(11, 14, 28, 0.04);
transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
appearance: none;
-webkit-appearance: none;
}
.pgpl-co .edd-input::placeholder { color: var(--mute-2); }
.pgpl-co .edd-input:hover, .pgpl-co .edd-select:hover { border-color: rgba(11, 14, 28, 0.32); }
.pgpl-co .edd-input:focus,
.pgpl-co .edd-select:focus,
.pgpl-co #edd_purchase_form input:focus,
.pgpl-co #edd_purchase_form select:focus {
outline: none;
border-color: var(--ultra);
box-shadow: 0 0 0 3px var(--wash);
}
.pgpl-co #edd_purchase_form select {
background-image:
linear-gradient(45deg, transparent 50%, var(--mute) 50%),
linear-gradient(135deg, var(--mute) 50%, transparent 50%);
background-position: calc(100% - 1.05rem) 1.28rem, calc(100% - 0.68rem) 1.28rem;
background-size: 0.4rem 0.4rem, 0.4rem 0.4rem;
background-repeat: no-repeat;
padding-right: 2.2rem;
}
.pgpl-co #edd_purchase_form p,
.pgpl-co #edd_purchase_form_wrap p { margin: 0 0 1.05rem; }
.pgpl-co #edd_purchase_form p:last-child { margin-bottom: 0; }
.pgpl-co .edd-input.pgpl-invalid,
.pgpl-co .edd-select.pgpl-invalid {
border-color: var(--bad);
background: var(--bad-bg);
}
.pgpl-co .pgpl-field-error {
display: block;
margin-top: 0.3rem;
font-size: 0.8rem;
font-weight: 700;
color: var(--bad);
}
.pgpl-co #edd_purchase_form input[type="checkbox"],
.pgpl-co #edd_purchase_form input[type="radio"]:not(.edd-gateway) {
width: 1.05rem;
height: 1.05rem;
margin-right: 0.45rem;
accent-color: var(--ultra);
vertical-align: middle;
}
.pgpl-co #edd_purchase_form #edd_register_account_fields label[for] { font-weight: 600; }
.pgpl-co .edd_checkout_register_login,
.pgpl-co #edd_login_fields a,
.pgpl-co #edd_register_fields a {
color: var(--ultra);
font-weight: 700;
text-decoration: none;
border-bottom: 1.5px solid var(--wash);
transition: border-color 0.15s var(--ease);
}
.pgpl-co .edd_checkout_register_login:hover,
.pgpl-co #edd_login_fields a:hover,
.pgpl-co #edd_register_fields a:hover { border-bottom-color: var(--ultra); }
.pgpl-co #edd_payment_mode_select_wrap {
order: 1;
display: flex;
flex-direction: column;
gap: var(--stack);
}
.pgpl-co #edd-payment-mode-wrap {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
gap: 0.7rem;
}
.pgpl-co .edd-gateway-option {
position: relative;
display: flex;
align-items: flex-start;
gap: 0.65rem;
margin: 0;
padding: 0.95rem 1rem;
background: #fff;
border: 1.5px solid rgba(11, 14, 28, 0.12);
border-radius: var(--r-md);
cursor: pointer;
font-size: 0.95rem;
font-weight: 700;
color: var(--ink);
transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease),
background 0.15s var(--ease);
}
.pgpl-co .edd-gateway-option:hover { border-color: rgba(36, 54, 228, 0.55); background: var(--tint); }
.pgpl-co .edd-gateway-option input.edd-gateway {
flex: 0 0 auto;
width: 1.15rem;
height: 1.15rem;
margin: 0.15rem 0 0;
accent-color: var(--ultra);
}
.pgpl-co .edd-gateway-option-selected,
.pgpl-co .edd-gateway-option:has(input.edd-gateway:checked) {
background: #fff;
border-color: var(--ultra);
box-shadow: 0 0 0 3px var(--wash);
}
.pgpl-co .pgpl-gw { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.pgpl-co .pgpl-gw__name {
display: flex;
align-items: center;
gap: 0.4rem;
flex-wrap: wrap;
font-weight: 800;
line-height: 1.25;
}
.pgpl-co .pgpl-gw__blurb {
font-size: 0.79rem;
font-weight: 500;
color: var(--mute);
line-height: 1.35;
}
.pgpl-co .pgpl-gw__badge {
display: inline-block;
padding: 0.1rem 0.5rem;
background: var(--volt);
color: var(--ink);
border-radius: var(--r-full);
font-size: 0.66rem;
font-weight: 800;
letter-spacing: 0.02em;
text-transform: uppercase;
white-space: nowrap;
}
.pgpl-co #edd_payment_mode_submit #edd_next_button {
width: auto;
padding: 0.7rem 1.4rem;
font-size: 0.95rem;
}
.pgpl-co #edd_purchase_form_wrap {
order: 3;
display: flex;
flex-direction: column;
gap: var(--stack);
min-width: 0;
}
.pgpl-co #edd_purchase_form_wrap:empty {
display: block;
min-height: 13rem;
background: linear-gradient(90deg, #fff 25%, #f0f2fb 37%, #fff 63%);
background-size: 400% 100%;
border: 0;
border-radius: var(--r-lg);
box-shadow: var(--shadow-card);
animation: pgpl-shimmer 1.4s ease-in-out infinite;
}
@keyframes pgpl-shimmer {
0% { background-position: 100% 0; }
100% { background-position: 0 0; }
}
.pgpl-co .edd-loading-ajax,
.pgpl-co .edd-loading {
display: inline-block;
width: 1.1rem;
height: 1.1rem;
margin-left: 0.5rem;
border: 2.5px solid var(--line);
border-top-color: var(--ultra);
border-radius: 50%;
animation: pgpl-spin 0.7s linear infinite;
vertical-align: middle;
}
@keyframes pgpl-spin { to { transform: rotate(360deg); } }
.pgpl-co #edd-paypal-container,
.pgpl-co .edd-stripe-card-item,
.pgpl-co #edd-stripe-payment-element { width: 100%; min-width: 0; }
.pgpl-co #edd_purchase_form #edd_discount_code {
order: 2;
padding: 0;
background: transparent;
border: 0;
box-shadow: none;
}
.pgpl-co #edd_purchase_form #edd_show_discount {
margin: 0;
font-size: 0.85rem;
color: var(--mute-2);
text-align: right;
}
.pgpl-co #edd_show_discount .edd_discount_link {
color: var(--ultra);
font-weight: 700;
text-decoration: none;
border-bottom: 1.5px solid var(--wash);
}
.pgpl-co #edd_show_discount .edd_discount_link:hover { border-bottom-color: var(--ultra); }
.pgpl-co #edd_purchase_form #edd-discount-code-wrap { margin: 0; }
.pgpl-co #edd_purchase_form #edd-discount-code-wrap .edd-label {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
.pgpl-co #edd_purchase_form #edd-discount-code-wrap .edd-description { display: none; }
.pgpl-co .edd-discount-code-field-wrap { display: flex; gap: 0.5rem; align-items: stretch; }
.pgpl-co .edd-discount-code-field-wrap #edd-discount { flex: 1 1 auto; min-width: 0; }
.pgpl-co .edd-apply-discount {
flex: 0 0 auto;
padding: 0 1.3rem;
font-family: inherit;
font-size: 0.9rem;
font-weight: 700;
color: #fff;
background: var(--ultra);
border: 0;
border-radius: var(--r-full);
cursor: pointer;
transition: background 0.15s var(--ease), transform 0.12s var(--ease);
}
.pgpl-co .edd-apply-discount:hover {
background: var(--ultra-deep);
transform: translateY(-1px);
}
.pgpl-co #edd-discount-error-wrap {
display: block;
margin-top: 0.5rem;
font-size: 0.85rem;
font-weight: 700;
color: var(--bad);
}
.pgpl-co #edd_purchase_submit {
display: flex;
flex-direction: column;
gap: 0.8rem;
padding: 1.5rem !important;
background: #fff;
border: 0 !important;
border-radius: var(--r-lg);
box-shadow: var(--shadow-pop) !important;
}
.pgpl-co #edd_purchase_form #edd_final_total_wrap {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
margin: 0;
padding-bottom: 0.85rem;
border-bottom: 1px solid var(--line);
font-size: 0.95rem;
font-weight: 700;
color: var(--mute);
}
.pgpl-co #edd-purchase-button,
.pgpl-co #edd_purchase_submit .puregpl-rzp-retry {
display: block;
width: 100%;
margin: 1rem 0 0;
padding: 0.95rem 1.6rem;
font-family: inherit;
font-size: 1rem;
font-weight: 700;
letter-spacing: -0.01em;
line-height: 1.4;
color: #fff;
border: 0;
border-radius: var(--r-full);
box-shadow: none;
cursor: pointer;
transition: background 0.18s var(--ease), box-shadow 0.18s var(--ease),
transform 0.12s var(--ease), filter 0.18s var(--ease);
-webkit-appearance: none;
appearance: none;
}
.pgpl-co #edd-purchase-button {
background: var(--ultra);
}
.pgpl-co #edd-purchase-button,
.pgpl-co #edd_purchase_submit .puregpl-rzp-retry {
box-shadow: var(--glow-btn);
}
.pgpl-co #edd-purchase-button:hover:not(:disabled),
.pgpl-co #edd_purchase_submit .puregpl-rzp-retry:hover {
transform: translateY(-1px);
box-shadow: var(--glow-btn);
}
.pgpl-co #edd-purchase-button:not([data-puregpl-rzp]):hover:not(:disabled) {
background: var(--ultra-deep);
}
.pgpl-co #edd-purchase-button:active:not(:disabled),
.pgpl-co #edd_purchase_submit .puregpl-rzp-retry:active {
transform: translateY(0);
box-shadow: none;
}
.pgpl-co #edd-purchase-button:disabled {
opacity: 0.5;
cursor: progress;
transform: none;
box-shadow: none;
}
.pgpl-co #edd_terms_agreement,
.pgpl-co #edd-privacy-policy-agreement {
background: transparent !important;
border: 0 !important;
box-shadow: none !important;
padding: 0 !important;
}
.pgpl-co .edd-terms-agreement,
.pgpl-co #edd-privacy-policy-agreement > div {
display: flex;
align-items: flex-start;
gap: 0.5rem;
font-size: 0.88rem;
color: var(--mute);
}
.pgpl-co #edd_purchase_form .edd-terms-agreement label,
.pgpl-co #edd_purchase_form #edd-privacy-policy-agreement label {
display: inline;
margin: 0;
font-weight: 600;
}
.pgpl-co .edd-terms { font-size: 0.85rem; color: var(--mute); }
.pgpl-co .edd_terms_links { color: var(--ultra); font-weight: 700; text-decoration: none; }
.pgpl-co .edd_errors,
.pgpl-co .edd-alert-error,
.pgpl-co .edd_error {
margin: 0 0 0.9rem;
padding: 0.85rem 1rem;
background: var(--bad-bg);
border: 1px solid rgba(180, 35, 35, 0.4);
border-radius: var(--r-sm);
color: var(--bad);
font-size: 0.9rem;
font-weight: 600;
}
.pgpl-co .edd_errors .edd_error,
.pgpl-co .edd-alert .edd_error {
margin: 0;
padding: 0;
background: none;
border: 0;
border-radius: 0;
color: inherit;
font-size: inherit;
font-weight: inherit;
}
.pgpl-co .edd_errors p, .pgpl-co .edd_error p { margin: 0; }
.pgpl-co .edd_errors .edd_error + .edd_error { margin-top: 0.4rem; }
.pgpl-co .edd-alert-success {
padding: 0.85rem 1rem;
background: var(--ok-bg);
border: 1px solid rgba(22, 163, 74, 0.35);
border-radius: var(--r-sm);
color: var(--ok);
font-size: 0.9rem;
font-weight: 600;
}
.pgpl-co .puregpl-rzp-message.edd-alert-info {
background: var(--wash);
border: 1px solid rgba(36, 54, 228, 0.4);
color: var(--ink);
}
.pgpl-co .puregpl-rzp-trust { margin-top: 0.9rem; }
.pgpl-co .puregpl-rzp-trust__brand {
font-size: 0.82rem;
font-weight: 700;
color: var(--mute);
opacity: 1;
}
.pgpl-co .puregpl-rzp-trust__brand strong { color: var(--ink); font-weight: 800; }
.pgpl-co .puregpl-rzp-trust__methods {
font-size: 0.75rem;
font-weight: 500;
color: var(--mute-2);
opacity: 1;
letter-spacing: 0.01em;
}
.pgpl-co-upsell {
position: relative;
overflow: hidden;
padding: 1.35rem 1.4rem 1.25rem;
background:
radial-gradient(115% 95% at 12% -12%, rgba(108, 134, 255, 0.36), transparent 58%),
linear-gradient(168deg, #171c3a 0%, var(--night) 64%);
color: #fff;
border: 0;
border-radius: var(--r-lg);
box-shadow: 0 18px 40px -24px rgba(11, 14, 28, 0.8);
}
.pgpl-co-upsell::before {
content: "";
position: absolute;
inset: 0;
background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
background-size: 24px 24px;
-webkit-mask-image: radial-gradient(ellipse 72% 62% at 20% 6%, #000 8%, transparent 74%);
mask-image: radial-gradient(ellipse 72% 62% at 20% 6%, #000 8%, transparent 74%);
opacity: 0.55;
pointer-events: none;
}
.pgpl-co-upsell::after {
content: "";
position: absolute;
inset: 0;
padding: 1px;
border-radius: inherit;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.05) 34%, transparent 64%);
-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
pointer-events: none;
}
.pgpl-co-upsell > * { position: relative; z-index: 1; }
.pgpl-co-upsell__eyebrow {
display: inline-flex;
align-items: center;
gap: 0.45rem;
margin: 0 0 0.75rem;
padding: 0.28rem 0.72rem;
color: rgba(226, 230, 255, 0.94);
font-size: 0.66rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.14);
border-radius: var(--r-full);
}
.pgpl-co-upsell__eyebrow::before {
content: "";
width: 0.4rem;
height: 0.4rem;
border-radius: 50%;
background: linear-gradient(135deg, #6c86ff, #a878ff);
box-shadow: 0 0 8px rgba(108, 134, 255, 0.95);
}
.pgpl-co-upsell__title {
margin: 0 0 0.5rem;
font-size: 1.15rem;
font-weight: 800;
line-height: 1.25;
letter-spacing: -0.025em;
color: #fff;
text-wrap: balance;
}
.pgpl-co-upsell__price {
display: flex;
align-items: baseline;
gap: 0.35rem;
flex-wrap: wrap;
margin: 0 0 0.6rem;
}
.pgpl-co-upsell__amount {
font-size: 2.05rem;
font-weight: 800;
letter-spacing: -0.04em;
line-height: 1;
color: #fff;
font-variant-numeric: tabular-nums;
}
.pgpl-co-upsell__amount .edd_price { color: inherit; font: inherit; }
.pgpl-co-upsell__cadence { font-size: 0.85rem; font-weight: 600; color: rgba(226, 230, 255, 0.6); }
.pgpl-co-upsell__body {
margin: 0 0 0.9rem;
font-size: 0.85rem;
line-height: 1.5;
color: rgba(226, 230, 255, 0.78);
}
.pgpl-co-upsell__body strong { color: #fff; font-weight: 800; }
.pgpl-co-upsell__points {
display: flex;
flex-wrap: wrap;
gap: 0.3rem 0.85rem;
margin: 0 0 1rem;
padding-top: 0.85rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
list-style: none;
font-size: 0.76rem;
color: rgba(226, 230, 255, 0.66);
}
.pgpl-co-upsell__points li {
position: relative;
padding-left: 0.95rem;
}
.pgpl-co-upsell__points li::before {
content: "";
position: absolute;
left: 0;
top: 0.36em;
width: 0.5rem;
height: 0.28rem;
border-left: 1.5px solid rgba(150, 175, 255, 0.9);
border-bottom: 1.5px solid rgba(150, 175, 255, 0.9);
transform: rotate(-45deg);
}
.pgpl-co-upsell__cta,
.pgpl-co-upsell__cta:hover,
.pgpl-co-upsell__cta:focus,
.pgpl-co-upsell__cta:active,
.pgpl-co-upsell__cta:disabled {
display: flex;
gap: 0.5rem;
align-items: center;
justify-content: center;
width: 100%;
padding: 0.8rem 1.2rem;
font-family: inherit;
font-size: 0.92rem;
font-weight: 700;
letter-spacing: -0.01em;
color: var(--ink);
background: #fff;
border: 0;
border-radius: var(--r-full);
cursor: pointer;
box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.9);
transition: background 0.18s var(--ease), transform 0.15s var(--ease),
box-shadow 0.18s var(--ease);
}
.pgpl-co-upsell__cta:hover:not(:disabled) {
color: var(--ink);
background: #fff;
transform: translateY(-2px);
box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.95), 0 0 0 4px rgba(255, 255, 255, 0.1);
}
.pgpl-co-upsell__cta:active:not(:disabled) {
transform: translateY(0);
box-shadow: 0 6px 14px -10px rgba(0, 0, 0, 0.9);
}
.pgpl-co-upsell__cta:disabled { opacity: 0.55; cursor: progress; transform: none; }
.pgpl-co-upsell__cta svg { transition: transform 0.15s var(--ease); }
.pgpl-co-upsell__cta:hover:not(:disabled) svg { transform: translateX(2px); }
.pgpl-co-upsell__cta:focus-visible {
outline: 2.5px solid #fff;
outline-offset: 3px;
}
.pgpl-co-upsell__note {
margin: 0.65rem 0 0;
font-size: 0.73rem;
color: rgba(226, 230, 255, 0.55);
text-align: center;
}
.pgpl-co-upsell__error {
margin: 0.7rem 0 0;
padding: 0.6rem 0.8rem;
background: rgba(180, 35, 35, 0.18);
border: 1px solid rgba(255, 138, 138, 0.5);
border-radius: var(--r-sm);
color: #ffc9c9;
font-size: 0.85rem;
font-weight: 700;
text-align: center;
}
.pgpl-co-assure {
display: flex;
align-items: baseline;
justify-content: center;
flex-wrap: wrap;
gap: 0.3rem 0.6rem;
margin: 0;
padding: 0 0.5rem;
font-size: 0.8rem;
line-height: 1.45;
color: var(--mute);
text-align: center;
}
.pgpl-co-assure__lock { font-size: 0.9em; }
.pgpl-co-assure__link {
color: var(--ultra);
font-weight: 700;
text-decoration: none;
border-bottom: 1.5px solid var(--wash);
transition: border-color 0.15s var(--ease);
white-space: nowrap;
}
.pgpl-co-assure__link:hover { border-bottom-color: var(--ultra); }
.pgpl-co-empty {
grid-column: 1 / -1;
padding: clamp(1.5rem, 5vw, 3rem);
text-align: center;
background: #fff;
border: 0;
border-radius: var(--r-lg);
box-shadow: var(--shadow-card);
}
.pgpl-co-empty__title {
margin: 0 0 0.5rem;
font-size: clamp(1.25rem, 4vw, 1.75rem);
font-weight: 800;
letter-spacing: -0.028em;
}
.pgpl-co-empty__body {
margin: 0 auto 1.4rem;
max-width: 34rem;
font-size: 0.95rem;
color: var(--mute);
}
.pgpl-co-empty__admin {
margin: 1.2rem auto 0;
max-width: 34rem;
padding: 0.6rem 0.9rem;
background: var(--warn-bg);
border: 1px solid rgba(138, 97, 0, 0.35);
border-radius: var(--r-sm);
color: var(--warn);
font-size: 0.82rem;
font-weight: 700;
}
.pgpl-co-empty__actions {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.7rem;
margin: 0;
}
.pgpl-co a.pgpl-co-btn,
.pgpl-co a.pgpl-co-btn:hover,
.pgpl-co a.pgpl-co-btn:focus,
.pgpl-co a.pgpl-co-btn:visited {
display: inline-flex;
gap: 0.5rem;
align-items: center;
justify-content: center;
padding: 0.85rem 1.6rem;
font-size: 0.9375rem;
font-weight: 700;
letter-spacing: -0.01em;
text-decoration: none;
border-radius: var(--r-full);
transition: background 0.18s var(--ease), border-color 0.18s var(--ease),
transform 0.15s var(--ease);
}
.pgpl-co a.pgpl-co-btn--primary,
.pgpl-co a.pgpl-co-btn--primary:hover,
.pgpl-co a.pgpl-co-btn--primary:focus,
.pgpl-co a.pgpl-co-btn--primary:visited {
background: var(--ultra);
color: #fff;
border: 1px solid transparent;
box-shadow: var(--glow-btn);
}
.pgpl-co a.pgpl-co-btn--ghost,
.pgpl-co a.pgpl-co-btn--ghost:hover,
.pgpl-co a.pgpl-co-btn--ghost:focus,
.pgpl-co a.pgpl-co-btn--ghost:visited {
background: #fff;
color: var(--ink);
border: 1px solid rgba(11, 14, 28, 0.14);
}
.pgpl-co a.pgpl-co-btn:hover { transform: translateY(-1px); }
.pgpl-co a.pgpl-co-btn:active { transform: translateY(0); }
.pgpl-co a.pgpl-co-btn--primary:hover { background: var(--ultra-deep); }
.pgpl-co a.pgpl-co-btn--ghost:hover {
background: var(--tint);
border-color: rgba(11, 14, 28, 0.24);
}
.pgpl-co a.pgpl-co-btn svg { transition: transform 0.15s var(--ease); }
.pgpl-co a.pgpl-co-btn:hover svg { transform: translateX(2px); }
.pgpl-co .pgpl-co-rail {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 60;
background: #fff;
border-top: 1px solid var(--line);
box-shadow: 0 -6px 20px rgba(11, 14, 28, 0.12);
padding: 0.7rem max(0.9rem, env(safe-area-inset-left))
max(0.7rem, env(safe-area-inset-bottom)) max(0.9rem, env(safe-area-inset-right));
}
.pgpl-co .pgpl-co-rail[hidden] { display: none; }
.pgpl-co .pgpl-co-rail__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.9rem;
max-width: 1170px;
margin: 0 auto;
}
.pgpl-co .pgpl-co-rail__total { display: flex; flex-direction: column; gap: 0.1rem; line-height: 1.15; min-width: 0; }
.pgpl-co .pgpl-co-rail__label {
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--mute);
}
.pgpl-co .pgpl-co-rail__amount {
font-size: 1.3rem;
font-weight: 800;
letter-spacing: -0.02em;
color: var(--ultra);
font-variant-numeric: tabular-nums;
}
.pgpl-co .pgpl-co-rail__cta {
flex: 0 1 auto;
padding: 0.75rem 1.4rem;
font-family: inherit;
font-size: 0.9375rem;
font-weight: 700;
letter-spacing: -0.01em;
color: #fff;
background: var(--ultra);
border: 0;
border-radius: var(--r-full);
cursor: pointer;
white-space: nowrap;
transition: background 0.18s var(--ease), transform 0.12s var(--ease);
}
.pgpl-co .pgpl-co-rail__cta:hover { background: var(--ultra-deep); }
.pgpl-co .pgpl-co-rail__cta:active { transform: translateY(1px); }
@media (min-width: 62rem) {
.pgpl-co .pgpl-co-rail { display: none !important; }
}
@media (max-width: 61.999rem) {
.pgpl-co.pgpl-co--rail-on { padding-bottom: 5.5rem; }
}
@media (max-width: 47.999rem) {
.pgpl-co__head { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
.pgpl-co__head-aside { width: 100%; justify-content: space-between; }
.pgpl-co #edd_purchase_form fieldset:not(#edd_register_fields):not(#edd_payment_mode_submit):not(#edd_terms_agreement):not(#edd-privacy-policy-agreement),
.pgpl-co #edd_purchase_form_wrap fieldset:not(#edd_register_fields):not(#edd_payment_mode_submit):not(#edd_terms_agreement):not(#edd-privacy-policy-agreement),
.pgpl-co #edd_checkout_cart,
.pgpl-co #edd_purchase_submit { padding: 1.25rem !important; }
.pgpl-co #edd-payment-mode-wrap { grid-template-columns: minmax(0, 1fr); }
.pgpl-co-upsell { padding: 1.05rem 1.1rem; }
}
@media (max-width: 26rem) {
.pgpl-co .edd-discount-code-field-wrap { flex-direction: column; }
.pgpl-co .edd-apply-discount { padding: 0.7rem 1.1rem; }
.pgpl-co .pgpl-sum__thumb img { width: 40px; height: 40px; }
.pgpl-co .pgpl-co-rail__cta { padding: 0.7rem 1rem; font-size: 0.88rem; }
}
@media (prefers-reduced-motion: reduce) {
.pgpl-co *,
.pgpl-co *::before,
.pgpl-co *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.pgpl-co #edd_purchase_form_wrap:empty { animation: none; background: var(--tint); }
}
@media (forced-colors: active) {
.pgpl-co .edd-gateway-option,
.pgpl-co #edd-purchase-button,
.pgpl-co .pgpl-co-upsell__cta,
.pgpl-co a.pgpl-co-btn,
.pgpl-co #edd_purchase_submit .puregpl-rzp-retry { border: 2px solid ButtonText; }
.pgpl-co-upsell::before,
.pgpl-co-upsell::after { display: none; }
.pgpl-co .pgpl-sum__total-value,
.pgpl-co .edd_cart_amount,
.pgpl-co .pgpl-co-rail__amount,
.pgpl-co .pgpl-sum__peek-amount {
background: none;
-webkit-text-fill-color: CanvasText;
color: CanvasText;
}
}
@media print {
.pgpl-co .pgpl-co-rail,
.pgpl-co-upsell,
.pgpl-co #edd_payment_mode_select_wrap { display: none !important; }
.pgpl-co::before { display: none; }
.pgpl-co #edd_checkout_wrap { display: block; }
.pgpl-co #edd_checkout_cart { box-shadow: none; }
.pgpl-co .pgpl-sum__total-value,
.pgpl-co .edd_cart_amount {
background: none;
-webkit-text-fill-color: var(--ink);
color: var(--ink);
}
}

/* edd-blocks */
:root {
--edd-blocks-light-grey: #eee;
}
.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;
width: 1px;
word-wrap: normal !important;
}

/* contact-form-7 */
.wpcf7 .screen-reader-response {
position: absolute;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
border: 0;
word-wrap: normal !important;
word-break: normal !important;
}
.wpcf7 .hidden-fields-container {
display: none;
}
.wpcf7 form .wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #00a0d2;
}
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232;
}
.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: #ffb900;
}
.wpcf7-form-control-wrap {
position: relative;
}
.wpcf7-not-valid-tip {
color: #dc3232;
font-size: 1em;
font-weight: normal;
display: block;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
position: relative;
top: -2ex;
left: 1em;
z-index: 100;
border: 1px solid #dc3232;
background: #fff;
padding: .2em .8em;
width: 24em;
}
.wpcf7-list-item {
display: inline-block;
margin: 0 0 0 1em;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
content: " ";
}
.wpcf7-spinner {
visibility: hidden;
display: inline-block;
background-color: #23282d;
opacity: 0.75;
width: 24px;
height: 24px;
border: none;
border-radius: 100%;
padding: 0;
margin: 0 24px;
position: relative;
}
form.submitting .wpcf7-spinner {
visibility: visible;
}
.wpcf7-spinner::before {
content: '';
position: absolute;
background-color: #fbfbfc;
top: 4px;
left: 4px;
width: 6px;
height: 6px;
border: none;
border-radius: 100%;
transform-origin: 8px 8px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
.wpcf7-spinner::before {
animation-name: blink;
animation-duration: 2000ms;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes blink {
from {
opacity: 0;
}
50% {
opacity: 1;
}
to {
opacity: 0;
}
}
.wpcf7 [inert] {
opacity: 0.5;
}
.wpcf7 input[type="file"] {
cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
direction: ltr;
}
.wpcf7-reflection > output {
display: list-item;
list-style: none;
}
.wpcf7-reflection > output[hidden] {
display: none;
}

/* puregpl-razorpay */
.puregpl-rzp-overlay {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 100000;
display: flex;
align-items: center;
justify-content: center;
background: rgba( 15, 23, 42, 0.55 );
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
-webkit-backdrop-filter: blur( 2px );
backdrop-filter: blur( 2px );
}
.puregpl-rzp-overlay__inner {
min-width: 260px;
max-width: 90vw;
padding: 28px 32px;
text-align: center;
background: #fff;
border-radius: 12px;
box-shadow: 0 20px 45px rgba( 15, 23, 42, 0.25 );
}
.puregpl-rzp-overlay__text {
margin: 16px 0 0;
font-size: 15px;
line-height: 1.5;
color: #0f172a;
}
.puregpl-rzp-spinner {
width: 34px;
height: 34px;
margin: 0 auto;
border: 3px solid rgba( 51, 149, 255, 0.2 );
border-top-color: #3395ff;
border-radius: 50%;
animation: puregpl-rzp-spin 0.8s linear infinite;
}
@keyframes puregpl-rzp-spin {
to {
transform: rotate( 360deg );
}
}
@keyframes puregpl-rzp-pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.35;
}
}
@media ( prefers-reduced-motion: reduce ) {
.puregpl-rzp-spinner {
animation: puregpl-rzp-pulse 1.6s ease-in-out infinite;
}
}
.puregpl-rzp-message {
display: flex;
align-items: flex-start;
gap: 10px;
margin: 0 0 18px;
padding: 13px 16px;
font-size: 14.5px;
line-height: 1.5;
border-radius: 10px;
border: 1px solid;
}
.puregpl-rzp-message::before {
content: "";
flex: none;
width: 17px;
height: 17px;
margin-top: 2px;
background-size: contain;
background-repeat: no-repeat;
}
.puregpl-rzp-message.edd-alert-error {
color: #7f1d1d;
background: #fef2f2;
border-color: rgba( 220, 38, 38, 0.25 );
}
.puregpl-rzp-message.edd-alert-error::before {
background-image: url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 1.5 15 14H1z' stroke='%23dc2626' stroke-width='1.4' stroke-linejoin='round'/%3E%3Cpath d='M8 6v3.4' stroke='%23dc2626' stroke-width='1.4' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='11.6' r='.8' fill='%23dc2626'/%3E%3C/svg%3E" );
}
.puregpl-rzp-message.edd-alert-info {
color: #0c4a6e;
background: #f0f9ff;
border-color: rgba( 2, 132, 199, 0.25 );
}
.puregpl-rzp-message.edd-alert-info::before {
background-image: url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%230284c7' stroke-width='1.5'/%3E%3Cpath d='M8 7.2v4' stroke='%230284c7' stroke-width='1.5' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='4.8' r='.9' fill='%230284c7'/%3E%3C/svg%3E" );
}
.puregpl-rzp-message p {
margin: 0;
}
.puregpl-rzp-hidden {
display: none !important;
}
.puregpl-rzp-retry.puregpl-rzp-retry {
display: block;
width: 100%;
margin-top: 0;
cursor: pointer;
}
.puregpl-rzp-retry:focus-visible {
outline: 3px solid currentColor;
outline-offset: 2px;
}
#edd-purchase-button[data-puregpl-rzp],
.puregpl-rzp-retry.puregpl-rzp-retry {
background: var(--puregpl-rzp-accent, #3395ff);
border-color: var(--puregpl-rzp-accent, #3395ff);
color: #fff;
}
#edd-purchase-button[data-puregpl-rzp]:hover:not(:disabled),
#edd-purchase-button[data-puregpl-rzp]:focus:not(:disabled),
.puregpl-rzp-retry.puregpl-rzp-retry:hover,
.puregpl-rzp-retry.puregpl-rzp-retry:focus {
filter: brightness(0.92);
}
.puregpl-rzp-trust {
margin-top: 14px;
text-align: center;
line-height: 1.4;
}
.puregpl-rzp-trust p {
margin: 0;
}
.puregpl-rzp-trust__brand {
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
font-size: 13px;
opacity: 0.85;
}
.puregpl-rzp-trust__lock {
font-size: 0.9em;
}
.puregpl-rzp-trust__methods {
margin-top: 5px !important;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
opacity: 0.55;
}
.puregpl-rzp-trust__logo {
width: 16px;
height: 16px;
object-fit: contain;
margin: 0;
}
:root{--puregpl-rzp-accent:#0d94fb;}

/* edd_all_access_css */
#edd-aa-login-modal-content #edd_login_form{margin-top:0}#edd-aa-login-modal-content #edd_login_form fieldset{margin-bottom:0}.edd-aa-login-purchase-normal-plus-aa-mode{margin-top:20px}#edd-aa-login-modal-content .edd-lost-password{margin-bottom:0!important}.edd-aa-buy-btns-wrapper>div:nth-child(n+2){margin-top:5px}.edd-aa-buy-instructions{display:block;margin-bottom:5px}.edd-aa-login-wrapper{margin-top:5px}.edd-aa-upcoming-end-date,.edd-aa-upcoming-start-date{display:block}

/* edd-multi-currency */
.edd-multi-currency-selector-buttons form{display:flex;flex-wrap:wrap;gap:5px}.edd-multi-currency-button--selected{opacity:.6}

/* generate-style */
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);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;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):not(.is-loop-template-item),.one-container.blog .post:not(:last-child):not(.is-loop-template-item){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:first-child,.icon-menu-bars svg:nth-child(2),.icon-search svg:nth-child(2),.toggled .icon-menu-bars svg:first-child{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}}
body{background-color:var(--base-2);color:var(--contrast);}a{color:var(--accent);}a:hover, a:focus, a:active{color:var(--contrast);}.wp-block-group__inner-container{max-width:1200px;margin-left:auto;margin-right:auto;}.site-header .header-image{width:140px;}:root{--contrast:#222222;--contrast-2:#575760;--contrast-3:#b2b2be;--base:#f0f0f0;--base-2:#f7f8f9;--base-3:#ffffff;--accent:#1e73be;}:root .has-contrast-color{color:var(--contrast);}:root .has-contrast-background-color{background-color:var(--contrast);}:root .has-contrast-2-color{color:var(--contrast-2);}:root .has-contrast-2-background-color{background-color:var(--contrast-2);}:root .has-contrast-3-color{color:var(--contrast-3);}:root .has-contrast-3-background-color{background-color:var(--contrast-3);}:root .has-base-color{color:var(--base);}:root .has-base-background-color{background-color:var(--base);}:root .has-base-2-color{color:var(--base-2);}:root .has-base-2-background-color{background-color:var(--base-2);}:root .has-base-3-color{color:var(--base-3);}:root .has-base-3-background-color{background-color:var(--base-3);}:root .has-accent-color{color:var(--accent);}:root .has-accent-background-color{background-color:var(--accent);}.top-bar{background-color:#636363;color:#ffffff;}.top-bar a{color:#ffffff;}.top-bar a:hover{color:#303030;}.site-header{background-color:var(--base-3);}.main-title a,.main-title a:hover{color:var(--contrast);}.site-description{color:var(--contrast-2);}.main-navigation .main-nav ul li a, .main-navigation .menu-toggle, .main-navigation .menu-bar-items{color:var(--contrast);}.main-navigation .main-nav ul li:not([class*="current-menu-"]):hover > a, .main-navigation .main-nav ul li:not([class*="current-menu-"]):focus > a, .main-navigation .main-nav ul li.sfHover:not([class*="current-menu-"]) > a, .main-navigation .menu-bar-item:hover > a, .main-navigation .menu-bar-item.sfHover > a{color:var(--accent);}button.menu-toggle:hover,button.menu-toggle:focus{color:var(--contrast);}.main-navigation .main-nav ul li[class*="current-menu-"] > a{color:var(--accent);}.navigation-search input[type="search"],.navigation-search input[type="search"]:active, .navigation-search input[type="search"]:focus, .main-navigation .main-nav ul li.search-item.active > a, .main-navigation .menu-bar-items .search-item.active > a{color:var(--accent);}.main-navigation ul ul{background-color:var(--base);}.entry-title a{color:var(--contrast);}.entry-title a:hover{color:var(--contrast-2);}.entry-meta{color:var(--contrast-2);}.sidebar .widget{background-color:var(--base-3);}.footer-widgets{background-color:var(--base-3);}.site-info{background-color:var(--base-3);}input[type="text"],input[type="email"],input[type="url"],input[type="password"],input[type="search"],input[type="tel"],input[type="number"],textarea,select{color:var(--contrast);background-color:var(--base-2);border-color:var(--base);}input[type="text"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="password"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="number"]:focus,textarea:focus,select:focus{color:var(--contrast);background-color:var(--base-2);border-color:var(--contrast-3);}button,html input[type="button"],input[type="reset"],input[type="submit"],a.button,a.wp-block-button__link:not(.has-background){color:#ffffff;background-color:#55555e;}button:hover,html input[type="button"]:hover,input[type="reset"]:hover,input[type="submit"]:hover,a.button:hover,button:focus,html input[type="button"]:focus,input[type="reset"]:focus,input[type="submit"]:focus,a.button:focus,a.wp-block-button__link:not(.has-background):active,a.wp-block-button__link:not(.has-background):focus,a.wp-block-button__link:not(.has-background):hover{color:#ffffff;background-color:#3f4047;}a.generate-back-to-top{background-color:rgba( 0,0,0,0.4 );color:#ffffff;}a.generate-back-to-top:hover,a.generate-back-to-top:focus{background-color:rgba( 0,0,0,0.6 );color:#ffffff;}:root{--gp-search-modal-bg-color:var(--base-3);--gp-search-modal-text-color:var(--contrast);--gp-search-modal-overlay-bg-color:rgba(0,0,0,0.2);}@media (max-width:768px){.main-navigation .menu-bar-item:hover > a, .main-navigation .menu-bar-item.sfHover > a{background:none;color:var(--contrast);}}.nav-below-header .main-navigation .inside-navigation.grid-container, .nav-above-header .main-navigation .inside-navigation.grid-container{padding:0px 20px 0px 20px;}.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .separate-containers .paging-navigation, .one-container .site-content, .inside-page-header{padding:0px;}.site-main .wp-block-group__inner-container{padding:0px;}.separate-containers .paging-navigation{padding-top:20px;padding-bottom:20px;}.entry-content .alignwide, body:not(.no-sidebar) .entry-content .alignfull{margin-left:-0px;width:calc(100% + 0px);max-width:calc(100% + 0px);}.one-container.right-sidebar .site-main,.one-container.both-right .site-main{margin-right:0px;}.one-container.left-sidebar .site-main,.one-container.both-left .site-main{margin-left:0px;}.one-container.both-sidebars .site-main{margin:0px;}.sidebar .widget, .page-header, .widget-area .main-navigation, .site-main > *{margin-bottom:0px;}.separate-containers .site-main{margin:0px;}.both-right .inside-left-sidebar,.both-left .inside-left-sidebar{margin-right:0px;}.both-right .inside-right-sidebar,.both-left .inside-right-sidebar{margin-left:0px;}.one-container.archive .post:not(:last-child):not(.is-loop-template-item), .one-container.blog .post:not(:last-child):not(.is-loop-template-item){padding-bottom:0px;}.separate-containers .featured-image{margin-top:0px;}.separate-containers .inside-right-sidebar, .separate-containers .inside-left-sidebar{margin-top:0px;margin-bottom:0px;}.rtl .menu-item-has-children .dropdown-menu-toggle{padding-left:20px;}.rtl .main-navigation .main-nav ul li.menu-item-has-children > a{padding-right:20px;}@media (max-width:768px){.separate-containers .inside-article, .separate-containers .comments-area, .separate-containers .page-header, .separate-containers .paging-navigation, .one-container .site-content, .inside-page-header{padding:30px;}.site-main .wp-block-group__inner-container{padding:30px;}.inside-top-bar{padding-right:30px;padding-left:30px;}.inside-header{padding-right:30px;padding-left:30px;}.widget-area .widget{padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;}.footer-widgets-container{padding-top:30px;padding-right:30px;padding-bottom:30px;padding-left:30px;}.inside-site-info{padding-right:30px;padding-left:30px;}.entry-content .alignwide, body:not(.no-sidebar) .entry-content .alignfull{margin-left:-30px;width:calc(100% + 60px);max-width:calc(100% + 60px);}.one-container .site-main .paging-navigation{margin-bottom:0px;}} .is-right-sidebar{width:30%;}.is-left-sidebar{width:30%;}.site-content .content-area{width:100%;}@media (max-width:768px){.main-navigation .menu-toggle,.sidebar-nav-mobile:not(#sticky-placeholder){display:block;}.main-navigation ul,.gen-sidebar-nav,.main-navigation:not(.slideout-navigation):not(.toggled) .main-nav > ul,.has-inline-mobile-toggle #site-navigation .inside-navigation > *:not(.navigation-search):not(.main-nav){display:none;}.nav-align-right .inside-navigation,.nav-align-center .inside-navigation{justify-content:space-between;}}
.dynamic-author-image-rounded{border-radius:100%;}.dynamic-featured-image, .dynamic-author-image{vertical-align:middle;}.one-container.blog .dynamic-content-template:not(:last-child), .one-container.archive .dynamic-content-template:not(:last-child){padding-bottom:0px;}.dynamic-entry-excerpt > p:last-child{margin-bottom:0px;}
.post-image:not(:first-child), .page-content:not(:first-child), .entry-content:not(:first-child), .entry-summary:not(:first-child), footer.entry-meta{margin-top:0em;}.post-image-above-header .inside-article div.featured-image, .post-image-above-header .inside-article div.post-image{margin-bottom:0em;}

/* generate-child */
:root {
--white: #FFFFFF;
--gray-50: #F9FAFB;
--gray-100: #F3F4F6;
--gray-200: #E5E7EB;
--gray-300: #D1D5DB;
--gray-600: #4B5563;
--gray-700: #374151;
--gray-900: #111827;
--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--gradient-gold: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
--gradient-emerald: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
--gradient-hero: linear-gradient(135deg, #1a0b2e 0%, #6B46C1 50%, #9333EA 100%);
--gradient-pink: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
--font-display: 'Inter', -apple-system, system-ui, sans-serif;
--spacing-xs: 0.5rem;
--spacing-sm: 1rem;
--spacing-md: 1.5rem;
--spacing-lg: 2rem;
--spacing-xl: 3rem;
--spacing-2xl: 4rem;
--spacing-3xl: 6rem;
--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
--shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
--transition-fast: 0.15s ease;
--transition-base: 0.3s ease;
--transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* pgpl-chrome */
:root {
--pgpl-ink: #0f1222;
--pgpl-ink-soft: #3d4260;
--pgpl-muted: #6a7091;
--pgpl-paper: #fcfcfa;
--pgpl-surface: #fff;
--pgpl-line: #dde0ec;
--pgpl-line-strong: #c3c8dd;
--pgpl-ultra: #2436e4;
--pgpl-ultra-deep: #1b29b8;
--pgpl-wash: #eef1ff;
--pgpl-night: #10132a;
--pgpl-night-soft: #1b2040;
--pgpl-aurora: #0b0e1c;
--pgpl-aurora-deep: #070915;
--pgpl-aurora-panel: #0f1324;
--pgpl-glow: rgba(108, 134, 255, 0.5);
}
.pgpl-hd {
position: sticky;
top: 0;
z-index: 200;
color: rgba(255, 255, 255, 0.82);
background: var(--pgpl-aurora);
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.admin-bar .pgpl-hd {
top: 32px;
}
@media screen and (max-width: 782px) {
.admin-bar .pgpl-hd {
top: 46px;
}
}
@media screen and (max-width: 600px) {
.admin-bar .pgpl-hd {
top: 0;
}
}
.pgpl-hd *,
.pgpl-hd *::before,
.pgpl-hd *::after,
.pgpl-drawer *,
.pgpl-ft *,
.pgpl-ft *::before,
.pgpl-ft *::after {
box-sizing: border-box;
}
.pgpl-hd a:hover,
.pgpl-hd a:focus,
.pgpl-hd a:active,
.pgpl-drawer a:hover,
.pgpl-drawer a:focus,
.pgpl-drawer a:active,
.pgpl-ft a:hover,
.pgpl-ft a:focus,
.pgpl-ft a:active {
color: #fff;
}
.pgpl-hd__wrap {
display: flex;
gap: 1rem;
align-items: center;
max-width: 1240px;
margin: 0 auto;
padding: 0 max(1rem, env(safe-area-inset-left));
}
.pgpl-hd__icon {
flex: 0 0 auto;
}
.pgpl-hd__utility {
color: rgba(255, 255, 255, 0.62);
background: var(--pgpl-aurora-deep);
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
font-size: 0.8rem;
}
.pgpl-hd__utility .pgpl-hd__wrap {
justify-content: flex-start;
gap: 0.6rem;
min-height: 2.25rem;
}
.pgpl-hd__updates {
display: inline-flex;
gap: 0.5rem;
align-items: center;
padding: 0.28rem 0.7rem 0.28rem 0.6rem;
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 999px;
transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.pgpl-hd .pgpl-hd__updates:hover,
.pgpl-hd .pgpl-hd__updates:focus {
color: #fff;
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.22);
}
.pgpl-hd__updates-label {
font-weight: 600;
}
.pgpl-hd__updates-when {
padding-left: 0.5rem;
color: rgba(255, 255, 255, 0.5);
border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.pgpl-hd__updates-arrow {
transition: transform 0.16s ease;
}
.pgpl-hd__updates:hover .pgpl-hd__updates-arrow,
.pgpl-hd__updates:focus .pgpl-hd__updates-arrow {
transform: translateX(2px);
}
.pgpl-hd__pulse {
position: relative;
flex: 0 0 7px;
width: 7px;
height: 7px;
background: #4ade80;
border-radius: 50%;
}
.pgpl-hd__pulse::after {
content: "";
position: absolute;
inset: -3px;
background: rgba(74, 222, 128, 0.45);
border-radius: 50%;
animation: pgpl-pulse 2.4s ease-out infinite;
}
@keyframes pgpl-pulse {
0% { transform: scale(0.6); opacity: 0.8; }
70% { transform: scale(1.5); opacity: 0; }
100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
.pgpl-hd__pulse::after {
animation: none;
opacity: 0.35;
}
}
.pgpl-hd__announce {
display: inline-flex;
gap: 0.5rem;
align-items: center;
padding: 0.28rem 0.7rem 0.28rem 0.4rem;
color: #a9f5c3;
text-decoration: none;
background: #141a3d;
border: 1px solid rgba(74, 222, 128, 0.35);
border-radius: 999px;
transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.pgpl-hd .pgpl-hd__announce:hover,
.pgpl-hd .pgpl-hd__announce:focus {
color: #d2fbe0;
background: #1a2150;
border-color: rgba(74, 222, 128, 0.6);
}
.pgpl-hd__announce-tag {
padding: 0.1rem 0.4rem;
background: #4ade80;
color: #052e16;
border-radius: 5px;
font-size: 0.62rem;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
line-height: 1.4;
}
.pgpl-hd__announce-label { font-weight: 600; }
.pgpl-hd__announce .pgpl-hd__updates-arrow { opacity: 0.8; }
.pgpl-drawer__updates.pgpl-drawer__announce {
margin-bottom: 0.5rem;
color: #a9f5c3;
background: #141a3d;
border-color: rgba(74, 222, 128, 0.35);
}
.pgpl-drawer__updates.pgpl-drawer__announce .pgpl-drawer__updates-label { color: #a9f5c3; }
.pgpl-hd__utility-right {
display: flex;
gap: 0.9rem;
align-items: center;
margin-left: auto;
}
.pgpl-hd__count strong {
color: #fff;
font-variant-numeric: tabular-nums;
}
.pgpl-hd__currency {
display: inline-flex;
gap: 2px;
padding: 2px;
background: rgba(255, 255, 255, 0.1);
border-radius: 999px;
}
.pgpl-hd__chip {
padding: 0.2rem 0.65rem;
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.03em;
color: rgba(255, 255, 255, 0.75);
text-decoration: none;
border-radius: 999px;
transition: background-color 0.15s ease, color 0.15s ease;
}
.pgpl-hd__chip:hover,
.pgpl-hd__chip:focus {
color: #fff;
}
.pgpl-hd__chip.is-active:hover,
.pgpl-hd__chip.is-active:focus {
color: var(--pgpl-ink);
}
.pgpl-hd__chip.is-active {
color: var(--pgpl-ink);
background: #fff;
}
.pgpl-hd__command {
position: relative;
}
.pgpl-hd__glow {
position: absolute;
inset: 0;
overflow: hidden;
pointer-events: none;
}
.pgpl-hd__glow::after {
content: "";
position: absolute;
top: -320%;
right: -6%;
width: 46%;
height: 0;
padding-top: 46%;
background: radial-gradient(circle, var(--pgpl-glow) 0%, rgba(108, 134, 255, 0) 66%);
pointer-events: none;
}
.pgpl-hd__command .pgpl-hd__wrap {
position: relative;
z-index: 1;
min-height: 5rem;
gap: 1.25rem;
}
.pgpl-hd__brand {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
text-decoration: none;
}
.pgpl-hd__search {
position: relative;
flex: 1 1 auto;
min-width: 0;
}
.pgpl-hd__search > * {
max-width: none;
}
.pgpl-hd__fallback {
position: relative;
display: flex;
gap: 0.6rem;
align-items: center;
max-width: none;
padding: 0 0.3rem 0 1.15rem;
background: #fff;
border: 0;
border-radius: 999px;
box-shadow:
0 1px 2px rgba(11, 14, 28, 0.16),
0 14px 30px -18px rgba(0, 0, 0, 0.8);
transition: box-shadow 0.18s ease;
}
.pgpl-hd__fallback:focus-within {
box-shadow:
0 0 0 3px rgba(108, 134, 255, 0.42),
0 1px 2px rgba(11, 14, 28, 0.16),
0 14px 30px -18px rgba(0, 0, 0, 0.8);
}
.pgpl-hd__fallback > .pgpl-hd__icon {
color: var(--pgpl-muted);
transition: color 0.18s ease;
}
.pgpl-hd__fallback:focus-within > .pgpl-hd__icon {
color: var(--pgpl-ultra);
}
.pgpl-hd__fallback input[type="search"] {
flex: 1 1 auto;
min-width: 0;
height: 3.1rem;
padding: 0;
font-family: inherit;
font-size: 0.95rem;
color: var(--pgpl-ink);
background: transparent;
border: 0;
outline: none;
box-shadow: none;
-webkit-appearance: none;
appearance: none;
}
.pgpl-hd__fallback input[type="search"]::-webkit-search-decoration,
.pgpl-hd__fallback input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
}
.pgpl-hd__fallback input[type="search"]::placeholder {
color: var(--pgpl-muted);
opacity: 1;
}
.pgpl-hd__kbd {
flex: 0 0 auto;
padding: 0.24rem 0.5rem;
font-family: inherit;
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.02em;
color: #54597a;
background: rgba(11, 14, 28, 0.05);
border: 1px solid rgba(11, 14, 28, 0.08);
border-radius: 7px;
white-space: nowrap;
transition: opacity 0.15s ease;
}
.pgpl-hd__fallback:focus-within .pgpl-hd__kbd {
opacity: 0;
pointer-events: none;
}
@media (hover: none), (pointer: coarse) {
.pgpl-hd__kbd {
display: none;
}
}
.pgpl-hd__go {
display: inline-flex;
flex: 0 0 auto;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
color: #fff;
cursor: pointer;
background: var(--pgpl-ultra);
border: 0;
border-radius: 999px;
transition: background-color 0.15s ease, transform 0.12s ease;
}
@media (hover: hover) and (pointer: fine) {
.pgpl-hd__go:hover {
background: var(--pgpl-ultra-deep);
}
}
.pgpl-hd__go:active {
transform: scale(0.94);
}
.pgpl-hd__go:focus-visible {
outline: 2px solid var(--pgpl-ultra);
outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
.pgpl-hd__go:active {
transform: none;
}
}
.pgpl-hd__actions {
display: flex;
flex: 0 0 auto;
gap: 0.35rem;
align-items: center;
}
.pgpl-hd__action {
position: relative;
display: inline-flex;
gap: 0.4rem;
align-items: center;
padding: 0.5rem 0.7rem;
font-size: 0.85rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
border-radius: 999px;
transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
@media (hover: hover) and (pointer: fine) {
.pgpl-hd__action:hover {
color: #fff;
background: rgba(255, 255, 255, 0.07);
}
}
.pgpl-hd__action:focus-visible {
color: #fff;
background: rgba(255, 255, 255, 0.07);
}
.pgpl-hd__action:active {
background: rgba(255, 255, 255, 0.13);
transform: scale(0.94);
}
.pgpl-hd__badge {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 1.15rem;
height: 1.15rem;
padding: 0 0.3rem;
font-size: 0.68rem;
font-weight: 700;
line-height: 1;
color: #fff;
background: var(--pgpl-ultra);
border-radius: 999px;
font-variant-numeric: tabular-nums;
}
.pgpl-drawer__btn--solid .pgpl-hd__badge {
color: var(--pgpl-ultra-deep);
background: #fff;
}
.pgpl-hd__burger {
display: none;
align-items: center;
justify-content: center;
width: 2.5rem;
height: 2.5rem;
color: #fff;
cursor: pointer;
background: transparent;
border: 0;
border-radius: 999px;
transition: background-color 0.15s ease, transform 0.1s ease;
}
@media (hover: hover) and (pointer: fine) {
.pgpl-hd__burger:hover {
color: #fff;
background: rgba(255, 255, 255, 0.07);
}
}
.pgpl-hd__burger:focus-visible {
background: rgba(255, 255, 255, 0.07);
}
.pgpl-hd__burger:active {
background: rgba(255, 255, 255, 0.13);
transform: scale(0.94);
}
.pgpl-hd__acct {
position: relative;
flex: 0 0 auto;
}
.pgpl-hd__action--compact {
display: none;
}
.pgpl-hd__acct-toggle {
cursor: pointer;
background: none;
border: 0;
font-family: inherit;
font-size: 0.85rem;
font-weight: 600;
}
.pgpl-hd__acct-toggle svg:last-child {
width: 14px;
height: 14px;
opacity: 0.6;
transition: transform 0.18s ease;
}
.pgpl-hd__acct-toggle[aria-expanded="true"] svg:last-child {
transform: rotate(180deg);
}
.pgpl-hd__acct-chip {
display: inline-flex;
flex: 0 0 auto;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
font-size: 0.68rem;
font-weight: 800;
letter-spacing: 0.02em;
color: #fff;
background: linear-gradient(150deg, var(--pgpl-ultra), var(--pgpl-ultra-deep));
border-radius: 9px;
}
.pgpl-hd__acct-chip--lg {
width: 40px;
height: 40px;
font-size: 0.95rem;
border-radius: 12px;
}
.pgpl-hd__acct-menu[hidden] {
display: none;
}
.pgpl-hd__acct-menu {
position: absolute;
top: calc(100% + 10px);
right: 0;
z-index: 40;
width: max-content;
min-width: 14rem;
max-width: min(20rem, calc(100vw - 2rem));
padding: 0.45rem;
background: var(--pgpl-aurora-panel);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 18px;
box-shadow:
0 1px 0 rgba(255, 255, 255, 0.06) inset,
0 28px 60px -22px rgba(0, 0, 0, 0.85);
opacity: 0;
transform: translateY(-6px);
transition: opacity 0.18s ease, transform 0.18s ease;
}
.pgpl-hd__acct-menu.is-open {
opacity: 1;
transform: translateY(0);
}
.pgpl-hd__acct-id {
display: flex;
gap: 0.65rem;
align-items: center;
padding: 0.7rem 0.7rem 0.85rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pgpl-hd__acct-id-text {
display: flex;
flex: 1 1 auto;
flex-direction: column;
gap: 0.15rem;
min-width: 0;
}
.pgpl-hd__acct-id-text strong {
font-size: 0.9rem;
font-weight: 700;
color: #fff;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.pgpl-hd__acct-mail {
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.62);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.pgpl-hd__acct-nav ul {
margin: 0.45rem 0;
padding: 0 0 0.45rem;
list-style: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pgpl-hd__acct-nav a,
.pgpl-hd__acct-out {
display: flex;
gap: 0.65rem;
align-items: center;
min-height: 40px;
padding: 0 0.7rem;
font-size: 0.86rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.82);
text-decoration: none;
border-radius: 11px;
transition: color 0.15s ease, background-color 0.15s ease;
}
.pgpl-hd__acct-nav a svg,
.pgpl-hd__acct-out svg {
flex: 0 0 auto;
opacity: 0.72;
}
@media (hover: hover) and (pointer: fine) {
.pgpl-hd .pgpl-hd__acct-nav a:hover,
.pgpl-hd .pgpl-hd__acct-out:hover {
color: #fff;
background: rgba(255, 255, 255, 0.08);
}
}
.pgpl-hd .pgpl-hd__acct-nav a:focus-visible,
.pgpl-hd .pgpl-hd__acct-out:focus-visible {
color: #fff;
background: rgba(255, 255, 255, 0.08);
}
.pgpl-hd .pgpl-hd__acct-nav a:active,
.pgpl-hd .pgpl-hd__acct-out:active {
background: rgba(255, 255, 255, 0.13);
}
.pgpl-hd__acct-out {
color: rgba(255, 255, 255, 0.62);
}
.pgpl-hd__acct-out svg {
opacity: 0.6;
}
.pgpl-hd__browse {
display: inline-flex;
gap: 0.4rem;
align-items: center;
padding: 0.55rem 0.95rem;
font-family: inherit;
font-size: 0.85rem;
font-weight: 700;
color: rgba(255, 255, 255, 0.9);
cursor: pointer;
background: rgba(255, 255, 255, 0.09);
border: 1px solid rgba(255, 255, 255, 0.16);
border-radius: 999px;
transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pgpl-hd__browse:hover {
color: #fff;
background: rgba(255, 255, 255, 0.16);
}
.pgpl-hd__browse[aria-expanded="true"] {
color: var(--pgpl-aurora);
background: #fff;
border-color: #fff;
}
.pgpl-hd__browse svg:last-child {
transition: transform 0.18s ease;
}
.pgpl-hd__browse[aria-expanded="true"] svg:last-child {
transform: rotate(180deg);
}
.pgpl-hd__panel[hidden] {
display: none;
}
.pgpl-hd__panel {
border-top: 1px solid rgba(255, 255, 255, 0.07);
background: var(--pgpl-aurora-panel);
box-shadow: 0 30px 50px -30px rgba(0, 0, 0, 0.9);
opacity: 0;
transform: translateY(-6px);
transition: opacity 0.18s ease, transform 0.18s ease;
}
.pgpl-hd__panel.is-open {
opacity: 1;
transform: translateY(0);
}
.pgpl-hd__panel .pgpl-hd__wrap {
display: block;
}
.pgpl-hd__panel-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
gap: 2rem 2.5rem;
padding: 2.25rem 0 2.5rem;
align-items: start;
}
.pgpl-hd__col-title {
display: block;
padding-bottom: 0.7rem;
margin-bottom: 0.7rem;
font-size: 0.68rem;
font-weight: 700;
letter-spacing: 0.13em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.45);
text-decoration: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
a.pgpl-hd__col-title:hover,
a.pgpl-hd__col-title:focus {
color: #fff;
}
.pgpl-hd__col-list {
margin: 0;
padding: 0;
list-style: none;
}
.pgpl-hd__col-list li {
margin: 0 0 0.15rem;
}
.pgpl-hd__col-list a {
display: flex;
gap: 0.6rem;
align-items: center;
padding: 0.4rem 0.6rem;
margin-left: -0.6rem;
font-size: 0.9rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.78);
text-decoration: none;
border-radius: 8px;
transition: color 0.14s ease, background-color 0.14s ease, transform 0.14s ease;
}
.pgpl-hd__col-list a:hover,
.pgpl-hd__col-list a:focus {
color: #fff;
background: rgba(255, 255, 255, 0.08);
transform: translateX(3px);
}
.pgpl-hd__ico {
display: grid;
flex: 0 0 1.6rem;
place-items: center;
width: 1.6rem;
height: 1.6rem;
font-size: 0.7rem;
font-weight: 700;
line-height: 1;
color: rgba(255, 255, 255, 0.55);
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.09);
border-radius: 7px;
transition: color 0.14s ease, background-color 0.14s ease, border-color 0.14s ease;
}
.pgpl-hd__ico svg {
width: 14px;
height: 14px;
}
.pgpl-hd__col-list a:hover .pgpl-hd__ico,
.pgpl-hd__col-list a:focus .pgpl-hd__ico {
color: #fff;
background: var(--pgpl-ultra);
border-color: var(--pgpl-ultra);
}
.pgpl-hd__promo {
position: relative;
overflow: hidden;
align-self: start;
padding: 1.35rem 1.4rem 1.4rem;
color: #fff;
background:
radial-gradient(120% 90% at 85% 0%, rgba(120, 150, 255, 0.55) 0%, rgba(120, 150, 255, 0) 60%),
linear-gradient(155deg, #2436e4 0%, #1b29b8 55%, #131c86 100%);
border-radius: 16px;
box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.22),
0 18px 30px -18px rgba(19, 28, 134, 0.75);
}
.pgpl-hd__promo::after {
content: "";
position: absolute;
bottom: -55%;
left: -25%;
width: 80%;
aspect-ratio: 1;
background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
pointer-events: none;
}
.pgpl-hd__promo > * {
position: relative;
z-index: 1;
}
.pgpl-hd__promo-eyebrow {
display: inline-flex;
align-items: center;
padding: 0.2rem 0.55rem;
font-size: 0.6rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: #fff;
background: rgba(255, 255, 255, 0.16);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 999px;
}
.pgpl-hd__promo-title {
margin: 0.75rem 0 0;
font-size: 1.15rem;
font-weight: 800;
line-height: 1.22;
letter-spacing: -0.02em;
color: #fff;
text-wrap: balance;
}
.pgpl-hd__promo-body {
margin: 0.4rem 0 1.1rem;
font-size: 0.8rem;
line-height: 1.55;
color: rgba(255, 255, 255, 0.78);
}
.pgpl-hd__promo-btn,
.pgpl-hd__promo-btn:link,
.pgpl-hd__promo-btn:visited {
display: inline-flex;
gap: 0.4rem;
align-items: center;
padding: 0.55rem 1.1rem;
font-size: 0.82rem;
font-weight: 700;
color: var(--pgpl-ultra-deep);
text-decoration: none;
background: #fff;
border-radius: 9px;
box-shadow: 0 6px 14px -8px rgba(0, 0, 0, 0.5);
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pgpl-hd .pgpl-hd__promo-btn:hover,
.pgpl-hd .pgpl-hd__promo-btn:focus {
color: var(--pgpl-ultra-deep);
transform: translateY(-1px);
box-shadow: 0 10px 18px -8px rgba(0, 0, 0, 0.55);
}
.pgpl-hd__promo-btn:focus-visible {
outline: 2px solid #fff;
outline-offset: 2px;
}
.pgpl-drawer[hidden] {
display: none;
}
.pgpl-drawer {
position: fixed;
inset: 0;
z-index: 999;
}
.pgpl-drawer__scrim {
position: absolute;
inset: 0;
background: rgba(4, 6, 14, 0.6);
-webkit-backdrop-filter: blur(3px);
backdrop-filter: blur(3px);
opacity: 0;
transition: opacity 0.24s ease;
}
.pgpl-drawer__panel {
position: absolute;
inset-block: 0;
right: 0;
display: flex;
flex-direction: column;
width: min(92vw, 400px);
max-width: 100%;
background: var(--pgpl-aurora-panel);
border-left: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
transform: translateX(100%);
transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}
.pgpl-drawer.is-open .pgpl-drawer__scrim {
opacity: 1;
}
.pgpl-drawer.is-open .pgpl-drawer__panel {
transform: translateX(0);
}
.pgpl-drawer__head {
display: flex;
flex: 0 0 auto;
gap: 0.6rem;
align-items: center;
padding: 1rem calc(1.15rem + env(safe-area-inset-right)) 1rem 1.15rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pgpl-drawer__close {
display: inline-flex;
flex: 0 0 auto;
width: 44px;
height: 44px;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, 0.75);
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 999px;
cursor: pointer;
transition: color 0.15s ease, background-color 0.15s ease;
}
.pgpl-drawer .pgpl-drawer__close:hover,
.pgpl-drawer .pgpl-drawer__close:focus {
color: #fff;
background: rgba(255, 255, 255, 0.12);
}
.pgpl-drawer__scroll {
flex: 1 1 auto;
padding: 0.9rem 1.15rem 1.4rem;
overflow-y: auto;
overscroll-behavior: contain;
-webkit-overflow-scrolling: touch;
}
.pgpl-drawer__updates {
display: flex;
gap: 0.55rem;
align-items: center;
min-height: 44px;
margin-bottom: 1rem;
padding: 0.6rem 0.85rem;
color: rgba(255, 255, 255, 0.9);
font-size: 0.85rem;
text-decoration: none;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.09);
border-radius: 14px;
}
.pgpl-drawer__updates-label {
font-weight: 600;
}
.pgpl-drawer__updates-when {
margin-left: auto;
color: rgba(255, 255, 255, 0.5);
}
.pgpl-drawer__list,
.pgpl-drawer__sublist {
margin: 0;
padding: 0;
list-style: none;
}
.pgpl-drawer__item + .pgpl-drawer__item {
margin-top: 2px;
}
.pgpl-drawer__row {
display: flex;
width: 100%;
gap: 0.75rem;
align-items: center;
padding: 0.6rem 0.7rem;
color: rgba(255, 255, 255, 0.92);
font-family: inherit;
font-size: 0.95rem;
font-weight: 600;
line-height: 1.25;
text-align: left;
text-decoration: none;
background: none;
border: 0;
border-radius: 14px;
cursor: pointer;
transition: background-color 0.15s ease, color 0.15s ease;
}
.pgpl-drawer .pgpl-drawer__row.is-current {
color: #fff;
background: rgba(255, 255, 255, 0.07);
}
.pgpl-drawer .pgpl-drawer__row:focus {
color: #fff;
background: rgba(255, 255, 255, 0.07);
}
@media (hover: hover) and (pointer: fine) {
.pgpl-drawer .pgpl-drawer__row:hover {
color: #fff;
background: rgba(255, 255, 255, 0.07);
}
}
.pgpl-drawer .pgpl-drawer__row:active {
color: #fff;
background: rgba(255, 255, 255, 0.13);
}
.pgpl-drawer__row-text {
flex: 1 1 auto;
min-width: 0;
}
.pgpl-drawer__glyph {
display: inline-flex;
flex: 0 0 34px;
width: 34px;
height: 34px;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, 0.8);
font-size: 0.8rem;
font-weight: 700;
background: rgba(255, 255, 255, 0.06);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 11px;
}
.pgpl-drawer__glyph svg {
width: 17px;
height: 17px;
}
.pgpl-drawer__row:hover .pgpl-drawer__glyph,
.pgpl-drawer__row.is-current .pgpl-drawer__glyph {
color: #fff;
background: rgba(108, 134, 255, 0.22);
border-color: rgba(108, 134, 255, 0.4);
}
.pgpl-drawer__count {
flex: 0 0 auto;
padding: 0.1rem 0.42rem;
color: rgba(255, 255, 255, 0.55);
font-size: 0.7rem;
font-weight: 700;
font-variant-numeric: tabular-nums;
background: rgba(255, 255, 255, 0.07);
border-radius: 999px;
}
.pgpl-drawer__caret,
.pgpl-drawer__go {
display: inline-flex;
flex: 0 0 auto;
color: rgba(255, 255, 255, 0.45);
transition: transform 0.22s ease, color 0.15s ease;
}
.pgpl-drawer__caret svg,
.pgpl-drawer__go svg {
width: 15px;
height: 15px;
}
.pgpl-drawer__row--toggle.is-open .pgpl-drawer__caret {
color: #fff;
transform: rotate(180deg);
}
.pgpl-drawer__row:hover .pgpl-drawer__go {
color: #fff;
transform: translateX(2px);
}
.pgpl-drawer__sub[hidden] {
display: none;
}
.pgpl-drawer__sub {
overflow: hidden;
}
.pgpl-drawer__sublist {
margin: 0.15rem 0 0.4rem 1.25rem;
padding-left: 0.85rem;
border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.pgpl-drawer__sublink,
.pgpl-drawer__sub-all {
display: flex;
gap: 0.6rem;
align-items: center;
min-height: 44px;
padding: 0.5rem 0.6rem;
color: rgba(255, 255, 255, 0.62);
font-size: 0.9rem;
text-decoration: none;
border-radius: 11px;
transition: color 0.15s ease, background-color 0.15s ease;
}
.pgpl-drawer .pgpl-drawer__sublink:hover,
.pgpl-drawer .pgpl-drawer__sublink:focus,
.pgpl-drawer .pgpl-drawer__sub-all:hover,
.pgpl-drawer .pgpl-drawer__sub-all:focus,
.pgpl-drawer .pgpl-drawer__sublink.is-current {
color: #fff;
background: rgba(255, 255, 255, 0.06);
}
.pgpl-drawer .pgpl-drawer__sublink.is-current {
font-weight: 600;
}
.pgpl-drawer__sublink .pgpl-drawer__glyph {
flex-basis: 26px;
width: 26px;
height: 26px;
font-size: 0.68rem;
border-radius: 8px;
}
.pgpl-drawer__sublink .pgpl-drawer__glyph svg {
width: 14px;
height: 14px;
}
.pgpl-drawer__sub-all {
color: rgba(255, 255, 255, 0.5);
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.02em;
text-transform: uppercase;
}
.pgpl-drawer__foot {
display: flex;
flex: 0 0 auto;
flex-direction: column;
padding: 0.9rem 1.15rem calc(0.9rem + env(safe-area-inset-bottom));
background: var(--pgpl-aurora-deep);
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pgpl-drawer__btns {
display: grid;
gap: 0.6rem;
grid-template-columns: 1fr 1fr;
}
.pgpl-drawer__btn {
display: inline-flex;
gap: 0.45rem;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0.6rem 0.8rem;
color: #fff;
font-size: 0.9rem;
font-weight: 700;
text-decoration: none;
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 14px;
transition: background-color 0.15s ease;
}
.pgpl-drawer__btn svg {
width: 17px;
height: 17px;
}
.pgpl-drawer .pgpl-drawer__btn:hover,
.pgpl-drawer .pgpl-drawer__btn:focus {
color: #fff;
background: rgba(255, 255, 255, 0.13);
}
.pgpl-drawer .pgpl-drawer__btn--solid,
.pgpl-drawer .pgpl-drawer__btn--solid:link,
.pgpl-drawer .pgpl-drawer__btn--solid:visited,
.pgpl-drawer .pgpl-drawer__btn--solid:hover,
.pgpl-drawer .pgpl-drawer__btn--solid:focus {
color: #fff;
background: var(--pgpl-ultra);
border-color: transparent;
}
.pgpl-drawer__currency {
flex: 0 1 auto;
margin-left: auto;
min-width: 0;
}
.pgpl-drawer__currency .pgpl-hd__chip {
display: inline-flex;
align-items: center;
min-height: 40px;
padding: 0 0.55rem;
}
.pgpl-drawer__currency .pgpl-hd__chip.is-active {
color: var(--pgpl-ink);
}
.pgpl-drawer :focus-visible {
outline: 2px solid #fff;
outline-offset: 2px;
}
.pgpl-drawer :focus:not(:focus-visible) {
outline: none;
}
.pgpl-ft {
position: relative;
overflow: hidden;
color: rgba(255, 255, 255, 0.72);
background: var(--pgpl-aurora-deep);
font-size: 0.9rem;
}
.pgpl-ft::before {
content: "";
position: absolute;
top: -55%;
left: 50%;
width: min(1100px, 120%);
height: 420px;
background: radial-gradient(ellipse at center, rgba(108, 134, 255, 0.11), transparent 70%);
transform: translateX(-50%);
pointer-events: none;
}
.pgpl-ft__wrap {
position: relative;
z-index: 1;
max-width: 1240px;
margin: 0 auto;
padding: clamp(2.5rem, 5vw, 4rem) max(1rem, env(safe-area-inset-left)) 1.5rem;
}
.pgpl-ft a {
color: rgba(255, 255, 255, 0.72);
text-decoration: none;
transition: color 0.15s ease;
}
.pgpl-ft a:hover,
.pgpl-ft a:focus {
color: #fff;
}
.pgpl-ft__top {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
gap: clamp(2rem, 5vw, 4rem);
padding-bottom: 2rem;
}
.pgpl-ft__brand {
min-width: 0;
}
.pgpl-mark {
display: inline-flex;
align-items: baseline;
font-family: "Bricolage Grotesque", "Poppins", system-ui, sans-serif;
font-weight: 800;
letter-spacing: -0.02em;
white-space: nowrap;
}
.pgpl-mark--sm { font-size: 1.1rem; }
.pgpl-mark--md { font-size: 1.35rem; }
.pgpl-mark--lg { font-size: 1.55rem; }
.pgpl-mark__pure {
color: currentColor;
}
.pgpl-mark__gpl {
margin-left: 0.22em;
padding: 0 0.3em;
color: #fff;
background: var(--pgpl-ultra);
border-radius: 0.25em;
}
.pgpl-hd .pgpl-hd__brand,
.pgpl-hd .pgpl-hd__brand:link,
.pgpl-hd .pgpl-hd__brand:visited,
.pgpl-hd .pgpl-hd__brand:hover,
.pgpl-hd .pgpl-hd__brand:focus,
.pgpl-hd .pgpl-hd__brand:active,
.pgpl-drawer .pgpl-drawer__brand,
.pgpl-drawer .pgpl-drawer__brand:link,
.pgpl-drawer .pgpl-drawer__brand:visited,
.pgpl-drawer .pgpl-drawer__brand:hover,
.pgpl-drawer .pgpl-drawer__brand:focus,
.pgpl-drawer .pgpl-drawer__brand:active {
color: #fff;
text-decoration: none;
}
.pgpl-hd .pgpl-hd__brand:hover .pgpl-mark__gpl,
.pgpl-hd .pgpl-hd__brand:focus .pgpl-mark__gpl {
background: var(--pgpl-ultra-deep);
}
.pgpl-ft .pgpl-ft__word {
display: inline-flex;
color: #fff;
text-decoration: none;
}
.pgpl-ft__tagline {
max-width: 46ch;
margin: 0.9rem 0 0;
line-height: 1.6;
}
.pgpl-ft__social {
display: flex;
gap: 0.5rem;
margin: 1.25rem 0 0;
padding: 0;
list-style: none;
}
.pgpl-ft__social a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.4rem;
height: 2.4rem;
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 999px;
transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
.pgpl-ft__social a:hover {
color: #fff;
background: var(--pgpl-ultra);
border-color: transparent;
transform: translateY(-2px);
}
}
.pgpl-ft__social a:focus-visible {
color: #fff;
background: var(--pgpl-ultra);
}
.pgpl-ft__social a:active {
transform: scale(0.94);
}
.pgpl-ft__columns {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
}
.pgpl-ft__column-title {
display: flex;
gap: 0.5rem;
align-items: center;
margin: 0 0 0.75rem;
color: rgba(255, 255, 255, 0.45);
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
list-style: none;
}
.pgpl-ft__column-title::-webkit-details-marker {
display: none;
}
.pgpl-ft__column-title svg {
display: none;
width: 14px;
height: 14px;
margin-left: auto;
transition: transform 0.2s ease;
}
.pgpl-ft__links {
margin: 0;
padding: 0;
list-style: none;
}
.pgpl-ft__links li {
margin: 0 0 0.5rem;
}
.pgpl-ft__links a {
display: inline-flex;
align-items: center;
min-height: 24px;
transition: color 0.15s ease, transform 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
.pgpl-ft__links a:hover {
transform: translateX(2px);
}
}
.pgpl-ft__legal {
padding: 1rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pgpl-ft__legal-toggle {
display: flex;
gap: 0.5rem;
align-items: center;
font-size: 0.82rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.6);
cursor: pointer;
list-style: none;
}
.pgpl-ft__legal-toggle::-webkit-details-marker {
display: none;
}
.pgpl-ft__legal-toggle:hover {
color: #fff;
}
.pgpl-ft__legal-toggle svg {
transition: transform 0.2s ease;
}
.pgpl-ft__legal[open] .pgpl-ft__legal-toggle svg {
transform: rotate(180deg);
}
.pgpl-ft__legal-toggle:focus-visible {
outline: 2px solid #fff;
outline-offset: 3px;
}
.pgpl-ft__legal-body {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
gap: 1.5rem;
margin-top: 1.25rem;
}
.pgpl-ft__legal-title {
margin: 0 0 0.4rem;
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.5);
}
.pgpl-ft__legal-body p {
margin: 0;
font-size: 0.78rem;
line-height: 1.65;
color: rgba(255, 255, 255, 0.55);
}
.pgpl-ft__legal-body a {
color: rgba(255, 255, 255, 0.8);
text-decoration: underline;
}
.pgpl-ft__bottom {
display: flex;
flex-wrap: wrap;
gap: 1rem;
align-items: center;
justify-content: space-between;
padding-top: 1.25rem;
}
.pgpl-ft__copy {
margin: 0;
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.5);
}
.pgpl-ft__pay-group {
display: flex;
gap: 1rem;
align-items: center;
flex-wrap: wrap;
}
.pgpl-ft__secure {
display: inline-flex;
gap: 0.4rem;
align-items: center;
color: rgba(255, 255, 255, 0.6);
font-size: 0.78rem;
font-weight: 600;
}
.pgpl-ft__secure svg {
width: 15px;
height: 15px;
color: #4ade80;
}
.pgpl-ft__pay {
display: flex;
flex-wrap: wrap;
gap: 0.4rem;
margin: 0;
padding: 0;
list-style: none;
}
.pgpl-ft__pay li {
display: flex;
margin: 0;
}
.pgpl-ft__pay svg {
display: block;
border-radius: 4px;
}
@media (max-width: 60rem) {
.pgpl-hd__utility {
display: none;
}
.pgpl-hd__browse,
.pgpl-hd__panel {
display: none;
}
.pgpl-hd__acct {
display: none;
}
.pgpl-hd__action--compact {
display: inline-flex;
}
.pgpl-hd__burger {
display: inline-flex;
}
.pgpl-hd__action-label {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0 0 0 0);
clip-path: inset(50%);
white-space: nowrap;
border: 0;
}
.pgpl-hd__command .pgpl-hd__wrap {
flex-wrap: wrap;
min-height: 0;
gap: 0.6rem 0.75rem;
padding-top: 0.75rem;
padding-bottom: 0.75rem;
}
.pgpl-hd__brand {
order: 1;
}
.pgpl-hd__actions {
order: 2;
margin-left: auto;
gap: 0.15rem;
}
.pgpl-hd__search {
order: 3;
flex: 1 1 100%;
width: 100%;
}
.pgpl-hd__search input[type="search"],
.pgpl-hd__search input[type="text"],
.pgpl-hd__search .orig,
.pgpl-hd__search .autocomplete {
font-size: 16px !important;
}
.pgpl-hd__action,
.pgpl-hd__burger {
width: 44px;
height: 44px;
padding: 0;
justify-content: center;
}
.pgpl-hd__action .pgpl-hd__badge {
position: absolute;
top: 1px;
right: 1px;
pointer-events: none;
box-shadow: 0 0 0 2px var(--pgpl-aurora);
}
.pgpl-hd__brand .pgpl-mark {
font-size: 1.15rem;
}
.pgpl-ft__top {
grid-template-columns: minmax(0, 1fr);
}
}
@media (max-width: 40rem) {
.pgpl-ft__columns {
grid-template-columns: minmax(0, 1fr);
gap: 0;
}
.pgpl-ft__column {
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pgpl-ft__column-title {
margin: 0;
padding: 0.95rem 0;
font-size: 0.78rem;
letter-spacing: 0.08em;
}
.pgpl-ft__column-title svg {
display: block;
}
.pgpl-ft__column[open] .pgpl-ft__column-title svg {
transform: rotate(180deg);
}
.pgpl-ft__links {
padding-bottom: 0.85rem;
}
.pgpl-ft__links li {
margin: 0 0 0.625rem;
}
.pgpl-ft__bottom {
align-items: flex-start;
flex-direction: column;
}
}
@media (prefers-reduced-motion: reduce) {
.pgpl-hd__action,
.pgpl-hd__burger,
.pgpl-drawer__panel,
.pgpl-drawer__scrim,
.pgpl-hd__panel,
.pgpl-hd__acct-menu,
.pgpl-hd__acct-toggle svg:last-child,
.pgpl-hd__acct-nav a,
.pgpl-hd__acct-out,
.pgpl-hd__updates-arrow,
.pgpl-hd__col-list a,
.pgpl-hd__promo-btn,
.pgpl-hd__browse svg,
.pgpl-drawer__caret,
.pgpl-drawer__go,
.pgpl-drawer__row,
.pgpl-ft__social a,
.pgpl-ft__links a,
.pgpl-ft__legal-toggle svg {
transition: none;
}
.pgpl-hd__action:active,
.pgpl-hd__burger:active,
.pgpl-hd__updates:hover .pgpl-hd__updates-arrow,
.pgpl-hd__updates:focus .pgpl-hd__updates-arrow,
.pgpl-hd__col-list a:hover,
.pgpl-hd__col-list a:focus,
.pgpl-hd__promo-btn:hover,
.pgpl-hd__promo-btn:focus,
.pgpl-drawer__row:hover .pgpl-drawer__go,
.pgpl-ft__social a:hover,
.pgpl-ft__social a:focus,
.pgpl-ft__links a:hover,
.pgpl-ft__links a:focus {
transform: none;
}
}