/* @media (max-width: 781px) */
/* @media (max-width: 1125px) */

/* Don't display iOS search field magnifying glass */

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
	-webkit-appearance: none;
}

input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
}

/* Responsive Classes - Gutenberg Column Breaking Point */

@media (min-width: 781px) {
	.mobile-only {
		display: none !important;
	}
}

@media (max-width: 1200px) {
	.desktop-only {
		display: none !important;
	}

	.desktop-only:first-child+* {
		margin-top: 0 !important;
	}
}

@media (max-width: 781px) {
	.mobile-order-1 {
		order: 1;
	}

	.mobile-order-2 {
		order: 2;
	}

	.mobile-order-3 {
		order: 3;
	}

	.mobile-order-4 {
		order: 4;
	}

	.mobile-hide {
		display: none !important;
	}
}


/* Responsive Classes - Mobile Menu Breaking Point */

@media (min-width: 1126px) {
	.mobile-menu-only {
		display: none !important;
	}
}

@media (max-width: 1125px) {
	.desktop-menu-only {
		display: none !important;
	}
}

/* Max Width Wide Half */
.max-width-wide-half {
	max-width: calc(var(--wp--style--global--wide-size)/2);
}

.max-width-wide-half.left {
	margin-left: auto;
}

.max-width-wide-half.right {
	margin-right: auto;
}

@media (max-width: 781px) {
	.max-width-wide-half {
		margin-left: auto;
		margin-right: auto;
	}
}

/* Max Width Half */
@media (min-width: 782px) {
	.max-width-half {
		max-width: calc(var(--wp--style--global--content-size)/2);
	}

	.max-width-half.left {
		margin-left: auto;
	}

	.max-width-half.right {
		margin-right: auto;
	}
}

/* Justify Helpers */
.justify-content-center {
	justify-content: center;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-end {
	justify-content: flex-end;
}

.height-full {
	height: 100%;
}

@media (max-width: 781px) {

	/* Mobile Text Align Helpers */
	.mobile-text-align-center {
		text-align: center;
	}

	.mobile-text-align-left {
		text-align: left;
	}

	.mobile-text-align-right {
		text-align: right;
	}

	/* Mobile Justification Helpers */
	.mobile-justify-content-center {
		justify-content: center !important;
	}

	.mobile-justify-content-flex-start {
		justify-content: flex-start !important;
	}

	.mobile-justify-content-flex-end {
		justify-content: flex-end !important;
	}
}

/* Zindex helpers */
.z-index-minus-1 {
	position: relative;
	z-index: -1;
}

.z-index-1 {
	position: relative;
	z-index: 1;
}

.z-index-2 {
	position: relative;
	z-index: 2;
}

/* Text Align Helpers */
.mobile-text-align-left {
	text-align: left;
}