/*------------------------------------------------------------------------------*/
/* Prevent Scroll
/*------------------------------------------------------------------------------*/

@media screen and (max-width: 1024px) {
	.ScreenLock {
		overflow: hidden !important;
	}

	.BodyNoScroll {
		height: 100vh;
		overflow: hidden !important;
		position: relative;
	}
}

/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
	.ScreenLock {
		/* The hack for Safari */
		height: -webkit-fill-available;
	}
}
