/**
 * AudioTheme (plugin)
 * @link https://audiotheme.com/
 * -----------------------------------------------------------------------------
 */


/**
 * Player
 * -----------------------------------------------------------------------------
 */

.popbelly-player {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: left;
	z-index: 10;
}

.popbelly-player audio {
	display: none;
}

.popbelly-player button {
	color: inherit;
	font-size: 1em;
	min-width: 0;
}


/* Player Skin
------------------------------------------------------------------------------*/

.popbelly-player-skin {
	color: #fff;
}

.popbelly-player-skin.mejs-container,
.popbelly-player-skin.mejs-container .mejs-controls {
	background: none;
	display: block;
	width: 100%;
}

.popbelly-player-skin .mejs-layers {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.67) 100%);
	padding: 1.625em 5.375em;
	text-align: left;

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=0);
}

.popbelly-player-skin .mejs-track-details {
	display: flex;
	flex-direction: column;
	line-height: 1.5;

	justify-content: center;
}

.popbelly-player-skin .mejs-track-title {
	display: block;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;

	order: 1;
}

.popbelly-player-skin .mejs-track-artist {
	display: block;
	font-size: 14px;
	font-size: 1.4rem;

	order: 2;
}

.popbelly-player-skin .mejs-controls {
	padding: 1.875em;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.popbelly-player-skin .mejs-button {
	border: 2px solid transparent;
	border-radius: 2px;
	display: inline-block;
	font-size: 24px;
	font-size: 2.4rem;
	height: 1.66666667em;
	text-align: center;
	width: 1.66666667em;
}

.popbelly-player-skin .mejs-button button {
	background: none;
	border-radius: 0;
	border-width: 0;
	box-shadow: none;
	color: inherit;
	display: block;
	font-size: 1em;
	height: 100%;
	line-height: 1;
	margin: 0;
	outline: 0;
	padding: 0;
	position: static;
	width: 100%;
}

.popbelly-player-skin .mejs-playpause-button {
	border-color: #fff;
	padding-left: 0.08333333em;
}

.popbelly-player-skin .mejs-playpause-button:hover,
.popbelly-player-skin .mejs-playpause-button:focus {
	background-color: rgba(0, 0, 0, 0.94);
}

.popbelly-player-skin .mejs-play button:before,
.popbelly-player-skin .mejs-replay button:before {
	content: "\f152";
	padding-left: 0.125em;
}

.popbelly-player-skin .mejs-pause button:before {
	content: "\f151";
}

.popbelly-player-skin .mejs-previous-button button:before {
	content: "\f156";
}

.popbelly-player-skin .mejs-next-button button:before {
	content: "\f155";
}

.popbelly-player-skin .mejs-toggle-playlist-button {
	float: right;
	position: relative;
}

.popbelly-player-skin .mejs-toggle-playlist-button button:before {
	content: "\f153";
}

.popbelly-player-skin .mejs-toggle-playlist-button.is-open {
	border-color: #fff;
}

.popbelly-player-skin .mejs-toggle-playlist-button.is-open:hover {
	background-color: rgba(0, 0, 0, 0.94);
}

.popbelly-player-skin .mejs-toggle-playlist-button.is-open button:before {
	content: "\f20c";
}


/* Player Tracks
------------------------------------------------------------------------------*/

.popbelly-player-tracklist {
	color: #fff;
	counter-reset: li;
	display: none;
	list-style: none;
	list-style-position: inside;
	margin: 0;
	max-height: 300px;
	overflow: scroll;
	padding: 0;
	position: relative;
}

.popbelly-player-tracklist .track {
	background-color: rgba(0, 0, 0, 0.67);
	border-top: 1px solid rgba(128, 128, 128, 0.25);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.5;
	list-style: none;
	margin-bottom: 0;
	padding: 0.78571429em 2.14285714em;
	padding-right: 2.71428571em;
	transition: all 0.15s ease-in-out;
	width: 100%;
}

.popbelly-player-tracklist .track:before {
	content: counter(li, decimal-leading-zero);
	counter-increment: li;
	padding-right: 0.85714286em;
	text-align: center;
	width: 4em;
}

.popbelly-player-tracklist .track:hover,
.popbelly-player-tracklist .track.is-playing {
	background-color: rgba(0, 0, 0, 0.5);
}

.popbelly-player-tracklist .track.is-playing,
.popbelly-player-tracklist .track.is-current {
	font-weight: 700;
}

.popbelly-player-tracklist .track-title {
	cursor: pointer;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

	flex-basis: 0;
	flex-grow: 1;
	flex-shrink: 0;
}

.popbelly-player-tracklist .track-artist,
.popbelly-player-tracklist .track-duration {
	display: none;
}

/* Responsive */
@media (min-width: 480px) {
	.popbelly-player .track {
		flex-direction: row;

		align-items: center;
	}

	.popbelly-player .track-duration {
		order: 2;
	}
}

@media (min-width: 768px) {
	.popbelly-player .track-duration {
		display: block;
		min-width: 4em;
		text-align: right;
	}
}


/**
 * Tracklist
 * -----------------------------------------------------------------------------
 */

.tracklist-area {
	margin-left: auto;
	margin-right: auto;
	max-width: 770px;
}

.tracklist-area audio,
.tracklist-area .mejs-container {
	display: none;
}

.record-tracklist {
	border-top: 1px solid #ccc;
	counter-reset: li;
	margin-bottom: 2.5em;
	padding: 0;
}

.record-tracklist a {
	color: inherit;
}

.record-tracklist a:hover,
.record-tracklist a:focus {
	text-decoration: underline;
}

.record-tracklist .track {
	border-bottom: 1px solid #ccc;
	display: flex;
	margin-bottom: 0;
	padding: 1.0625em 0;
	position: relative;
	transition: all 0.2s ease-in-out;
}

.record-tracklist .track:before {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	color: #555;
	content: counter(li);
	counter-increment: li;
	display: block;
	float: left;
	line-height: 1.6875em;
	margin-right: 0.9375em;
	text-align: center;
	white-space: nowrap;
	width: 1em;
}

.record-tracklist .track-title {
	flex-basis: 0;
	flex-grow: 1;
	flex-shrink: 0;
}

.record-tracklist .track-meta {
	color: #555;
	display: none;

	justify-items: flex-end;
}

.record-tracklist .track-download-url,
.record-tracklist .track-purchase-url {
	margin-right: 1.5em;
}

.record-tracklist .track-current-time,
.record-tracklist .track-sep-duration {
	display: none;
}

.record-tracklist .is-playable {
	cursor: pointer;
}

.record-tracklist .is-playable:before {
	color: #555;
	content: "\f152";
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6875em;
	margin-right: 0.9375em;
	position: relative;
	top: -0.125em;
}

.record-tracklist .is-playable .track-duration {
	display: inline;
}

.record-tracklist .is-playing {
	color: #0f0f0f;
}

.record-tracklist .is-playing:before {
	content: "\f151";
}

.no-touch .tracklist-area .is-playable:hover:before {
	content: "\f152";
	cursor: pointer;
}

.no-touch .tracklist-area .is-playing .track-current-time,
.no-touch .tracklist-area .is-playing .track-sep-duration {
	display: inline;
}

.no-touch .tracklist-area .is-playing:before,
.no-touch .tracklist-area .is-playing:hover:before {
	content: "\f151";
}

.no-touch .tracklist-area .is-playing .track-progress,
.no-touch .tracklist-area .is-playing:hover .track-progress {
	display: block;
}

.no-touch .tracklist-area .track-meta {
	display: inline-block;
}


/**
 * Content
 * -----------------------------------------------------------------------------
 */

.archive-gig,
.archive-record,
.archive-video {
	margin-bottom: 4.375em;
}


/**
 * Front Page Sections
 * -----------------------------------------------------------------------------
 */


/* Front Page Section: Gig(s)
------------------------------------------------------------------------------*/

.front-page-section--gigs .gig-list {
	margin-bottom: 0;
}

.front-page-section--gigs:nth-child(even) .gig-list,
.front-page-section--gigs:nth-child(even) .gig-summary {
	border-color: rgba(128, 128, 128, 0.25);
}

.front-page-section--gigs:nth-child(even) .gig-summary .gig-date {
	color: #fff;
}

@media (min-width: 768px) {
	.front-page-section--gigs:nth-child(even) .gig-summary .gig-info-link {
		color: rgba(255, 255, 255, 0.87);
	}
}


/* Front Page Section: Record(s)
------------------------------------------------------------------------------*/

.front-page-section--record .entry-header {
	margin-bottom: 0;
}

.front-page-section--record .entry-header-media {
	position: relative;
}

@media (min-width: 768px) {
	.front-page-section--record .entry-header-media {
		margin-bottom: 0;
	}
}

.front-page-section--record.entry-layout--header-split .entry-header-body {
	align-items: flex-end;
	order: 1;
}


/* Front Page Section: Video(s)
------------------------------------------------------------------------------*/

.front-page-section--video .entry-header {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.front-page-section--video .entry-header-media {
		margin-bottom: 0;
	}
}

.front-page-section--video.entry-layout--header-hero {
	padding-top: 5em;
}

.front-page-section--video.entry-layout--header-hero .entry-header-media {
	margin-bottom: 5em;
}

.front-page-section--video.entry-layout--header-hero .entry-title {
	margin-bottom: 0;
}


/* Gig
------------------------------------------------------------------------------*/

.single-gig .entry-subtitle .gig-location .country-name,
.single-gig .entry-subtitle .gig-location .sep-country-name {
	display: none;
}

.gig-time {
	text-transform: uppercase;
}

.venue-map-link {
	display: none;
}

.venue-meta {
	color: #555;
	font-size: 14px;
	font-size: 1.4rem;
	margin: 1.71428571em auto 0;
	max-width: 770px;
	padding-left: 30px;
	padding-right: 30px;
}

.venue-meta a {
	text-decoration: underline;
}

.venue-meta dt,
.venue-meta dd {
	clear: none;
	display: inline;
}

.venue-meta dt div,
.venue-meta dd div,
.venue-meta dt p,
.venue-meta dd p {
	display: inline;
}

.entry-layout--header-split .venue-meta,
.entry-layout--header-split-hero .venue-meta {
	text-align: left;
}

@media (min-width: 768px) {
	.venue-meta {
		padding-left: 0;
		padding-right: 0;
	}

	.entry-layout--header-split-hero .entry-header-media {
		position: relative;
	}

	.entry-layout--header-split-hero .entry-header-media .venue-meta {
		max-width: 50vw;
		padding-left: 30px;
		padding-right: 30px;
		position: absolute;
		right: 100%;
		bottom: 1.25em;
		text-align: right;
	}
}


/* Gigs
------------------------------------------------------------------------------*/

.gig-list {
	border-bottom: 1px solid #ccc;
	margin-bottom: 5em;
}

.gig-list-header {
	color: #0f0f0f;
	display: none;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 1.16666667em;
	text-transform: uppercase;
}

.gig-list-header-location-sep,
.gig-list-header-venue-sep {
	display: none;
}

.gig-description {
	color: #555;
}

.gig-summary {
	border-bottom-width: 0;
	border-top: 1px solid #ccc;
	color: #212121;
	margin-bottom: 0;
	min-height: 3.75em;
	padding: 1.5em 0;
	position: relative;
}

.gig-summary:before,
.gig-summary:after {
	display: none;
}

.gig-summary .gig-title,
.gig-summary .gig-location {
	color: inherit;
	font-family: "Overpass", sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	margin: 0;
}

.gig-summary .gig-description {
	font-size: 14px;
	font-size: 1.4rem;
}

.gig-summary .gig-description p {
	margin-bottom: 0;
}

.gig-summary .gig-date {
	color: #0f0f0f;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gig-summary .gig-date:hover,
.gig-summary .gig-date:focus {
	text-decoration: underline;
}

.gig-summary .gig-actions {
	display: flex;
	margin-bottom: 0.5em;
	margin-top: 1.125em;
	position: relative;
	z-index: 1;

	flex-flow: row nowrap;
}

.gig-summary .gig-actions .button,
.gig-summary .gig-actions button,
.gig-summary .gig-actions input {
	min-width: auto;
}

.gig-summary .gig-actions a {
	flex: 1 1 50%;
}

.gig-summary .gig-actions a + a {
	margin-left: 0.83333333em;
}

.gig-summary .gig-info-link,
.gig-summary .gig-tickets-link {
	margin-bottom: 0;
}

.gig-summary .sep-country-name,
.gig-summary .country-name {
	display: none;
}

.no-gig-venue {
	font-style: italic;
}

@media (min-width: 480px) {
	.posts-container .gig-summary {
		display: flex;
		min-height: 100%;

		align-items: center;
		flex-wrap: wrap;
	}

	.posts-container .gig-summary .gig-date,
	.posts-container .gig-summary .gig-title,
	.posts-container .gig-summary .gig-venue,
	.posts-container .gig-summary .gig-actions {
		width: 100%;
	}
}

@media (min-width: 768px) {
	.posts-container .gig-list-header {
		display: flex;
	}

	.posts-container .gig-list-header-date {
		width: 20%;
	}

	.posts-container .gig-list-header-location,
	.posts-container .gig-list-header-venue {
		width: 30%;
	}

	.posts-container .gig-summary {
		margin: 0;
		padding-bottom: 1.0625em;
		padding-top: 1.0625em;
	}

	.posts-container .gig-summary .gig-title,
	.posts-container .gig-summary .gig-venue {
		padding-right: 0;
	}

	.posts-container .gig-summary .gig-date {
		padding-right: 2%;
		width: 20%;

		order: 1;
	}

	.posts-container .gig-summary .gig-venue {
		padding-left: 0;
		width: 28%;

		flex-grow: 1;
		order: 2;
	}

	.posts-container .gig-summary .gig-title {
		width: 30%;

		flex-grow: 1;
		order: 3;
	}

	.posts-container .gig-summary .gig-actions {
		display: block;
		margin-bottom: 0;
		margin-top: 0;
		text-align: right;
		width: 22%;

		flex-grow: 0;
		order: 4;
	}

	.posts-container .gig-summary .gig-actions a {
		flex: none;
	}

	.posts-container .gig-summary .gig-actions a + a {
		margin-left: 1.14285714em;
	}

	.posts-container .gig-summary .gig-description {
		padding-left: 20%;
		width: 80%;

		order: 5;
	}

	.posts-container .gig-summary .no-gig-venue {
		width: 80%;
	}

	.posts-container .gig-summary .gig-info-link {
		background: transparent;
		border-width: 0;
		box-shadow: none;
		padding-left: 0;
		padding-right: 0;
	}

	.posts-container .gig-summary .gig-info-link:focus,
	.posts-container .gig-summary .gig-info-link:hover {
		color: currentColor;
		text-decoration: underline;
	}
}


/* Record
------------------------------------------------------------------------------*/

.record-artwork img {
	height: 100%;
	width: 100%;

	-o-object-fit: contain;
	object-fit: contain;
}

.record-details {
	margin-top: 1em;
}

.record-meta {
	margin-bottom: 1.375em;
}

.record-meta dl {
	margin: 0;
}

.record-meta dt,
.record-meta dd {
	display: inline-block;
}

.record-meta dt {
	clear: both;
	margin-bottom: 0.14285714em;
	margin-right: 0.35714286em;
}

.record-meta dd {
	margin: 0;
}

.record-meta dd:before {
	content: "\00B7";
	display: inline-block;
	margin-right: 0.25em;
}

.record-meta dd:first-of-type:before {
	display: none;
}

.record-meta dd + dt {
	margin-left: 0.71428571em;
}

.record-links {
	margin-bottom: 1.8em;
}

.record-links li {
	display: inline-block;
	margin-bottom: 1em;
	margin-right: 0.8125em;
}

.record-links li:last-child {
	margin-right: 0;
}

.record-links ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* Responsive */
@media screen and (min-width: 768px) {
	.record-details {
		margin-bottom: 0;
	}

	.record-details > :last-child {
		margin-bottom: 0;
	}

	.audiotheme_record.entry-layout--header-standard .entry-header-media,
	.audiotheme_track.entry-layout--header-standard .entry-header-media {
		max-width: 770px;
	}

	.audiotheme_record.entry-layout--header-standard .record-artwork-link,
	.audiotheme_track.entry-layout--header-standard .record-artwork-link {
		display: block;
	}

	.audiotheme_record.entry-layout--header-standard .record-details,
	.audiotheme_track.entry-layout--header-standard .record-details {
		margin-bottom: 2.75em;
	}

	.audiotheme_record.entry-layout--header-split .entry-header-body,
	.audiotheme_track.entry-layout--header-split .entry-header-body {
		padding-left: 30px;
		padding-right: 0;

		align-items: flex-end;
		order: 1;
	}
}


/**
 * Singular
 * -----------------------------------------------------------------------------
 */

@media (min-width: 768px) {
	.entry-layout--header-banner.audiotheme_gig .entry-header-body:before,
	.entry-layout--header-hero.audiotheme_gig .entry-header-body:before,
	.entry-layout--header-banner.audiotheme_video .entry-header-body:before,
	.entry-layout--header-hero.audiotheme_video .entry-header-body:before {
		display: none;
	}

	.entry-layout--header-hero.audiotheme_gig .entry-header,
	.entry-layout--header-hero.audiotheme_video .entry-header {
		background-color: transparent;
		color: inherit;
	}
}


/* Layout: Singular Layout
------------------------------------------------------------------------------*/

@media (min-width: 768px) {
	.entry-layout--header-banner.audiotheme_gig .entry-header-body,
	.entry-layout--header-hero.audiotheme_gig .entry-header-body,
	.entry-layout--header-banner.audiotheme_video .entry-header-body,
	.entry-layout--header-hero.audiotheme_video .entry-header-body {
		position: static;
	}

	.entry-layout--header-banner.audiotheme_gig .entry-title,
	.entry-layout--header-banner.audiotheme_video .entry-title {
		margin: 0.97777778em 0;
	}

	.entry-layout--header-hero.audiotheme_gig .entry-header,
	.entry-layout--header-hero.audiotheme_video .entry-header {
		display: flex;
		flex-direction: column;
	}

	.entry-layout--header-hero.audiotheme_gig .entry-header-media,
	.entry-layout--header-hero.audiotheme_video .entry-header-media {
		width: 100%;
	}

	.entry-layout--header-hero.audiotheme_gig .entry-header-body,
	.entry-layout--header-hero.audiotheme_video .entry-header-body {
		order: 1;
	}

	.entry-layout--header-offset .popbelly-player .mejs-toggle-playlist-button {
		display: none;
	}
}
