/* .light {
	--background: #fff;
	--background-opace: rgba(255, 255, 255, 0.9);
	--background-opace-secondary: rgba(255, 255, 255, 0.95);
	--background-secondary: #fff;
	--text: #000;
	--text-accent: rgba(0, 0, 0, 0.65);
	--border-accent: rgba(68, 68, 68, 0.25);
	--background-accent: #f3f3f3;
	--overlay: rgba(0, 0, 0, 0.1);
	--box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.3);
	--border: black;
	--double-border: transparent;
} */

/* .dark {
	--background: #0d0d0d;
	--background-opace: rgba(0, 0, 0, 0.9);
	--background-opace-secondary: rgba(0, 0, 0, 0.95);
	--background-secondary: #222222;
	--text: #fff;
	--text-accent: rgba(255, 255, 255, 0.45);
	--border-accent: rgba(197, 197, 197, 0.263);
	--background-accent: #1a1a1a;
	--overlay: rgba(255, 255, 255, 0.05);
	--box-shadow: 0px 0px 24px rgba(255, 255, 255, 0.05);
	--border: white;
	--double-border: #222222;
} */

button {
	font-family: inherit;
	cursor: pointer;
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes shake {
	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
	}

	20%,
	80% {
		transform: translate3d(2px, 0, 0);
	}

	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
	}

	40%,
	60% {
		transform: translate3d(4px, 0, 0);
	}
}

@keyframes gradientAnimation {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes blur {
	0% {
		backdrop-filter: blur(0px);
		opacity: 0;
	}
	100% {
		backdrop-filter: blur(12px);
		opacity: 1;
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
