/* Fix: theme sets overflow-x:hidden on both html AND body,
   which makes body create its own scroll context.
   $(window).scrollTop() always returns 0 in that case.
   Unsetting body's overflow lets the viewport handle scroll,
   while html's overflow-x:hidden still hides horizontal scrollbar. */
body {
 overflow-x: unset !important;
}

.infinitescroll-bottom-message{
 display: block;
 width: 100%;
 padding: 10px 13px;
}
.infinitescroll-bottom-message.infinitescroll-load-more{
	text-align: center;
}

.infinitescroll-bottom-message a:hover{
	opacity: 0.9;
}