/*  -------------- category audio player --------------- */

.podcast-wrap .audio-player,
.podcast-wrap .audio-player div,
.podcast-wrap .audio-player h1,
.podcast-wrap .audio-player a,
.podcast-wrap .audio-player img,
.podcast-wrap .audio-player span,
.podcast-wrap .audio-player button {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}
.podcast-wrap {
	background: rgba(0, 0, 0, 0.8);
	width: 100%;
	padding: 5px;
	display: block;
	border-radius: 5px;
	position: relative;
}
.podcast-wrap .audio-player {
    width: 800px;
	max-width: 100%;
	margin: 0 auto;
    height: 150px;
 	position: relative;
 	background-color: #000;
}

.podcast-wrap .audio-player .title {
    position: absolute;
    top: 18px;
    left: 175px;
    font-size: 18px;
    color: #ececec;
	z-index: 5;
	font-size: 16px;
}
.podcast-wrap .audio-player .buttons {
	position: absolute;
	top: 18px;
	right: 10px;
	z-index: 10;
}
.podcast-wrap .audio-player .buttons .far, .podcast-wrap .audio-player .buttons .fas {
	color: #FFF;
	font-size: 30px;
	cursor: pointer;
	cursor: hand;
	margin-right: 5px;
	vertical-align: middle;
}
/* Cover */
.podcast-wrap .audio-player .cover {
	position: absolute;
	top: 0;
	left: 0;
	height: 150px;
	width: 150px;
}
.podcast-wrap .mejs__container {
	background: transparent;
	height: 150px !important;
}

.podcast-wrap .mejs__controls {
	height: 110px;
	left: 60px;
	background: none;
}

/* Buttons */
.podcast-wrap .mejs__controls .mejs__button button {
	cursor: pointer;
	display: block;
	position: absolute;
	text-indent: -9999px;
}

/* Play & Pause */
.podcast-wrap .mejs__controls .mejs__play button,
.podcast-wrap .mejs__controls .mejs__pause button {
	width: 40px;
	height: 40px;
	top: 54px;
	left: 120px;
	background-color: transparent;
	background-image: url(../graphics/play-pause.png);
	background-position: top center;
	background-size: 40px 80px;
	z-index: 10;
}

.podcast-wrap .mejs__controls .mejs__pause button { background-position: bottom center; }

/* Mute & Unmute */
.podcast-wrap .mejs__controls .mejs__mute button,
.podcast-wrap .mejs__controls .mejs__unmute button {
	width: 25px;
	height: 25px;
	top: 60px;
	left: 145px;
	background-color: transparent;
	background-image: url(../graphics/mute-unmute.png);
	background-position: top center;
	background-size: 25px 50px;
	z-index: 10;
}


.podcast-wrap .mejs__controls .mejs__unmute button { 
	background-position: bottom center; 
}

/* Volume Slider */
.podcast-wrap .mejs__controls .mejs__horizontal-volume-slider {
	position: absolute;
	top: 52px;
	left: 210px;
	cursor: pointer;
}

.podcast-wrap .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-total {
	width: 150px;
	height: 8px;
	background: #333;

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.podcast-wrap .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-current {
	position: absolute;
	width: 0;
	height: 6px;
	top: 1px;
	left: 1px;
	background-color: #CC0000;

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

/* Progress Slider */
.podcast-wrap .mejs__controls div.mejs__time-rail { 
	width: 500px; 
	position: absolute; 
	left: 120px;
	top: 40px;
}

.podcast-wrap .mejs__controls .mejs__time-rail span {
	position: absolute;
	display: block;
	width: 500px;
	height: 5px;
	left: 0;
	top: -5px;
	cursor: pointer;
	
	-webkit-border-radius: 2px 2px 0px 0px;
	-moz-border-radius: 2px 2px 0 px 0px;
	border-radius: 2px 2px 0px 0px;
}

.podcast-wrap .mejs__controls .mejs__time-rail .mejs__time-total { background: #990000; }

.podcast-wrap .mejs__controls .mejs__time-rail .mejs__time-loaded {
	width: 0;
	background: #cccccc;
}

.podcast-wrap .mejs__controls .mejs__time-rail .mejs__time-current {
	width: 0;
	background: #64b44c;
}

/* Volume Slider & Progress Bar Handle */
.podcast-wrap .mejs__controls .mejs__time-rail .mejs__time-handle,
.podcast-wrap .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-handle {
	position: absolute;
	display: block;
	width: 8px;
	height: 20px;
	top: -9px;
	border-radius: 5px;
	background-color: #000;
	border: 2px solid #FF0000;
}

.podcast-wrap .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-handle { top: -7px; }

/* Time Float Box */
.podcast-wrap .mejs__controls .mejs__time-rail .mejs__time-float {
	position: absolute;
	display: none;
	width: 33px;
	height: 23px;
	top: -26px;
	margin-left: -17px;
	background: url(../graphics/time-box.png);
}

.podcast-wrap .mejs__controls .mejs__time-rail .mejs__time-float-current {
	width: 33px;
	display: block;
	left: 0;
	top: 4px;

	font-family: Helvetica, Arial, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #666666;
	text-align: center;
}

.podcast-wrap .mejs__controls .mejs__time-rail .mejs__time-handle-content {
	display: none;
}
.podcast-wrap .mejs__offscreen {
	display: none;
}
@media all and (max-width: 1000px) {
	.podcast-wrap .audio-player {
		height: 200px;
	}
	.podcast-wrap .mejs__controls div.mejs__time-rail {
		top: 60px;
		width: 300px;
	}
	.podcast-wrap .mejs__controls .mejs__time-rail span {
		width: 300px;
	}
	.podcast-wrap .mejs__controls .mejs__play button,
	.podcast-wrap .mejs__controls .mejs__pause button {
		top: 74px;
	}
	.podcast-wrap .mejs__controls .mejs__mute button,
	.podcast-wrap .mejs__controls .mejs__unmute button {
		top: 80px;
	}
	.podcast-wrap .mejs__controls .mejs__horizontal-volume-slider {
		top: 72px;
	}
}
@media all and (max-width: 600px) {
	.podcast-wrap .audio-player {
		height: 400px;
	}
	.podcast-wrap .audio-player .cover {
		position: relative;
		display: block;
		margin: 0 auto;
	}
	.podcast-wrap .audio-player .title {
		top: 160px;
		left: 0;
	}
	.podcast-wrap .mejs__controls {
		left: 0;
	}
	.podcast-wrap .mejs__controls div.mejs__time-rail {
		left: 10px;
		top: 80px;
	}
	.podcast-wrap .mejs__controls .mejs__play button,
	.podcast-wrap .mejs__controls .mejs__pause button {
		left: 10px;
		top: 94px;
	}
	.podcast-wrap .mejs__controls .mejs__mute button,
	.podcast-wrap .mejs__controls .mejs__unmute button {
		left: 50px;
		top: 100px;
	}
	.podcast-wrap .mejs__controls .mejs__horizontal-volume-slider {
		left: 110px;
		top: 92px;
	}
}
