/**
 * Smooth scrolling: replace Waypoint.Sticky (fixed + height placeholder) with native sticky.
 */

html,
body {
	overflow-x: hidden;
}

.sticky-wrapper {
	height: auto !important;
	min-height: 0 !important;
}

.site-header .techmarket-sticky-wrap,
.handheld-header .techmarket-sticky-wrap {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #fff;
}

.site-header .sticky-wrapper .techmarket-sticky-wrap.stuck,
.handheld-header .sticky-wrapper .techmarket-sticky-wrap.stuck {
	position: -webkit-sticky !important;
	position: sticky !important;
	top: 0 !important;
	left: auto !important;
	right: auto !important;
	animation: none !important;
}

.admin-bar .site-header .techmarket-sticky-wrap,
.admin-bar .handheld-header .techmarket-sticky-wrap {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header .techmarket-sticky-wrap,
	.admin-bar .handheld-header .techmarket-sticky-wrap {
		top: 46px;
	}
}
