.eg-audio-wrapper {
	position: relative;
	z-index: 999;
	width: 600px;
	max-width: 100%;
	margin: 10px auto 40px auto !important;
}

.eg-audio-wrapper.uk-active {
    position: relative !important;
}

.eg-audio-wrapper.uk-active .eg-audio-player .play-button {
    width: 40px;
	height: 40px;
}

.eg-audio-wrapper:after {
	display: block;
	content: "Listen here";
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: #333;
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	text-align: center;
}

.eg-audio-wrapper.uk-active {
    position: fixed !important;
    top: 60px !important;
    left: 20px;
    width: auto !important;
	margin: 10px auto !important;
}

.eg-audio-wrapper.uk-active:after {
	display: none;
}

.eg-audio-wrapper.uk-active .eg-audio-player .waveform-wrapper {
	display: none;
}

.eg-audio-player {
    background-color: rgb(13, 31, 67);
    height: 40px;
    border-radius: 35px;
    padding: 10px;
    display: flex;
    justify-content: start;
    align-items: center;
    overflow: hidden;
}

.eg-audio-player .play-button{
	width: 45px;
	max-height: 45px;
	background-color: transparent;
	cursor: pointer;
}

.eg-audio-player .play-button .play-button-icon{
	fill: #fff;
}

.eg-audio-player .hidden{
	display: none;
}

.eg-audio-player .progress-bar{
	height: 1px;
	width: 100%;
	background-color: #fff;
	position: relative;
	top: 15px;
}

.eg-audio-player .progress-bar .progress-indicator{
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #fff;
	top: -3px;
}

.eg-audio-player .waveform{
	height: 33px;
	width: 783px;
	background-color: #fff;
	-webkit-mask-image: url('/assets/player/waveform.svg');
	mask-image: url('/assets/player/waveform.svg');
}

.eg-audio-player .waveform-wrapper{
	width: 100%;
	height: 33px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	margin-left: 10px;
}

.eg-audio-player .waveform-slider{
	width: 100%;
	height: 33px;
	overflow: hidden;
	position: absolute;
}

.eg-audio-player .waveform-slider.waveform-highlight{
	width: 0%;
}