:root {
	--fd-primary: #7C3AED;
	--fd-secondary: #06B6D4;
	--fd-bg: #FAF8FF;
	--fd-card: #FFFFFF;
	--fd-dark: #111827;
	--fd-muted: #6B7280;
	--fd-border: rgba(17, 24, 39, 0.10);
	--fd-radius: 24px;
	--fd-shadow: 0 24px 70px rgba(40, 24, 86, 0.16);
	--fd-footer: #0F172B;
	--fd-green: #00BB7F;
	--fd-yellow: #FAC800;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--fd-bg);
	color: var(--fd-dark);
	font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

body.fd-menu-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--fd-primary);
}

button,
input,
textarea,
select {
	font: inherit;
}

:focus-visible {
	outline: 3px solid var(--fd-secondary);
	outline-offset: 4px;
}

.fd-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	transform: translateY(-160%);
	border-radius: 999px;
	background: var(--fd-dark);
	color: #fff;
	padding: 10px 16px;
	font-weight: 800;
}

.fd-skip-link:focus {
	transform: translateY(0);
}

.fd-container {
	width: min(100% - 40px, 1160px);
	margin-inline: auto;
}

.fd-main {
	overflow: hidden;
}

.fd-site-header {
	position: relative;
	z-index: 50;
	background: rgba(250, 248, 255, 0.88);
	border-bottom: 1px solid var(--fd-border);
	backdrop-filter: blur(18px);
}

.fd-site-header--sticky {
	position: sticky;
	top: 0;
}

.fd-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 76px;
}

.fd-brand,
.fd-brand__text {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.fd-brand img {
	max-height: 44px;
	width: auto;
}

.fd-brand__text {
	font-size: 1.05rem;
	font-weight: 900;
}

.fd-brand__text--footer {
	color: #fff;
}

.fd-brand__mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--fd-primary), var(--fd-secondary));
	color: #fff;
	box-shadow: 0 10px 30px rgba(124, 58, 237, 0.28);
}

.fd-brand__mark--image {
	overflow: hidden;
	background: transparent;
	box-shadow: none;
}

.fd-brand__mark-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.fd-brand__wordmark-img {
	display: block;
	width: auto;
	max-width: min(190px, 42vw);
	max-height: 42px;
	object-fit: contain;
}

.fd-brand__name {
	display: inline-block;
	overflow-wrap: anywhere;
}

.fd-menu-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	border: 1px solid var(--fd-border);
	border-radius: 14px;
	background: var(--fd-card);
	color: var(--fd-dark);
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.fd-menu-toggle span {
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.fd-menu-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.fd-menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.fd-menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.fd-nav {
	position: fixed;
	inset: 76px 16px auto;
	display: none;
	border: 1px solid var(--fd-border);
	border-radius: 20px;
	background: var(--fd-card);
	box-shadow: var(--fd-shadow);
	padding: 14px;
}

.fd-nav.is-open {
	display: block;
}

.fd-nav__list,
.fd-footer-menu,
.fd-legal-menu {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fd-nav__list a {
	display: block;
	border-radius: 14px;
	padding: 12px 14px;
	color: var(--fd-dark);
	font-size: 0.96rem;
	font-weight: 750;
}

.fd-nav__list a:hover,
.fd-nav__list a:focus-visible {
	background: rgba(124, 58, 237, 0.09);
	color: var(--fd-primary);
}

.fd-site-header__cta {
	display: none;
}

.fd-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--fd-primary), var(--fd-secondary));
	color: #fff;
	padding: 12px 22px;
	font-weight: 850;
	line-height: 1.2;
	box-shadow: 0 18px 38px rgba(124, 58, 237, 0.28);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.fd-button:hover {
	transform: translateY(-2px);
	color: #fff;
	box-shadow: 0 24px 44px rgba(6, 182, 212, 0.24);
}

.fd-button--sm {
	min-height: 42px;
	padding: 10px 16px;
	font-size: 0.92rem;
}

.fd-button--ghost {
	border-color: var(--fd-border);
	background: rgba(255, 255, 255, 0.84);
	color: var(--fd-dark);
	box-shadow: none;
}

.fd-button--ghost:hover {
	background: #fff;
	color: var(--fd-primary);
}

