@keyframes spin {
	from {
		transform: rotateZ(0);
	} to {
		transform: rotateZ(1turn);
	}
}

.green-audio-player {
	min-width: 300px;
	height: 56px;
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	border-radius: 4px;
	user-select: none;
	background-color: #fff;
	box-sizing: border-box;
	outline: none;
	margin-bottom: 15px;
}

.green-audio-player.player-accessible .play-pause-btn:hover,
.green-audio-player.player-accessible .controls:hover,
.green-audio-player.player-accessible .volume__button:hover,
.green-audio-player.player-accessible .volume__controls:hover,
.green-audio-player.player-accessible .download:hover {
	outline: dotted 1px #999;
}

.green-audio-player svg,
.green-audio-player img {
	display: block;
	outline: none;
	margin-left: -2px;
	margin-top: -2px;
}
	
.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: rgba(0, 0, 0, 0);
	border-radius: 50%;
	animation: spin 0.4s linear infinite;
}

.green-audio-player .holder .play-pause-btn {
	visibility: hidden;
	cursor: pointer;
	outline: none;
	background: #bb008e;
    padding: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.green-audio-player .holder .play-pause-btn:focus {
	outline: none;
}

.green-audio-player .middle .slider {
	flex-grow: 1;
	background-color: #e9b2dd;
	cursor: pointer;
	position: relative;
}

.green-audio-player .middle .slider .gap-progress {
	background-color: #bb008e;
	border-radius: inherit;
	position: absolute;
	pointer-events: none;
}

.green-audio-player .middle .slider .gap-progress .pin {
	height: 0;
	width: 16px;
	border-radius: 8px;
	background-color: #bb008e;
	position: absolute;
	pointer-events: all;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
}

.green-audio-player .middle .slider .gap-progress .pin::after {
	content: "";
	display: block;
	background: rgba(0, 0, 0, 0);
	width: 200%;
	height: 200%;
	margin-left: -50%;
	margin-top: -50%;
	border-radius: 50%;
}

.green-audio-player .controls {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	line-height: 18px;
	color: #55606e;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	margin-left: 15px;
	margin-right: 15px;
	outline: none;
}

.green-audio-player .textabove {
	display: flex;
	justify-content: space-between;
}

.green-audio-player .bottom {
    display: flex;
	justify-content: space-between;
}

.green-audio-player .share-buttons {
	display: flex;
	justify-content: space-between;
}

.green-audio-player .controls__share-fb,
.green-audio-player .controls__share-tw {
    margin: 3px;
}

.green-audio-player path.pathtwitter:hover,
.green-audio-player path.pathfacebook:hover {
    fill: #bb008e !important;
}
.green-audio-player a.share_icon {
    cursor: pointer;
}

.green-audio-player .textabove .left {
    color: #bb008e;
    font-weight: 500;
    font-size: 15px;
}

.green-audio-player .textabove .right {
    color: #bb008e;
    font-weight: 400;
    font-size: 12px;
}

.green-audio-player .controls .controls__slider {
	height: 10px;
    margin: 3px 0;
    border-radius: 8px;
}

.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 .controls__current-time,
.green-audio-player .controls__time-separator,
.green-audio-player .controls__total-time {
    font-size: 14px;
	color: #e9b2dd;
}


.green-audio-player .volume {
	position: relative;
}

.green-audio-player .volume .volume__button {
	cursor: pointer;
	outline: none;
}

.green-audio-player .volume .volume__button:focus {
	outline: none;
}

.green-audio-player .volume .volume__button.open path {
	fill: #44bfa3;
}

.green-audio-player .volume .volume__controls {
	width: 30px;
	height: 135px;
	background-color: rgba(0, 0, 0, 0.62);
	border-radius: 7px;
	position: absolute;
	left: -3px;
	bottom: 52px;
	flex-direction: column;
	align-items: center;
	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 {
	outline: none;
}

.green-audio-player:focus {
	outline: none;
}

.message__offscreen {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}
