﻿/*
	This is a fix for mobile devices. For some reason the footer is obscuring part of the
	information in the screen on mobile devices. The footer will now be hidden on mobile
	devices with a width smaller than 980px
*/

@media (max-width: 980px) {
	.hidden-mobile {
		display: none;
	}
}
