/************************************************************/
/*
/*      Utility CSS
/*
/************************************************************/
/******************************/
/* Modifier classes
/******************************/
/* Layout */
.flex {
                                                            display: flex !important;
	&.direction-row										    { flex-direction: row !important; }
	&.direction-row-reverse								    { flex-direction: row-reverse !important; }
	&.direction-column									    { flex-direction: column !important; }
	&.direction-column-reverse							    { flex-direction: column-reverse !important; }
	&.wrap												    { flex-wrap: wrap !important; }
}
.justify-content {
	&.start												    { justify-content: start !important; }
	&.center											    { justify-content: center !important; }
	&.end												    { justify-content: end !important; }
	&.around											    { justify-content: space-around !important; }
	&.between											    { justify-content: space-between !important; }
	&.evenly											    { justify-content: space-evenly !important; }
	&.stretch											    { justify-content: stretch !important; }
}
.justify-self {
	&.start												    { justify-self: start !important; }
	&.center											    { justify-self: center !important; }
	&.end												    { justify-self: end !important; }
	&.stretch											    { justify-self: stretch !important; }
}
.align-items {
	&.start												    { align-items: start !important; }
	&.baseline											    { align-items: baseline !important; }
	&.center											    { align-items: center !important; }
	&.end												    { align-items: end !important; }
	&.stretch											    { align-items: stretch !important; }
}
.align-self {
	&.start												    { align-self: start !important; }
	&.baseline											    { align-self: baseline !important; }
	&.center											    { align-self: center !important; }
	&.end												    { align-self: end !important; }
	&.stretch											    { align-self: stretch !important; }
}

/* Size */
.max-content                                                { width: max-content !important; }
.min-content                                                { width: min-content !important; }

/* Color */
.cement-brown,
.focus-cement-brown:is(:hover, :focus, :active),
.focus-cement-brown:is(:hover, :focus, :active) > a         { color: var(--wp--preset--color--cement-brown) !important; }
.eclipse-brown,
.focus-eclipse-brown:is(:hover, :focus, :active),
.focus-eclipse-brown:is(:hover, :focus, :active) > a        { color: var(--wp--preset--color--eclipse-brown) !important; }
.brick-red,
.focus-brick-red:is(:hover, :focus, :active),
.focus-brick-red:is(:hover, :focus, :active) > a            { color: var(--wp--preset--color--brick-red) !important; }
.westar-gray,
.focus-westar-gray:is(:hover, :focus, :active),
.focus-westar-gray:is(:hover, :focus, :active) > a          { color: var(--wp--preset--color--westar-gray) !important; }
.pampas-white,
.focus-pampas-white:is(:hover, :focus, :active),
.focus-pampas-white:is(:hover, :focus, :active) > a         { color: var(--wp--preset--color--pampas-white) !important; }

.bg-cement-brown 											{ background-color: var(--wp--preset--color--cement-brown) !important; }
.bg-eclipse-brown 											{ background-color: var(--wp--preset--color--eclipse-brown) !important; }
.bg-brick-red 											    { background-color: var(--wp--preset--color--brick-red) !important; }
.bg-westar-gray 											{ background-color: var(--wp--preset--color--westar-gray) !important; }
.bg-pampas-white 											{ background-color: var(--wp--preset--color--pampas-white) !important; }

/* Text */
.ff-neue-haas-grotesk-display                               { font-family: var(--wp--preset--font-family--neue-haas-grotesk-display) !important; }
.ff-neue-haas-grotesk-text                                  { font-family: var(--wp--preset--font-family--neue-haas-grotesk-text) !important; }
.ff-ivypresto-display                                       { font-family: var(--wp--preset--font-family--ivypresto-display) !important; }
.ff-ivypresto-text                                          { font-family: var(--wp--preset--font-family--ivypresto-text) !important; }
.ff-font-awesome                                            { font-family: var(--wp--preset--font-family--fontawesome) !important; }
.fs-xs											            { font-size: var(--wp--preset--font-size--x-small) !important; }
.fs-s												        { font-size: var(--wp--preset--font-size--small) !important; }
.fs-m										                { font-size: var(--wp--preset--font-size--medium) !important; }
.fs-ml										                { font-size: var(--wp--preset--font-size--medium-large) !important; }
.fs-l												        { font-size: var(--wp--preset--font-size--large) !important; }
.fs-xl											            { font-size: var(--wp--preset--font-size--x-large) !important; }
.fs-2xl											            { font-size: var(--wp--preset--font-size--2-x-large) !important; }
.fs-o											            { font-size: var(--wp--preset--font-size--omega) !important; }
.lh-eq										                { font-size: var(--wp--custom--line-height--equal) !important; }
.lh-m										                { font-size: var(--wp--custom--line-height--medium) !important; }
.lh-l												        { font-size: var(--wp--custom--line-height--large) !important; }
.fw-100												        { font-weight: 100 !important; }
.fw-200										                { font-weight: 200 !important; }
.fw-300												        { font-weight: 300 !important; }
.fw-400											            { font-weight: 400 !important; }
.fw-500										                { font-weight: 500 !important; }
.fw-600											            { font-weight: 600 !important; }
.fw-700												        { font-weight: 700 !important; }
.fw-800											            { font-weight: 800 !important; }
.fw-900												        { font-weight: 900 !important; }
.txt-upper											        { text-transform: uppercase !important; }
.txt-lower											        { text-transform: lowercase !important; }
.txt-deco-underline,
.txt-deco-underline a                                       { text-decoration: underline !important; }
.text-deco-none,
.text-deco-none	a									        { text-decoration: none !important; }

/* Images */
.cover,
.cover img											        { object-fit: cover !important; }
.contain,
.contain img										        { object-fit: contain !important; }

/* Opacity */
.opacity-full										        { opacity: 1 !important; }
.opacity-half										        { opacity: .5 !important; }
.opacity-zero										        { opacity: 0 !important; }

/* Other */
.user-select-none									        { user-select: none !important; }

/******************************/
/* Theme variables
/******************************/
body {
	@media (width <= 1200px) {
		& {
			--wp--preset--spacing--8	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--8-5	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--9	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--9-5	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--10	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--10-5	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--11	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--11-5	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--12	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--12-5	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--13	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--13-5	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--14	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--14-5	: var(--wp--preset--spacing--7-5);
			--wp--preset--spacing--15	: var(--wp--preset--spacing--7-5);
		}
	}
	
	@media (width <= 800px) {
		& {
			--wp--preset--spacing--5-5	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--6	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--7-5	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--8	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--8-5	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--9	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--9-5	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--10	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--10-5	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--11	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--11-5	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--12	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--12-5	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--13	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--13-5	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--14	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--14-5	: var(--wp--preset--spacing--5);
			--wp--preset--spacing--15	: var(--wp--preset--spacing--5);
		}
		#wpadminbar { display: none !important; }
	}
	
	@media (width <= 600px) {
		& {
			--wp--preset--spacing--4-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--5-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--6	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--7-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--8	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--8-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--9	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--9-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--10	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--10-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--11	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--11-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--12	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--12-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--13	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--13-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--14	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--14-5	: var(--wp--preset--spacing--4);
			--wp--preset--spacing--15	: var(--wp--preset--spacing--4);
		}
	}
	
	/* Replace with theme-specific variable responsiveness */
	/* @media (width <= 475px) {
		& {
			--wp--custom--header-height: 7.125rem;
		}
	}
	
	@media (width <= 320px) {
		& {
			--wp--custom--header-height: 5rem;
		}
	} */
}