/* Display Classes */
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.inline {
	display: inline;
}
.flex {
	display: flex;
}
.inline-flex {
	display: inline-flex;
}
.table {
	display: table;
}
.inline-table {
	display: inline-table;
}
.table-caption {
	display: table-caption;
}
.table-cell {
	display: table-cell;
}
.table-column {
	display: table-column;
}
.table-column-group {
	display: table-column-group;
}
.table-footer-group {
	display: table-footer-group;
}
.table-header-group {
	display: table-header-group;
}
.table-row-group {
	display: table-row-group;
}
.table-row {
	display: table-row;
}
.flow-root {
	display: flow-root;
}
.grid {
	display: grid;
}
.inline-grid {
	display: inline-grid;
}
.contents {
	display: contents;
}
.list-item {
	display: list-item;
}
.hidden {
	display: none;
}

@media screen and (max-width: 1024px) {
	.lg\:hidden {
		display: none;
	}
	.lg\:flex {
		display: flex;
	}

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

@media screen and (max-width: 768px) {
	.md\:hidden {
		display: none;
	}

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

@media screen and (max-width: 640px) {
	.sm\:hidden {
		display: none;
	}

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

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

/* Text Decoration Classes */
.no-underline {
	text-decoration-line: none;
}

.underline {
	text-decoration: underline !important;
}

.hover\:underline:hover {
	text-decoration-line: underline;
}

/* Grid Column Start / End Classes */
.col-span-1 {
	grid-column: span 1 / span 1;
}
.col-span-2 {
	grid-column: span 2 / span 2;
}
.col-span-3 {
	grid-column: span 3 / span 3;
}
.col-span-4 {
	grid-column: span 4 / span 4;
}
.col-span-5 {
	grid-column: span 5 / span 5;
}
.col-span-6 {
	grid-column: span 6 / span 6;
}
.col-span-7 {
	grid-column: span 7 / span 7;
}
.col-span-8 {
	grid-column: span 8 / span 8;
}
.col-span-9 {
	grid-column: span 9 / span 9;
}
.col-span-10 {
	grid-column: span 10 / span 10;
}
.col-span-11 {
	grid-column: span 11 / span 11;
}
.col-span-12 {
	grid-column: span 12 / span 12;
}
.col-span-full {
	grid-column: 1 / -1;
}
@media (max-width: 1280px) {
	.xl\:col-span-1 {
		grid-column: span 1 / span 1;
	}
	.xl\:col-span-2 {
		grid-column: span 2 / span 2;
	}
	.xl\:col-span-3 {
		grid-column: span 3 / span 3;
	}
	.xl\:col-span-4 {
		grid-column: span 4 / span 4;
	}
	.xl\:col-span-5 {
		grid-column: span 5 / span 5;
	}
	.xl\:col-span-6 {
		grid-column: span 6 / span 6;
	}
	.xl\:col-span-7 {
		grid-column: span 7 / span 7;
	}
	.xl\:col-span-8 {
		grid-column: span 8 / span 8;
	}
	.xl\:col-span-9 {
		grid-column: span 9 / span 9;
	}
	.xl\:col-span-10 {
		grid-column: span 10 / span 10;
	}
	.xl\:col-span-11 {
		grid-column: span 11 / span 11;
	}
	.xl\:col-span-12 {
		grid-column: span 12 / span 12;
	}
	.xl\:col-span-full {
		grid-column: 1 / -1;
	}
}
@media (max-width: 1024px) {
	.lg\:col-span-1 {
		grid-column: span 1 / span 1;
	}
	.lg\:col-span-2 {
		grid-column: span 2 / span 2;
	}
	.lg\:col-span-3 {
		grid-column: span 3 / span 3;
	}
	.lg\:col-span-4 {
		grid-column: span 4 / span 4;
	}
	.lg\:col-span-5 {
		grid-column: span 5 / span 5;
	}
	.lg\:col-span-6 {
		grid-column: span 6 / span 6;
	}
	.lg\:col-span-7 {
		grid-column: span 7 / span 7;
	}
	.lg\:col-span-8 {
		grid-column: span 8 / span 8;
	}
	.lg\:col-span-9 {
		grid-column: span 9 / span 9;
	}
	.lg\:col-span-10 {
		grid-column: span 10 / span 10;
	}
	.lg\:col-span-11 {
		grid-column: span 11 / span 11;
	}
	.lg\:col-span-12 {
		grid-column: span 12 / span 12;
	}
	.lg\:col-span-full {
		grid-column: 1 / -1;
	}
}
@media (max-width: 768px) {
	.md\:col-span-1 {
		grid-column: span 1 / span 1;
	}
	.md\:col-span-2 {
		grid-column: span 2 / span 2;
	}
	.md\:col-span-3 {
		grid-column: span 3 / span 3;
	}
	.md\:col-span-4 {
		grid-column: span 4 / span 4;
	}
	.md\:col-span-5 {
		grid-column: span 5 / span 5;
	}
	.md\:col-span-6 {
		grid-column: span 6 / span 6;
	}
	.md\:col-span-7 {
		grid-column: span 7 / span 7;
	}
	.md\:col-span-8 {
		grid-column: span 8 / span 8;
	}
	.md\:col-span-9 {
		grid-column: span 9 / span 9;
	}
	.md\:col-span-10 {
		grid-column: span 10 / span 10;
	}
	.md\:col-span-11 {
		grid-column: span 11 / span 11;
	}
	.md\:col-span-12 {
		grid-column: span 12 / span 12;
	}
	.md\:col-span-full {
		grid-column: 1 / -1;
	}
}
@media (max-width: 640px) {
	.sm\:col-span-1 {
		grid-column: span 1 / span 1;
	}
	.sm\:col-span-2 {
		grid-column: span 2 / span 2;
	}
	.sm\:col-span-3 {
		grid-column: span 3 / span 3;
	}
	.sm\:col-span-4 {
		grid-column: span 4 / span 4;
	}
	.sm\:col-span-5 {
		grid-column: span 5 / span 5;
	}
	.sm\:col-span-6 {
		grid-column: span 6 / span 6;
	}
	.sm\:col-span-7 {
		grid-column: span 7 / span 7;
	}
	.sm\:col-span-8 {
		grid-column: span 8 / span 8;
	}
	.sm\:col-span-9 {
		grid-column: span 9 / span 9;
	}
	.sm\:col-span-10 {
		grid-column: span 10 / span 10;
	}
	.sm\:col-span-11 {
		grid-column: span 11 / span 11;
	}
	.sm\:col-span-12 {
		grid-column: span 12 / span 12;
	}
	.sm\:col-span-full {
		grid-column: 1 / -1;
	}
}

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

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

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

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

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

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

@media (max-width: 1024px) {
	.lg\:items-center {
		align-items: center;
	}
	.lg\:items-start {
		align-items: flex-start;
	}
	.lg\:items-end {
		align-items: flex-end;
	}
	.lg\:items-baseline {
		align-items: baseline;
	}
	.lg\:items-stretch {
		align-items: stretch;
	}
}

@media (max-width: 768px) {
	.md\:items-center {
		align-items: center;
	}
	.md\:items-start {
		align-items: flex-start;
	}
	.md\:items-end {
		align-items: flex-end;
	}
	.md\:items-baseline {
		align-items: baseline;
	}
	.md\:items-stretch {
		align-items: stretch;
	}
}

@media (max-width: 640px) {
	.sm\:items-center {
		align-items: center;
	}
	.sm\:items-start {
		align-items: flex-start;
	}
	.sm\:items-end {
		align-items: flex-end;
	}
	.sm\:items-baseline {
		align-items: baseline;
	}
	.sm\:items-stretch {
		align-items: stretch;
	}
}

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

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

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

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

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

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

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

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

@media (max-width: 1024px) {
	.lg\:justify-start {
		justify-content: start;
	}
	.lg\:justify-center {
		justify-content: center;
	}
	.lg\:justify-between {
		justify-content: space-between;
	}
	.lg\:justify-around {
		justify-content: space-around;
	}
	.lg\:justify-evenly {
		justify-content: space-evenly;
	}
	.lg\:justify-stretch {
		justify-content: stretch;
	}
}

@media (max-width: 768px) {
	.md\:justify-center {
		justify-content: center;
	}
	.md\:justify-between {
		justify-content: space-between;
	}
	.md\:justify-around {
		justify-content: space-around;
	}
	.md\:justify-evenly {
		justify-content: space-evenly;
	}
	.md\:justify-stretch {
		justify-content: stretch;
	}
}

@media (max-width: 640px) {
	.sm\:justify-center {
		justify-content: center;
	}
	.sm\:justify-between {
		justify-content: space-between;
	}
	.sm\:justify-around {
		justify-content: space-around;
	}
	.sm\:justify-evenly {
		justify-content: space-evenly;
	}
	.sm\:justify-stretch {
		justify-content: stretch;
	}
}

.capitalize {
	text-transform: capitalize;
}

.gap-4 {
	gap: 4px;
}

.gap-8 {
	gap: 8px;
}

.gap-12 {
	gap: 12px;
}

.gap-16 {
	gap: 16px;
}

.gap-24 {
	gap: 24px;
}

.gap-32 {
	gap: 32px;
}

.mb-0 {
	margin-bottom: 0px !important;
}

.mb-4 {
	margin-bottom: 4px !important;
}

.mb-8 {
	margin-bottom: 8px !important;
}

.mb-12 {
	margin-bottom: 12px !important;
}

.mb-16 {
	margin-bottom: 16px !important;
}

.mb-24 {
	margin-bottom: 24px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mt-24 {
	margin-top: 24px !important;
}

.font-light {
	font-weight: 300;
}

.font-normal {
	font-weight: 400;
}

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

.font-semibold {
	font-weight: 600;
}

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

.font-extrabold {
	font-weight: 800;
}

.sr-only {
	position: absolute;
	width: 0;
	height: 0;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0 !important;
}

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

.unstyled-list {
	list-style: none;
	padding: 0;
}

.columns-2 {
	column-count: 2;
}

@media screen and (max-width: 1280px) {
	.columns-1-tablet {
		column-count: 1;
	}
}

@media screen and (max-width: 640px) {
	.columns-1-mobile {
		column-count: 1;
	}

	.sm\:columns-1 {
		column-count: 1;
	}
}

.max-width-450 {
	max-width: 450px;
}

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

.text-uppercase {
	text-transform: uppercase;
}

.disclaimer-text {
	display: block;
	color: #373e00;
	font-family: var(--wp--preset--font-family--ibm-plex-mono);
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 122.367%; /* 12.237px */
	letter-spacing: -0.4px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.text-indent {
	text-indent: 1.65em;
}

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