hr {
	opacity: .4
}

button {
	cursor: pointer;
}

.w-full {
	width: 100%;
}

.max-w-5xl {
	max-width: 64rem;
}

.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.p-6 {
	padding: .3rem;
}

.mb-10 {
	margin-bottom: 2.5rem;
}

.mb-2 {
	margin-bottom: 0.5rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-8 {
	margin-bottom: 2rem;
}

.mb-1 {
	margin-bottom: 0.25rem;
}

.mt-2 {
	margin-top: 0.5rem;
}

.mt-6 {
	margin-top: 1.5rem;
}

.mt-12 {
	margin-top: 3rem;
}

.pb-6 {
	padding-bottom: 1.5rem;
}

.pr-4 {
	padding-right: 1rem;
}

.p-2 {
	padding: 0.5rem;
}

.p-3 {
	padding: 0.75rem;
}

.px-2 {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.py-1 {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.pt-12 {
	padding-top: 3rem;
}

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

.text-right {
	text-align: right;
}

.text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.font-bold {
	font-weight: 700;
}

.font-medium {
	font-weight: 500;
}

.font-sans {
	/* font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.flex-1 {
	flex: 1 1 0%;
}

.items-center {
	align-items: center;
}

.items-stretch {
	align-items: stretch;
}

.items-end {
	align-items: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-end {
	justify-content: flex-end;
}

.justify-start {
	justify-content: flex-start;
}

.gap-1 {
	gap: 0.25rem;
}

.gap-1\.5 {
	gap: 0.375rem;
}

.gap-2 {
	gap: 0.5rem;
}

.gap-3 {
	gap: 0.75rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-6 {
	gap: 1.5rem;
}

.grid {
	display: grid;
}

.grid-cols-7 {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.col-span-1 {
	grid-column: span 1 / span 1;
}

.border {
	border-width: 1px;
}

.border-b {
	border-bottom-width: 1px;
}

.border-r {
	border-right-width: 1px;
}

.border-slate-100 {
	border-color: #f1f5f9;
}

.border-slate-200 {
	border-color: #e2e8f0;
}

.border-slate-700 {
	border-color: #334155;
}

.border-emerald-200 {
	border-color: #a7f3d0;
}

.border-amber-200 {
	border-color: #fde68a;
}

.border-slate-50 {
	border-color: #f8fafc;
}

.rounded-lg {
	border-radius: 0.5rem;
}

.rounded-xl {
	border-radius: 0.75rem;
}

.rounded-2xl {
	border-radius: 1rem;
}

.rounded-full {
	border-radius: 9999px;
}

.bg-white {
	background-color: #ffffff;
}

.bg-slate-50 {
	background-color: #f8fafc;
}

.bg-slate-900 {
	background-color: #0f172a;
}

.bg-slate-800 {
	background-color: #1e293b;
}

.bg-emerald-50 {
	background-color: #ecfdf5;
}

.bg-emerald-500 {
	background-color: #10b981;
}

.bg-amber-50 {
	background-color: #fffbeb;
}

.bg-amber-400 {
	background-color: #fbbf24;
}

.bg-slate-300 {
	background-color: #cbd5e1;
}

.text-slate-400 {
	color: #94a3b8;
}

.text-slate-500 {
	color: #64748b;
}

.text-slate-600 {
	color: #475569;
}

.text-slate-700 {
	color: #334155;
}

.text-slate-800 {
	color: #1e293b;
}

.text-slate-900 {
	color: #0f172a;
}

.text-white {
	color: #ffffff;
}

.text-emerald-600 {
	color: #059669;
}

.text-amber-600 {
	color: #d97706;
}

.shadow-sm {
	box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.shadow-xl {
	box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.overflow-hidden {
	overflow: hidden;
}

.uppercase {
	text-transform: uppercase;
}

.tracking-wider {
	letter-spacing: 0.05em;
}

.leading-tight {
	line-height: 1.25;
}

.w-3 {
	width: 0.75rem;
}

.h-3 {
	height: 0.75rem;
}

.w-4 {
	width: 1rem;
}

.h-4 {
	height: 1rem;
}

.w-8 {
	width: 2rem;
}

.h-8 {
	height: 2rem;
}

.w-20 {
	width: 5rem;
}

.w-40 {
	width: 10rem;
}

.h-12 {
	height: 3rem;
}

.h-16 {
	height: 4rem;
}

.h-24 {
	height: 6rem;
}

.min-h-\[80px\] {
	min-height: 80px;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.top-full {
	top: 100%;
}

.bottom-full {
	bottom: 100%;
}

.left-1\/2 {
	left: 50%;
}

.top-16 {
	top: 4rem;
}

.-right-2 {
	right: -0.5rem;
}

.-translate-x-1\/2 {
	transform: translateX(-50%);
}

.transform {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.transition-colors {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.transition-opacity {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.duration-200 {
	transition-duration: 200ms;
}

.duration-300 {
	transition-duration: 300ms;
}

.opacity-0 {
	opacity: 0;
}

.pointer-events-none {
	pointer-events: none;
}

.z-0 {
	z-index: 0;
}

.z-10 {
	z-index: 10;
}

.space-y-4> :not([hidden])~ :not([hidden]) {
	margin-top: 1rem;
}

.space-y-16> :not([hidden])~ :not([hidden]) {
	margin-top: 4rem;
}

.max-w-lg {
	max-width: 32rem;
}

.shrink-0 {
	flex-shrink: 0;
}

.hidden {
	display: none;
}

/* Perspective */
.perspective-1000 {
	perspective: 1000px;
}

/* Custom tooltip arrow */
.tooltip-arrow-top {
	border-width: 4px;
	border-color: transparent;
	border-top-color: #0f172a;
}

.tooltip-arrow-bottom {
	border-width: 4px;
	border-color: transparent;
	border-bottom-color: #0f172a;
}

/* Hover effects */
.group:hover .group-hover\:opacity-100 {
	opacity: 1;
}

.group:hover .group-hover\:-translate-y-1 {
	transform: translateY(-0.25rem);
}

.group:hover .group-hover\:translate-y-1 {
	transform: translateY(0.25rem);
}

button:hover.hover\:bg-slate-100 {
	background-color: #f1f5f9;
}

button:hover.hover\:bg-slate-700 {
	background-color: #334155;
}

/* Responsive */
@media (min-width: 768px) {
	.md\:text-left {
		text-align: left;
	}

	.md\:flex {
		display: flex;
	}

	.md\:block {
		display: block;
	}

	.md\:items-end {
		align-items: flex-end;
	}

	.md\:justify-between {
		justify-content: space-between;
	}

	.md\:mt-0 {
		margin-top: 0;
	}

	.md\:mx-0 {
		margin-left: 0;
		margin-right: 0;
	}

	.md\:justify-start {
		justify-content: flex-start;
	}

	.md\:hidden {
		display: none;
	}

	.md\:flex-row {
		flex-direction: row;
	}

	.md\:w-auto {
		width: auto;
	}

	.md\:p-8 {
		padding: 2rem;
	}
}

@media (min-width: 640px) {
	.sm\:flex-row {
		flex-direction: row;
	}
}

svg.icon {
	display: inline-block;
	vertical-align: middle;
}