@charset "UTF-8";
/* TABLE OF CONTENTS
- Viewport widths 768px and larger
- Viewport widths between 768-992px
- Viewport widths under 992px
----------------------------------------------------------------------------------------*/


/* VIEWPORT WIDTHS 768px AND LARGER
----------------------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) {

#mobileNavSearch {
    display: initial;
}

	.display-xs-sm,
	.display-xs,
	.display-sm,
	.display-lg,
	.display-xl,
	.display-xxl {
		display: none !important;
	}
}

/* VIEWPORT WIDTHS BETWEEN 768-992px
----------------------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991.9px) {

	.display-xs,
	.display-sm,
	.display-lg,
	.display-xl,
	.display-xxl {
		display: none !important;
	}
}

/* VIEWPORT WIDTHS UNDER 992px
----------------------------------------------------------------------------------------*/
@media only screen and (max-width: 991.9px) {

	.display-lg-xl-xxl {
		display: none !important;
	}
}