/* =============================================================
   FM Premium Button — Frontend Styles
   Widget: flowmax-modern-button
   ============================================================= */

/* ============================================================
   Alignment wrapper (left, center, right, justified)
   ============================================================ */

.fm-btn-align {
	display: flex;
	width: 100%;
}

.fm-btn-align--justified .fm-btn {
	flex: 1;
}

/* ============================================================
   Base Button
   ============================================================ */

.fm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	cursor: pointer;
	border: none;
	outline: none;
	font-family: inherit;
	line-height: 1;
	white-space: nowrap;
	position: relative;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
	-webkit-font-smoothing: antialiased;
}

.fm-btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.fm-btn--full {
	width: 100%;
}

/* ============================================================
   Sizes
   ============================================================ */

/* Small — 36px height, tight padding */
.fm-btn--sm {
	padding: 6px 6px 6px 14px;
	font-size: 13px;
	gap: 8px;
}

/* Medium — 44px height, standard CTA (default) */
.fm-btn--md {
	padding: 8px 8px 8px 20px;
	font-size: 15px;
	gap: 10px;
}

/* Large — 52px height, hero CTA */
.fm-btn--lg {
	padding: 12px 12px 12px 26px;
	font-size: 16px;
	gap: 12px;
}

/* X-Large — 60px height, full-width hero */
.fm-btn--xl {
	padding: 16px 16px 16px 32px;
	font-size: 18px;
	gap: 14px;
}

/* ============================================================
   Preset: Icon Arrow
   Dark pill button with animated diagonal arrow in a circle
   ============================================================ */

.fm-btn--icon-arrow {
	background-color: #0f0f0f;
	color: #ffffff;
	border-radius: 999px;
}

/* Text */
.fm-btn--icon-arrow .fm-btn__text {
	color: #ffffff;
	font-weight: 500;
	letter-spacing: -0.01em;
	transition: color 0.25s ease;
}

/* Icon circle wrapper */
.fm-btn--icon-arrow .fm-btn__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #2a2a2a;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
	transition: background-color 0.25s ease;
}

/* Circle scales with button size */
.fm-btn--sm .fm-btn__icon-wrap  { width: 24px; height: 24px; }
.fm-btn--md .fm-btn__icon-wrap  { width: 32px; height: 32px; }
.fm-btn--lg .fm-btn__icon-wrap  { width: 36px; height: 36px; }
.fm-btn--xl .fm-btn__icon-wrap  { width: 42px; height: 42px; }

/* Icon SVG scales with size */
.fm-btn--sm .fm-btn__icon { width: 12px; height: 12px; }
.fm-btn--md .fm-btn__icon { width: 14px; height: 14px; }
.fm-btn--lg .fm-btn__icon { width: 16px; height: 16px; }
.fm-btn--xl .fm-btn__icon { width: 18px; height: 18px; }

/* Arrow SVG icon */
.fm-btn--icon-arrow .fm-btn__icon {
	width: 14px;
	height: 14px;
	color: #ffffff;
	display: block;
	transition: color 0.25s ease;
}

/* ---- Hover ---- */

.fm-btn--icon-arrow:hover {
	background-color: #1a1a1a;
}



/* ---- Active / Press ---- */

.fm-btn--icon-arrow:active {
	transform: none;
}

/* ============================================================
   Preset: Liquid Arrow v2
   Two visually separate shapes: a pill on the left + a floating
   circle on the right with a real gap between them.
   Technique: button bg = transparent, pill drawn via ::before
   that only covers the left portion, circle has its own bg.
   ============================================================ */

.fm-btn--icon-arrow-v2 {
	background-color: transparent !important;
	color: #ffffff;
	border-radius: 0 !important;
	padding: 0 !important;
	gap: 4px !important;
	overflow: visible !important;
	position: relative;
}

/* Pill — text span carries the pill background */
.fm-btn--icon-arrow-v2 .fm-btn__text {
	display: inline-flex;
	align-items: center;
	background-color: #1a1a1a;
	color: #ffffff;
	font-weight: 500;
	letter-spacing: -0.01em;
	border-radius: 999px;
	line-height: 1;
	transition: background-color 0.25s ease, color 0.25s ease;
	/* MD default: 15px font + 11px top + 11px bottom = 37px tall */
	padding: 11px 22px;
	font-size: 15px;
}

/* Detached circle — diameter must equal pill height exactly */
.fm-btn--icon-arrow-v2 .fm-btn__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* MD: 15 + 11 + 11 = 37px */
	width: 37px !important;
	height: 37px !important;
	border-radius: 50% !important;
	background-color: #1a1a1a;
	flex-shrink: 0;
	transition: background-color 0.25s ease;
}

