@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 .section-background-video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  pointer-events:none;
}

.breakdance .section-background-video .section-youtube-wrapper,
.breakdance .section-background-video .section-vimeo-wrapper {
  aspect-ratio: 16/9;
  pointer-events: none;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.breakdance
  .section-background-video
  .section-youtube-wrapper
  .section-background-iframe,
.breakdance .section-background-video .section-vimeo-wrapper iframe {
  max-width: none;
}

.breakdance .section-background-video .section-vimeo-wrapper iframe {
  width: 100%;
  min-height: 100%;
}

.breakdance .section-background-video video,
.breakdance .section-background-video iframe {
  pointer-events:none;
  width: 100%;
  height: 100%;
  left:0;
  top:0;
  position: relative;
  border: 0;
}

.breakdance .section-background-video > video {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.breakdance .section-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.breakdance .section-background-slideshow {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: auto;
  padding: 0;
}

.breakdance .section-background-slideshow .swiper {
  height: 100%;
  z-index: 0;
}

.breakdance .section-background-slideshow .swiper-slide-item {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.breakdance .section-background-slideshow .swiper-wrapper {
  z-index: 0;
}
@keyframes breakdance-section-gradient-x {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes breakdance-section-gradient-y {
  0% {
    background-position: 60% 0;
  }
  50% {
    background-position: 40% 100%;
  }
  100% {
    background-position: 60% 0;
  }
}
/* ==========================================================================
   Resets
   ========================================================================== */

.breakdance-form input,
.breakdance-form label,
.breakdance-form select {
  vertical-align: middle;
  white-space: normal;
  line-height: 1;
}

.breakdance-form textarea {
  vertical-align: middle;
  line-height: 1;
}

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
.breakdance-form input,
.breakdance-form textarea,
.breakdance-form input[type="reset"],
.breakdance-form input[type="button"],
.breakdance-form input[type="submit"]:not(.breakdance-form-button),
.breakdance-form input[type="checkbox"],
.breakdance-form input[type="radio"],
.breakdance-form select,
.breakdance-form fieldset {
  margin: 0;
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

/* Buttons
-----------------------------------------------*/

.breakdance-form input[type="reset"],
.breakdance-form input[type="button"],
.breakdance-form input[type="submit"] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* Textarea
-----------------------------------------------*/

.breakdance-form textarea {
  /* Move the label to the top */
  vertical-align: top;

  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/

.breakdance-form select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

/* Time / Date Inputs
-----------------------------------------------*/

.breakdance-form input[type="time"]::-webkit-calendar-picker-indicator,
.breakdance-form input[type="date"]::-webkit-calendar-picker-indicator {
  padding: 0;
  margin: 0;
  display: block;
}

/* Prevent excessive date input height in Webkit
   https://github.com/twbs/bootstrap/issues/34433 */

.breakdance-form input::-webkit-datetime-edit {
  padding: 0;
  display: block;
  margin-bottom: 1px;
}

/**
 * Main Styles
 */

.breakdance-form {
  --bde-form-delete-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M170.5 51.6L151.5 80h145l-19-28.4c-1.5-2.2-4-3.6-6.7-3.6H177.1c-2.7 0-5.2 1.3-6.7 3.6zm147-26.6L354.2 80H368h48 8c13.3 0 24 10.7 24 24s-10.7 24-24 24h-8V432c0 44.2-35.8 80-80 80H112c-44.2 0-80-35.8-80-80V128H24c-13.3 0-24-10.7-24-24S10.7 80 24 80h8H80 93.8l36.7-55.1C140.9 9.4 158.4 0 177.1 0h93.7c18.7 0 36.2 9.4 46.6 24.9zM80 128V432c0 17.7 14.3 32 32 32H336c17.7 0 32-14.3 32-32V128H80zm80 64V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16zm80 0V400c0 8.8-7.2 16-16 16s-16-7.2-16-16V192c0-8.8 7.2-16 16-16s16 7.2 16 16z'/%3E%3C/svg%3E");
  /* Text Color */
  --bde-form-dropzone-color: var(--grey-600);
  --bde-form-dropzone-color-hover: var(--bde-form-dropzone-color);
  --bde-form-dropzone-color-dragging: var(--bde-form-dropzone-color);
  /* Icon Color */
  --bde-form-dropzone-icon-color: var(--grey-400);
  --bde-form-dropzone-icon-color-hover: var(--bde-form-dropzone-icon-color);
  --bde-form-dropzone-icon-color-dragging: var(--bde-form-dropzone-icon-color);
  /* Secondary Color */
  --bde-form-dropzone-link-color: var(--bde-brand-primary-color);
  --bde-form-dropzone-link-color-hover: var(--bde-form-dropzone-link-color);
  --bde-form-dropzone-link-color-dragging: var(--bde-brand-primary-color);
  /* BG Color */
  --bde-form-dropzone-background-color: var(--bde-form-input-background-color);
  --bde-form-dropzone-background-color-hover: var(--bde-form-input-background-color);
  --bde-form-dropzone-background-color-dragging: var(--grey-100);
  /* Border Color */
  --bde-form-dropzone-border-color: var(--grey-300);
  --bde-form-dropzone-border-color-hover: var(--bde-form-input-focused-border-color);
  --bde-form-dropzone-border-color-dragging: var(--bde-form-input-focused-border-color);
  /* Files List */
  --bde-form-files-list-gap: 10px;
  --bde-form-files-list-background-color: var(--white);

  font-size: var(--bde-form-font-size);
  color: var(--bde-form-text-color);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--bde-form-gap);
}

.breakdance-form--horizontal {
  grid-auto-flow: column;
}

.breakdance-form--horizontal .breakdance-form-footer {
  grid-column-start: span 1;
}

/* Fields */
.breakdance-form-group,
.breakdance-form-field {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  grid-column-start: span 12;
}

.breakdance-form--hidden .breakdance-form-field,
.breakdance-form--hidden .breakdance-form-stepper,
.breakdance-form-field.breakdance-form-field--hidden,
.breakdance-form-field.breakdance-form-field--condition-hidden,
.breakdance-form .breakdance-form-field.breakdance-form-field--hidden.breakdance-form-field--condition-hidden {
  display: none;
}

/* Labels */
.breakdance-form-field__label {
  display: block;
  font-size: inherit;
  font-weight: var(--bde-form-label-font-weight);
  color: var(--bde-form-label-color);
  margin-bottom: var(--bde-form-after-label);
  cursor: pointer;
}

.breakdance-form-field__hide-label .breakdance-form-field__label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;  
}

/* Inputs */
.breakdance-form .breakdance-form-field__input {
  display: block;
  width: 100%;
  font-size: var(--bde-form-font-size);
  padding-top: var(--bde-form-input-padding-top);
  padding-right: var(--bde-form-input-padding-right);
  padding-bottom: var(--bde-form-input-padding-bottom);
  padding-left: var(--bde-form-input-padding-left);
  border-width: var(--bde-form-input-border-width);
  border-style: solid;
  border-color: var(--bde-form-input-border-color);
  border-radius: var(--bde-form-input-border-radius);
  background-color: var(--bde-form-input-background-color);
  transition: all 0.3s ease-in-out;
}

.breakdance-form textarea.breakdance-form-field__input {
  line-height: 1.4;
  height: auto;
  min-height: 100px;
  resize: vertical;
  padding-top: var(--bde-form-input-padding-top);
  padding-right: var(--bde-form-input-padding-right);
  padding-bottom: var(--bde-form-input-padding-bottom);
  padding-left: var(--bde-form-input-padding-left);
}

.breakdance-form select.breakdance-form-field__input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  cursor: pointer;
  line-height: normal;
}

.breakdance-form select.breakdance-form-field__input[multiple] {
  background-image: unset;
  padding-top: var(--bde-form-input-padding-top);
  padding-right: var(--bde-form-input-padding-right);
  padding-bottom: var(--bde-form-input-padding-bottom);
  padding-left: var(--bde-form-input-padding-left);
}

/* Focused */
.breakdance-form .breakdance-form-field__input:focus,
.breakdance-form select.breakdance-form-field__input[multiple]:focus {
  background-color: var(--bde-form-input-focused-background-color);
  border-color: var(--bde-form-input-focused-border-color);
  box-shadow: var(--bde-form-input-focused-shadow);
  outline: 0;
}

.breakdance-form .breakdance-form-button:focus {
  box-shadow: var(--bde-form-input-focused-shadow);
  outline: 0;
}

/* Checkbox & Radio */
.breakdance-form-field--checkbox,
.breakdance-form-field--radio {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.breakdance-form-checkbox,
.breakdance-form-radio {
  display: flex;
  align-items: center;
  width: 100%;
}

.breakdance-form-checkbox,
.breakdance-form-radio {
  margin-bottom: var(--bde-form-after-sublabel);
}

.breakdance-form-checkbox:last-child,
.breakdance-form-radio:last-child {
  margin-bottom: 0;
}

.breakdance-form-checkbox input[type="checkbox"],
.breakdance-form-radio input[type="radio"] {
  appearance: none;
  display: inline-block;
  width: var(--bde-form-checkbox-size);
  height: var(--bde-form-checkbox-size);
  padding: 0;
  vertical-align: middle;
  background-origin: border-box;
  user-select: none;
  flex-shrink: 0;
  color: var(--bde-form-checkbox-selected-color);
  background-color: var(--bde-form-input-background-color);
  cursor: pointer;
  border-width: var(--bde-form-input-border-width);
  border-style: solid;
  border-color: var(--bde-form-input-border-color);
  border-top: var(--bde-form-input-border-top);
  border-right: var(--bde-form-input-border-right);
  border-bottom: var(--bde-form-input-border-bottom);
  border-left: var(--bde-form-input-border-left);
  border-radius: 4px;
  opacity: 1;
}

.breakdance-form-radio input[type="radio"] {
  border-radius: 9999px;
}

.breakdance-form-checkbox input[type="checkbox"]:checked,
.breakdance-form-radio input[type="radio"]:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.breakdance-form-checkbox input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.breakdance-form-radio input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.breakdance-form-checkbox input[type="checkbox"]:checked:after,
.breakdance-form-radio input[type="radio"]:checked:after {
  display: none;
}

.breakdance-form-checkbox input[type="checkbox"]:focus,
.breakdance-form-radio input[type="radio"]:focus {
  border-color: currentColor;
  box-shadow: 0 0 0 1px currentColor;
  outline: 1px solid transparent;
}

.breakdance-form-radio__text,
.breakdance-form-checkbox__text {
  font-size: inherit !important;
  margin-bottom: 0 !important;
  padding-left: 5px !important;
  line-height: inherit !important;
  cursor: pointer;
}

/* Honeypot Hidden Input */
.breakdance-form-field--hpinput {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* File Upload */
.breakdance-form-file-upload {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: inherit;
  margin: 0;
  cursor: pointer;
}

/* Inline Upload */
.breakdance-form-file-upload__button {
  flex-shrink: 0;
  pointer-events: none;
}

.breakdance-form .breakdance-form-file-upload__input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

/* Drag & Drop */
.breakdance-form-file-upload--draggable {
  display: block;
  width: 100%;
}

/* Files List */
.breakdance-form-files-list {
  display: flex;
  gap: var(--bde-form-files-list-gap);
  flex-direction: column;
  width: 100%;
  padding: 0;
  list-style-type: none;
  margin: var(--bde-form-files-list-gap) 0 0;
}

.breakdance-form-files-list:empty {
  margin: 0;
}

.breakdance-form-files-list-item {
  display: grid;
  grid-template-columns: 1fr 40px;
  column-gap: 30px;
  row-gap: 5px;
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  padding: 16px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  background-color: var(--bde-form-files-list-background-color);
}

.breakdance-form-files-list-item__name {
  font-weight: 500;
  line-height: 1.4;
  color: var(--grey-700);
}

.breakdance-form-files-list-item__size {
  grid-column-start: 1;
  color: var(--grey-500);
}

.breakdance-form-files-list-item__delete {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
  justify-self: end;
  mask-image: var(--bde-form-delete-icon);
  mask-size: 16px 16px;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: var(--bde-form-delete-icon);
  -webkit-mask-size: 16px 16px;
  -webkit-mask-position: top right;
  -webkit-mask-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-color: var(--grey-500);
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: var(--bde-transition-duration) background-color ease;
  border: none;
}

.breakdance-form-files-list-item__delete:hover {
  background-color: var(--red-500);
}

/* Dropzone */

.breakdance-form-dropzone {
  display: block;
  text-align: center;
  padding: 30px 24px 32px;
  border-radius: 6px;
  border: 2px dashed var(--bde-form-dropzone-border-color);
  background-color: var(--bde-form-dropzone-background-color);
  color: var(--bde-form-dropzone-color);
  cursor: pointer;
  outline: none;
  transition: var(--bde-transition-duration) background-color ease, 
              var(--bde-transition-duration) text-color, 
              var(--bde-transition-duration) border-color ease;
}

.breakdance-form-dropzone:hover,
.breakdance-form-dropzone:focus {
  color: var(--bde-form-dropzone-color-hover);
  border-color: var(--bde-form-dropzone-border-color-hover);
  background-color: var(--bde-form-dropzone-background-color-hover);
}

.is-dragging .breakdance-form-dropzone {
  color: var(--bde-form-dropzone-color-dragging);
  border-color: var(--bde-form-dropzone-border-color-dragging);
  background-color: var(--bde-form-dropzone-background-color-dragging);
}

.breakdance-form-dropzone:where(:focus, :hover) .breakdance-form-dropzone__title span {
  color: var(--bde-form-dropzone-link-color-hover);
}

.breakdance-form-dropzone:where(:focus, :hover) .breakdance-form-dropzone__icon {
  color: var(--bde-form-dropzone-icon-color-hover);
}

.is-dragging .breakdance-form-dropzone__icon {
  color: var(--bde-form-dropzone-icon-color-dragging);
}

.is-dragging .breakdance-form-dropzone__title span {
  color: var(--bde-form-dropzone-link-color-dragging);
}

.breakdance-form-dropzone__title {
  display: block;
  font-size: var(--bde-form-font-size);
  color: inherit;
  line-height: 1;
  margin-top: 5px;
  margin-bottom: 8px;
  transition: inherit;
}

.breakdance-form-dropzone__title span {
  font-weight: 500;
  color: var(--bde-form-dropzone-link-color);
  transition: inherit;
}

.breakdance-form-dropzone__accepts {
  font-size: calc(var(--bde-form-font-size) * 0.7);
  opacity: 0.7;
  font-weight: normal;
  color: inherit;
  transition: inherit;
}

.breakdance-form-dropzone__icon {
  display: block;
  margin: 0 auto;
  color: var(--bde-form-dropzone-icon-color);
  transition: inherit;
}

/* Other */

.breakdance-form-link {
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  color: var(--bde-brand-primary-color);
}

.breakdance-form .breakdance-form-field__input::placeholder {
  color: var(--bde-form-input-placeholder-color);
}

/* Submit Button */

.breakdance-form-footer .breakdance-form-button {
  display: inline-flex;
}

.breakdance-form-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: end;
}

/* Set loader icon and user-defined icons to the same height and color */
.breakdance-form-button .breakdance-form-loader {
  width: 14px;
  fill: currentColor;
  margin-left: 10px;
}

.breakdance-form-button-icon {
  line-height: 1;
}

/* Submit Loader */
.breakdance-form-loader {
  display: none;
  animation: breakdance-spin 1s linear infinite;
}

@keyframes breakdance-spin {
  to {
    transform: rotate(1turn);
  }
}

.breakdance-form.is-loading .breakdance-form-button .button-atom__text {
  visibility: hidden;
}

.breakdance-form.is-loading .breakdance-form-button {
  pointer-events: none;
}

.breakdance-form.is-loading .breakdance-form-button::before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  mask-image: url("data:image/svg+xml,%3Csvg version='1.1' id='L9' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 100 100' enable-background='new 0 0 0 0' xml:space='preserve'%3E%3Cpath fill='currentColor' d='M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50'%3E%3CanimateTransform attributeName='transform' attributeType='XML' type='rotate' dur='1s' from='0 50 50' to='360 50 50' repeatCount='indefinite' /%3E%3C/path%3E%3C/svg%3E");
  background-color: currentColor;
  mask-position: 0 0;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg version='1.1' id='L9' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 100 100' enable-background='new 0 0 0 0' xml:space='preserve'%3E%3Cpath fill='currentColor' d='M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50'%3E%3CanimateTransform attributeName='transform' attributeType='XML' type='rotate' dur='1s' from='0 50 50' to='360 50 50' repeatCount='indefinite' /%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-position: 0 0;
  -webkit-mask-size: 100% 100%;
}

.breakdance-form.is-loading .breakdance-form-button::after {
  visibility: hidden;
}

/* Utils */
.breakdance-form-row {
  display: flex;
  justify-content: space-between;
}

.breakdance-form .visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Misc */
.breakdance-form-link--password {
  margin-left: auto;
}

.breakdance-form-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 30px;
  border: 2px dashed #c3c4c7;
  grid-column: 1 / -1;
}

.breakdance-form-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 30px;
  overflow: hidden;
  border-radius: 99999px;
  background-color: #eff0f5;
  color: #78909c;
  margin-bottom: 15px;
}

.breakdance-form-empty__icon svg {
  transform: translateY(2px);
}

.breakdance-form-empty__title {
  font-size: 18px;
  color: #646970;
  font-weight: normal;
  line-height: 1;
  margin: 0 !important;
}

/* Success/Error Messages */
.breakdance-form-message {
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  color: #1e805b;
  background-color: #edfbf6;
  margin-top: var(--bde-form-gap);
}

.breakdance-form-message-dismissable {
  display: flex;
  flex: 1 1 0;
  justify-content: space-between;
}

.breakdance-form-message--error {
  color: var(--red-500);
  line-height: 1.4;
  background-color: #fef4f6;
}

.breakdance-form-message-dismiss {
  padding-left: 12px;
  margin: -6px;
}

.breakdance-form-message-dismiss-button {
  display: inline-flex;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
  color: inherit;
  border: none;
  background: none;
}

.breakdance-form-field__required {
  color: var(--bde-form-label-required-color);
  padding-left: 4px;
  display: inline-block;
  transform: translate(
    var(--bde-form-label-required-nudge-x),
    var(--bde-form-label-required-nudge-y)
  );
}

.breakdance .bde-form-builder .breakdance-form-field.hidden-step,
.breakdance .bde-form-builder .breakdance-form-button.hidden {
  display: none;
}

.breakdance .breakdance-form-field__step {
  display: none;
}

.breakdance .breakdance-form-button.breakdance-form-button__previous-step {
  margin-right: 10px;
}

.breakdance-form-stepper {
  width: 100%;
  display: flex;
  align-items: center;
  grid-column-start: span 12;
}

.breakdance-form-stepper__step {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.breakdance-form-stepper__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.breakdance-form-stepper__label {
  width: 100%;
  color: var(--grey-400);
}

.breakdance-form-stepper__step-icon svg {
  font-size: inherit;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.breakdance-form-stepper__step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  background-color: var(--grey-400);
  border-radius: 50%;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.breakdance-form-stepper__step-icon span {
  color: #fff;
  line-height: 1;
}

.breakdance-form-stepper__step-icon svg {
  color: #fff;
  font-size: 18px;
}

.breakdance-form-stepper__step.is-active .breakdance-form-stepper__step-icon {
  background-color: var(--grey-900);
}

.breakdance-form-stepper__step.is-active .breakdance-form-stepper__label {
  color: var(--grey-900);
}

.breakdance-form-stepper__separator {
  flex: 1 1 auto;
  width: 100%;
  border-bottom: 1px solid var(--grey-300);
}

.breakdance-form-stepper__separator:last-child {
  display: none;
}

.breakdance-form-field--step-buttons {
  flex-direction: row;
  justify-content: space-between;
  width: auto;
}
.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-columns{max-width:100%;width:100%;display:flex;flex-direction:row;flex-wrap:nowrap;gap:var(--bde-column-gap)}.breakdance .bde-column{display:flex;flex-direction:column;justify-content:flex-start;text-align:left;align-items:flex-start;width:calc(var(--column-width) - var(--bde-column-gap) * ((var(--columnCount) - 1) / var(--columnCount)));position:relative;background-size:cover}.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-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-globalblock{max-width:100%;width:100%}.bde-globalblock .breakdance{background-color:initial;color:initial}.breakdance .bde-image{max-width:100%}.breakdance-image{position:relative;display:flex;flex-direction:column;max-width:100%;margin:0;border:none}.breakdance-image-clip{overflow:hidden}.breakdance-image-object{display:block;max-width:100%;height:auto}.breakdance-image__caption{text-align:center;margin:0;padding:16px}.breakdance-image--caption-overlap .breakdance-image__caption{position:absolute;left:0;right:0;bottom:0}.breakdance-image-link{display:block}.breakdance-image__mask{-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:auto;mask-size:auto}.breakdance-image__mask img{border-style:none;height:auto;max-width:100%}.breakdance .bde-rich-text{max-width:100%;color:var(--bde-text-color,var(--bde-body-text-color))}.breakdance .bde-rich-text>:last-child li:last-child>p{margin-bottom:0}.breakdance .bde-rich-text img.aligncenter{display:block;margin:auto}.breakdance .bde-rich-text img.alignleft{float:left}.breakdance .bde-rich-text img.alignright{float:right}.breakdance .bde-checkmark-list{max-width:100%;display:flex;text-align:left}.breakdance .bde-checkmark-list ul{width:100%;display:flex;flex-wrap:wrap;flex-direction:column;justify-content:center;align-items:flex-start;list-style:none;padding:0;margin:0;gap:30px}.breakdance .bde-checkmark-list .horizontal-layout{flex-direction:row}.breakdance .bde-checkmark-list li{display:flex;align-items:center;font-weight:500;font-size:0.875em}.breakdance .bde-checkmark-list ul span{display:flex;font-size:20px;margin-right:8px}.breakdance .bde-checkmark-list .bde-checkmark-list__icon.bg-yes{color:#fff;padding:6px;border-radius:2px}.breakdance .bde-checkmark-list ul span>svg{font-size:inherit;width:1em;height:1em;stroke-width:0;stroke:currentColor;fill:currentColor}.breakdance .bde-checkmark-list .bde-checkmark-list__icon_yes{color:#0DA532}.breakdance .bde-checkmark-list .bde-checkmark-list__icon_yes.bg-yes{background-color:#0DA532}.breakdance .bde-checkmark-list .bde-checkmark-list__icon_no{color:#D4351E}.breakdance .bde-checkmark-list .bde-checkmark-list__icon_no.bg-yes{background-color:#D4351E}.breakdance .bde-icon-box{max-width:100%;display:flex;flex-direction:column;align-items:center;padding:30px;gap:20px}.breakdance .bde-icon-box .ee-iconbox-title{margin:0;margin-bottom:10px}.breakdance .bde-icon-box .ee-iconbox-content{max-width:100%;display:flex;flex-direction:column;align-items:center;text-align:center;height:100%}.breakdance .bde-icon-box .ee-iconbox-button{margin-top:20px}.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-button{max-width:100%}.breakdance .bde-text{max-width:100%;margin:0;color:var(--bde-text-color,var(--bde-body-text-color))}.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-text{max-width:100%;margin:0;color:var(--bde-text-color,var(--bde-body-text-color))}.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-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-image{max-width:100%}.breakdance-image{position:relative;display:flex;flex-direction:column;max-width:100%;margin:0;border:none}.breakdance-image-clip{overflow:hidden}.breakdance-image-object{display:block;max-width:100%;height:auto}.breakdance-image__caption{text-align:center;margin:0;padding:16px}.breakdance-image--caption-overlap .breakdance-image__caption{position:absolute;left:0;right:0;bottom:0}.breakdance-image-link{display:block}.breakdance-image__mask{-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:auto;mask-size:auto}.breakdance-image__mask img{border-style:none;height:auto;max-width:100%}.breakdance .bde-columns{max-width:100%;width:100%;display:flex;flex-direction:row;flex-wrap:nowrap;gap:var(--bde-column-gap)}.breakdance .bde-column{display:flex;flex-direction:column;justify-content:flex-start;text-align:left;align-items:flex-start;width:calc(var(--column-width) - var(--bde-column-gap) * ((var(--columnCount) - 1) / var(--columnCount)));position:relative;background-size:cover}.breakdance .bde-heading{max-width:100%;margin:0}.breakdance .bde-rich-text{max-width:100%;color:var(--bde-text-color,var(--bde-body-text-color))}.breakdance .bde-rich-text>:last-child li:last-child>p{margin-bottom:0}.breakdance .bde-rich-text img.aligncenter{display:block;margin:auto}.breakdance .bde-rich-text img.alignleft{float:left}.breakdance .bde-rich-text img.alignright{float:right}.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-form-builder{width:100%;max-width:100%}.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-2941-100{background-color:#011918}.breakdance .bde-section-2941-100>.section-background-overlay{background-image:url(https://avocatcozma.ro/wp-content/uploads/2022/11/blog-header-pattern-new.png);background-size:90px auto;transition:all var(--bde-transition-duration) ease-in-out}.breakdance .bde-section-2941-100:hover>.section-background-overlay{background-image:url(https://avocatcozma.ro/wp-content/uploads/2022/11/blog-header-pattern-new.png)}.breakdance .bde-section-2941-100>.section-background-overlay{opacity:0.3}.breakdance .bde-section-2941-100 .section-container{padding-bottom:80px;padding-top:140px}.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider svg{color:#fff;height:100px;bottom:0;top:auto;transform:scaleY(1)}.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider path,.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider rect,.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider ellipse,.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider polyline,.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider polygon{color:#fff}.breakdance .bde-section-2941-100{position:relative;z-index:100}.breakdance .bde-section-2941-100 .section-shape-divider-wrapper{display:none}@media (max-width:1119px){.breakdance .bde-section-2941-100>.section-background-overlay{transition:all var(--bde-transition-duration) ease-in-out}.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider svg{bottom:0;top:auto;transform:scaleY(1)}}@media (max-width:1023px){.breakdance .bde-section-2941-100>.section-background-overlay{transition:all var(--bde-transition-duration) ease-in-out}.breakdance .bde-section-2941-100 .section-container{padding-top:80px}.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider svg{bottom:0;top:auto;transform:scaleY(1)}}@media (max-width:767px){.breakdance .bde-section-2941-100>.section-background-overlay{transition:all var(--bde-transition-duration) ease-in-out}.breakdance .bde-section-2941-100 .section-container{padding-bottom:80px;padding-top:100px}.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider svg{bottom:0;top:auto;transform:scaleY(1)}.breakdance .bde-section-2941-100 .section-shape-divider-wrapper{display:block}}@media (max-width:479px){.breakdance .bde-section-2941-100>.section-background-overlay{transition:all var(--bde-transition-duration) ease-in-out}.breakdance .bde-section-2941-100 .section-shape-divider-wrapper--1 .section-shape-divider svg{bottom:0;top:auto;transform:scaleY(1)}}.breakdance .bde-columns-2941-101{--columnCount:2}@media (max-width:1119px){.breakdance .bde-columns-2941-101{--columnCount:2}}@media (max-width:1023px){.breakdance .bde-columns-2941-101{--columnCount:2;--bde-column-gap:15px}.breakdance .bde-columns-2941-101.bde-columns{flex-direction:column;flex-wrap:nowrap}.breakdance .bde-columns-2941-101.bde-columns>.bde-column{width:100%}.breakdance .bde-columns-2941-101>div:nth-child(1){order:10}.breakdance .bde-columns-2941-101>div:nth-child(2){order:9}.breakdance .bde-columns-2941-101>div:nth-child(3){order:8}.breakdance .bde-columns-2941-101>div:nth-child(4){order:7}.breakdance .bde-columns-2941-101>div:nth-child(5){order:6}.breakdance .bde-columns-2941-101>div:nth-child(6){order:5}.breakdance .bde-columns-2941-101>div:nth-child(7){order:4}.breakdance .bde-columns-2941-101>div:nth-child(8){order:3}.breakdance .bde-columns-2941-101>div:nth-child(9){order:2}.breakdance .bde-columns-2941-101>div:nth-child(10){order:1}}@media (max-width:767px){.breakdance .bde-columns-2941-101{--columnCount:2}}@media (max-width:479px){.breakdance .bde-columns-2941-101{--columnCount:2}}.breakdance .bde-column-2941-102{--column-width:50%;gap:30px}@media (max-width:1023px){.breakdance .bde-column-2941-102{align-items:center;text-align:center}}@media (max-width:767px){.breakdance .bde-column-2941-102{gap:15px;align-items:center;text-align:center}}.breakdance .bde-div-2941-130{width:100%}.breakdance .bde-div-2941-130{display:flex;flex-direction:column;gap:20px}@media (max-width:1023px){.breakdance .bde-div-2941-130{align-items:center;text-align:center}}@media (max-width:767px){.breakdance .bde-div-2941-130{gap:15px}}.breakdance .bde-div-2941-131{display:flex;flex-direction:row;flex-wrap:nowrap;align-items:center;gap:7px}@media (max-width:1023px){.breakdance .bde-div-2941-131{align-items:center}}.breakdance .bde-image2-2941-132{width:25px;height:auto}@media (max-width:767px){.breakdance .bde-image2-2941-132{width:20px;height:auto}}.breakdance .bde-text-2941-133{color:var(--bde-palette-color-1-c71a05e2-6e6c-4b76-af0d-2759c139034f);font-weight:400;line-height:1}@media (max-width:767px){.breakdance .bde-text-2941-133{font-size:12px;line-height:1}}.breakdance .bde-heading-2941-134{color:#fff;font-size:45px;font-weight:700;line-height:1.15}.breakdance .bde-heading-2941-134{text-wrap:balance}@media (max-width:1119px){.breakdance .bde-heading-2941-134{font-size:40px}}@media (max-width:1023px){.breakdance .bde-heading-2941-134{text-align:center;font-size:40px}}@media (max-width:767px){.breakdance .bde-heading-2941-134{text-align:center;font-size:35px}}@media (max-width:479px){.breakdance .bde-heading-2941-134{font-size:28px}}.breakdance .bde-div-2941-104{width:550px;gap:10px}.breakdance .bde-heading-2941-105{color:#fff;font-size:20px;font-weight:400;line-height:1.4}.breakdance .bde-heading-2941-105{text-wrap:balance}@media (max-width:1119px){.breakdance .bde-heading-2941-105{font-size:18px}}@media (max-width:1023px){.breakdance .bde-heading-2941-105{text-align:center;font-size:18px}}@media (max-width:767px){.breakdance .bde-heading-2941-105{text-align:center;font-size:18px}.breakdance .bde-heading-2941-105{text-wrap:balance}}@media (max-width:479px){.breakdance .bde-heading-2941-105{font-size:16px}}.breakdance .bde-column-2941-109{--column-width:50%;align-items:center;text-align:center;justify-content:center}@media (max-width:1023px){.breakdance .bde-column-2941-109{align-items:center;text-align:center}}.breakdance .bde-image-2941-110{margin-top:30px;width:250px}.breakdance .bde-image-2941-110 .breakdance-image-object{width:100%;height:auto}@media (max-width:1023px) and (min-width:768px){.breakdance .bde-image-2941-110{display:none}}@media (max-width:767px) and (min-width:480px){.breakdance .bde-image-2941-110{display:none}}@media (max-width:479px){.breakdance .bde-image-2941-110{display:none}}@media (max-width:1119px){.breakdance .bde-image-2941-110{width:200px}.breakdance .bde-image-2941-110 .breakdance-image-object{width:100%;height:auto}}@media (max-width:1023px){.breakdance .bde-image-2941-110{width:70px}.breakdance .bde-image-2941-110 .breakdance-image-object{width:100%;height:auto}}@media (max-width:767px){.breakdance .bde-image-2941-110{width:150px}.breakdance .bde-image-2941-110 .breakdance-image-object{width:100%;height:auto}}.breakdance .bde-section-2941-111 .section-container{padding-bottom:60px;padding-top:60px}@media (max-width:767px){.breakdance .bde-section-2941-111 .section-container{padding-top:10px}}@media (max-width:479px){.breakdance .bde-section-2941-111 .section-container{padding-top:10px}}.breakdance .bde-columns-2941-112{--columnCount:2;--bde-column-gap:30px}@media (max-width:1119px){.breakdance .bde-columns-2941-112{--columnCount:2}}@media (max-width:1023px){.breakdance .bde-columns-2941-112{--columnCount:2}}@media (max-width:767px){.breakdance .bde-columns-2941-112{--columnCount:2;--bde-column-gap:0px}.breakdance .bde-columns-2941-112.bde-columns{flex-direction:column;flex-wrap:nowrap}.breakdance .bde-columns-2941-112.bde-columns>.bde-column{width:100%}}@media (max-width:479px){.breakdance .bde-columns-2941-112{--columnCount:2;--bde-column-gap:0px}}.breakdance .bde-column-2941-113{--column-width:30%;border-right:1px solid var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb)}.breakdance .bde-column-2941-113.bde-column{padding-right:25px}.breakdance .bde-column-2941-113{position:relative}@media screen and (min-width:768px){.cv-column-1:before{content:'';position:absolute;height:70px;width:100%;border-right:1px solid var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);left:.05rem;top:-70px}.cv-column-1:after{content:'';position:absolute;height:70px;width:100%;border-right:1px solid var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);left:.05rem;bottom:-70px}}@media (max-width:1023px){.breakdance .bde-column-2941-113{width:40%}}@media (max-width:767px){.breakdance .bde-column-2941-113{border-right:0px solid}.breakdance .bde-column-2941-113.bde-column{padding-right:0px}}.breakdance .bde-div-2941-114{width:100%;align-items:center;text-align:center}.breakdance .bde-div-2941-114{position:sticky;top:100px}@media (max-width:767px){.breakdance .bde-div-2941-114{width:100%;margin-bottom:20px;gap:15px}.breakdance .bde-div-2941-114{display:flex;flex-direction:row-reverse;justify-content:space-between;align-items:center;flex-wrap:wrap;border-bottom:1px solid #e2e2e9;padding-bottom:15px}}.breakdance .bde-image-2941-115{margin-bottom:20px;width:250px}.breakdance .bde-image-2941-115 .breakdance-image-container{border-radius:50%}.breakdance .bde-image-2941-115 .breakdance-image-clip{border-top:5px solid #fff;border-bottom:5px solid #fff;border-left:5px solid #fff;border-right:5px solid #fff;border-radius:50%}.breakdance .bde-image-2941-115 .breakdance-image-object{width:100%;height:auto}@media (max-width:1119px){.breakdance .bde-image-2941-115{width:180px}.breakdance .bde-image-2941-115 .breakdance-image-object{width:100%;height:auto}}@media (max-width:1023px){.breakdance .bde-image-2941-115{width:210px}.breakdance .bde-image-2941-115 .breakdance-image-object{width:100%;height:auto}}@media (max-width:767px){.breakdance .bde-image-2941-115{margin-top:0px;margin-bottom:0px;width:100px}.breakdance .bde-image-2941-115 .breakdance-image-object{width:100%;height:auto}.breakdance .bde-image-2941-115{order:1}}@media (max-width:479px){.breakdance .bde-image-2941-115{width:80px}.breakdance .bde-image-2941-115 .breakdance-image-object{width:100%;height:auto}}.breakdance .bde-div-2941-135{width:100%;padding:25px 15px 25px 15px;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}.breakdance .bde-div-2941-135{background-color:var(--bde-palette-color-1-39c7bd16-d824-42d1-9ed8-38ccc826895c)}@media screen and (min-width:768px){.cv-section-title::before{content:'';position:absolute;height:0;border-bottom:1px solid var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);width:25px;background:var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);left:100%;top:50%}.cv-section-title::after{content:'';position:absolute;display:block;border:1px solid var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);border-radius:50%;height:16px;width:16px;background:var(--bde-palette-color-1-2443a051-cfe6-4312-a209-c60be38a4afb);left:calc(100% + 18px);top:calc(50% - 8px);box-shadow:inset 0px 0px 0 1px #fff}}@media (max-width:1119px){.breakdance .bde-div-2941-135{padding:15px 15px 15px 15px}}@media (max-width:767px){.breakdance .bde-div-2941-135{width:60%;padding:0px 0px 0px 0px;border-top:0px solid;border-bottom:0px solid;border-left:0px solid;border-right:0px solid}.breakdance .bde-div-2941-135{order:2}.cv-section-title{background:transparent!important}}.breakdance .bde-heading-2941-136{width:100%;text-align:center;color:#181818;font-size:25px;font-weight:700;line-height:1;text-shadow:5px 20px 75px #00000025}.breakdance .bde-heading-2941-136{text-wrap:balance}@media (max-width:1023px){.breakdance .bde-heading-2941-136{font-size:20px}}@media (max-width:767px){.breakdance .bde-heading-2941-136{text-align:left;font-size:35px;font-weight:800;text-transform:uppercase}}@media (max-width:479px){.breakdance .bde-heading-2941-136{font-size:26px}}@media (max-width:767px) and (min-width:480px){.breakdance .bde-globalblock-2941-119{display:none}}@media (max-width:479px){.breakdance .bde-globalblock-2941-119{display:none}}.breakdance .bde-column-2941-120{--column-width:70%}@media (max-width:1023px){.breakdance .bde-column-2941-120.bde-column{padding-right:15px}}@media (max-width:767px){.breakdance .bde-column-2941-120.bde-column{padding-right:0px}}.breakdance .bde-rich-text-2941-121{color:#181818;font-size:16px;width:100%}.breakdance .bde-rich-text-2941-121 h3{font-size:26px}@media (max-width:479px){.breakdance .bde-rich-text-2941-121 h3{font-size:20px}}.breakdance .bde-checkmark-list-2941-122{margin-top:20px}.breakdance .bde-checkmark-list-2941-122 ul{gap:10px}.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon{font-size:20px}.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_yes{color:#bcc372}.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_no{color:}.breakdance .bde-checkmark-list-2941-122 li div{color:#181818;font-size:16px;font-weight:400}.breakdance .bde-checkmark-list-2941-122 ul span{margin-right:12px}.breakdance .bde-checkmark-list-2941-122 .bde-checkmark-list__icon{align-self:flex-start;margin-top:3px}.breakdance .bde-checkmark-list-2941-122 .sublist{display:flex;flex-direction:column;gap:15px;margin-top:10px;list-style:bullet}.breakdance .bde-checkmark-list-2941-122 .sublist li{display:block;margin:0;font-size:16px;font-weight:400}@media (max-width:1119px){.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_yes{color:}.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_no{color:}}@media (max-width:1023px){.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_yes{color:}.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_no{color:}}@media (max-width:767px){.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_yes{color:}.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_no{color:}}@media (max-width:479px){.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_yes{color:}.breakdance .bde-checkmark-list-2941-122 li .bde-checkmark-list__icon_no{color:}}.breakdance .bde-div-2941-137{margin-top:40px}.breakdance .bde-div-2941-137{--bde-grid-gap:var(--bde-column-gap);display:grid;grid-template-columns:repeat(var(--bde-grid-items-per-row,4),minmax(0,1fr));gap:var(--bde-grid-gap);align-items:var(--bde-grid-align-items,stretch);justify-items:var(--bde-grid-justify-items,stretch)}.breakdance .bde-div-2941-137>*{width:auto!important;height:auto!important}.breakdance .bde-div-2941-137{--bde-grid-items-per-row:3}@media (max-width:1023px){.breakdance .bde-div-2941-137{--bde-grid-items-per-row:2;--bde-grid-gap:25px}}@media (max-width:479px){.breakdance .bde-div-2941-137{--bde-grid-items-per-row:1}}.breakdance .bde-icon-box-2941-138{position:relative}.breakdance .bde-icon-box-2941-138 .ee-iconbox-icon{position:absolute;left:30px;top:0;transform:translateY(-50%)}.breakdance .bde-icon-box-2941-138{transition:all .3s linear}.breakdance .bde-icon-box-2941-138:hover{box-shadow:0 0 15px 1px #C7C7B070}.breakdance .bde-icon-box-2941-139{position:relative}.breakdance .bde-icon-box-2941-139 .ee-iconbox-icon{position:absolute;left:30px;top:0;transform:translateY(-50%)}.breakdance .bde-icon-box-2941-139{transition:all .3s linear}.breakdance .bde-icon-box-2941-139:hover{box-shadow:0 0 15px 1px #C7C7B070}.breakdance .bde-icon-box-2941-140{position:relative}.breakdance .bde-icon-box-2941-140 .ee-iconbox-icon{position:absolute;left:30px;top:0;transform:translateY(-50%)}.breakdance .bde-icon-box-2941-140{transition:all .3s linear}.breakdance .bde-icon-box-2941-140:hover{box-shadow:0 0 15px 1px #C7C7B070}.breakdance .bde-icon-box-2941-141{position:relative}.breakdance .bde-icon-box-2941-141 .ee-iconbox-icon{position:absolute;left:30px;top:0;transform:translateY(-50%)}.breakdance .bde-icon-box-2941-141{transition:all .3s linear}.breakdance .bde-icon-box-2941-141:hover{box-shadow:0 0 15px 1px #C7C7B070}.breakdance .bde-icon-box-2941-142{position:relative}.breakdance .bde-icon-box-2941-142 .ee-iconbox-icon{position:absolute;left:30px;top:0;transform:translateY(-50%)}.breakdance .bde-icon-box-2941-142{transition:all .3s linear}.breakdance .bde-icon-box-2941-142:hover{box-shadow:0 0 15px 1px #C7C7B070}.breakdance .bde-div-5232-100{gap:15px;flex-wrap:wrap;flex-direction:row;justify-content:flex-start}@media (max-width:767px){.breakdance .bde-div-5232-100{width:100%;justify-content:center}}@media (max-width:479px){.breakdance .bde-div-5232-100{flex-wrap:wrap;flex-direction:row;justify-content:center}}.breakdance .bde-div-5232-101{gap:15px;flex-wrap:wrap;flex-direction:row;justify-content:flex-start}@media (max-width:767px){.breakdance .bde-div-5232-101{width:100%;gap:10px;justify-content:center}.breakdance .bde-div-5232-101{max-width:300px}}@media (max-width:479px){.breakdance .bde-div-5232-101{gap:20px;flex-wrap:wrap;flex-direction:row;justify-content:center}}.breakdance .bde-div-5232-102{display:flex;flex-direction:column;gap:10px}@media (max-width:767px){.breakdance .bde-div-5232-102{width:100%}.breakdance .bde-div-5232-102{gap:15px}}.breakdance .bde-button-5232-103 .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:#2b2b2b;--bde-button-custom-text-color-hover:#2b2b2b;--bde-button-custom-background-color:#BDEA00;--bde-button-custom-background-color-hover:#BDEA00;border-radius:12px;color:#2b2b2b;font-weight:700;text-transform:uppercase;padding-right:40px;padding-left:40px}.breakdance .bde-button-5232-103 .bde-button__button:hover{transform:scale(1.1)}.breakdance .bde-button-5232-103 .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-5232-103 .bde-button__button::after{margin-right:5px}.breakdance .bde-button-5232-103 .bde-button__button{flex-direction:row-reverse}.breakdance .bde-button-5232-103{display:inline-block}.breakdance .bde-button-5232-103{--btn-pulse-color:189,234,0;--btn-shadow-size:15px;border-radius:12px}@media (max-width:767px){.breakdance .bde-button-5232-103,.breakdance .bde-button-5232-103>*{width:100%}}@media (max-width:479px){.breakdance .bde-button-5232-103{max-width:300px}}.breakdance .bde-div-5232-104{display:flex;flex-direction:column}@media (max-width:767px) and (min-width:480px){.breakdance .bde-div-5232-104{display:none}}@media (max-width:479px){.breakdance .bde-div-5232-104{display:none}}@media (max-width:767px){.breakdance .bde-div-5232-104{width:100%}.breakdance .bde-div-5232-104{gap:5px}}.breakdance .bde-button-5232-105 .bde-button__button{--bde-transition-duration:430ms;--bde-button-custom-border-color:#BDEA00;--bde-button-custom-border-color-hover:#BDEA00;--bde-button-custom-background-color:#BDEA0000;--bde-button-custom-background-color-hover:#BDEA0000;--bde-button-custom-text-color:#BDEA00;--bde-button-custom-text-color-hover:#BDEA00;border-radius:12px;border-width:2px;color:#BDEA00;font-weight:700;padding-right:40px;padding-left:40px}.breakdance .bde-button-5232-105 .bde-button__button:hover{color:#BDEA00;transform:scale(1.1)}.breakdance .bde-button-5232-105 .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%22M476%203.2L12.5%20270.6c-18.1%2010.4-15.8%2035.6%202.2%2043.2L121%20358.4l287.3-253.2c5.5-4.9%2013.3%202.6%208.6%208.3L176%20407v80.5c0%2023.6%2028.5%2032.9%2042.5%2015.8L282%20426l124.6%2052.2c14.2%206%2030.4-2.9%2033-18.2l72-432C515%207.8%20493.3-6.8%20476%203.2z%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%22M476%203.2L12.5%20270.6c-18.1%2010.4-15.8%2035.6%202.2%2043.2L121%20358.4l287.3-253.2c5.5-4.9%2013.3%202.6%208.6%208.3L176%20407v80.5c0%2023.6%2028.5%2032.9%2042.5%2015.8L282%20426l124.6%2052.2c14.2%206%2030.4-2.9%2033-18.2l72-432C515%207.8%20493.3-6.8%20476%203.2z%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-5232-105 .bde-button__button{flex-direction:row-reverse}.breakdance .bde-button-5232-105{display:inline-block}@media (max-width:767px){.breakdance .bde-button-5232-105,.breakdance .bde-button-5232-105>*{width:100%}}.breakdance .bde-div-5232-106{display:flex;flex-direction:column}@media (min-width:1120px){.breakdance .bde-div-5232-106{display:none}}@media (max-width:1119px) and (min-width:1024px){.breakdance .bde-div-5232-106{display:none}}@media (max-width:1023px) and (min-width:768px){.breakdance .bde-div-5232-106{display:none}}@media (max-width:767px){.breakdance .bde-div-5232-106{width:100%}.breakdance .bde-div-5232-106{gap:5px}}.breakdance .bde-button-5232-107 .bde-button__button{--bde-transition-duration:430ms;--bde-button-custom-border-color:#25D366;--bde-button-custom-border-color-hover:#BDEA00;--bde-button-custom-background-color:#BDEA0000;--bde-button-custom-background-color-hover:#BDEA0000;--bde-button-custom-text-color:#BDEA00;--bde-button-custom-text-color-hover:#BDEA00;border-radius:12px;border-width:2px;color:#BDEA00;font-weight:700}.breakdance .bde-button-5232-107 .bde-button__button:hover{color:#BDEA00;transform:scale(1.1)}.breakdance .bde-button-5232-107 .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%20id%3D%22icon-whatsapp%22%20viewBox%3D%220%200%2032%2032%22%3E%0A%3Cpath%20d%3D%22M27.281%204.65c-2.994-3-6.975-4.65-11.219-4.65-8.738%200-15.85%207.112-15.85%2015.856%200%202.794%200.731%205.525%202.119%207.925l-2.25%208.219%208.406-2.206c2.319%201.262%204.925%201.931%207.575%201.931h0.006c0%200%200%200%200%200%208.738%200%2015.856-7.113%2015.856-15.856%200-4.238-1.65-8.219-4.644-11.219zM16.069%2029.050v0c-2.369%200-4.688-0.637-6.713-1.837l-0.481-0.288-4.987%201.306%201.331-4.863-0.313-0.5c-1.325-2.094-2.019-4.519-2.019-7.012%200-7.269%205.912-13.181%2013.188-13.181%203.519%200%206.831%201.375%209.319%203.862%202.488%202.494%203.856%205.8%203.856%209.325-0.006%207.275-5.919%2013.188-13.181%2013.188zM23.294%2019.175c-0.394-0.2-2.344-1.156-2.706-1.288s-0.625-0.2-0.894%200.2c-0.262%200.394-1.025%201.288-1.256%201.556-0.231%200.262-0.462%200.3-0.856%200.1s-1.675-0.619-3.188-1.969c-1.175-1.050-1.975-2.35-2.206-2.744s-0.025-0.613%200.175-0.806c0.181-0.175%200.394-0.463%200.594-0.694s0.262-0.394%200.394-0.662c0.131-0.262%200.069-0.494-0.031-0.694s-0.894-2.15-1.219-2.944c-0.319-0.775-0.65-0.669-0.894-0.681-0.231-0.012-0.494-0.012-0.756-0.012s-0.694%200.1-1.056%200.494c-0.363%200.394-1.387%201.356-1.387%203.306s1.419%203.831%201.619%204.1c0.2%200.262%202.794%204.269%206.769%205.981%200.944%200.406%201.681%200.65%202.256%200.837%200.95%200.3%201.813%200.256%202.494%200.156%200.762-0.113%202.344-0.956%202.675-1.881s0.331-1.719%200.231-1.881c-0.094-0.175-0.356-0.275-0.756-0.475z%22%2F%3E%0A%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%20id%3D%22icon-whatsapp%22%20viewBox%3D%220%200%2032%2032%22%3E%0A%3Cpath%20d%3D%22M27.281%204.65c-2.994-3-6.975-4.65-11.219-4.65-8.738%200-15.85%207.112-15.85%2015.856%200%202.794%200.731%205.525%202.119%207.925l-2.25%208.219%208.406-2.206c2.319%201.262%204.925%201.931%207.575%201.931h0.006c0%200%200%200%200%200%208.738%200%2015.856-7.113%2015.856-15.856%200-4.238-1.65-8.219-4.644-11.219zM16.069%2029.050v0c-2.369%200-4.688-0.637-6.713-1.837l-0.481-0.288-4.987%201.306%201.331-4.863-0.313-0.5c-1.325-2.094-2.019-4.519-2.019-7.012%200-7.269%205.912-13.181%2013.188-13.181%203.519%200%206.831%201.375%209.319%203.862%202.488%202.494%203.856%205.8%203.856%209.325-0.006%207.275-5.919%2013.188-13.181%2013.188zM23.294%2019.175c-0.394-0.2-2.344-1.156-2.706-1.288s-0.625-0.2-0.894%200.2c-0.262%200.394-1.025%201.288-1.256%201.556-0.231%200.262-0.462%200.3-0.856%200.1s-1.675-0.619-3.188-1.969c-1.175-1.050-1.975-2.35-2.206-2.744s-0.025-0.613%200.175-0.806c0.181-0.175%200.394-0.463%200.594-0.694s0.262-0.394%200.394-0.662c0.131-0.262%200.069-0.494-0.031-0.694s-0.894-2.15-1.219-2.944c-0.319-0.775-0.65-0.669-0.894-0.681-0.231-0.012-0.494-0.012-0.756-0.012s-0.694%200.1-1.056%200.494c-0.363%200.394-1.387%201.356-1.387%203.306s1.419%203.831%201.619%204.1c0.2%200.262%202.794%204.269%206.769%205.981%200.944%200.406%201.681%200.65%202.256%200.837%200.95%200.3%201.813%200.256%202.494%200.156%200.762-0.113%202.344-0.956%202.675-1.881s0.331-1.719%200.231-1.881c-0.094-0.175-0.356-0.275-0.756-0.475z%22%2F%3E%0A%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-5232-107 .bde-button__button{flex-direction:row-reverse}.breakdance .bde-button-5232-107{display:inline-block}@media (max-width:767px){.breakdance .bde-button-5232-107 .bde-button__button{color:#25D366;text-transform:uppercase}.breakdance .bde-button-5232-107 .bde-button__button::after{width:1.2em;height:1.2em}.breakdance .bde-button-5232-107 .bde-button__button::after{margin-right:5px}.breakdance .bde-button-5232-107,.breakdance .bde-button-5232-107>*{width:100%}}.breakdance .bde-div-5232-108{width:235px;margin-top:10px;gap:15px;flex-wrap:wrap;flex-direction:row;justify-content:flex-start}@media (max-width:767px) and (min-width:480px){.breakdance .bde-div-5232-108{display:none}}@media (max-width:479px){.breakdance .bde-div-5232-108{display:none}}@media (max-width:767px){.breakdance .bde-div-5232-108{margin-top:0px;gap:30px;justify-content:center}.breakdance .bde-div-5232-108{max-width:300px}}@media (max-width:479px){.breakdance .bde-div-5232-108{gap:20px;flex-wrap:wrap;flex-direction:row;justify-content:center}}.breakdance .bde-div-5232-109{width:100%}.breakdance .bde-div-5232-109{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:center;align-items:center;gap:10px}.breakdance .bde-text-5232-110{color:#FFF;font-size:14px}.breakdance .bde-icon-list-5232-111 li .bde-icon-list__icon{color:var(--bde-palette-lime-261f7aec-15c1-4fb2-af5f-a245f6429d5b-4)}.breakdance .bde-icon-list-5232-111 li .bde-icon-list__text{color:var(--bde-palette-lime-261f7aec-15c1-4fb2-af5f-a245f6429d5b-4);font-size:14px;font-weight:600;text-decoration-line:underline;text-underline-offset:2px;text-decoration-thickness:2px}.breakdance .bde-icon-list-5232-111 ul li .bde-icon-list__item-wrapper{gap:2px}.breakdance .bde-div-2749-100{width:100%;margin-top:30px}.breakdance .bde-div-2749-100{display:flex;flex-direction:column;gap:15px}@media (max-width:767px) and (min-width:480px){.breakdance .bde-div-2749-100{display:none}}@media (max-width:479px){.breakdance .bde-div-2749-100{display:none}}.breakdance .bde-text-2749-101{color:#181818;font-size:20px;font-weight:600;line-height:1}.breakdance .bde-icon-list-2749-102 ul{gap:8px}.breakdance .bde-icon-list-2749-102 li .bde-icon-list__icon{color:#181818}.breakdance .bde-icon-list-2749-102 li .bde-icon-list__text{color:#181818;font-size:16px;font-weight:500}.breakdance .bde-icon-list-2749-103 ul{gap:0px}.breakdance .bde-icon-list-2749-103 ul{flex-direction:row;justify-content:left;flex-wrap:wrap;align-items:center}.breakdance .bde-icon-list-2749-103 li .bde-icon-list__icon{font-size:20px}.breakdance .bde-icon-list-2749-103 li .bde-icon-list__icon{color:#fff;padding:10px;border-radius:40px;background:#454545}.breakdance .bde-icon-list-2749-103 li:hover .bde-icon-list__icon{background:#181818}.breakdance .bde-icon-list-2749-103 li .bde-icon-list__text{color:#181818;font-size:16px;font-weight:700}.breakdance .bde-section-2785-100{background-color:#f7f7dd}.breakdance .bde-section-2785-100 .section-container{padding-bottom:80px;padding-top:60px}.breakdance .bde-section-2785-100{border-top:1px solid #C7C7B0}@media (max-width:767px){.breakdance .bde-section-2785-100 .section-container{padding-bottom:60px}}.breakdance .bde-image-2785-101{margin:0 auto}@media (min-width:1120px){.breakdance .bde-image-2785-101{display:none}}@media (max-width:1119px) and (min-width:1024px){.breakdance .bde-image-2785-101{display:none}}@media (max-width:1023px) and (min-width:768px){.breakdance .bde-image-2785-101{display:none}}@media (max-width:767px) and (min-width:480px){.breakdance .bde-image-2785-101{display:none}}@media (max-width:479px){.breakdance .bde-image-2785-101{display:none}}@media (max-width:767px){.breakdance .bde-image-2785-101{max-width:80%}}.breakdance .bde-columns-2785-102{--columnCount:2}@media (max-width:1119px){.breakdance .bde-columns-2785-102{--columnCount:2}}@media (max-width:1023px){.breakdance .bde-columns-2785-102{--columnCount:2}.breakdance .bde-columns-2785-102.bde-columns{flex-direction:column;flex-wrap:nowrap}.breakdance .bde-columns-2785-102.bde-columns>.bde-column{width:100%}}@media (max-width:767px){.breakdance .bde-columns-2785-102{--columnCount:2}}@media (max-width:479px){.breakdance .bde-columns-2785-102{--columnCount:2}}.breakdance .bde-column-2785-103{--column-width:50%}.breakdance .bde-column-2785-103{display:flex;flex-direction:column;gap:20px}.breakdance .bde-heading-2785-104{color:#181818;font-size:45px;font-weight:700;line-height:1;margin-bottom:15px}.breakdance .bde-heading-2785-104{text-wrap:balance}@media (max-width:767px){.breakdance .bde-heading-2785-104{font-size:40px}}@media (max-width:479px){.breakdance .bde-heading-2785-104{font-size:33px}}.breakdance .bde-rich-text-2785-106{color:#181818}.breakdance .bde-icon-list-2785-107 ul{gap:8px}.breakdance .bde-icon-list-2785-107 li .bde-icon-list__icon{color:#181818}.breakdance .bde-icon-list-2785-107 li .bde-icon-list__text{color:#181818;font-size:16px;font-weight:500}.breakdance .bde-icon-list-2785-108 ul{gap:0px}.breakdance .bde-icon-list-2785-108 ul{flex-direction:row;justify-content:left;flex-wrap:wrap;align-items:center}.breakdance .bde-icon-list-2785-108 li .bde-icon-list__icon{font-size:20px}.breakdance .bde-icon-list-2785-108 li .bde-icon-list__icon{color:#fff;padding:10px;border-radius:40px;background:#454545}.breakdance .bde-icon-list-2785-108 li:hover .bde-icon-list__icon{background:#181818}.breakdance .bde-icon-list-2785-108 li .bde-icon-list__text{color:#181818;font-size:16px;font-weight:700}.breakdance .bde-column-2785-109{--column-width:50%;align-items:flex-end;text-align:right;justify-content:flex-end}@media (max-width:1119px){.breakdance .bde-column-2785-109{justify-content:flex-start}}.breakdance .bde-form-builder-2785-110{width:90%}.breakdance .bde-form-builder-2785-110{--bde-form-input-border-radius:10px;--bde-form-input-border-top:1px solid #E2E2E9;--bde-form-input-border-bottom:1px solid #E2E2E9;--bde-form-input-border-left:1px solid #E2E2E9;--bde-form-input-border-right:1px solid #E2E2E9}.breakdance .bde-form-builder-2785-110 .breakdance-form .breakdance-form-field__input,.breakdance .bde-form-builder-2785-110 .breakdance-form-dropzone,.breakdance .bde-form-builder-2785-110 .select2-container--default .select2-search--dropdown .select2-search__field,.breakdance .bde-form-builder-2785-110 .select2-container--default .select2-selection--single,.breakdance .bde-form-builder-2785-110 .breakdance-woocommerce .price_slider_amount input[type="text"],.breakdance .bde-form-builder-2785-110 .breakdance-woocommerce input[type="search"],.breakdance .bde-form-builder-2785-110 .breakdance-woocommerce textarea,.breakdance .bde-form-builder-2785-110 .breakdance-woocommerce .woocommerce-Input,.breakdance .bde-form-builder-2785-110 .breakdance-woocommerce .input-text,.breakdance .bde-form-builder-2785-110 .breakdance-woocommerce select,.breakdance .bde-form-builder-2785-110 .breakdance-woocommerce .wc_payment_method input[type="text"],.breakdance .bde-form-builder-2785-110 .breakdance-woocommerce .wc-stripe-elements-field{border-top:1px solid #E2E2E9;border-bottom:1px solid #E2E2E9;border-left:1px solid #E2E2E9;border-right:1px solid #E2E2E9;border-radius:10px}.breakdance .bde-form-builder-2785-110 .breakdance-form-checkbox,.breakdance .bde-form-builder-2785-110 .breakdance-form-radio{font-size:13px}.breakdance .bde-form-builder-2785-110 .breakdance-form-field__label,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce .woocommerce-password-strength,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label span.optional,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.breakdance .bde-form-builder-2785-110 .breakdance-form-footer{justify-content:unset}.breakdance .bde-form-builder-2785-110 .breakdance-form-footer .breakdance-form-button__submit,.breakdance .bde-form-builder-2785-110 .breakdance-form-footer .breakdance-form-field--step-buttons{width:100%}.breakdance .bde-form-builder-2785-110 .breakdance-form-button__submit{--bde-button-primary-border-color:transparent;--bde-button-primary-border-color-hover:transparent;--bde-button-primary-text-color:#181818;--bde-button-primary-text-color-hover:#181818;--bde-button-primary-background-color:#bdea00;--bde-button-primary-background-color-hover:#02EF02;border-radius:10px;color:#181818;font-weight:600}.breakdance .bde-form-builder-2785-110 .breakdance-form-checkbox a{color:#181818}@media (max-width:1119px){.breakdance .bde-form-builder-2785-110{width:100%}.breakdance .bde-form-builder-2785-110 .breakdance-form-field__label,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce .woocommerce-password-strength,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label span.optional,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}}@media (max-width:1023px){.breakdance .bde-form-builder-2785-110 .breakdance-form-field__label,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce .woocommerce-password-strength,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label span.optional,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}}@media (max-width:767px){.breakdance .bde-form-builder-2785-110 .breakdance-form{grid-template-columns:unset}.breakdance .bde-form-builder-2785-110 .breakdance-form--horizontal{grid-auto-flow:unset}.breakdance .bde-form-builder-2785-110 .breakdance-form .breakdance-form-field,.breakdance .bde-form-builder-2785-110 .breakdance-form .breakdance-form-stepper{grid-column-start:unset}.breakdance .bde-form-builder-2785-110 .breakdance-form-field__label,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce .woocommerce-password-strength,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label span.optional,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.breakdance .bde-form-builder-2785-110 label{text-align:left}.breakdance .bde-form-builder-2785-110 .breakdance-form-checkbox{display:flex;gap:10px}}@media (max-width:479px){.breakdance .bde-form-builder-2785-110 .breakdance-form-field__label,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce .woocommerce-password-strength,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label span.optional,.breakdance .bde-form-builder-2785-110.breakdance-woocommerce label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.breakdance .bde-form-builder-2785-110 label{text-align:left}}.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%}