.jp-audio {

}
.jp-audio *:focus {
	/* outline: none; */
}
.jp-audio button::-moz-focus-inner {
	border: 0;
}
.jp-audio .jp-interface {
	background: #545867;
	position: relative;
	width: 100%;
	display: flex;
}
.jp-controls {
	position: relative;
	width: 27%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.podcast-controls {
	display: inline-block;
	width: 68%;
	padding: 30px 20px 30px 40px;
}

@media only screen and (max-width: 1024px) {
	.jp-controls {
		background: none !important;
	}
}

.jp-controls button {
	display: block;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);/* need to use mixin? */
}
.jp-controls button.jp-play {
	height: 48px;
	width: 48px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
}

.jp-controls button.jp-play:after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-35%, -50%);/* need to use mixin? */
	border: 13px solid transparent;
	border-top-width: 7.5px;
	border-right-width: 0;
	border-bottom-width: 7.5px;
	border-left-color: #284ed0;
}

.jp-state-playing .jp-controls button.jp-play:before,
.jp-state-playing .jp-controls button.jp-play:after {
	content: '';
	display: block;
	background: #284ed0;
	width: 5px;
	height: 15px;
	position: absolute;
	top: 50%;
	left: 50%;
	border: 0 none transparent;
}
.jp-state-playing .jp-controls button.jp-play:before {
	transform: translate(-125%, -50%);/* need to use mixin? */
}
.jp-state-playing .jp-controls button.jp-play:after {
	transform: translate(25%, -50%);/* need to use mixin? */
}
.jp-progress {
	/* float: left; */
	/* overflow: hidden; */
	margin-top: 10px;
	display: block;
	height: 25px;
	cursor: pointer;
}
.jp-seek-bar {
	display: block;
	background-color: #808083;
	height: 100%;
}
.jp-play-bar {
	display: block;
	height: 100%;
}
.jp-seeking-bg {
	/* background: url(http://www.ibmbigdatahub.com/sites/all/themes/ibmhub_zen/images/jplayer_seeking_bg.gif?1419303405); */
}
.jp-volume-controls {
	margin-top: 25px;
}
.jp-volume-controls button.jp-mute {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.jp-volume-controls button.jp-volume-max {
	/* right: 0; */
}

.jp-volume-controls button.jp-mute svg {
	position: static;
	bottom: auto;
	left: auto;
	fill: #fff;
	display: inline-block;
	width: 28px;
	height: 28px;
}
.jp-volume-bar {
	display: inline-block;
	height: 5px;
	width: 50px;
	cursor: pointer;
	background: #808083;
	/* overflow: hidden; */
}
.jp-volume-bar-value {
	display: block;
	height: 5px;
	background: #ffffff;
	position: relative;
}
.jp-volume-bar-value:after {
	content: '';
	display: block;
	width: 2.5px;
	height: 10px;
	background: #ffffff;
	position: absolute;
	right: 0;
	top: -2.5px;
}
.jp-current-time,
.jp-duration {
	color: #ffffff;
	font-size: 16px;
}
.jp-current-time {
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 25px;
}
.jp-duration {
	cursor: pointer;
}
.jp-details {
	display: inline-block;
}
.jp-details .jp-title-wrapper {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.3em;
	font-weight: 400;
}
.jp-no-solution {
	padding: 5px;
	font-size: .8em;
	background-color: #eee;
	border: 2px solid #009be3;
	color: #000;
	display: none;
}
.jp-no-solution a {
	color: #000;
}
.jp-no-solution span {
	font-size: 1em;
	display: block;
	text-align: center;
	font-weight: bold;
}

@media only screen and (max-width: 1024px) {
	.jp-audio .jp-interface {
		display: flex;
	}
	.jp-controls {
		width: 100px;
		flex-shrink: 0;
	}
	.jp-controls img {
		display: none;
	}
	.jp-controls button {
		position: relative;
		top: 35px;
		left: 30px;
		transform: none;
	}
	.podcast-controls {
		float: right;
		flex: 1 0 auto;
	}
	.jp-controls button.jp-play {
		height: 70px;
		width: 70px;
	}
	.jp-controls button.jp-play:after {
		border-top-width: 13.5px;
		border-bottom-width: 13.5px;
	}
}

@media only screen and (max-width: 460px) {

	.jp-controls {
		width: 74px;
	}

	.jp-controls button {
		left: 21px;
		top: 25px;
	}

	.jp-controls button.jp-play {
		width: 50px;
		height: 50px;
	}

	.jp-controls button.jp-play::after {
		border-bottom-width: 10.5px;
		border-top-width: 10.5px;
	}

	.jp-current-time {
		display: none;
	}
}

@media only screen and (max-width: 390px) {
	.podcast-controls {
		padding: 30px 15px;
	}

	.jp-controls {
		width: 60px;
	}

	.jp-controls button {
		left: 15px;
		top: 30px;
	}
}
