
/*---------------------
  Track
-----------------------*/

.track {
	padding-top: 120px;
	padding-bottom: 40px;
	overflow: hidden;
}

.track .section-title {
	margin-bottom: 105px;
}

.track__content {
	height: 502px;
	overflow-y: auto;
}

.track__all {
	text-align: right;
	margin-bottom: 100px;
}

.jp-play {
	position: relative;
	height: 50px;
	width: 50px;
	background: transparent;
	border: 2px solid #e1e1e1;
	border-radius: 50%;
}

.jp-play:after {
	position: absolute;
	display: block;
	left: 17px;
	top: 12px;
	width: 16px;
	height: 20px;
	background: url(img/play-default.png);
	content: "";
}

.jp-state-playing .jp-play {
	background: #5c00ce !important;
	border-color: #5c00ce !important;
}

.jp-state-playing .jp-play:after {
	background: url(img/pause.png) !important;
	left: 15px;
	top: 12px;
}

.jp-audio .jp-play:focus {
	background: #5c00ce !important;
	border-color: #5c00ce !important;
}

.jp-audio .jp-play:focus:after {
	background: url(img/play.png);
}

.jp-seek-bar>div {
	height: 5px;
	background: #e1e1e1;
	cursor: pointer;
	width: 245px;
}

.player_bars {
	width: 350px;
	display: table;
	padding-left: 50px;
	position: relative;
	padding-top: 25px;
	float: left;
	margin-right: 30px;
}

.jp-play-bar {
	position: relative;
	height: 100%;
	background: #5c00ce;
	overflow: visible !important;
}

.jp-current-time {
	font-size: 15px;
	color: #111111;
	position: absolute;
	left: -50px;
	top: -9px;
}

.jp-duration {
	font-size: 15px;
	color: #111111;
	position: absolute;
	right: 0;
	top: 16px;
}

.player_controls_box {
	width: 50px;
	float: left;
	margin-right: 20px;
}

.jp-mute {
	font-size: 18px;
	border: none;
	background: none;
	color: #111111;
	position: absolute;
	left: 0;
	top: 13px;
}

.jp-volume-bar {
	height: 5px;
	width: 70px;
	background: #e1e1e1;
	cursor: pointer;
}

.jp-volume-bar-value {
	background: #5c00ce;
	height: 100%;
}

.jp-volume-controls {
	position: relative;
	width: 95px;
	float: left;
	padding-left: 30px;
	padding-top: 25px;
}

.single_player_container {
	overflow: hidden;
	margin-bottom: 40px;
}

.single_player_container:last-child {
	margin-bottom: 0;
}

.single_player_container h4 {
	font-size: 26px;
	color: #111111;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.track__pic {
	position: relative;
	z-index: 1;
}

.track__pic:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	content: "";
	z-index: -1;
}

.track__pic img {
	position: relative;
	top: -50px;
	width: calc(100% - 40px);
	margin-left: 40px;
	height: 502px;
}

/* Container adjustment */
.single_player_container_ar .jp-interface {
    direction: rtl;
}

/* Float controls to the opposite side */
.single_player_container_ar .jp-controls, .single_player_container_ar .player_bars, .single_player_container_ar .player_controls_box {
    float: right !important;
}
.single_player_container_ar .player_bars {
	width: calc(100% - 200px);
	padding-right: 50px;
	padding-left: unset !important;
	margin-left: 30px;
	margin-right: unset !important;
}
.single_player_container_ar .jp-current-time {
	right: -45px;
	left: unset !important;
}
.single_player_container_ar .jp-duration {
	left: -30px;
	right: unset !important;
}
.single_player_container_ar .jp-progress {
	direction: rtl;
}
.single_player_container_ar .jp-seek-bar>div {
	width: calc(100% - 20px);;
}
.single_player_container_ar .player_controls_box {
    /*margin-right: unset !important;
    margin-left: 20px;*/
	transform: rotate(180deg);
}

.single_player_container_ar .jp-toggles {
    float: left !important;
}

/* Fix progress and volume bar flow */
.single_player_container_ar .jp-volume-bar {
    direction: ltr; /* Keeps the bar filling left-to-right if preferred, or... */
}

/* If you want the bar to fill right-to-left */
.single_player_container_ar .jp-play-bar, .single_player_container_ar .jp-volume-bar-value {
    float: right;
}
