/**
 * USOF Editor Toolkit - responsive hide rules loaded on the front end only
 * Breakpoints match WordPress core: mobile <=600px / tablet 601-781px / desktop >=782px
 * Note: this file is not loaded in the editor, so hidden blocks stay visible in the editor.
 */

@media (max-width: 600px) {
	.usof-hidden-sm {
		display: none !important;
	}
}

@media (min-width: 601px) and (max-width: 781px) {
	.usof-hidden-md {
		display: none !important;
	}
}

@media (min-width: 782px) {
	.usof-hidden-lg-up {
		display: none !important;
	}
}
