body {
	padding-top: 50px;
}

/* Navbar customization */
.navbar {
	box-shadow: 0 2px 5px #352e34;
	background: #30739f linear-gradient(to bottom, #30739f, #193b52);
	border: none;
	min-height: 50px !important;
}

.navbar-nav > li > a {
	padding-top: 15px !important;
	padding-bottom: 0 !important;
	height: 50px;
}

.navbar-brand {
	padding-top: 0 !important;
}

.navbar-nav {
	margin-bottom: 0;
	margin-top: 0;
	background-color: rgba(22, 29, 68, 0.26);
}

.navbar-nav > li {
	transition: font-size .2s;
	color: white !important;
}

.navbar-nav > li > a {
	transition: background-color .5s;
	color: white !important;
}

.navbar-nav:not(.navbar-right) > li:not(.active):hover {
	font-size: 120%;
}

.navbar-nav > li.active > a {
	font-size: 120%;
}

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover,
.navbar-nav > li > a:hover, .navbar-nav > li:not(.active) > a:visited {
	background-color: #48a0b4;
}

.navbar-nav > .active, .navbar-nav > .active > a:hover, .navbar-nav > .active > a:visited {
	background-color: #d22f49 !important;

}

.navbar-nav > .active > * {
	border-bottom: solid 1px white;
}

.current-season {
	color: white !important;
	letter-spacing: 2px;
	text-shadow: 0px 0px 2px black;
}

.season-menu, .season-menu * {
	height: auto;
	max-height: 400px;
	overflow-x: hidden;
	background-color: #4a5b6c !important;
	color: #d2d2d6 !important;
	text-shadow: 0 0 4px #000000;
	transition: color .2s ease, text-shadow .1s ease;
}

.season-menu *:hover {
	color: white !important;
	background-color: #cb917d !important;
	text-shadow: 0 0 2px black;
}

/* Mobile navbar toggle */
.icon-bar {
	background-color: #f2fbea;
}
.navbar-toggle {
	border-color: #ddd;
}

/* Table row stripes */
.footable > tbody > tr:nth-child(2n+1):not(.footable-detail-row) {
	box-shadow: 0 0 25px whitesmoke inset;
}


/* Table row hover over */
.footable > tbody > tr:hover:not(.footable-detail-row) {
	background-color: #eaeaea;
	cursor: pointer;
}

.steamicon {
	border: 1px solid #052662;
	border-radius: 5px;
	width: 24px;
	height: 24px;
}

/* Animations */

.fadein {
	animation: fadein 1s;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* Footable sort icon: closer to the title */
td.footable-sortable > span.fooicon, th.footable-sortable > span.fooicon {
	right: auto !important;
	padding-left: 5px;
}

/* Disable unnecessary bootstrap navbar collapse on small screens / phones */
/*
.navbar-collapse.collapse {
	display: block!important;
}

.navbar-nav>li, .navbar-nav {
	float: left !important;
}

.navbar-nav.navbar-right:last-child {
	!*margin-right: -15px !important;*!
}

.navbar-right {
	float: right!important;
}*/


/* Events pass through to the parent container */
.passthrough {
	pointer-events: none;
}