/* * {
  padding: 0;
  margin: 0;
  font-weight: 300;
  box-sizing: border-box;
  font-family: "Open Sans";
  font-weight: 300;
  color: #888;
  outline: none;
}

li {
  float: left;
  list-style: none;
}

html {
  font-size: 100%;
  font-size: 14px;
}

body {
  font-size: 1rem;
}

html {
  background: #383B44;
}
 */
.jAudio--player {
  display: table;
  overflow: hidden;
  /* background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8); */
  margin:  auto;
  width: 7.5rem;
  height: 3rem;
  position: absolute;
  bottom: 0;
  left: 30%;
}
.jAudio--player:after {
  content: " ";
  display: block;
  width: 100%;
  clear: both;
}
.jAudio--player .jAudio--ui {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3rem;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  overflow: hidden;
  padding: .3rem;
}
.jAudio--player .jAudio--status-bar {
  width: 100%;
  z-index: 1;
  position: relative;
  padding: 0;
  display: table;
}
.jAudio--player .jAudio--status-bar:after {
  content: " ";
  display: block;
  width: 100%;
  clear: both;
}
.jAudio--player .jAudio--controls {
  width:3rem;
  height: .75rem;
  position: absolute;
  left: 0;
  bottom: 18px;
 /* background: #D0E9C6; */
}
.jAudio--player .jAudio--controls:after {
  content: " ";
  display: block;
  width: 100%;
  clear: both;
}
.jAudio--player .jAudio--controls ul {
  list-style: none;
  overflow: hidden;
  width:3rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-flow: row nowrap;
}
/* .jAudio--player .jAudio--controls ul:after {
  content: " ";
  display: block;
  width: 100%;
  clear: both;
} */
.jAudio--player .jAudio--controls li {
  position: relative;
  width: calc(100% / 3);
  height: auto;
  line-height: 1;
}

.jAudio--player .jAudio--controls li:nth-child(1) .btn { left: 65%; }
.jAudio--player .jAudio--controls li:nth-child(3) .btn { left: 35%; }

.jAudio--player .jAudio--thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
.jAudio--player .jAudio--time {
  display: table;
  width: 100%;
}
.jAudio--player .jAudio--time:after {
  content: " ";
  display: block;
  width: 100%;
  clear: both;
}
.jAudio--player .jAudio--time * {
  width: 50%;
  display: block;
  float: left;
  color: #fff;
  text-shadow: 0 1px 1px #000;
  font-size: 0.16rem;
}
.jAudio--player .jAudio--time .jAudio--time-elapsed {
  text-align: left;
}
.jAudio--player .jAudio--time .jAudio--time-total {
  text-align: right;
}

.jAudio--details {
    padding: 0.3rem 0;
    text-align: center;
}


/* .jAudio--player .jAudio--details * {
  color: #fff;
  text-shadow: 0 1px 1px #000;
  font-size: .2rem;
} */
/* .jAudio--player .jAudio--details *:first-of-type {
  font-weight: bold;
} */
.jAudio--player .jAudio--details p {
  width: 100%;
  color: #fff;
}
.jAudio--player .jAudio--details p span {
  display: block;
}

.jAudio--details span:nth-child(1) { font-size: .2rem; line-height: 1; margin-bottom: .15rem; }

.jAudio--player .jAudio--progress-bar {
  margin-bottom: 5px;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-wrapper {
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played {
  height: 10px;
  background: #fff;
  position: relative;
  border-radius: 10px;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-pointer {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  background: #fff;
}
.jAudio--player .jAudio--playlist {
  overflow: visible;
  width: 3.5rem;
  position: absolute;
  padding-top: .2rem;
  right: 0;  
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item {
  display: block;
  width: 100%;
  padding: 15px;
  display: table;
  background: rgba(255,255,255,.85);
  border-radius: 10px;
  margin-bottom: .15rem;
  position: relative;
  z-index: 1;
}

.jAudio--player .jAudio--playlist .jAudio--playlist-item::before {
  content: "";
  width: .4rem;
  height: .4rem;
  border: 1px #e4cfb1 solid;
  border-radius: 50%;
  position: absolute;
  right: .35rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icon/audio-angle.png);
  background-repeat: no-repeat;
  background-position: 55% center;
}

.jAudio--player .jAudio--playlist .jAudio--playlist-item:after {
  content: " ";
  display: block;
  width: 100%;
  clear: both;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item.active {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(0,0,0,.15);
}


.jAudio--player .jAudio--playlist .jAudio--playlist-item.active::before {
  content: "";
  background-color: #075a42;
  border-color: #075a42;
  background-image: url(../img/icon/audio-paly.png);
  background-repeat: no-repeat;
  background-position: 55% center;
}



.jAudio--player .jAudio--playlist .jAudio--playlist-item:not(.active):hover {
  background: #fafafa;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item:last-of-type {
  border: 0;
  margin-bottom: 0;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-thumb {
  float: left;
  margin-right: 0.25rem;
  display: table;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-thumb:after {
  content: " ";
  display: block;
  width: 100%;
  clear: both;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-thumb img {
  height: .4rem;
  width: .4rem;
  border-radius: 5px;
  float: left;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-meta-text h4 {
  font-size: .16rem;
  color: #000;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-meta-text p {
  font-size: 0.16rem;
}

.btn {
  position: relative;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);

  background: transparent;
  border: 0;
  outline: none;
  border: 1px #cfa972 solid;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
}

.btn span {
  position: absolute;
  top: 50%;
  left: 50%;  
  transform: translate(-50%,-50%);
  display: block;
  border: 8px transparent solid;
}

#btn-prev span  {
  transform: translate(-74%,-50%);
  border-right: 12px solid #cfa972; 
  border-left: 0;
}

#btn-next span{
  transform: translate(-34%,-50%);
  border-left: 12px solid #cfa972;
  border-right: 0;
}


#btn-pause span {  height: 15px;   }
#btn-pause span:before {
  content: "";
  width: 12px;
  height: 15px;
  border-left: 3px #fff solid;
  border-right: 3px #fff solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-45%);
  z-index: 1;
}


button#btn-pause,
button#btn-play { width: .6rem !important; height: .6rem !important; background-color:  #cfa972 !important;  }

button#btn-play span {
	width: 0;
	height: 0;
	border: 10px transparent solid;
	transform: translate(-34%,-50%);
	border-left: 15px solid #fff;
	border-right: 0;
}

/* #btn-pause span:before {
  margin-right: 5px;
}
#btn-pause span:active:before, 
#btn-pause span:active:after, 
#btn-pause span.active:before, 
#btn-pause span.active:after {
  background: #fff;
  margin-right: 5px;
} */

.jAudio--player .jAudio--controls li button span:before, .jAudio--player .jAudio--controls li button span:after {
  -webkit-transition: border-color 0.3s ease 0s;
          transition: border-color 0.3s ease 0s;
}
.jAudio--player .jAudio--thumb {
  -webkit-transition: all 0.5s ease 0s;
          transition: all 0.5s ease 0s;
}
.jAudio--player .jAudio--progress-bar .jAudio--progress-bar-played {
  -webkit-transition: all 0.2s ease 0s;
          transition: all 0.2s ease 0s;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item {
  -webkit-transition: all 0.5s ease 0s;
          transition: all 0.5s ease 0s;
}
.jAudio--player .jAudio--playlist .jAudio--playlist-item * {
  -webkit-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s;
}



.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: none;
    outline-offset: 0;
}
