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


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

	.display-xs {
		display: none !important;
	}
}

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

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

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

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

/* MOBILE */
#topNav {
    padding: 14px 7px;
}
#topNavLogo {
	margin: 0 21px 0 0;
}
#mobileSearch {
	margin: 0;
	font-size: 1rem;
}
#topNavSearch {
	margin: 11px 0 0;
	width: 100%
}
#searchPhrase {
	border-radius: 0;
}

/* PURECHAT */
	#purechat-container .purechat-launcher-frame.purechat-launcher-frame-bottom-right {
		bottom: 65px !important;
		right: 10px !important;
		z-index: 100;
	}
	#byuFooter {
		padding-bottom: 60px;
	}
}