.fd-button--light {
	background: #fff;
	color: var(--fd-primary);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.fd-button--light:hover {
	color: var(--fd-primary);
}

.fd-hero {
	position: relative;
	padding: 68px 0 72px;
	background:
		radial-gradient(circle at 20% 12%, rgba(141, 84, 255, 0.18), transparent 28%),
		radial-gradient(circle at 92% 20%, rgba(0, 183, 215, 0.18), transparent 26%),
		url("../img/pattern.svg");
}

.fd-hero__grid {
	display: grid;
	gap: 42px;
	align-items: center;
}

.fd-hero h1,
.fd-section h2,
.fd-final-cta h2,
.fd-page h1 {
	margin: 0;
	color: var(--fd-dark);
	font-weight: 920;
	line-height: 1.04;
}

.fd-hero h1 {
	max-width: 780px;
	font-size: 2.45rem;
}

.fd-hero__lead {
	max-width: 720px;
	margin: 22px 0 0;
	color: var(--fd-muted);
	font-size: 1.08rem;
	line-height: 1.75;
}

.fd-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	border: 1px solid rgba(124, 58, 237, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	color: var(--fd-primary);
	padding: 8px 12px;
	font-size: 0.78rem;
	font-weight: 880;
	text-transform: uppercase;
}

.fd-eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fd-secondary);
	box-shadow: 0 0 0 5px rgba(6, 182, 212, 0.12);
}

.fd-eyebrow--light {
	border-color: rgba(255, 255, 255, 0.26);
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.fd-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.fd-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 34px;
	max-width: 650px;
}

.fd-stat {
	min-width: 0;
	border: 1px solid var(--fd-border);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.76);
	padding: 14px;
	box-shadow: 0 12px 32px rgba(17, 24, 39, 0.06);
}

.fd-stat strong {
	display: block;
	color: var(--fd-dark);
	font-size: 1.08rem;
	line-height: 1.15;
	overflow-wrap: anywhere;
}

.fd-stat span {
	display: block;
	margin-top: 4px;
	color: var(--fd-muted);
	font-size: 0.8rem;
	line-height: 1.35;
}

.fd-hero__visual {
	position: relative;
}

.fd-hero__visual::before {
	content: "";
	position: absolute;
	inset: 16px;
	z-index: -1;
	border-radius: 36px;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.34), rgba(6, 182, 212, 0.30));
	filter: blur(24px);
}

.fd-hero__image {
	width: 100%;
	border: 1px solid var(--fd-border);
	border-radius: 30px;
	background: var(--fd-card);
	box-shadow: var(--fd-shadow);
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.fd-app-mockup {
	position: relative;
	max-width: 440px;
	margin-inline: auto;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 34px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
	padding: 18px;
	box-shadow: var(--fd-shadow);
}

.fd-app-mockup__bar {
	display: flex;
	gap: 7px;
	margin-bottom: 18px;
}

.fd-app-mockup__bar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #D9D3EA;
}

.fd-app-mockup__bar span:nth-child(2) {
	background: var(--fd-yellow);
}

.fd-app-mockup__bar span:nth-child(3) {
	background: var(--fd-green);
}

.fd-app-mockup__search {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-radius: 20px;
	background: #F7F4FF;
	padding: 14px 14px 14px 18px;
	color: var(--fd-muted);
}

.fd-app-mockup__search strong {
	flex: 0 0 auto;
	border-radius: 999px;
	background: var(--fd-dark);
	color: #fff;
	padding: 8px 12px;
	font-size: 0.82rem;
}

.fd-app-mockup__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0;
}

.fd-app-mockup__chips span {
	border: 1px solid var(--fd-border);
	border-radius: 999px;
	background: #fff;
	padding: 8px 11px;
	color: var(--fd-muted);
	font-size: 0.82rem;
	font-weight: 760;
}

.fd-app-mockup__card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 12px;
	border: 1px solid var(--fd-border);
	border-radius: 22px;
	background: #fff;
	padding: 16px;
	box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
}

.fd-app-mockup__card--active {
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.10), rgba(6, 182, 212, 0.10)), #fff;
}

.fd-app-mockup__card strong,
.fd-service-row strong {
	display: block;
	color: var(--fd-dark);
	line-height: 1.3;
}

.fd-app-mockup__card span,
.fd-service-row small {
	display: block;
	color: var(--fd-muted);
	font-size: 0.83rem;
}

.fd-app-mockup__card em {
	flex: 0 0 auto;
	border-radius: 999px;
	background: rgba(0, 187, 127, 0.14);
	color: #087555;
	padding: 7px 10px;
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 850;
}

.fd-app-mockup__timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-top: 18px;
}

.fd-app-mockup__timeline span {
	height: 8px;
	border-radius: 999px;
	background: rgba(124, 58, 237, 0.16);
}

.fd-app-mockup__timeline span:nth-child(2) {
	background: rgba(6, 182, 212, 0.28);
}

.fd-app-mockup__timeline span:nth-child(3) {
	background: rgba(0, 187, 127, 0.28);
}

.fd-app-mockup__timeline span:nth-child(4) {
	background: rgba(250, 200, 0, 0.36);
}

