@media only screen and (max-width: 799px) { /* 800px also set in JS in index.php */
	#sd-sidebar { 
		width: 250px;
		left: -250px;
		top: 90px; /* 90px = navbar + topbar height */
		transition: 0.5s;
	}
	#sd-sidebar-header {
		display: none;
	}
	#sd-topbar-mobile { display: block; }
	#sd-navbar-time { display: none; }
	#sd-page-content {
		top: 90px; /* 90px = navbar + topbar height */
		left: 0px;
		width: 100%;
		min-height: calc(100% - 90px); /* 90px = navbar + topbar height */
		transition: 0s;
	}
	#sd-navbar {
		top: 40px; /* 40px = topbar height */
		left: 0px;
		width: 100%;
		transition: 0s;
	}
	#sd-sub-navbar {
		top: 90px; /* 40px (topbar height) + 50px (navbar height) */
		left: 0px;
		width: 100%;
		transition: 0s;
	}
	#sd-login-topbar { 
		height: 40px;
		padding-top: 8px;
	}
	.sd-inline-checkbox {
		display: block;
		margin-left: 0px;
		margin-bottom: 10px;
	}
}