.audioplayer {
	position: fixed;
    bottom: 0;
	left: 0;
    width: 100%;
	background: #FFF;
	box-shadow: 0px -8px 20px rgba(0, 0, 0, 0.1);
	height: 80px;
}

.audioplayer button:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.read-tooltip.load {
	cursor: wait;
}

.audioplayer .bar {
	display: inline-block;
	position: relative;
}

.audioplayer button.prev,
.audioplayer button.stop,
.audioplayer button.play,
.audioplayer button.next,
.audioplayer button.close {
	background-color: transparent;
	padding: 0 10px;
	height: 51px;
	min-width: 20px;
}

.read-tooltip:focus,
.audioplayer button:focus {
	outline: 0;
}

.audioplayer #text-speed {
	background: transparent;
    border: 0;
	font-weight: 600;
	cursor: pointer;
    padding-left: 5px;
	font-size: 14px;
    color: #4C515A;
}

.audioplayer #text-speed:hover {
	color: #A70A25;
}

.text-speed-list {
	display: none;
	width: 74px;
	position: absolute;
    bottom: 96px;
    background: #FFF;
    list-style: none;
    padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 0;
    text-align: center;
	margin-left: 55px;
    box-shadow: 0px 8px 17px rgba(0, 0, 0, 0.1);
	/*transition: 3s;*/
	border-radius: 10px;
}

/*.text-speed-list.active {
	display: block;
	height: 225px;
}*/

.text-speed-list li {
	font-size: 14px;
    line-height: 33px;
	color: #000;
	cursor: pointer;
}

.text-speed-list li:hover,
.text-speed-list li.active {
	color: #A70A25;
	font-weight: bold;
}

.audioplayer #text-speed option {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.audioplayer .title {
	width: calc(50% - 140px);
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	padding-right: 15px;
	padding-left: 30px;
	font-weight: 600;
	font-size: 16px;
	color: #4C515A;
}

.audioplayer button.stop,
.audioplayer button.play {
	width: 55px;
    height: 55px;
	margin: 0 25px;
	padding: 0 18px;
}

.audioplayer button.stop svg .a,
.audioplayer button.play svg .a{
	stroke: #A70A25;
	stroke-width: 2.5px;
}

.audioplayer .navigation {
	width: 220px;
	display: inline-block;
	text-align: center;
	padding: 12px 0 13px 0;
	position: relative;
}

.audioplayer .navigation .play svg,
.audioplayer .navigation .stop svg {
	height: 20px;
}

.audioplayer .control {
	width: calc(50% - 140px);
	display: inline-block;	
	float: right;
    line-height: 80px;
	padding-left: 15px;
}

.audioplayer .control .name {
	color: #4C515A;
    font-size: 14px;
}

.audioplayer button.close {
	float: right;
	background-color: #F2F4F7;
	border-radius: 100%;
	width: 45px;
	height: 45px;
	margin-right: 30px;
	margin-top: 17px;
}

.audioplayer button.close svg {
	width: 12px;
	height: 12px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.read-tooltip {
	display: none;
	position: absolute;
	width: 150px;
	height:50px;
	background: #A70A25;
	z-index: 999999;
	padding: 5px 15px 5px 25px;
    color: #000;
}

.read-tooltip:before {
	content: "";
    display: block;
    position: absolute;
    width: 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-color: #A70A25 transparent transparent;
    border-style: solid;
    border-width: 10px 10px 0;
}

.read-tooltip .load-active,
.read-tooltip .load {
	float: left;
    display: inline-block;
	width: 25px;
}

.read-tooltip .load-active svg,
.read-tooltip .load svg {
    height: 40px;
    float: left;
}

.read-tooltip .text-load,
.read-tooltip .text-active {
	display: inline-block;
    line-height: 40px;
	float: left;
	color: #FFF;
}

.read-tooltip.active .text-load,
.read-tooltip.active .load,
.read-tooltip .load-active,
.read-tooltip .text-active {
	display: none;
}

.read-tooltip.active .load-active,
.read-tooltip.active .text-active {
	display: inline-block;
}

.active-text {
	background: #d1d1d1;
}

.active-text.hide {
	background: transparent;	
}

.bar-line .progress-circle {
	transition: stroke-dashoffset .3s;
}
.audioplayer .bar-line {
    position: absolute;
	left: 50%;
    height: 55px;
	width: 55px;
	transform: translateX(-50%);
	z-index: -1;
	border-radius: 100%;
    background-color: #f2f4f7;
}

@media (max-width: 768px){
	.audioplayer {
		height: 60px;
	}
	.audioplayer .navigation {
		left: 50%;
    	transform: translateX(-50%);
		padding: 2px 0 3px 0;
	}
	.audioplayer button.close {
		padding: 0;
		margin-right: 20px;
		margin-top: 7px;
	}
	.audioplayer .control {
		width: 24px;
		padding-left: 0;
	}
	.audioplayer .title,
	.audioplayer #text-speed,
	.audioplayer .name {
		display: none;
	}
}

@media (max-width: 400px){
	.audioplayer .navigation {
		left: auto;
    	transform: unset;
	}
}