@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}
@keyframes spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}
.green-audio-player {
	width: 400px;
	min-width: 300px;
	height: 56px;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 24px;
	padding-right: 24px;
	border-radius: 4px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
.green-audio-player.player-accessible .controls:hover,
.green-audio-player.player-accessible .download:hover,
.green-audio-player.player-accessible .play-pause-btn:hover,
.green-audio-player.player-accessible .volume__button:hover,
.green-audio-player.player-accessible .volume__controls:hover {
	outline: 1px dotted #999;
}
.green-audio-player img,
.green-audio-player svg {
	display: block;
}
.green-audio-player .holder {
	position: relative;
}
.green-audio-player .holder .loading .loading__spinner {
	position: absolute;
	left: -3px;
	bottom: 2px;
	width: 16px;
	height: 16px;
	border: 2px solid #b0b0b0;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: spin 0.4s linear infinite;
	animation: spin 0.4s linear infinite;
}
.green-audio-player .holder .play-pause-btn {
	cursor: pointer;
	outline: none;
}
.green-audio-player .holder .play-pause-btn:focus {
	outline: none;
}
.green-audio-player .slider {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	background-color: #e7eaf3;
	cursor: pointer;
	position: relative;
}
.green-audio-player .slider .gap-progress {
	/* background-color: #c7b180; */
	background-color: #c7b180b0;
	border-radius: inherit;
	position: absolute;
	pointer-events: none;
}
.green-audio-player .slider .gap-progress .pin {
	height: 16px;
	width: 16px;
	border-radius: 8px;
	background-color: #c7b180;
	position: absolute;
	pointer-events: all;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
}
.green-audio-player .slider .gap-progress .pin:after {
	content: "";
	display: block;
	background: transparent;
	width: 200%;
	height: 200%;
	margin-left: -50%;
	margin-top: -50%;
	border-radius: 50%;
}
.green-audio-player .controls {
	font-size: 16px;
	line-height: 18px;
	color: #bcbcbc;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/* margin-left: 15px; */
	margin-right: 15px;
	outline: none;
}
.green-audio-player .controls .controls__slider {
	margin-left: 16px;
	margin-right: 16px;
	border-radius: 2px;
	height: 4px;
}
.green-audio-player .controls .controls__slider .controls__progress {
	width: 0;
	height: 100%;
}
.green-audio-player
	.controls
	.controls__slider
	.controls__progress
	.progress__pin {
	right: -8px;
	top: -6px;
}
.green-audio-player .controls span {
	cursor: default;
}
.green-audio-player .controls:focus {
	outline: none;
}
.green-audio-player .volume {
	position: relative;
}
.green-audio-player .volume .volume__button {
	cursor: pointer;
	outline: none;
	fill: #fff;
}
.green-audio-player .volume .volume__button:focus {
	outline: none;
}
.green-audio-player .volume .volume__button.open path {
	stroke: #c7b180;
}
.green-audio-player .volume .volume__controls {
	width: 30px;
	min-width: 30px;
	height: 135px;
	background-color: rgba(0, 0, 0, 0.62);
	border-radius: 7px;
	position: absolute;
	left: -3px;
	bottom: 52px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 2;
	outline: none;
}
.green-audio-player .volume .volume__controls .volume__slider {
	margin-top: 12px;
	margin-bottom: 12px;
	width: 6px;
	border-radius: 3px;
}
.green-audio-player
	.volume
	.volume__controls
	.volume__slider
	.volume__progress {
	bottom: 0;
	height: 100%;
	width: 6px;
}
.green-audio-player
	.volume
	.volume__controls
	.volume__slider
	.volume__progress
	.volume__pin {
	left: -5px;
	top: -8px;
}
.green-audio-player .volume .volume__controls:focus {
	outline: none;
}
.green-audio-player .volume .volume__controls.hidden {
	display: none;
}
.green-audio-player .volume .volume__controls.top {
	bottom: 52px;
	left: -3px;
}
.green-audio-player .volume .volume__controls.middle {
	bottom: -54px;
	left: 54px;
}
.green-audio-player .volume .volume__controls.bottom {
	bottom: -164px;
	left: -3px;
}
.green-audio-player .download {
	display: none;
	margin-left: 16px;
	cursor: pointer;
	outline: none;
}
.green-audio-player .download:focus,
.green-audio-player:focus {
	outline: none;
}
.message__offscreen {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}
.green-audio-player {
	width: 100%;
	height: auto;
	flex-wrap: wrap;
	padding: 25px 20px;
	border-bottom: 1px solid #e7eaf3;
	border-radius: 0;
}
.premium-audio-player .player-top,
.premium-audio-player .player-bottom {
	width: 100%;
	display: flex;
	align-items: center;
}
.premium-audio-player .player-bottom {
	max-width: 873px;
	margin-right: 0;
	margin-left: auto;
	position: relative;
}
.premium-audio-player .player-top {
	margin-bottom: 23px;
}
.premium-audio-player .play-pause-btn {
	display: flex;
	align-items: center;
}
.premium-audio-player .play-pause-btn i {
	visibility: hidden;
	background: #c7b180;
	color: #fff;
	width: 62px;
	flex: 0 0 62px;
	min-width: 30px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 14px;
	border-radius: 100%;
	transform: scale(0.85);
	transition: all 0.2s linear;
	position: relative;
	top: 1.8rem;
	left: -5px;
}
.premium-audio-player.locked .play-pause-btn {
	visibility: visible !important;
	background: transparent;
	color: #a4aeb7;
	transform: none;
	position: relative;
	top: -2px;
	margin-right: 9px;
}
.premium-audio-player.locked .play-pause-btn svg {
	width: 17px;
	height: 17px;
}
.premium-audio-player.locked .episode-title {
	color: #a4aeb7;
}
.premium-audio-player .play-pause-btn:hover i {
	transform: scale(0.92);
}
.premium-audio-player .play-pause-btn:hover .episode-title {
	color: #fff;
}
.premium-audio-player .play-pause-btn[aria-label="Pause"] i {
	background: #35383c;
}
.premium-audio-player .play-pause-btn svg {
	width: 22px;
	height: 22px;
	position: relative;
	left: 1px;
}
.premium-audio-player .play-pause-btn[aria-label="Pause"] svg {
	left: 0;
}
.green-audio-player .controls .controls__slider {
	border-radius: 2rem;
	height: 7px;
}
.green-audio-player
	.controls
	.controls__slider
	.controls__progress
	.progress__pin {
	top: -5px;
}
.green-audio-player .holder {
	margin: 0 9px;
}
.green-audio-player .holder .loading .loading__spinner {
	left: 4px;
	bottom: 4px;
	width: 23px;
	height: 23px;
}
.premium-audio-player .episode-title {
	font-size: 16px;
	letter-spacing: -0.3px;
	font-weight: 500;
	color: #c7b180;
	transition: all 0.2s linear;
}
.course-episodes {
	border: 1px solid #e7eaf3;
	border-radius: 14px;
	position: relative;
	overflow: hidden;
	box-shadow: 0px 12px 15px rgba(140, 152, 164, 0.1);
	margin-bottom: 3.5rem;
}
.green-audio-player .slider .gap-progress .pin {
	background-color: #c7b180;
}
.controls__total-time {
	/* color: #ebebeb; */
}

@media screen and (max-width: 767px) {
	.green-audio-player {
		padding: 25px 7px;
	}
	.premium-audio-player .play-pause-btn i {
		top: auto;
		left: auto;
	}
	.green-audio-player .controls {
		margin: 0 auto !important;
	}
	.green-audio-player .holder {
		margin: 0;
	}
}
