/***
Custom CSS for WordPress global styling.
Version: 12.17.20
Author: Tim Taricco
Author URL: http://www.timtaricco.com
***/

@media (min-width: 992px) {
	.show-desktop {display: block !important;} /* Show element on desktop: 992px and larger */
	.hide-desktop {display: none !important;} /* Hide element on desktop: 992px and larger */
}
@media (max-width: 992px) and (min-width: 768px) {
	.show-tablet {display: block !important;} /* Show element on tablet: between 768px and 991px */
	.hide-tablet {display: none !important;} /* Hide element on tablet: between 768px and 991px */
}
@media (max-width: 767px) {
	.show-mobile {display: block !important;} /* Show element on mobile: up to 767px */
	.hide-mobile {display: none !important;} /* Hide element on mobile: up to 767px */
}
