.radioBox {
	width: 300px;
	padding: 10px;
	position: absolute;
	bottom: 10px;
	right: 30px;
	z-index: 99;
	background-color: rgba(255, 255, 255, 0.9);
	box-sizing: border-box;
	border-radius: 5px;
}
.radioBox p {
	font-size: 0.8em;
	line-height: 18px;
}
.radioBox p:before {
	display: inline-block;
	font-family: 'marurino';
	content: '\e921';
	font-size: 18px;
	line-height: 1em;
	width: 18px;
	margin-right: 5px;
	vertical-align: middle;
}
div.jp-audio {
	width: 100%;
	height: 34px;
	background-color: #7f97af;
}
div.jp-interface {
	position: relative;
	width: 100%;
}
div.jp-audio div.jp-type-single div.jp-interface {
	height: 34px;
}

/* @group CONTROLS */

div.jp-interface ul.jp-controls {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
}
div.jp-audio ul.jp-controls {
	width: 100%;
	margin-top: 5px !important;
	display: flex;
	justify-content: flex-start;
}
div.jp-audio li {
	/*float:left;*/
}
div.jp-interface ul.jp-controls a {
	display: block;
	overflow: hidden;
	color: transparent;
}
a.jp-play, a.jp-pause, a.jp-stop {
	width: 34px;
	height: 34px;
	position: relative;
	display: block;
	border-right: 1px solid #ccc;
	box-sizing: border-box;
}
a.jp-play:before, a.jp-pause:before, a.jp-stop:before {
	font-family: 'marurino';
	font-size: 18px;
	line-height: 34px;
	margin-right: 0;
	vertical-align: middle;
	color: #fff;
	display: block;
	width: 34px;
	height: 34px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}
a.jp-play {}
a.jp-play:before {
	content: '\e954';
}
a.jp-play:hover:before {
	color: #000;
}
a.jp-pause {
	display: none;
}
a.jp-pause:before {
	content: '';
	top: 12px;
	left: 10px;
	width: 4px;
	height: 10px;
	background-color: #fff;
}
a.jp-pause:after {
	position: absolute;
	content: '';
	top: 12px;
	left: 17px;
	width: 4px;
	height: 10px;
	background-color: #fff;
}
a.jp-pause:hover:before,a.jp-pause:hover:after {
	background-color: #000;
}
a.jp-stop:before {
	content: '';
	top: 12px;
	left: 12px;
	width: 10px;
	height: 10px;
	background-color: #ccc;
}
a.jp-stop:hover:before {
	background-color: #000;
}

/* @end */


/* @group progress bar */

div.jp-progress {
	overflow: hidden;
	background-color: #ddd;
}
div.jp-audio div.jp-progress {}
div.jp-audio div.jp-type-single div.jp-progress {
	height: 10px;
	width: 110px;
	position: absolute;
	left: 80px;
	top: 11px;
}
div.jp-seek-bar {
	width: 0px;
	height: 100%;
	cursor: pointer;
	background-color: #ccc;
}
div.jp-play-bar {
	width: 0px;
	height: 100%;
	background-color: #000;
}

/* The seeking class is added/removed inside jPlayer */

div.jp-seeking-bg {
	/*	background: url("jplayer.blue.monday.seeking.gif");*/
}

/* @end */


/* @group volume controls */

div.jp-audio div.jp-type-single .jp-muteicon {
	width: 17px;
	height: 34px;
	margin-left: 135px;
	position: relative;
}
div.jp-audio div.jp-type-single .jp-muteicon:before {
	font-family: 'marurino';
	content: '\e90e';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -0.5em;
	color: #fff;
}
div.jp-volume-bar {
	position: absolute;
	overflow: hidden;
	width: 40px;
	height: 5px;
	cursor: pointer;
	background-color: #ccc;
}
div.jp-audio div.jp-volume-bar {
	top: 13px;
	left: 225px;
}
div.jp-audio-stream div.jp-volume-bar {
	top: 37px;
	left: 92px;
}
div.jp-video div.jp-volume-bar {
	top: 17px;
	left: 72px;
}
div.jp-volume-bar-value {
	width: 0px;
	height: 5px;
	background-color: #000;
}
@media screen and (max-width:736px) {
	div.jp-audio div.jp-type-single div.jp-progress {
		height: 10px;
		width: 210px;
		position: absolute;
		left: 80px;
		top
	}
	div.jp-audio div.jp-type-single .jp-muteicon {
		display: none;
	}
}
@media screen and (max-width:320px) {
	div.jp-audio div.jp-type-single div.jp-progress {
		height: 10px;
		width: 170px;
	}
}

/* @end */