@media print{/*!
 * FAZ Cookie Manager — Cookie Policy frontend styles.
 *
 * Deliberately minimal: inherits font, colours, spacing from the host
 * theme. The only interventions are:
 *   1. Lift the typographic max-width constraint that block themes like
 *      Twenty Twenty-Four/Five impose via `.entry-content` (60ch) — which
 *      makes a long legal document feel cramped.
 *   2. Style the optional disclaimer so it is visually distinct from
 *      body copy (warning-coloured callout, light backdrop). Visibility
 *      and text are now admin-configurable; CSS still gives it the
 *      callout treatment whenever it is rendered.
 *   3. Style the per-category accordion (<details>/<summary>) and the
 *      cookie table inside it. Accordion is HTML5-native, JS-free,
 *      keyboard-accessible. The table inside uses a mobile-friendly
 *      data-label fallback so the layout collapses to a card stack on
 *      narrow screens without media queries fighting the theme.
 *   4. Neutralise <code> inside the policy. The policy uses <code> for
 *      cookie names and technical tokens; many themes style the global
 *      `code {}` element with a coloured background + border (often via
 *      their own `--theme-color-*` custom properties), which looks out of
 *      place inside a legal document. We force a transparent, border-less,
 *      inherit-colour monospace token so the policy renders neutrally on
 *      any theme.
 *
 * Anything else (headings, link colours, paragraph rhythm) is theme.
 */

/* 1. Fill the available column. Most block themes constrain content to ~60ch. */
.faz-cookie-policy {
	max-width: none;
	width: 100%;
	box-sizing: border-box;
}

/* 4. Neutral <code> regardless of the active theme. `!important` is a
   deliberate, tightly-scoped exception to this file's otherwise no-!important
   convention: a theme's `code {}` rule may itself be flagged !important or use
   an equal-specificity `.entry-content code` selector, and the policy must look
   clean on every theme. Only the box/colour properties are forced; the
   monospace family is left to the theme/UA. */
.faz-cookie-policy code {
	border: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	color: inherit !important;
	box-shadow: none !important;
	padding: 0;
}

/* 3. Cookie list (auto-populated). One <details> per category. */
.faz-cookie-policy-category {
	margin: 1em 0 1.5em 0;
}

.faz-cookie-policy-details {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 6px;
	margin: 0.5em 0;
	background: var(--faz-policy-card-bg, transparent);
}

.faz-cookie-policy-details + .faz-cookie-policy-details {
	margin-top: 0.6em;
}

/* Summary layout — selector specificity is intentionally higher
   (details.X > summary.Y) so block themes that hit `summary` with
   `display: block` via .entry-content selectors lose the cascade
   battle. The category heading inside is forced to inline-flex so
   the theme's default `h3 { display: block; width: 100% }` cannot
   push the count badge onto a second line. */
details.faz-cookie-policy-details > summary.faz-cookie-policy-summary {
	cursor: pointer;
	list-style: none;
	padding: 0.75em 1em;
	display: flex;
	align-items: center;
	gap: 0.75em;
	user-select: none;
	transition: background-color 120ms ease;
}

details.faz-cookie-policy-details > summary.faz-cookie-policy-summary:hover,
details.faz-cookie-policy-details > summary.faz-cookie-policy-summary:focus-visible {
	background: rgba(0, 0, 0, 0.04);
	outline: none;
}

/* Hide the native marker on every engine (Blink/WebKit + Gecko + spec). */
details.faz-cookie-policy-details > summary.faz-cookie-policy-summary::-webkit-details-marker {
	display: none;
}
details.faz-cookie-policy-details > summary.faz-cookie-policy-summary::marker {
	content: '';
}

/* Custom chevron — sits left of the title, rotates on [open]. */
details.faz-cookie-policy-details > summary.faz-cookie-policy-summary::before {
	content: '';
	display: inline-block;
	width: 0.55em;
	height: 0.55em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	transition: transform 150ms ease;
	flex: 0 0 auto;
}

details.faz-cookie-policy-details[open] > summary.faz-cookie-policy-summary::before {
	transform: rotate(45deg);
}

/* Category name. The renderer emits this as <span role="heading"
   aria-level="3"> (changed from <h3> in 1.16.2 because block-level
   headings inside <summary> get coerced to display:block by every
   block-theme reset and break the inline layout). Force inline-flex
   + flex:1 so the chevron, name, count all sit on ONE row. */
details.faz-cookie-policy-details > summary.faz-cookie-policy-summary > .faz-cookie-policy-category-name {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0;
	width: auto;
	font-size: 1.05em;
	font-weight: 600;
	line-height: 1.3;
	flex: 1 1 auto;
}

details.faz-cookie-policy-details > summary.faz-cookie-policy-summary > .faz-cookie-policy-count {
	display: inline-flex;
	align-items: center;
	width: auto;
	font-size: 0.85em;
	color: var(--faz-policy-muted, #666);
	font-weight: normal;
	white-space: nowrap;
	flex: 0 0 auto;
}

.faz-cookie-policy-details-body {
	padding: 0.25em 1em 1em 1em;
}

/* Cookie table inside the accordion. */
.faz-cookie-policy-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0.75em 0 0;
	font-size: 0.92em;
}

.faz-cookie-policy-table th,
.faz-cookie-policy-table td {
	text-align: left;
	padding: 0.55em 0.7em;
	vertical-align: top;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faz-cookie-policy-table thead th {
	font-weight: 600;
	border-bottom: 2px solid rgba(0, 0, 0, 0.12);
	background: rgba(0, 0, 0, 0.02);
}

.faz-cookie-policy-table code {
	/* Box/colour neutralised by the `.faz-cookie-policy code` rule above; only
	   nudge the cookie-name tokens to a slightly smaller monospace size. */
	font-size: 0.95em;
}

/* Mobile: collapse the table into a card-per-row layout using
   the data-label attributes the renderer emits on each <td>. */
@media (max-width: 600px) {
	.faz-cookie-policy-table thead {
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		height: 1px;
		width: 1px;
		overflow: hidden;
		position: absolute;
		white-space: nowrap;
	}

	.faz-cookie-policy-table,
	.faz-cookie-policy-table tbody,
	.faz-cookie-policy-table tr,
	.faz-cookie-policy-table td {
		display: block;
		width: 100%;
	}

	.faz-cookie-policy-table tr {
		border: 1px solid rgba(0, 0, 0, 0.08);
		border-radius: 4px;
		padding: 0.4em 0.5em;
		margin: 0.5em 0;
	}

	.faz-cookie-policy-table td {
		border: 0;
		padding: 0.2em 0;
	}

	.faz-cookie-policy-table td::before {
		content: attr(data-label) ': ';
		font-weight: 600;
		display: inline-block;
		margin-right: 0.4em;
	}
}

/* 2. Disclaimer — admin-configurable callout. */
.faz-cookie-policy-disclaimer {
	margin-top: 2em;
	padding: 0.85em 1em;
	background: var(--faz-disclaimer-bg, #fff5d6);
	border-left: 4px solid var(--faz-disclaimer-accent, #d4a017);
	font-size: 0.9em;
	line-height: 1.55;
}

/* 3. International data transfers (Schrems II) — neutral transparency block.
   Purely informational: it never gates or reweights any consent control. */
.faz-cookie-policy-transfers {
	margin-top: 2em;
	padding: 1em 1.15em;
	background: var(--faz-transfer-bg, #f1f5f9);
	border-left: 4px solid var(--faz-transfer-accent, #64748b);
	border-radius: 4px;
}

.faz-cookie-policy-transfers-title {
	margin: 0 0 0.4em;
	font-size: 1.15em;
}

.faz-cookie-policy-transfers-list {
	margin: 0.6em 0 0;
	padding-left: 1.2em;
	line-height: 1.55;
}

.faz-cookie-policy-transfers-list code {
	font-size: 0.92em;
}

/* Per-row indicator inside the cookie inventory table. */
.faz-cookie-policy-transfer {
	display: block;
	margin-top: 0.35em;
	font-size: 0.82em;
	color: var(--faz-transfer-fg, #475569);
}

}.breakdance .bde-button{max-width:100%}.breakdance .bde-section{position:relative;width:100%;background-position:center center;background-size:cover}.breakdance .bde-section .section-container{max-width:var(--bde-section-width);background-size:cover;position:relative;display:flex;flex-direction:column;align-items:flex-start;text-align:left;margin:0 auto;padding:var(--bde-section-vertical-padding) var(--bde-section-horizontal-padding)}.breakdance .bde-section .section-shape-divider-wrapper{position:absolute;overflow:hidden;top:0;left:0;bottom:0;right:0;pointer-events:none}.breakdance .bde-section .section-shape-divider-wrapper .section-shape-divider svg{position:absolute;color:#000;width:100%;height:320px;left:0;right:0;top:0}.breakdance .bde-div{display:flex;flex-direction:column;align-items:flex-start;text-align:left;max-width:100%;position:relative;background-size:cover}.breakdance .bde-icon{display:flex}.breakdance .bde-text{max-width:100%;margin:0;color:var(--bde-text-color,var(--bde-body-text-color))}.breakdance .bde-heading{max-width:100%;margin:0}.breakdance .bde-button{max-width:100%}.breakdance .bde-icon-list{max-width:100%;display:flex;text-align:left}.breakdance .bde-icon-list ul{width:100%;display:flex;flex-direction:column;list-style:none;padding:0;margin:0;gap:16px}.breakdance .bde-icon-list li .bde-icon-list__item-wrapper{display:flex;align-items:center;text-decoration:none;gap:8px}.breakdance .bde-icon-list ul .bde-icon-list__icon{display:flex;font-size:20px}.breakdance .bde-icon-list--background ul .bde-icon-list__icon{padding:14px;border-radius:0px;background-color:#DBE5FF}.breakdance .bde-icon-list ul .bde-icon-list__icon>svg{font-size:inherit;width:1em;height:1em;stroke-width:0;stroke:currentColor;fill:currentColor}.breakdance .bde-div{display:flex;flex-direction:column;align-items:flex-start;text-align:left;max-width:100%;position:relative;background-size:cover}.breakdance .bde-code-block{max-width:100%;display:flex;flex-direction:column;align-items:flex-start;text-align:left}.breakdance .bde-text{max-width:100%;margin:0;color:var(--bde-text-color,var(--bde-body-text-color))}:root{--white:#fff;--grey-50:#f9fafb;--grey-100:#f3f4f6;--grey-200:#e5e7eb;--grey-300:#d1d5db;--grey-400:#9ca3af;--grey-450:#787e8b;--grey-500:#6b7280;--grey-600:#4b5563;--grey-700:#374151;--grey-800:#1f2937;--grey-900:#111827;--blue-500:#3b82f6;--blue-600:#2563eb;--pink-600:#db2777;--emerald-100:#d1fae5;--emerald-700:#047857;--sky-100:#e0f2fe;--sky-500:#0ea5e9;--red-50:#fef2f2;--red-500:#ef4444;--red-700:#b91c1c;--indigo-50:#eef2ff;--indigo-600:#4f46e5;--indigo-700:#4338ca;--yellow-500:#fbbf24;--bde-brand-primary-color:var(--blue-500);--bde-brand-primary-color-hover:var(--blue-600);--bde-body-font-family:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";--bde-heading-font-family:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";--bde-base-font-size:16px;--bde-body-font-size:var(--bde-base-font-size);--bde-font-size-ratio:1.250;--bde-h6-font-size:var(--bde-base-font-size);--bde-h5-font-size:calc(var(--bde-h6-font-size) * var(--bde-font-size-ratio));--bde-h4-font-size:calc(var(--bde-h5-font-size) * var(--bde-font-size-ratio));--bde-h3-font-size:calc(var(--bde-h4-font-size) * var(--bde-font-size-ratio));--bde-h2-font-size:calc(var(--bde-h3-font-size) * var(--bde-font-size-ratio));--bde-h1-font-size:calc(var(--bde-h2-font-size) * var(--bde-font-size-ratio));--bde-body-text-color:#181818;--bde-headings-color:var(--grey-900);--bde-background-color:#fff0;--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1:#181818;--bde-palette-color-1-c71a05e2-6e6c-4b76-af0d-2759c139034f:#FFF;--bde-palette-green-a2d650bb-40b5-4905-9508-dbb6cd655ff2-2:#BCC372;--bde-palette-accent-43ddc507-6170-4c22-a0b4-2c5eebbfa12a-3:#BCC372;--bde-palette-lime-261f7aec-15c1-4fb2-af5f-a245f6429d5b-4:#BDEA00;--bde-palette-color-1-39c7bd16-d824-42d1-9ed8-38ccc826895c:#f7f7dd;--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb:#C7C7B0;--bde-palette-light-gray-bg-5d43ad1d-017e-44b1-9b95-2d8da609994f-7:#F7F7F7;--bde-transition-duration:300ms;--bde-column-gap:32px;--bde-section-width:1120px;--bde-section-vertical-padding:100px;--bde-section-horizontal-padding:20px;--bde-button-primary-border-color:transparent;--bde-button-primary-border-color-hover:transparent;--bde-button-primary-text-color:#fff;--bde-button-primary-text-color-hover:#fff;--bde-button-secondary-text-color-hover:#fff;--bde-button-secondary-background-color:transparent;--bde-button-custom-border-color:var(--grey-900);--bde-button-custom-border-color-hover:var(--grey-700);--bde-button-custom-text-color:var(--white);--bde-button-custom-text-color-hover:var(--white);--bde-button-custom-background-color:var(--grey-900);--bde-button-custom-background-color-hover:var(--grey-700);--bde-button-font-weight:500;--bde-button-border-radius:3px;--bde-button-border-width:1px;--bde-button-padding-base:14px 24px;--bde-button-padding-sm:8px 16px;--bde-button-padding-lg:28px 54px;--bde-button-line-height:1;--bde-form-gap:16px;--bde-form-after-label:8px;--bde-form-after-sublabel:8px;--bde-form-input-border-radius:3px;--bde-form-input-background-color:var(--white);--bde-form-input-padding-top:12px;--bde-form-input-padding-right:16px;--bde-form-input-padding-bottom:12px;--bde-form-input-padding-left:16px;--bde-form-input-placeholder-color:var(--grey-450);--bde-form-input-border-width:1px;--bde-form-input-border-color:var(--grey-300);--bde-form-label-font-weight:500;--bde-form-label-required-color:var(--red-700);--bde-form-label-required-nudge-x:0;--bde-form-label-required-nudge-y:0;--bde-form-label-required-size:inherit;--bde-form-text-color:var(--grey-700);--bde-form-input-focused-background-color:var(--white);--bde-form-input-input-shadow:none;--bde-form-checkbox-size:1em;--bde-woo-products-list-gap:var(--bde-woo-base-large-gaps);--bde-woo-base-paragraph-line-height:1.4;--bde-woo-base-heading-line-height:1.2;--bde-woo-base-border-color:var(--grey-300);--bde-woo-base-text-on-primary-color:var(--white);--bde-woo-base-space:8px;--bde-woo-base-ratio:1.618;--bde-woo-typography-font-weight-normal:400;--bde-woo-typography-font-weight-medium:500;--bde-woo-typography-font-weight-heavy:600;--bde-woo-buttons-and-links-line-height:1;--bde-woo-buttons-and-links__disabled-button-color:var(--grey-300);--bde-woo-buttons-and-links__disabled-button-text-color:var(--white);--bde-woo-buttons-and-links__nav-link-background-active:var(--grey-50);--bde-woo-buttons-and-links__nav-border-radius:4px;--bde-woo-forms__inputs-select2-selected-item:var(--grey-300);--bde-woo-forms__wrappers-small:360px;--error-svg-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24v112c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zm-32 224a32 32 0 1 1 64 0 32 32 0 1 1-64 0z'/%3E%3C/svg%3E");--success-svg-icon:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm-1 17l-5-5.299 1.399-1.43 3.574 3.736 6.572-7.007 1.455 1.403-8 8.597z"/></svg>');--info-svg-icon:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm1 18h-2v-6h-2v-2h4v8zm-1-9.75c-.69 0-1.25-.56-1.25-1.25s.56-1.25 1.25-1.25 1.25.56 1.25 1.25-.56 1.25-1.25 1.25z"/></svg>');--chevron-svg-icon:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 7.33l2.829-2.83 9.175 9.339 9.167-9.339 2.829 2.83-11.996 12.17z"/></svg>');--checkbox-svg-icon:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M9 21.035l-9-8.638 2.791-2.87 6.156 5.874 12.21-12.436 2.843 2.817z"/></svg>');--radiobutton-svg-icon:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="12"/></svg>');--show-password-svg-icon:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12.015 7c4.751 0 8.063 3.012 9.504 4.636-1.401 1.837-4.713 5.364-9.504 5.364-4.42 0-7.93-3.536-9.478-5.407 1.493-1.647 4.817-4.593 9.478-4.593zm0-2c-7.569 0-12.015 6.551-12.015 6.551s4.835 7.449 12.015 7.449c7.733 0 11.985-7.449 11.985-7.449s-4.291-6.551-11.985-6.551zm-.015 5c1.103 0 2 .897 2 2s-.897 2-2 2-2-.897-2-2 .897-2 2-2zm0-2c-2.209 0-4 1.792-4 4 0 2.209 1.791 4 4 4s4-1.791 4-4c0-2.208-1.791-4-4-4z"/></svg>');--hide-password-svg-icon:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19.604 2.562l-3.346 3.137c-1.27-.428-2.686-.699-4.243-.699-7.569 0-12.015 6.551-12.015 6.551s1.928 2.951 5.146 5.138l-2.911 2.909 1.414 1.414 17.37-17.035-1.415-1.415zm-6.016 5.779c-3.288-1.453-6.681 1.908-5.265 5.206l-1.726 1.707c-1.814-1.16-3.225-2.65-4.06-3.66 1.493-1.648 4.817-4.594 9.478-4.594.927 0 1.796.119 2.61.315l-1.037 1.026zm-2.883 7.431l5.09-4.993c1.017 3.111-2.003 6.067-5.09 4.993zm13.295-4.221s-4.252 7.449-11.985 7.449c-1.379 0-2.662-.291-3.851-.737l1.614-1.583c.715.193 1.458.32 2.237.32 4.791 0 8.104-3.527 9.504-5.364-.729-.822-1.956-1.99-3.587-2.952l1.489-1.46c2.982 1.9 4.579 4.327 4.579 4.327z"/></svg>');--x-mark-svg-icon:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20384%20512%22%3E%3Cpath%20d%3D%22M342.6%20150.6c12.5-12.5%2012.5-32.8%200-45.3s-32.8-12.5-45.3%200L192%20210.7%2086.6%20105.4c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3L146.7%20256%2041.4%20361.4c-12.5%2012.5-12.5%2032.8%200%2045.3s32.8%2012.5%2045.3%200L192%20301.3l105.4%20105.3c12.5%2012.5%2032.8%2012.5%2045.3%200s12.5-32.8%200-45.3L237.3%20256l105.3-105.4z%22%2F%3E%3C%2Fsvg%3E);--error-svg-icon-color:var(--red-500);--success-svg-icon-color:var(--emerald-700);--info-svg-icon-color:var(--sky-500);--chevron-svg-icon-color:var(--grey-900);--checkbox-svg-icon-color:var(--grey-900);--radiobutton-svg-icon-color:var(--grey-900);--show-password-svg-icon-color:var(--grey-900);--hide-password-svg-icon-color:var(--grey-900);--bde-woo-notices__icon-size:16px;--bde-woo-notices__padding:24px;--bde-woo-notices__border-radius:4px;--bde-woo-notices__error-background:var(--red-50);--bde-woo-notices__error-text:var(--red-500);--bde-woo-notices__error-link-text:var(--red-500);--bde-woo-notices__error-link-text-hover:var(--red-500);--bde-woo-notices__info-background:var(--sky-100);--bde-woo-notices__info-text:var(--sky-500);--bde-woo-notices__info-link-text:var(--sky-500);--bde-woo-notices__info-link-text-hover:var(--sky-500);--bde-woo-notices__success-background:var(--emerald-100);--bde-woo-notices__success-text:var(--emerald-700);--bde-woo-notices__success-link-text:var(--emerald-700);--bde-woo-notices__success-link-text-hover:var(--emerald-700);--bde-woo-sale-badge__border-radius:2px;--bde-woo-sale-badge__padding:4px 8px;--bde-woo-ratings__star-color:var(--yellow-500);--bde-woo-ratings__star-size:18px;--bde-woo-ratings__filled-star-svg:url('data:image/svg+xml;utf8,<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><polygon id="Path" points="12 0.587 15.668 8.155 24 9.306 17.936 15.134 19.416 23.413 12 19.446 4.583 23.413 6.064 15.134 0 9.306 8.332 8.155"></polygon></svg>');--bde-woo-ratings__empty-star-svg:url('data:image/svg+xml;utf8,<svg width="24px" height="24px" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M12,5.173 L14.335,9.99 L19.64,10.722 L15.779,14.432 L16.721,19.702 L12,17.178 L7.279,19.703 L8.221,14.433 L4.36,10.723 L9.665,9.99 L12,5.173 L12,5.173 Z M12,0.587 L8.332,8.155 L0,9.306 L6.064,15.134 L4.584,23.413 L12,19.446 L19.416,23.412 L17.936,15.133 L24,9.306 L15.668,8.156 L12,0.587 Z" id="Shape"></path></svg>');--bde-woo-product-images__border-radius:4px;--bde-woo-product-images__border-width:0px;--bde-woo-product-images__border-color:var(--grey-300);--bde-woo-wrappers__background-color:var(--white);--bde-woo-wrappers__border-radius:4px;--bde-woo-wrappers__border-color:var(--grey-300);--bde-woo-wrappers__border-width:1px;--bde-woo-wrappers__shadow:rgba(0,0,0,0.05) 0 1px 3px,rgba(0,0,0,0.05) 0 1px 2px;--bde-woo-tables__header-color:var(--grey-100);--bde-woo-tables__background-color:var(--white);--bde-woo-tables__border-radius:4px;--bde-woo-tables__border-width:1px;--bde-woo-widgets__chip-background-color:transparent;--bde-woo-widgets__chip-background-color-hover:var(--indigo-50);--bde-woo-widgets__chip-text-color:inherit;--bde-woo-widgets__handle-border-color:var(--grey-300);--bde-woo-widgets__handle-background-color:var(--white);--bde-woo-widgets__handle-background-color-hover:var(--white);--bde-woo-widgets__handle-shadow:rgba(0,0,0,0.05) 0 1px 3px,rgba(0,0,0,0.05) 0 1px 2px;--bde-woo-widgets__handle-shadow-hover:var(--grey-300) 0 0 4px;--bde-woo-widgets__remove-item-from-cart-color:var(--grey-450);--bde-woo-select2__active-item-background-color:var(--indigo-50);--bde-woo-gallery__zoom-icon-shadow:rgba(0,0,0,0.05) 0 1px 3px,rgba(0,0,0,0.05) 0 1px 2px;--bde-woo-payment-box-background-color:var(--grey-100);--bde-woo-payment-box-border-color:var(--grey-200);--bde-woo-payment-box-border-width:1px;--bde-woo-quicklook-button-icon:url(/wp-content/uploads/breakdance/css/icons/eye.svg);--bde-woo-quicklook-button-background-color:none;--bde-woo-quicklook-button-icon-size:20px;--bde-woo-quicklook-button-backdrop-color:rgba(0,0,0,0.15);--bde-woo-quicklook-button-backdrop-opacity:0.7;--bde-woo-quicklook-modal-background-color:var(--white);--bde-woo-quicklook-overlay-color:rgba(0,0,0,0.7);--bde-woo-quicklook-close-button-size:2em;--bde-woo-quicklook-arrow-size:1em;--bde-woo-quicklook-arrow-color:var(--white);--bde-woo-swatch-space-between-options:10px;--bde-woo-swatch-padding:7px 7px;--bde-woo-swatch-color-width:30px;--bde-woo-swatch-color-height:30px;--bde-woo-swatch-border:1px solid var(--grey-200);--bde-woo-swatch-border-color-hover:var(--grey-400);--bde-woo-swatch-shadow:none;--bde-woo-swatch-shadow-hover:none;--bde-woo-swatch-background:var(--white);--bde-woo-swatch-background-hover:var(--grey-50);--bde-woo-swatch-color-padding:2px;--bde-woo-swatch-tooltip-color:var(--white);--bde-woo-swatch-tooltip-background:var(--grey-900);--bde-woo-swatch-tooltip-padding:7px;--bde-woo-swatch-space-after-label:8px;--bde-woo-responsive__stack:row}:root,.bde-global-css-vars{--bde-links-color:var(--bde-brand-primary-color);--bde-links-color-hover:var(--bde-brand-primary-color-hover);--bde-button-primary-background-color:var(--bde-brand-primary-color);--bde-button-primary-background-color-hover:var(--bde-brand-primary-color-hover);--bde-button-secondary-border-color:var(--bde-brand-primary-color);--bde-button-secondary-border-color-hover:var(--bde-brand-primary-color);--bde-button-secondary-text-color:var(--bde-brand-primary-color);--bde-button-secondary-background-color-hover:var(--bde-brand-primary-color);--bde-button-text-text-color:var(--bde-links-color);--bde-button-text-text-color-hover:var(--bde-links-color-hover);--bde-button-font-size:var(--bde-body-font-size);--bde-form-font-size:var(--bde-body-font-size);--bde-form-input-border-top-left-radius:var(--bde-form-input-border-radius);--bde-form-input-border-top-right-radius:var(--bde-form-input-border-radius);--bde-form-input-border-bottom-left-radius:var(--bde-form-input-border-radius);--bde-form-input-border-bottom-right-radius:var(--bde-form-input-border-radius);--bde-form-input-border-top:var(--bde-form-input-border-width) solid var(--bde-form-input-border-color);--bde-form-input-border-right:var(--bde-form-input-border-width) solid var(--bde-form-input-border-color);--bde-form-input-border-bottom:var(--bde-form-input-border-width) solid var(--bde-form-input-border-color);--bde-form-input-border-left:var(--bde-form-input-border-width) solid var(--bde-form-input-border-color);--bde-form-label-color:var(--bde-headings-color);--bde-form-input-focused-border-color:var(--bde-brand-primary-color);--bde-form-input-focused-shadow:var(--bde-brand-primary-color) 0 0 2px;--bde-form-checkbox-selected-color:var(--bde-brand-primary-color);--bde-z-index-lightbox:1100;--bde-z-index-popup:1050;--bde-z-index-modal:1000;--bde-z-index-modal-backdrop:calc(var(--bde-z-index-modal) - 1);--bde-z-index-high:300;--bde-z-index-medium:200;--bde-z-index-low:100;--bde-z-index-sticky:10;--bde-z-index-minicart:var(--bde-z-index-modal);--bde-z-index-minicart-backdrop:var(--bde-z-index-modal-backdrop);--bde-z-index-menu-dropdown:var(--bde-z-index-modal);--bde-z-index-menu-mobile:var(--bde-z-index-modal);--bde-z-index-menu-backdrop:var(--bde-z-index-modal-backdrop);--bde-z-index-search-fullscreen:var(--bde-z-index-modal);--bde-z-index-back-to-top:var(--bde-z-index-high);--bde-z-index-scroll-progress:var(--bde-z-index-high);--bde-z-index-header-sticky:var(--bde-z-index-medium);--bde-z-index-header-overlay:calc(var(--bde-z-index-header-sticky) - 1);--bde-z-index-social-share-buttons:var(--bde-z-index-low);--bde-woo-base-transition:all ease var(--bde-transition-duration);--bde-woo-base-text-color:var(--bde-body-text-color);--bde-woo-base-headings-color:var(--bde-headings-color);--bde-woo-base-primary-color:var(--bde-brand-primary-color);--bde-woo-base-primary-color-hover:var(--bde-brand-primary-color-hover);--bde-woo-base-extra-small-gaps:calc(var(--bde-woo-base-small-gaps) / var(--bde-woo-base-ratio));--bde-woo-base-small-gaps:calc(var(--bde-woo-base-space) / var(--bde-woo-base-ratio));--bde-woo-base-standard-gaps:var(--bde-woo-base-space);--bde-woo-base-medium-gaps:calc(var(--bde-woo-base-space) * var(--bde-woo-base-ratio));--bde-woo-base-big-gaps:calc(var(--bde-woo-base-medium-gaps) *  var(--bde-woo-base-ratio));--bde-woo-base-large-gaps:calc(var(--bde-woo-base-big-gaps) *  var(--bde-woo-base-ratio));--bde-woo-base-extra-large-gaps:calc(var(--bde-woo-base-large-gaps) * var(--bde-woo-base-ratio));--bde-woo-typography-ratio:var(--bde-font-size-ratio);--bde-woo-typography__size-small:calc(var(--bde-woo-typography__size-standard) / var(--bde-woo-typography-ratio));--bde-woo-typography__size-small-font-family:var(--bde-body-font-family);--bde-woo-typography__size-standard:var(--bde-body-font-size);--bde-woo-typography__size-standard-font-family:var(--bde-body-font-family);--bde-woo-typography__size-medium:calc(var(--bde-woo-typography__size-standard) * var(--bde-woo-typography-ratio));--bde-woo-typography__size-medium-font-family:var(--bde-heading-font-family);--bde-woo-typography__size-large:calc(var(--bde-woo-typography__size-medium) * var(--bde-woo-typography-ratio));--bde-woo-typography__size-large-font-family:var(--bde-heading-font-family);--bde-woo-typography__size-extra-large:calc(var(--bde-woo-typography__size-large) * var(--bde-woo-typography-ratio));--bde-woo-typography__size-extra-large-font-family:var(--bde-heading-font-family);--bde-woo-buttons-and-links__text-link-color:var(--bde-woo-base-primary-color);--bde-woo-buttons-and-links__text-link-color-hover:var(--bde-woo-base-primary-color-hover);--bde-woo-buttons-and-links__nav-link-color:var(--bde-woo-base-text-color);--bde-woo-buttons-and-links__nav-link-color-hover:var(--bde-woo-base-text-on-primary-color);--bde-woo-buttons-and-links__nav-link-color-active:var(--bde-woo-base-primary-color);--bde-woo-forms__spacing-after-label:var(--bde-form-after-label);--bde-woo-forms__spacing-between-fields:var(--bde-form-gap);--bde-woo-forms__spacing-between-columns:var(--bde-woo-base-extra-large-gaps);--bde-woo-forms__labels-color:var(--bde-form-label-color);--bde-woo-forms__inputs-background-color:var(--bde-form-input-background-color);--bde-woo-forms__inputs-text-color:var(--bde-form-text-color);--bde-woo-forms__inputs-placeholder-color:var(--bde-form-input-placeholder-color);--bde-woo-forms__inputs-border-color:var(--bde-form-input-border-color);--bde-woo-forms__inputs-border-width:var(--bde-form-input-border-width);--bde-woo-forms__inputs-border-radius:var(--bde-form-input-border-top-left-radius) var(--bde-form-input-border-top-right-radius) var(--bde-form-input-border-bottom-right-radius) var(--bde-form-input-border-bottom-left-radius);--bde-woo-forms__inputs-background-color-focused:var(--bde-form-input-focused-background-color);--bde-woo-forms__inputs-border-color-focused:var(--bde-form-input-focused-border-color);--bde-woo-forms__inputs-shadow-focused:var(--bde-form-input-focused-shadow);--bde-woo-forms__inputs-shadow:var(--bde-form-input-input-shadow);--bde-woo-forms__inputs-select2-hover-item:var(--bde-woo-base-primary-color);--bde-woo-forms__labels-required-color:var(--bde-form-label-required-color);--bde-woo-forms__labels-required-size:var(--bde-form-label-required-size);--bde-woo-forms__labels-required-nudge-x:var(--bde-form-label-required-nudge-x);--bde-woo-forms__labels-required-nudge-y:var(--bde-form-label-required-nudge-y);--bde-woo-tables__border-color:var(--bde-woo-base-border-color);--bde-woo-sale-badge__background-color:var(--bde-woo-base-primary-color);--bde-woo-sale-badge__text-color:var(--bde-woo-base-text-on-primary-color);--bde-woo-sale-badge__font-weight:var(--bde-woo-typography-font-weight-heavy);--bde-woo-sale-badge__font-size:var(--bde-woo-typography__size-standard);--bde-woo-widgets__chip-text-color-hover:var(--bde-woo-buttons-and-links__text-link-color);--bde-woo-widgets__handle-border-color-hover:var(--bde-woo-base-primary-color);--bde-woo-notices__padding-left:calc(var(--bde-woo-notices__padding) + var(--bde-woo-notices__icon-size) + (var(--bde-woo-notices__icon-size) / 2));--bde-woo-quicklook-button-text-color:var(--bde-button-primary-text-color);--bde-woo-quicklook-button-background-color-hover:var(--bde-woo-quicklook-button-background-color);--bde-woo-quicklook-button-icon-spacing:var(--bde-woo-base-standard-gaps);--bde-woo-quicklook-close-button-color:var(--bde-woo-base-headings-color);--bde-woo-quicklook-arrow-color-hover:var(--bde-woo-quicklook-arrow-color);--bde-woo-quicklook-arrow-background-color:var(--bde-brand-primary-color);--bde-woo-quicklook-arrow-background-color-hover:var(--bde-woo-quicklook-arrow-background-color);--bde-woo-swatch-space-between-items:var(--bde-woo-base-medium-gaps);--bde-woo-swatch-background-selected:var(--bde-woo-swatch-background-hover);--bde-woo-swatch-border-color-selected:var(--bde-woo-swatch-border-color-hover);--bde-woo-swatch-shadow-selected:var(--bde-woo-swatch-shadow-hover);--bde-woo-swatch-color-background:var(--bde-woo-swatch-background)}.breakdance .button-atom{display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;user-select:none;appearance:none;box-sizing:border-box;margin:0;border:0;padding:0;background-color:transparent;font-size:var(--bde-button-font-size);line-height:var(--bde-button-line-height);transform:translate(0,0);max-width:100%;width:var(--bde-button-width)}.breakdance .button-atom--primary,.breakdance .button-atom--secondary,.breakdance .button-atom--custom{text-align:center;font-weight:var(--bde-button-font-weight);text-decoration:none;padding:var(--bde-button-padding-base);border-radius:var(--bde-button-border-radius);cursor:pointer;border-width:var(--bde-button-border-width);border-style:solid;border-color:transparent;transition-timing-function:ease-in-out;transition-property:all;transition-duration:var(--bde-transition-duration);overflow:hidden}.breakdance .button-atom--text{color:var(--bde-button-text-text-color)}.breakdance .button-atom--text:hover{color:var(--bde-button-text-text-color-hover)}.breakdance .button-atom--primary{color:var(--bde-button-primary-text-color);background:var(--bde-button-primary-background-color);border-color:var(--bde-button-primary-border-color)}.breakdance .button-atom--primary:hover{color:var(--bde-button-primary-text-color-hover);background:var(--bde-button-primary-background-color-hover);border-color:var(--bde-button-primary-border-color-hover)}.breakdance .button-atom--secondary{color:var(--bde-button-secondary-text-color);background:var(--bde-button-secondary-background-color);border-color:var(--bde-button-secondary-border-color)}.breakdance .button-atom--secondary:hover{color:var(--bde-button-secondary-text-color-hover);background:var(--bde-button-secondary-background-color-hover);border-color:var(--bde-button-secondary-border-color-hover)}.breakdance .button-atom--custom{color:var(--bde-button-custom-text-color);background:var(--bde-button-custom-background-color);border-color:var(--bde-button-custom-border-color)}.breakdance .button-atom--custom:hover{color:var(--bde-button-custom-text-color-hover);background:var(--bde-button-custom-background-color-hover);border-color:var(--bde-button-custom-border-color-hover)}.breakdance .button-atom:disabled,.breakdance .button-atom:hover:disabled{filter:grayscale(100%);opacity:0.6;cursor:not-allowed}.button-atom__icon-wrapper>svg:not(.breakdance-icon-atom-svg-gradient){font-size:inherit;width:1em;height:1em;stroke-width:0;stroke:var(--bde-brand-primary-color);fill:var(--bde-brand-primary-color)}.breakdance-icon-atom{display:flex;font-size:40px}.breakdance-icon-atom>svg:not(.breakdance-icon-atom-svg-gradient){font-size:inherit;width:1em;height:1em;stroke-width:0;stroke:var(--bde-brand-primary-color);fill:var(--bde-brand-primary-color);transform:var(--eeiTransform)}.breakdance *,.breakdance *::before,.breakdance *::after{box-sizing:border-box}.breakdance img{max-width:100%;height:auto}.breakdance figure{margin-left:0;margin-right:0}.breakdance-full-width{width:100%;max-width:100%}.breakdance-rich-text-styles>*:first-child{margin-top:0}.breakdance-rich-text-styles>*:last-child{margin-bottom:0}.breakdance-rich-text-styles img.aligncenter{display:block;margin:auto}.breakdance-rich-text-styles img.alignleft{float:left}.breakdance-rich-text-styles img.alignright{float:right}.bde-stop-scrolling,.bde-stop-scrolling body{overflow-y:hidden}@supports (overflow-y:clip){.bde-stop-scrolling,.bde-stop-scrolling body{overflow-y:clip}}.breakdance-animation-enabled,.breakdance-animation-enabled body{overflow-x:hidden}@supports (overflow-x:clip){.breakdance-animation-enabled,.breakdance-animation-enabled body{overflow-x:clip}}.lg-outer{z-index:var(--bde-z-index-lightbox)}.lg-outer .lg-thumb-outer{background-color:transparent}.lg-video-play-icon{transform:translate3d(-40%,-50%,0)}.admin-bar .lg-toolbar{top:var(--wp-admin--admin-bar--height)}[data-bde-lazy-bg="waiting"]{background-image:none!important}.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;overflow-wrap:normal!important;word-wrap:normal!important;padding:0;position:absolute!important;width:1px}.breakdance-global-gradients-sprite{position:absolute;width:0;height:0;overflow:hidden}.breakdance{background-color:var(--bde-background-color);color:var(--bde-body-text-color)}.breakdance h1,.breakdance h2,.breakdance h3,.breakdance h4,.breakdance h5,.breakdance h6{color:var(--bde-headings-color)}.breakdance a,.button-atom--text{color:var(--bde-links-color)}.breakdance a:hover,.button-atom--text:hover{color:var(--bde-links-color-hover)}.breakdance{font-family:var(--bde-body-font-family);font-size:var(--bde-body-font-size)}.bde-h1,.bde-h2,.bde-h3,.bde-h4,.bde-h5,.bde-h6,.breakdance h1,.breakdance h2,.breakdance h3,.breakdance h4,.breakdance h5,.breakdance h6{font-family:var(--bde-heading-font-family)}.bde-h1,.breakdance h1{font-size:var(--bde-h1-font-size)}.bde-h2,.breakdance h2{font-size:var(--bde-h2-font-size)}.bde-h3,.breakdance h3{font-size:var(--bde-h3-font-size)}.bde-h4,.breakdance h4{font-size:var(--bde-h4-font-size)}.bde-h5,.breakdance h5{font-size:var(--bde-h5-font-size)}.bde-h6,.breakdance h6{font-size:var(--bde-h6-font-size)}.breakdance{color:#181818}:root{--bde-section-width:1260px}@media (max-width:767px){:root{--bde-section-horizontal-padding:15px}}.breakdance .bde-preset-127eae52-445e-48f4-8c5a-093e603f5d5e{width:500px;background:#f7f5ed;border-top:1px solid var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);border-bottom:1px solid var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);border-left:1px solid var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);border-right:1px solid var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);border-radius:15px;padding-left:30px;padding-right:30px;padding-bottom:30px;padding-top:30px;align-items:flex-start}.breakdance .bde-preset-127eae52-445e-48f4-8c5a-093e603f5d5e .ee-iconbox-content{align-items:flex-start;text-align:left}.breakdance .bde-preset-127eae52-445e-48f4-8c5a-093e603f5d5e .ee-iconbox-title{font-size:18px;font-weight:700}.breakdance .bde-preset-127eae52-445e-48f4-8c5a-093e603f5d5e .ee-iconbox-text{font-size:15px;line-height:1.25}.breakdance .bde-preset-127eae52-445e-48f4-8c5a-093e603f5d5e .ee-iconbox-icon.breakdance-icon-atom{font-size:40px;border-radius:4px;border:4px solid var(--bde-brand-primary-color);padding:0px;border-radius:50%;background:#f7f5ed;border-width:0px}.breakdance .bde-preset-127eae52-445e-48f4-8c5a-093e603f5d5e .ee-iconbox-icon.breakdance-icon-atom svg:first-child{fill:var(--bde-palette-green-a2d650bb-40b5-4905-9508-dbb6cd655ff2-2)}.breakdance .bde-button-5285-100 .bde-button__button{--bde-button-custom-border-color:#88A701;--bde-button-custom-border-color-hover:#88A701;--bde-button-custom-background-color:#BDEA00;--bde-button-custom-background-color-hover:#BCE802;--bde-button-custom-text-color:#2b2b2b;--bde-button-custom-text-color-hover:#2b2b2b;border-radius:12px;border-width:1px;color:#2b2b2b;font-size:14px;font-weight:700;text-transform:uppercase;padding-top:15px;padding-right:20px;padding-bottom:15px;padding-left:20px}.breakdance .bde-button-5285-100 .bde-button__button::after{content:"";display:block;background-color:currentColor;width:0.9em;height:0.9em;margin-right:5px;margin-left:4px;mask-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M497.39%20361.8l-112-48a24%2024%200%200%200-28%206.9l-49.6%2060.6A370.66%20370.66%200%200%201%20130.6%20204.11l60.6-49.6a23.94%2023.94%200%200%200%206.9-28l-48-112A24.16%2024.16%200%200%200%20122.6.61l-104%2024A24%2024%200%200%200%200%2048c0%20256.5%20207.9%20464%20464%20464a24%2024%200%200%200%2023.4-18.6l24-104a24.29%2024.29%200%200%200-14.01-27.6z%22%2F%3E%3C%2Fsvg%3E);mask-position:0 0;mask-size:100% 100%;mask-repeat:no-repeat;-webkit-mask-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M497.39%20361.8l-112-48a24%2024%200%200%200-28%206.9l-49.6%2060.6A370.66%20370.66%200%200%201%20130.6%20204.11l60.6-49.6a23.94%2023.94%200%200%200%206.9-28l-48-112A24.16%2024.16%200%200%200%20122.6.61l-104%2024A24%2024%200%200%200%200%2048c0%20256.5%20207.9%20464%20464%20464a24%2024%200%200%200%2023.4-18.6l24-104a24.29%2024.29%200%200%200-14.01-27.6z%22%2F%3E%3C%2Fsvg%3E);-webkit-mask-position:0 0;-webkit-mask-size:100% 100%;transition-timing-function:ease-in-out;transition-property:transform,background-color;transition-duration:var(--bde-transition-duration)}.breakdance .bde-button-5285-100 .bde-button__button::after{margin-right:5px}.breakdance .bde-button-5285-100 .bde-button__button{flex-direction:row-reverse}.bde-lightbox-5285-100 .lg-next,.bde-lightbox-5285-100 .lg-prev,.bde-lightbox-5285-100 .lg-toolbar,.bde-lightbox-5285-100 .lg-icon,.bde-lightbox-5285-100 .lg-counter,.bde-lightbox-5285-100 .lg-sub-html{color:#252525}.breakdance .bde-button-5285-100{background-color:#6F040400;display:inline-block}.breakdance .bde-button-5285-100{background-color:transparent}@media (max-width:767px) and (min-width:480px){.breakdance .bde-button-5285-100{display:none}}@media (max-width:479px){.breakdance .bde-button-5285-100{display:none}}@media (max-width:767px){.breakdance .bde-button-5285-100,.breakdance .bde-button-5285-100>*{width:100%}}@media (max-width:479px){.breakdance .bde-button-5285-100{width:100%}.breakdance .bde-button-5285-100 .bde-button__button{--bde-button-width:100%;display:flex}.breakdance .bde-button-5285-100{max-width:300px}}.breakdance .bde-section-5358-116 .section-container{align-items:center;text-align:center;justify-content:center}.breakdance .bde-section-5358-116 .section-container{--bde-section-width:100%}.breakdance .bde-section-5358-116 .section-container{padding-bottom:120px;padding-top:120px}.breakdance .bde-section-5358-116{overflow:hidden}.breakdance .bde-section-5358-116{--steps-height:30px;--steps-opacity:1;--border-top-radius:10px;--border-bottom-radius:0;--icons-opacity:.05;--icons-size:80px}@media (max-width:767px){.breakdance .bde-section-5358-116 .section-container{padding-bottom:80px;padding-top:80px}.breakdance .bde-section-5358-116{--steps-height:25px}}.breakdance .bde-image2-5358-178{position:absolute;top:0;left:0;height:100%;width:auto;opacity:var(--icons-opacity)}@media (max-width:1119px){.breakdance .bde-image2-5358-178{left:-150px}}@media (max-width:767px){.breakdance .bde-image2-5358-178{display:none}}@media (max-width:479px){.breakdance .bde-image2-5358-178{left:-200px}}.breakdance .bde-image2-5358-179{position:absolute;top:0;right:0;height:100%;width:auto;opacity:var(--icons-opacity)}@media (max-width:1119px){.breakdance .bde-image2-5358-179{right:-150px}}@media (max-width:767px){.breakdance .bde-image2-5358-179{display:none}}@media (max-width:479px){.breakdance .bde-image2-5358-179{right:-200px}}.breakdance .bde-div-5358-125{width:100%}.breakdance .bde-div-5358-125{display:flex;flex-direction:column;align-items:center;text-align:center}.breakdance .bde-div-5358-125{z-index:100}@media (max-width:767px){.breakdance .bde-div-5358-125:after{top:69%}}@media (max-width:479px){.breakdance .bde-div-5358-125:after{top:71%}}.breakdance .bde-div-5358-126{width:700px}.breakdance .bde-div-5358-126{display:flex;flex-direction:column;align-items:center;gap:24px;text-align:center}@media (max-width:767px){.breakdance .bde-div-5358-126{gap:20px}}.breakdance .bde-div-5358-180{padding-bottom:2px;border-bottom:2px solid var(--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1);margin-bottom:10px}.breakdance .bde-div-5358-180{display:flex;flex-direction:row;flex-wrap:nowrap;gap:7px}.breakdance .bde-icon-5358-181 .bde-icon-icon.breakdance-icon-atom{font-size:18px}.breakdance .bde-icon-5358-181 .bde-icon-icon.breakdance-icon-atom svg:first-child{fill:var(--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1)}@media (max-width:767px){.breakdance .bde-icon-5358-181 .bde-icon-icon.breakdance-icon-atom{font-size:14px}}.breakdance .bde-text-5358-182{font-family:"CC - Inter Tight",var(--cc-secondary-font);font-weight:600;line-height:1.2;text-transform:uppercase}@media (max-width:767px){.breakdance .bde-text-5358-182{font-size:12px}}.breakdance .bde-div-5358-127{border-top:0px solid var(--current-element-color);border-bottom:0px solid var(--current-element-color);border-left:0px solid var(--current-element-color);border-right:0px solid var(--current-element-color);border-radius:50px}.breakdance .bde-div-5358-127{display:flex;flex-direction:column;align-items:center;gap:30px;text-align:center}.breakdance .bde-div-5358-127{--current-element-color:#ccc}.breakdance .bde-div-5358-127:hover{--current-element-color:#fff}@media (max-width:1119px){.breakdance .bde-div-5358-127{gap:15px}}@media (max-width:767px){.breakdance .bde-div-5358-127{gap:30px}}.breakdance .bde-heading-5358-128{text-align:center;color:var(--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1);font-size:60px;font-weight:700;line-height:1.1}.breakdance .bde-heading-5358-128{text-wrap:balance}@media (max-width:1023px){.breakdance .bde-heading-5358-128{font-size:40px}}@media (max-width:767px){.breakdance .bde-heading-5358-128{font-size:35px}}@media (max-width:479px){.breakdance .bde-heading-5358-128{font-size:35px}}.breakdance .bde-text-5358-176{text-align:center;color:var(--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1);font-size:18px}.breakdance .bde-text-5358-176{text-wrap:balance;margin-top:-10px}@media (max-width:767px){.breakdance .bde-text-5358-176{font-size:14px}}.breakdance .bde-div-5358-130{gap:15px;flex-wrap:wrap;flex-direction:row;justify-content:center}@media (max-width:767px){.breakdance .bde-div-5358-130{width:100%;justify-content:center}.breakdance .bde-div-5358-130{max-width:300px}}@media (max-width:479px){.breakdance .bde-div-5358-130{flex-wrap:wrap;flex-direction:row;justify-content:center}}.breakdance .bde-div-5358-131{gap:15px;flex-wrap:wrap;flex-direction:row;justify-content:flex-start}@media (max-width:767px){.breakdance .bde-div-5358-131{width:100%;gap:10px;justify-content:center}}@media (max-width:479px){.breakdance .bde-div-5358-131{gap:10px;flex-wrap:wrap;flex-direction:row;justify-content:center}}.breakdance .bde-div-5358-132{display:flex;flex-direction:column;gap:10px}@media (max-width:767px){.breakdance .bde-div-5358-132{width:100%}.breakdance .bde-div-5358-132{gap:15px}}.breakdance .bde-button-5358-133 .bde-button__button{--bde-transition-duration:300ms;--bde-button-custom-border-color:transparent;--bde-button-custom-border-color-hover:transparent;--bde-button-custom-text-color:#fff;--bde-button-custom-text-color-hover:#fff;--bde-button-custom-background-color:#181818;--bde-button-custom-background-color-hover:#181818;border-radius:12px;color:#fff;font-weight:700;text-transform:uppercase;padding-right:40px;padding-left:40px}.breakdance .bde-button-5358-133 .bde-button__button:hover{transform:scale(1.1)}.breakdance .bde-button-5358-133 .bde-button__button::after{content:"";display:block;background-color:currentColor;width:0.9em;height:0.9em;margin-right:5px;margin-left:4px;mask-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M497.39%20361.8l-112-48a24%2024%200%200%200-28%206.9l-49.6%2060.6A370.66%20370.66%200%200%201%20130.6%20204.11l60.6-49.6a23.94%2023.94%200%200%200%206.9-28l-48-112A24.16%2024.16%200%200%200%20122.6.61l-104%2024A24%2024%200%200%200%200%2048c0%20256.5%20207.9%20464%20464%20464a24%2024%200%200%200%2023.4-18.6l24-104a24.29%2024.29%200%200%200-14.01-27.6z%22%2F%3E%3C%2Fsvg%3E);mask-position:0 0;mask-size:100% 100%;mask-repeat:no-repeat;-webkit-mask-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M497.39%20361.8l-112-48a24%2024%200%200%200-28%206.9l-49.6%2060.6A370.66%20370.66%200%200%201%20130.6%20204.11l60.6-49.6a23.94%2023.94%200%200%200%206.9-28l-48-112A24.16%2024.16%200%200%200%20122.6.61l-104%2024A24%2024%200%200%200%200%2048c0%20256.5%20207.9%20464%20464%20464a24%2024%200%200%200%2023.4-18.6l24-104a24.29%2024.29%200%200%200-14.01-27.6z%22%2F%3E%3C%2Fsvg%3E);-webkit-mask-position:0 0;-webkit-mask-size:100% 100%;transition-timing-function:ease-in-out;transition-property:transform,background-color;transition-duration:300ms}.breakdance .bde-button-5358-133 .bde-button__button::after{margin-right:5px}.breakdance .bde-button-5358-133 .bde-button__button{flex-direction:row-reverse}.breakdance .bde-button-5358-133{display:inline-block}@media (max-width:767px){.breakdance .bde-button-5358-133,.breakdance .bde-button-5358-133>*{width:100%}}@media (max-width:479px){.breakdance .bde-button-5358-133{max-width:300px}}.breakdance .bde-div-5358-134{display:flex;flex-direction:column}@media (max-width:767px){.breakdance .bde-div-5358-134{width:100%}.breakdance .bde-div-5358-134{gap:5px}}.breakdance .bde-button-5358-135 .bde-button__button{--bde-transition-duration:430ms;--bde-button-custom-border-color:#181818;--bde-button-custom-border-color-hover:#181818;--bde-button-custom-background-color:transparent;--bde-button-custom-background-color-hover:transparent;--bde-button-custom-text-color:#181818;--bde-button-custom-text-color-hover:#181818;border-radius:12px;border-width:2px;color:#181818;font-weight:700;padding-right:40px;padding-left:40px}.breakdance .bde-button-5358-135 .bde-button__button:hover{transform:scale(1.1)}.breakdance .bde-button-5358-135 .bde-button__button::after{content:"";display:block;background-color:currentColor;width:0.9em;height:0.9em;margin-right:4px;margin-left:4px;mask-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M440%206.5L24%20246.4c-34.4%2019.9-31.1%2070.8%205.7%2085.9L144%20379.6V464c0%2046.4%2059.2%2065.5%2086.6%2028.6l43.8-59.1%20111.9%2046.2c5.9%202.4%2012.1%203.6%2018.3%203.6%208.2%200%2016.3-2.1%2023.6-6.2%2012.8-7.2%2021.6-20%2023.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192%20464v-64.6l36.6%2015.1L192%20464zm212.6-28.7l-153.8-63.5L391%20169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8%20332.6%2048%20288%20464%2048l-59.4%20387.3z%22%2F%3E%3C%2Fsvg%3E);mask-position:0 0;mask-size:100% 100%;mask-repeat:no-repeat;-webkit-mask-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20d%3D%22M440%206.5L24%20246.4c-34.4%2019.9-31.1%2070.8%205.7%2085.9L144%20379.6V464c0%2046.4%2059.2%2065.5%2086.6%2028.6l43.8-59.1%20111.9%2046.2c5.9%202.4%2012.1%203.6%2018.3%203.6%208.2%200%2016.3-2.1%2023.6-6.2%2012.8-7.2%2021.6-20%2023.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192%20464v-64.6l36.6%2015.1L192%20464zm212.6-28.7l-153.8-63.5L391%20169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8%20332.6%2048%20288%20464%2048l-59.4%20387.3z%22%2F%3E%3C%2Fsvg%3E);-webkit-mask-position:0 0;-webkit-mask-size:100% 100%;transition-timing-function:ease-in-out;transition-property:transform,background-color;transition-duration:430ms}.breakdance .bde-button-5358-135 .bde-button__button{flex-direction:row-reverse}.breakdance .bde-button-5358-135{display:inline-block}@media (max-width:767px){.breakdance .bde-button-5358-135,.breakdance .bde-button-5358-135>*{width:100%}}.breakdance .bde-div-5358-136{width:100%;margin-top:10px;gap:15px;flex-wrap:wrap;flex-direction:row;justify-content:flex-start}@media (max-width:767px){.breakdance .bde-div-5358-136{margin-top:0px;gap:30px;justify-content:center}.breakdance .bde-div-5358-136{max-width:300px}}@media (max-width:479px){.breakdance .bde-div-5358-136{gap:20px;flex-wrap:wrap;flex-direction:row;justify-content:center}}.breakdance .bde-div-5358-137{width:100%}.breakdance .bde-div-5358-137{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center;gap:10px}.breakdance .bde-text-5358-138{color:var(--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1);font-size:14px;font-weight:500}.breakdance .bde-icon-list-5358-139 li .bde-icon-list__icon{color:#181818}.breakdance .bde-icon-list-5358-139 li .bde-icon-list__text{color:#181818;font-size:14px;font-weight:600;text-decoration-line:underline;text-underline-offset:2px;text-decoration-thickness:2px}.breakdance .bde-icon-list-5358-139 ul li .bde-icon-list__item-wrapper{gap:2px}.breakdance .bde-div-5358-148{width:100%;padding:0px 0px 0px 0px}.breakdance .bde-div-5358-148{position:absolute;left:0px;right:0px;bottom:0px}.breakdance .bde-div-5358-148{display:none}.breakdance .bde-div-5358-147{width:1250px;padding:0px 0px 0px 0px}.breakdance .bde-div-5358-147{display:flex;flex-direction:column;align-items:center;justify-content:flex-end;text-align:center}.breakdance .bde-div-5358-147{position:relative}.breakdance .bde-div-5358-147{margin-left:auto;margin-right:auto}@media (max-width:1119px){.breakdance .bde-div-5358-147{width:95%}}.breakdance .bde-div-5358-151{width:55%;padding:0px 0px 0px 0px}.breakdance .bde-div-5358-151{background-color:var(--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1)}.breakdance .bde-div-5358-151{height:var(--steps-height);margin-top:1px;opacity:var(--steps-opacity);border-radius:var(--border-top-radius) var(--border-top-radius) var(--border-bottom-radius) var(--border-bottom-radius)}.breakdance .bde-div-5358-149{width:70%;padding:0px 0px 0px 0px}.breakdance .bde-div-5358-149{background-color:var(--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1)}.breakdance .bde-div-5358-149{height:var(--steps-height);margin-top:1px;opacity:var(--steps-opacity);border-radius:var(--border-top-radius) var(--border-top-radius) var(--border-bottom-radius) var(--border-bottom-radius)}.breakdance .bde-div-5358-150{width:85%;padding:0px 0px 0px 0px}.breakdance .bde-div-5358-150{background-color:var(--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1)}.breakdance .bde-div-5358-150{height:var(--steps-height);margin-top:1px;opacity:var(--steps-opacity);border-radius:var(--border-top-radius) var(--border-top-radius) var(--border-bottom-radius) var(--border-bottom-radius)}.breakdance .bde-div-5358-152{width:100%;padding:0px 0px 0px 0px}.breakdance .bde-div-5358-152{background-color:var(--bde-palette-text-brand-1b859837-79db-41a7-a5e8-cdf4130b87ce-1)}.breakdance .bde-div-5358-152{height:var(--steps-height);margin-top:1px;opacity:var(--steps-opacity);border-radius:var(--border-top-radius) var(--border-top-radius) var(--border-bottom-radius) var(--border-bottom-radius)}.breakdance .bde-div-5283-100{width:100%;min-height:100%}.breakdance .bde-div-5283-100{display:flex;flex-direction:column;justify-content:space-between;gap:20px}.breakdance .bde-div-5283-100{background-color:#011918}.breakdance .bde-div-5283-100{height:100%}.breakdance .bde-div-5283-100 a{color:var(--cc-footer-primary-color-text)}@media (max-width:1023px){.breakdance .bde-div-5283-100{padding-bottom:50px}}.breakdance .bde-div-5283-101{width:100%}.breakdance .bde-div-5283-101{display:flex;flex-direction:column;gap:20px}.breakdance .bde-div-5283-102{width:100%}.breakdance .bde-div-5283-102{display:flex;flex-direction:row;gap:20px}@media (max-width:767px){.breakdance .bde-div-5283-102{justify-content:space-between}}.breakdance .bde-code-block-5283-103{width:150px}.breakdance .bde-code-block-5283-103 svg{height:50px;width:auto}.breakdance .bde-code-block-5283-103 a{color:var(--cc-footer-primary-color-text);max-width:150px;height:auto}.breakdance .bde-div-5283-105{width:1px;min-height:50px}.breakdance .bde-div-5283-105{background-color:var(--cc-footer-primary-color-text);}.breakdance .bde-div-5283-105{opacity:0.2}@media (max-width:1023px){.breakdance .bde-div-5283-105{opacity:0.2}}.breakdance .bde-image2-5283-106{height:50px;width:auto}.breakdance .bde-div-5283-108{width:100%}.breakdance .bde-text-5283-109{color:var(--cc-footer-primary-color-text);;font-size:2.4rem;font-weight:500;line-height:1.1;text-wrap:balance}@media (max-width:1119px){.breakdance .bde-text-5283-109{font-size:1.8rem}}.breakdance .bde-div-5283-110{width:100%}.breakdance .bde-div-5283-110{display:flex;flex-direction:column;gap:20px}.breakdance .bde-div-5283-111{width:100%}