/* Icon SVG — ~38% of circle diameter */
.fm-btn--icon-arrow-v2 .fm-btn__icon {
	width: 14px !important;
	height: 14px !important;
	color: #ffffff;
	display: block;
	transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), color 0.25s ease;
	backface-visibility: hidden;
	will-change: transform;
}

/* ---- Size variants (circle = font + pad×2) ----
   SM: 13 + 8  + 8  = 29px   icon ≈ 11px
   MD: 15 + 11 + 11 = 37px   icon ≈ 14px  (default above)
   LG: 16 + 14 + 14 = 44px   icon ≈ 17px
   XL: 18 + 17 + 17 = 52px   icon ≈ 20px
   ------------------------------------------------ */
.fm-btn--icon-arrow-v2.fm-btn--sm .fm-btn__text      { padding: 8px 16px;  font-size: 13px; }
.fm-btn--icon-arrow-v2.fm-btn--sm .fm-btn__icon-wrap { width: 29px !important; height: 29px !important; }
.fm-btn--icon-arrow-v2.fm-btn--sm .fm-btn__icon      { width: 14px !important; height: 14px !important; }

.fm-btn--icon-arrow-v2.fm-btn--md .fm-btn__text      { padding: 11px 22px; font-size: 15px; }
.fm-btn--icon-arrow-v2.fm-btn--md .fm-btn__icon-wrap { width: 37px !important; height: 37px !important; }
.fm-btn--icon-arrow-v2.fm-btn--md .fm-btn__icon      { width: 17px !important; height: 17px !important; }

.fm-btn--icon-arrow-v2.fm-btn--lg .fm-btn__text      { padding: 14px 28px; font-size: 16px; }
.fm-btn--icon-arrow-v2.fm-btn--lg .fm-btn__icon-wrap { width: 44px !important; height: 44px !important; }
.fm-btn--icon-arrow-v2.fm-btn--lg .fm-btn__icon      { width: 20px !important; height: 20px !important; }

.fm-btn--icon-arrow-v2.fm-btn--xl .fm-btn__text      { padding: 17px 34px; font-size: 18px; }
.fm-btn--icon-arrow-v2.fm-btn--xl .fm-btn__icon-wrap { width: 52px !important; height: 52px !important; }
.fm-btn--icon-arrow-v2.fm-btn--xl .fm-btn__icon      { width: 23px !important; height: 23px !important; }

/* ---- Hover ---- */

.fm-btn--icon-arrow-v2:hover .fm-btn__text {
	background-color: #2a2a2a;
}

.fm-btn--icon-arrow-v2:hover .fm-btn__icon-wrap {
	background-color: #2a2a2a;
}

.fm-btn--icon-arrow-v2:hover .fm-btn__icon {
	transform: rotate(45deg);
}

/* ---- Active / Press ---- */

.fm-btn--icon-arrow-v2:active {
	transform: none;
}

/* ============================================================
   Preset: Slide Icon
   Normal:  dark circle (left) + visible text (right), no bg.
   Hover:   fill sweeps left→right via ::before, gap shrinks,
            icon cross-fades chevron → arrow.
   Pure CSS. No JS.
   ============================================================ */

.fm-btn--slide-icon {
	background-color: transparent;
	border-radius: 999px !important;
	padding: 0 !important;
	gap: 8px !important;
	overflow: hidden !important;
	transition: none !important;
	position: relative;
	vertical-align: top;
}

/* Sweep fill: starts at scaleX(0) from left, expands to full width.
   Starts from x=0 so it flows out from behind the circle. */
.fm-btn--slide-icon::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: #1a1a1a;
	border-radius: inherit;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
}

.fm-btn--slide-icon:hover::before {
	transform: scaleX(1);
}

/* Circle — no padding, fills button height naturally */
.fm-btn--slide-icon .fm-btn__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	/* MD default — 44px total button height */
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	background-color: #1a1a1a;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

