/* Helper Classes */
.hide {
	display: none;
}
/* End Helper Classes */

/* General Styles */
body.Songs.sub .content {
	float: none;
	margin: 0 auto;
	min-height: 32em;
}
/* End General Styles */

/* Content */
body.Resources.Songs .main-content > *:first-child {
	border-bottom: 5px solid #0CA1D4;
	text-align: center;
}
/* End Content */

/* Wrapper */
.pdf-song-list-wrapper {
	padding: 0 0 5em;
}
/* End Wrapper */

/* Container */
.container {
	text-align: left;
}
/* End Container */

/* Header */
.pdf-song-list-wrapper .container header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-flow: row nowrap;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 5px solid #0CA1D4;
	padding: 1em;
	position: relative;
}

.pdf-song-list-wrapper .container header > * {
	-webkit-flex: 0 1 50%;
	-ms-flex: 0 1 50%;
	flex: 0 1 50%;
}
/* End Header */

/* Genre Tabs */
.genre-tabs {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-flow: row wrap;
	padding: 1em 1em 0;
}

.genre-tabs .tab {
	background-color: #0CA1D4;
	color: #FFFFFF;
	padding: 2em;
	cursor: pointer;
	margin-right: .5em;
	display: block;
	margin-bottom: 1em;
	-webkit-flex: 0 1 12%;
	-ms-flex: 0 1 12%;
	flex: 0 1 12%;
	text-align: center;
	position: relative;
	transition: box-shadow .3s ease 0s;
}

.genre-tabs .tab div {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.genre-tabs .tab.genre-choice {
	box-shadow: inset 0 0 0 6px #C9AB72;
}

.genre-tabs .tab:hover {
	background-color: #7ADEFF;
}
/* End Genre Tabs */

/* Song List */
.pdf-song-list {
}

.pdf-song-list ul {
	padding: 0;
}

.pdf-song-list ul .item .row {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-flow: row nowrap;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1em;
	transition: background-color .4s ease 0s;
}

.pdf-song-list ul .item:not(.filtered):nth-child(odd) {
	background-color: #EEE;
}

.pdf-song-list ul .item.filtered.grey-bg {
	background-color: #EEE;
}

.pdf-song-list ul .item .row:hover {
	background-color: #FFF9F9;
}

.pdf-song-list ul .item .row .link span {
	border-bottom: 0px solid #0CA1D4;
	transition: border-bottom .2s ease 0s;
	cursor_: pointer;
}

.pdf-song-list ul .item .row .link span:hover {
	border-bottom: 5px solid #0CA1D4;
}

.pdf-song-list-wrapper .container header > *:nth-child(2) {
	text-align: right;
}
/* End Song List */

/* Filter */
.filter {
	cursor: pointer;
	color: #FF0004;
	position: relative;
	margin-right: 1rem;
}

.filter:before {
	position: absolute;
	left: -1.5rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	content_: '(x) ';
}
/* End Filter */

/* IE 9 Fallbacks */
.no-flexbox .genre-tabs .tab {
	width: 12%;
	display: inline-block;
}

.no-flexbox .pdf-song-list-wrapper .container header > *:nth-child(2) {
	position: absolute;
	right: 0;
}
/* End IE 9 Fallbacks */

/* 1300px max-width */
@media screen and (max-width: 1300px) {
	body.Songs.sub .content {
		width: 80%;
	}
}
/* End 1300px max-width */

/* 700px max-width */
@media screen and (max-width: 700px) {
	.filter:before {
		left: -2.5rem;
	}

	body.Songs.sub .content {
		width: 95%;
	}
}
/* End 700px max-width */

/* 550px max-width */
@media screen and (max-width: 550px) {
	.genre-tabs .tab {
		-webkit-flex: 0 1 23%;
		-ms-flex: 0 1 23%;
		flex: 0 1 23%;
	}
}
/* End 550px max-width */

/* 450px max-width */
@media screen and (max-width: 450px) {
	.filter:before {
		left: -3.5rem;
	}
}
/* End 450px max-width */
