/** src/style.scss **/
@media only screen and (min-width: 1024px) {
	.zee-hide-on-desktop {
		display: none !important;
	}
}
@media all and (min-width: 600px) and (max-width: 1023px) {
	.zee-hide-on-tablet {
		display: none !important;
	}
}
@media screen and (max-width: 599px) {
	.zee-hide-on-mobile {
		display: none !important;
	}
}