/* Both icons stacked — cross-fade on hover */
.fm-btn--slide-icon .fm-btn__icon-wrap svg {
	position: absolute;
	width: 15px;
	height: 15px;
	color: #ffffff;
	transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fm-btn--slide-icon .fm-btn__icon--chevron { opacity: 1; transform: none; }
.fm-btn--slide-icon .fm-btn__icon--right   { opacity: 0; transform: translateX(-4px); }

/* Text — right padding gives breathing room */
.fm-btn--slide-icon .fm-btn__text {
	color: #1a1a1a;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-size: 13px;
	line-height: 1;
	white-space: nowrap;
	padding-right: 20px;
	position: relative;
	z-index: 1;
	transition: color 0.25s ease 0.1s;
}

/* ---- Hover ---- */

.fm-btn--slide-icon:hover .fm-btn__icon--chevron { opacity: 0; transform: translateX(6px); }
.fm-btn--slide-icon:hover .fm-btn__icon--right   { opacity: 1; transform: translateX(3px); }

.fm-btn--slide-icon:hover .fm-btn__text {
	color: #ffffff;
}

/* ---- Size variants ----
   Circle = button height (no padding, circle IS the height)
   SM: 34px   MD: 44px   LG: 52px   XL: 60px
   -------------------------------------------- */
.fm-btn--slide-icon.fm-btn--sm { gap: 6px !important; }
.fm-btn--slide-icon.fm-btn--sm .fm-btn__icon-wrap     { width: 34px !important; height: 34px !important; }
.fm-btn--slide-icon.fm-btn--sm .fm-btn__icon-wrap svg { width: 12px; height: 12px; }
.fm-btn--slide-icon.fm-btn--sm .fm-btn__text          { font-size: 11px; padding-right: 14px; }

.fm-btn--slide-icon.fm-btn--md { gap: 8px !important; }
.fm-btn--slide-icon.fm-btn--md .fm-btn__icon-wrap     { width: 44px !important; height: 44px !important; }
.fm-btn--slide-icon.fm-btn--md .fm-btn__icon-wrap svg { width: 15px; height: 15px; }
.fm-btn--slide-icon.fm-btn--md .fm-btn__text          { font-size: 13px; padding-right: 20px; }

.fm-btn--slide-icon.fm-btn--lg { gap: 10px !important; }
.fm-btn--slide-icon.fm-btn--lg .fm-btn__icon-wrap     { width: 52px !important; height: 52px !important; }
.fm-btn--slide-icon.fm-btn--lg .fm-btn__icon-wrap svg { width: 18px; height: 18px; }
.fm-btn--slide-icon.fm-btn--lg .fm-btn__text          { font-size: 14px; padding-right: 24px; }

.fm-btn--slide-icon.fm-btn--xl { gap: 12px !important; }
.fm-btn--slide-icon.fm-btn--xl .fm-btn__icon-wrap     { width: 60px !important; height: 60px !important; }
.fm-btn--slide-icon.fm-btn--xl .fm-btn__icon-wrap svg { width: 20px; height: 20px; }
.fm-btn--slide-icon.fm-btn--xl .fm-btn__text          { font-size: 15px; padding-right: 28px; }

/* ============================================================
   Preset: Slide Lift
   Simple button with icon; on hover the whole button slides up.
   ============================================================ */

.fm-btn--slide-lift {
	background-color: #0f0f0f;
	color: #ffffff;
	border-radius: 999px;
	gap: 6px;
	transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fm-btn--slide-lift .fm-btn__text {
	color: #ffffff;
	font-weight: 500;
	letter-spacing: -0.01em;
	transition: color 0.25s ease;
}

.fm-btn--slide-lift .fm-btn__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
	border-radius: 0;
	width: auto;
	height: auto;
	flex-shrink: 0;
}

.fm-btn--slide-lift .fm-btn__icon {
	width: 17px;
	height: 17px;
	color: #ffffff;
	display: block;
	transition: color 0.25s ease;
}

.fm-btn--slide-lift:hover {
	transform: translateY(-4px);
}

.fm-btn--slide-lift:active {
	transform: none;
}

.fm-btn--slide-lift.fm-btn--sm .fm-btn__icon { width: 15px; height: 15px; }
.fm-btn--slide-lift.fm-btn--md .fm-btn__icon { width: 17px; height: 17px; }
.fm-btn--slide-lift.fm-btn--lg .fm-btn__icon { width: 20px; height: 20px; }
.fm-btn--slide-lift.fm-btn--xl .fm-btn__icon { width: 22px; height: 22px; }

/* ============================================================
   Preset: Fill Sweep
   Outlined button — fill slides in from a direction on hover,
   text color flips. Pure CSS, no JS.
   ============================================================ */

.fm-btn--fill-sweep {
	background-color: transparent;
	color: #0f0f0f;
	border-radius: 6px;
	border: 1.5px solid #0f0f0f;
	overflow: hidden;
	/* Sizing: equal padding all sides (no icon) */
	padding: 10px 24px;
	transition: border-color 0.3s ease;
}

/* Size overrides — equal padding for fill-sweep (no icon circle) */
.fm-btn--fill-sweep.fm-btn--sm { padding: 8px 18px;  font-size: 13px; }
.fm-btn--fill-sweep.fm-btn--md { padding: 11px 24px; font-size: 15px; }
.fm-btn--fill-sweep.fm-btn--lg { padding: 14px 30px; font-size: 16px; }
.fm-btn--fill-sweep.fm-btn--xl { padding: 18px 38px; font-size: 18px; }

.fm-btn--fill-sweep .fm-btn__text {
	position: relative;
	z-index: 1;
	color: inherit;
	font-weight: 500;
	letter-spacing: -0.01em;
	transition: color 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

/* The sweep fill layer — pseudo element */
.fm-btn--fill-sweep::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: #0f0f0f;
	z-index: 0;
	transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

/* ---- Direction variants ---- */

/* Left → Right: enter left-to-right, exit also left-to-right (fill sweeps out to the right) */
.fm-btn--fill-sweep.fm-btn--sweep-left::before {
	transform: scaleX(0);
	transform-origin: right center;
}
.fm-btn--fill-sweep.fm-btn--sweep-left:hover::before {
	transform: scaleX(1);
	transform-origin: left center;
}

/* Right → Left: enter right-to-left, exit also right-to-left */
.fm-btn--fill-sweep.fm-btn--sweep-right::before {
	transform: scaleX(0);
	transform-origin: left center;
}
.fm-btn--fill-sweep.fm-btn--sweep-right:hover::before {
	transform: scaleX(1);
	transform-origin: right center;
}

/* Top → Bottom: enter top-to-bottom, exit also top-to-bottom */
.fm-btn--fill-sweep.fm-btn--sweep-top::before {
	transform: scaleY(0);
	transform-origin: bottom center;
}
.fm-btn--fill-sweep.fm-btn--sweep-top:hover::before {
	transform: scaleY(1);
	transform-origin: top center;
}

/* Bottom → Top: enter bottom-to-top, exit also bottom-to-top */
.fm-btn--fill-sweep.fm-btn--sweep-bottom::before {
	transform: scaleY(0);
	transform-origin: top center;
}
.fm-btn--fill-sweep.fm-btn--sweep-bottom:hover::before {
	transform: scaleY(1);
	transform-origin: bottom center;
}

/* Text flips to white when fill covers button */
.fm-btn--fill-sweep:hover .fm-btn__text {
	color: #ffffff;
}

/* ---- Active / Press ---- */
.fm-btn--fill-sweep:active {
	transform: none;
}

/* ============================================================
   Preset: Text Roll
   Two text layers stacked — on hover the bottom rolls into view,
   pushing the top out. overflow: hidden clips the transition.
   ============================================================ */

.fm-btn--text-roll {
	background-color: #0f0f0f;
	color: #ffffff;
	border-radius: 6px;
	overflow: hidden;
}

/* Size overrides — equal padding (no icon) */
.fm-btn--text-roll.fm-btn--sm { padding: 8px 18px;  font-size: 13px; }
.fm-btn--text-roll.fm-btn--md { padding: 11px 24px; font-size: 15px; }
.fm-btn--text-roll.fm-btn--lg { padding: 14px 30px; font-size: 16px; }
.fm-btn--text-roll.fm-btn--xl { padding: 18px 38px; font-size: 18px; }

/* Roll container — clips the two text layers */
.fm-btn--text-roll .fm-btn__roll {
	display: flex;
	flex-direction: column;
	height: 1em;
	overflow: hidden;
	pointer-events: none;
}

/* Both text layers */
.fm-btn--text-roll .fm-btn__roll-top,
.fm-btn--text-roll .fm-btn__roll-bottom {
	display: block;
	height: 1em;
	line-height: 1em;
	font-weight: 500;
	letter-spacing: -0.01em;
	white-space: nowrap;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Screen reader only — visually hidden but accessible */
.fm-btn--text-roll .fm-btn__sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---- Roll Up (default) ---- */
.fm-btn--text-roll.fm-btn--roll-up .fm-btn__roll-bottom {
	transform: translateY(0);
}
.fm-btn--text-roll.fm-btn--roll-up:hover .fm-btn__roll-top {
	transform: translateY(-100%);
}
.fm-btn--text-roll.fm-btn--roll-up:hover .fm-btn__roll-bottom {
	transform: translateY(-100%);
}

/* ---- Roll Down ---- */
.fm-btn--text-roll.fm-btn--roll-down .fm-btn__roll {
	flex-direction: column-reverse;
}
.fm-btn--text-roll.fm-btn--roll-down .fm-btn__roll-bottom {
	transform: translateY(0);
}
.fm-btn--text-roll.fm-btn--roll-down:hover .fm-btn__roll-top {
	transform: translateY(100%);
}
.fm-btn--text-roll.fm-btn--roll-down:hover .fm-btn__roll-bottom {
	transform: translateY(100%);
}

/* ---- Active / Press ---- */
.fm-btn--text-roll:active {
	transform: none;
}

/* ============================================================
   Preset: Circle Radial Fill
   Fill expands from mouse entry point, collapses to exit point.
   JS sets --fm-crf-x / --fm-crf-y; will-change + cubic-bezier for smoothness.
   ============================================================ */

.fm-btn--circle-radial-fill {
	--fm-crf-fill: #0f0f0f;
	--fm-crf-x: 50%;
	--fm-crf-y: 50%;

	display: inline-flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 140px !important;
	height: 140px !important;
	border-radius: 50% !important;
	border: 1.5px solid #0f0f0f;
	background-color: transparent !important;
	padding: 0 !important;
	gap: 10px !important;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	transition: border-color 0.3s ease;
}

/* Fill layer — origin at --fm-crf-x/y, scale 0 by default */
.fm-btn--circle-radial-fill .fm-btn__crf-fill {
	position: absolute;
	width: 300%;
	height: 300%;
	border-radius: 50%;
	background-color: var(--fm-crf-fill);
	left: var(--fm-crf-x);
	top: var(--fm-crf-y);
	transform: translate(-50%, -50%) scale(0);
	transition: transform 1.15s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
	z-index: 0;
	pointer-events: none;
}

.fm-btn--circle-radial-fill.is-hovered .fm-btn__crf-fill {
	transform: translate(-50%, -50%) scale(1);
}

/* Icon + text above fill */
.fm-btn--circle-radial-fill .fm-btn__icon,
.fm-btn--circle-radial-fill .fm-btn__text {
	position: relative;
	z-index: 1;
	transition: color 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fm-btn--circle-radial-fill .fm-btn__icon {
	width: 26px;
	height: 26px;
	color: #0f0f0f;
	display: block;
}

.fm-btn--circle-radial-fill .fm-btn__text {
	color: #0f0f0f;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
}

.fm-btn--circle-radial-fill.is-hovered .fm-btn__text,
.fm-btn--circle-radial-fill.is-hovered .fm-btn__icon {
	color: #ffffff;
}

/* ---- Size variants ---- */
/* SM: 100px  MD: 140px  LG: 180px  XL: 220px */
.fm-btn--circle-radial-fill.fm-btn--sm { width: 100px !important; height: 100px !important; gap: 7px !important; }
.fm-btn--circle-radial-fill.fm-btn--sm .fm-btn__icon { width: 20px; height: 20px; }
.fm-btn--circle-radial-fill.fm-btn--sm .fm-btn__text { font-size: 11px; }

.fm-btn--circle-radial-fill.fm-btn--md { width: 140px !important; height: 140px !important; gap: 10px !important; }
.fm-btn--circle-radial-fill.fm-btn--md .fm-btn__icon { width: 26px; height: 26px; }
.fm-btn--circle-radial-fill.fm-btn--md .fm-btn__text { font-size: 13px; }

.fm-btn--circle-radial-fill.fm-btn--lg { width: 180px !important; height: 180px !important; gap: 12px !important; }
.fm-btn--circle-radial-fill.fm-btn--lg .fm-btn__icon { width: 32px; height: 32px; }
.fm-btn--circle-radial-fill.fm-btn--lg .fm-btn__text { font-size: 15px; }

.fm-btn--circle-radial-fill.fm-btn--xl { width: 220px !important; height: 220px !important; gap: 14px !important; }
.fm-btn--circle-radial-fill.fm-btn--xl .fm-btn__icon { width: 38px; height: 38px; }
.fm-btn--circle-radial-fill.fm-btn--xl .fm-btn__text { font-size: 17px; }

/* ============================================================
   Global: Glow Effect
   Works on all presets. Controlled via Glow Effect panel section.
   ============================================================ */

/* Default Glow — always visible */
.fm-btn--glow-default {
	box-shadow: 0 0 18px 4px var(--fm-glow-color, rgba(99, 102, 241, 0.5));
	transition: box-shadow 0.3s ease;
}

/* Hover Glow — appears only on hover */
.fm-btn--glow-hover {
	box-shadow: none;
	transition: box-shadow 0.3s ease;
}

.fm-btn--glow-hover:hover {
	box-shadow: 0 0 18px 4px var(--fm-glow-color, rgba(99, 102, 241, 0.5));
}

/* ============================================================
   Reduced Motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
	.fm-btn,
	.fm-btn__text,
	.fm-btn__icon-wrap,
	.fm-btn__icon,
	.fm-btn__crf-fill {
		transition: none !important;
		animation: none !important;
	}
}