.fd-section {
	padding: 72px 0;
}

.fd-section--soft {
	background: rgba(255, 255, 255, 0.54);
}

.fd-section__header {
	max-width: 760px;
	margin-bottom: 32px;
}

.fd-section__header--wide {
	max-width: 900px;
}

.fd-section h2,
.fd-final-cta h2 {
	font-size: 2rem;
}

.fd-section__header p:not(.fd-eyebrow),
.fd-split__content > p,
.fd-cashback__copy > p,
.fd-final-cta p,
.fd-page p {
	color: var(--fd-muted);
	font-size: 1.02rem;
}

.fd-step-grid,
.fd-feature-grid {
	display: grid;
	gap: 16px;
}

.fd-step-card,
.fd-feature-card,
.fd-wallet-card,
.fd-post-card,
.fd-content-page {
	border: 1px solid var(--fd-border);
	border-radius: var(--fd-radius);
	background: var(--fd-card);
	box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
}

.fd-step-card,
.fd-feature-card,
.fd-wallet-card,
.fd-post-card {
	padding: 22px;
}

.fd-step-card {
	position: relative;
}

.fd-step-card__label,
.fd-feature-card__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 16px;
	background: var(--fd-dark);
	color: #fff;
	font-weight: 900;
}

.fd-feature-card__icon {
	background: rgba(124, 58, 237, 0.12);
	color: var(--fd-primary);
}

.fd-step-card h3,
.fd-feature-card h3,
.fd-wallet-card h3,
.fd-post-card h2 {
	margin: 18px 0 8px;
	color: var(--fd-dark);
	font-size: 1.18rem;
	line-height: 1.25;
}

.fd-step-card p,
.fd-feature-card p,
.fd-wallet-card p {
	margin: 0;
	color: var(--fd-muted);
}

.fd-split,
.fd-cashback {
	display: grid;
	gap: 34px;
	align-items: center;
}

.fd-split__content h2 {
	margin-bottom: 16px;
}

.fd-check-list {
	display: grid;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.fd-check-list li {
	position: relative;
	border: 1px solid var(--fd-border);
	border-radius: 18px;
	background: var(--fd-card);
	padding: 14px 16px 14px 46px;
	color: var(--fd-dark);
	font-weight: 780;
	box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.fd-check-list li::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: var(--fd-green);
	box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.68);
}

.fd-section-image,
.fd-service-panel {
	width: 100%;
	border: 1px solid var(--fd-border);
	border-radius: 28px;
	background: var(--fd-card);
	box-shadow: var(--fd-shadow);
}

.fd-section-image {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.fd-service-panel {
	padding: 18px;
}

.fd-service-panel__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--fd-primary), #625FFF);
	color: #fff;
	padding: 18px;
}

.fd-service-panel__top strong,
.fd-service-panel__top span {
	display: block;
}

.fd-service-panel__top span {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.85rem;
}

.fd-service-row {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
	border: 1px solid var(--fd-border);
	border-radius: 18px;
	padding: 14px;
	background: #fff;
}

.fd-service-row__icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(124, 58, 237, 0.16);
}

.fd-service-row__icon--cyan {
	background: rgba(6, 182, 212, 0.18);
}

.fd-service-row__icon--green {
	background: rgba(0, 187, 127, 0.18);
}

.fd-service-row em {
	color: #087555;
	font-style: normal;
	font-weight: 900;
}

.fd-feature-card {
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.fd-feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--fd-shadow);
}

