/* Utility Classes */
.text-center {
	text-align: center;
}

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

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

.text-muted {
	color: var(--lc-color-muted);
}

.text-primary {
	color: var(--lc-color-primary);
}

.font-weight-normal {
	font-weight: var(--lc-font-weight-normal);
}

.font-weight-medium {
	font-weight: var(--lc-font-weight-medium);
}

.font-weight-semibold {
	font-weight: var(--lc-font-weight-semibold);
}

.font-weight-bold {
	font-weight: var(--lc-font-weight-bold);
}

.hidden {
	display: none !important;
}

.visible {
	display: block !important;
}

.invisible {
	visibility: hidden !important;
}

.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

.overflow-hidden {
	overflow: hidden;
}

.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.position-fixed {
	position: fixed;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

.d-none {
	display: none;
}

.d-block {
	display: block;
}

.d-inline-block {
	display: inline-block;
}

.d-flex {
	display: flex;
}

.d-grid {
	display: grid;
}

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

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

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

.flex-wrap {
	flex-wrap: wrap;
}

.gap-1 {
	gap: var(--lc-spacing-sm);
}

.gap-2 {
	gap: var(--lc-spacing-unit);
}

.gap-3 {
	gap: var(--lc-spacing-md);
}