/* RemixDesign | woaichidapi@163.com | Redesigned by JimmyCheung */
audio::-webkit-media-controls-enclosure, video::-webkit-media-controls-enclosure {
    max-width: 100%;
  }
.audioplayer {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
   margin:0px;
    padding:0px;
    width: 100% !important;
    height: 20px;
    align-items: center;
    background: #fff;
	direction:ltr;
    left:0 !important;
 
    
}

@media (max-width: 768px) {
.audioplayer{ width:100% !important; height:40px;}

}

@media (min-width: 400px) and (max-width: 768px){
.audioplayer{ width:100% !important; height:40px;}
}

.audioplayer-playpause {
    display: flex;
    /* justify-content: center;
    align-items: center; */
   
    height: 23px;
  
    cursor: pointer;
    transition: all .2s ease-in-out;
    margin-right: 15px;
    margin-left: 0px !important;
left:0 !important;

   
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause {
    background: none;
    
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause:hover {
    background: none;
}

.audioplayer-playing .audioplayer-playpause {
    background:none;
    
}

.audioplayer-playing .audioplayer-playpause:hover {
    background:none;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
    content: '';
    justify-content: center;
    width: 0 !important;
    height: 0;
    margin-left: 2px !important;
    border-top: 10px solid transparent;
    border-right: none;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #5d5d5d;
    z-index:1000;

    
}

.audioplayer-playing .audioplayer-playpause a {
    content: '';
    display: flex;
    justify-content: space-between;
    width: 16px;
    height: 18px;
    z-index:1000;
   
}

.audioplayer-playing .audioplayer-playpause a::before, .audioplayer-playing .audioplayer-playpause a::after {
    content: '';
    width: 6px;
    height: 16px;
    background-color: #09d261;
    z-index:1000;
}

.audioplayer-time {
   
    border:solid 0px red ;
    justify-content:center;
    font-size: 12px;
    color: #a0a3a5;
	font-family:Arial, Helvetica, sans-serif;
    
    margin:32px  0px 0px 30px!important;
  
	
	
}
.time-mrg{
position: absolute !important;

}

.audioplayer-time-current {
    margin-left: 0px;
}

.audioplayer-time-duration {
    margin-right: 0px;
	display:none;
}

.audioplayer-bar {
    position: relative;
    display: flex;
    margin:0px;
    height: 12px;
    flex-basis: 0;
    flex-grow: 1;
    cursor: pointer;
     width: 100% !important;
    
     
    
}

.audioplayer-bar::before {
    content: '';
    position: absolute;
    top: 5px;
    width: 100% !important;
    height: 3px;
    background-color: #d8d8d8;
}

.audioplayer-bar > div {
    position: absolute;
    left: 0 !important;
    top: 5px;
}
.audioplayer-bar-loaded {
    z-index: 1;
    height: 3px;
    background:#d8d8d8;
}

.audioplayer-bar-played {
    flex-direction: row-reverse;
    z-index: 2;
    height: 2px;
    background: -webkit-linear-gradient(left,#09d261,#09d261);
}

.audioplayer-bar-played::after {
    display: flex;
    position: absolute;
    content: '';
    box-sizing: border-box;
    top: -4px;
    right: -1px;
    margin-right: -5px;
    width: 10px;
    height: 10px;
    background-color: #09d261;
    border-radius: 6px;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-bar-played::after {
    border:none;
    background-color: #09d261;
}

.audioplayer-playing .audioplayer-bar-played::after {
    border:none;
    background-color: #09d261;
}



.audioplayer-volume {
    display: flex;
    align-items: center;
   
}

.audioplayer-volume-button {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: none;
}

.audioplayer-volume-button a {
    display: flex;
    width: 6px;
    height: 8px;
    background-color: #9A9FB0;
    position: relative;
}

.audioplayer-volume-button a:before, .audioplayer-volume-button a:after {
    content: '';
    position: absolute;
}

.audioplayer-volume-button a:before {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 9px solid #9A9FB0;
    border-bottom: 8px solid transparent;
    border-left: none;
    top: -4px;
}

.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
    left: 10px;
    top: -2px;
    width: 6px;
    height: 6px;
    border: 6px double #9A9FB0;
    border-width: 6px 6px 0 0;
    border-radius: 0 12px 0 0;
    transform: rotate(45deg);
}

.audioplayer-mute .audioplayer-volume-button a {
    background-color: #d0d0d0;
}

.audioplayer-mute .audioplayer-volume-button a:before {
    border-right: 9px solid #d0d0d0;
}

.audioplayer-volume-adjust {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.audioplayer-volume-adjust > div {
    position: relative;
    display: flex;
    width: 0px;
    height: 2px;
    cursor: pointer;
    background-color: #BEC8D2;
}

.audioplayer-volume-adjust div div {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background-color: #a94c99;
}

/* responsive | you can change the max-width value to match your theme */

@media screen and (max-width: 679px) {
    .audioplayer-volume-adjust {
        display: none;
    }
}