.fd-category-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.fd-category-pill {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	border: 1px solid var(--fd-border);
	border-radius: 999px;
	background: var(--fd-card);
	color: var(--fd-dark);
	padding: 10px 16px;
	font-weight: 780;
	box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.fd-cashback__cards {
	display: grid;
	gap: 16px;
}

.fd-wallet-card {
	position: relative;
	overflow: hidden;
}

.fd-wallet-card::before {
	content: "";
	position: absolute;
	right: -38px;
	top: -38px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(0, 187, 127, 0.12);
}

.fd-wallet-card--pro::before {
	background: rgba(250, 200, 0, 0.18);
}

.fd-wallet-card__badge {
	position: relative;
	display: inline-flex;
	border-radius: 999px;
	background: rgba(0, 187, 127, 0.12);
	color: #087555;
	padding: 7px 10px;
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.fd-wallet-card--pro .fd-wallet-card__badge {
	background: rgba(249, 156, 0, 0.14);
	color: #8B4A00;
}

.fd-final-cta {
	padding: 74px 0;
	background: linear-gradient(180deg, rgba(250, 248, 255, 0), rgba(255, 255, 255, 0.58));
}

.fd-final-cta__box {
	position: relative;
	overflow: hidden;
	border-radius: 32px;
	background: linear-gradient(135deg, rgba(124, 58, 237, 0.96), rgba(6, 182, 212, 0.92)), url("../img/pattern.svg");
	color: #fff;
	padding: 34px 24px;
	box-shadow: var(--fd-shadow);
}

.fd-final-cta__box::after {
	content: "";
	position: absolute;
	right: 26px;
	bottom: 22px;
	width: min(24vw, 150px);
	height: min(24vw, 150px);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 36px;
	transform: rotate(12deg);
}

.fd-final-cta__box h2,
.fd-final-cta__box p {
	position: relative;
	z-index: 1;
	max-width: 760px;
	color: #fff;
}

.fd-final-cta__box p {
	color: rgba(255, 255, 255, 0.82);
}

.fd-final-cta__box .fd-button {
	position: relative;
	z-index: 1;
	margin-top: 14px;
}

.fd-widget-band {
	padding: 28px 0;
}

.fd-widget {
	margin: 0;
}

.fd-widget__title {
	margin: 0 0 8px;
	font-size: 1.1rem;
}

.fd-page {
	padding: 70px 0;
}

.fd-page--center {
	text-align: center;
}

.fd-page__inner {
	max-width: 860px;
}

.fd-content-page {
	padding: 24px;
}

.fd-page__header {
	margin-bottom: 22px;
}

.fd-page h1 {
	font-size: 2rem;
}

.fd-entry-content > *:first-child {
	margin-top: 0;
}

.fd-entry-content a,
.fd-post-card a {
	color: var(--fd-primary);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.fd-post-list {
	display: grid;
	gap: 16px;
}

.fd-post-card h2 {
	margin-top: 0;
}

.fd-site-footer {
	background: var(--fd-footer);
	color: rgba(255, 255, 255, 0.78);
	padding: 52px 0 26px;
}

.fd-site-footer__grid {
	display: grid;
	gap: 30px;
}

.fd-site-footer h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 1rem;
}

.fd-site-footer p {
	margin: 16px 0 0;
	max-width: 440px;
}

.fd-footer-link,
.fd-footer-menu a,
.fd-legal-menu a {
	color: rgba(255, 255, 255, 0.82);
}

.fd-footer-link {
	display: inline-flex;
	margin-top: 18px;
	font-weight: 850;
}

.fd-footer-link:hover,
.fd-footer-menu a:hover,
.fd-legal-menu a:hover {
	color: #fff;
}

.fd-footer-menu {
	gap: 9px;
}

.fd-site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 22px;
}

.fd-site-footer__bottom p {
	margin: 0;
}

.fd-legal-menu {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
}

@media (min-width: 640px) {
	.fd-step-grid,
	.fd-feature-grid,
	.fd-cashback__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fd-final-cta__box,
	.fd-content-page {
		padding: 38px;
	}
}

@media (min-width: 768px) {
	.fd-container {
		width: min(100% - 56px, 1160px);
	}

	.fd-hero {
		padding: 88px 0 92px;
	}

	.fd-hero h1 {
		font-size: 3.45rem;
	}

	.fd-section h2,
	.fd-final-cta h2 {
		font-size: 2.7rem;
	}

	.fd-page h1 {
		font-size: 2.6rem;
	}

	.fd-hero__grid,
	.fd-split,
	.fd-cashback {
		grid-template-columns: minmax(0, 1.04fr) minmax(310px, 0.96fr);
	}

	.fd-section {
		padding: 86px 0;
	}

	.fd-site-footer__grid {
		grid-template-columns: minmax(250px, 1.4fr) repeat(2, minmax(140px, 0.7fr));
	}

	.fd-site-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width: 1024px) {
	.fd-menu-toggle {
		display: none;
	}

	.fd-nav {
		position: static;
		display: block;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		padding: 0;
	}

	.fd-nav__list {
		flex-direction: row;
		align-items: center;
		gap: 4px;
	}

	.fd-nav__list a {
		padding: 9px 11px;
		font-size: 0.9rem;
	}

	.fd-site-header__cta {
		display: inline-flex;
	}

	.fd-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
	}

	.fd-hero h1 {
		font-size: 4.5rem;
	}

	.fd-section h2,
	.fd-final-cta h2 {
		font-size: 3.2rem;
	}

	.fd-page h1 {
		font-size: 3rem;
	}

	.fd-step-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.fd-feature-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.fd-feature-card {
		min-height: 250px;
	}

	.fd-final-cta__box {
		padding: 56px;
	}
}

@media (max-width: 767px) {
	.fd-hero__stats {
		grid-template-columns: 1fr;
	}

	.fd-actions .fd-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
	}
}
