.ap {

  font-family: inherit;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  margin: 0 auto;
  padding: 5px 10px 5px 10px;
  color:white;
  max-width: 700px;
}

.ap__inner {
display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 40px;
    line-height: 40px;
    background: #313348;
    color: white;
}

.ap__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

.ap__item--playback > .ap__controls,
.ap__item--settings > .ap__controls {
  -webkit-box-flex: 0;
          flex: 0 35%;
}

@-webkit-keyframes fs {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fs {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.ap__item--track {
  -webkit-box-flex: 1;
          flex: 1 40%;
  padding: 0 20px;
}

.track {
  position: relative;
  width: 100%;
  align-self: flex-start;
  padding: 5px 0 0;
      font-weight: 600;
}

.track__title {
  position: absolute;
  width: 100%;
  overflow: hidden;
  padding-right: 80px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.track__time {
  position: absolute;
  top: 5px;
  right: 0;
}

.progress-container {
  position: relative;
  padding: 20px 0;
  margin-top: 0px;
  overflow: hidden;
  cursor: pointer;
}
.progress-container:hover .progress__bar:after {
  opacity: 1;
}

.progress {
  height: 3px;
  border-radius: 3px;
  background: #ddd;
}

.progress__bar,
.progress__preload {
  position: absolute;
  width: 0;
  height: 3px;
  border-radius: 3px 0 0 3px;
}

.progress__bar {
  background: steelblue;
  z-index: 1;
}
.progress__bar:after {
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 10px;
  margin-top: -3px;
  content: "";
  border-radius: 6px;
  background: steelblue;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.progress__bar--active:after {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

.progress__preload {
  background: #c4c4c4;
  z-index: 0;
}
.progress{    margin-top: 15px !important;    margin-bottom: inherit !important;}
.ap__controls svg{height: 36px;}
.ap__controls,
.ap button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  position: relative;
  display: block;
  height: 36px;
      line-height: 36px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ap__controls:active,
.ap button:active {
  background: rgba(0, 0, 0, 0.1);
}
.ap__controls:hover,
.ap button:hover {
  opacity: 1;
  background:white;
}
.ap__controls:hover svg,
.ap button:hover svg {
    fill: steelblue;
    -webkit-filter: drop-shadow(0 0 3px rgba(70, 130, 180, 0.4));
    filter: drop-shadow(0 0 3px rgba(70, 130, 180, 0.4));
}   
button.ap__controls.ap__controls--toggle.is-playing {
    background: white;
}
button.ap__controls.ap__controls--repeat.is-active {
    background: white;
}
button.ap__controls.ap__controls--playlist.is-active {
    background: white;
}
.icon-play > path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.is-playing .icon-play {
  fill: steelblue;
}

.volume-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.volume {
  position: absolute;
  left: 50%;
  bottom: 57px;
  width: 40px;
  margin-left: -20px;
  height: 120px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s cubic-bezier(0.17, 0.72, 0.26, 1.23);
  transition: all 0.3s cubic-bezier(0.17, 0.72, 0.26, 1.23);
  background: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 1px;
  z-index: 88888;
}
.volume::before, .volume::after {
  content: "";
  position: absolute;
  bottom: -12px;
  border: 7px solid transparent;
  border-top: 7px solid #f2f2f2;
  left: 50%;
  margin-left: -7px;
}
.volume::after {
  bottom: -14px;
  z-index: -1;
  border-top: 7px solid #ccc;
}

.volume-container:hover .volume {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}

.volume__track {
  position: relative;
  display: block;
  width: 3px;
  height: 100px;
  margin: 10px auto;
  background: #ddd;
  border-radius: 3px;
  overflow: hidden;
}

.volume__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: steelblue;
  height: 50%;
}

.icon-volume-off {
  display: none;
}

.has-muted .icon-volume-on {
  display: none;
}
.has-muted .icon-volume-off {
  display: inline;
  opacity: 0.7;
}

.ap__controls.is-active > svg {
  fill: steelblue;
  -webkit-filter: drop-shadow(0 0 3px rgba(70, 130, 180, 0.4));
          filter: drop-shadow(0 0 3px rgba(70, 130, 180, 0.4));
}

@media (max-width: 1024px) {
  .ap__item > .ap__controls {
    -webkit-box-flex: 1;
            flex: 1;
  }
}
@media (max-width: 580px) {
  .ap {
    min-width: 250px;
  }
  .ap__item--track {
    margin-bottom: 10px;
    padding: 0 20px;
    -webkit-box-ordinal-group: 2;
            order: 1;
    -webkit-box-flex: 1;
            flex: 1 1 100%;
  }

  .ap__item--playback,
  .ap__item--settings {
    -webkit-box-flex: 1;
            flex: 1 1 50%;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
}
/*-----------------------
    Playlist Player - PL
------------------------*/

#showplaylistsongs{
    display: block;
    overflow: hidden;
    width: 100%;
    max-width: 700px;
}
.pl-ul {
  width: 100%;
  margin: 0 auto;
  padding: 10px;

}

.pl-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  height: 40px;
  line-height: 40px;
  background: #313348;
  color: white;
}
.pl-list svg {
  fill: white;
}

.pl-list + .pl-list {
  border-top: 1px solid #eee;
}

.pl-list:not(.pl-list--current):hover {
  background: #f6f6f6;
  color: steelblue;
    font-weight: 600;
}

.pl-list:not(.pl-list--current):hover .eq__bar {
    background: steelblue;
    -webkit-filter: drop-shadow(0 0 5px steelblue);
    filter: drop-shadow(0 0 5px steelblue);
}
.pl-list:not(.pl-list--current):hover .pl-list__icon {
    border-left: 8px solid steelblue;
}



.pl-list:not(.pl-list--current):hover .pl-list svg {
     fill:steelblue;
}


.pl-list__track,
.pl-list__remove,.pl-list__repeatsong {
  -webkit-box-flex: 0;
          flex: 0 50px;
  text-align: center;
}

.pl-list__icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid white;
}

.pl-list__title {
  overflow: hidden;
  padding-right: 10px;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
          flex: 1;
          font-weight: 600;
}

.pl-list__remove, .pl-list__repeatsong {
  height: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.pl-list__remove > svg, .pl-list__repeatsong > svg {
  width: 16px;
  height: 16px;
}

.pl-list__eq {
  display: none;
}

.pl-list--current {
  background: steelblue;
  color: #fff;
}

.pl-list--current svg {
  fill: #fff;
}
.pl-list--current .pl-list__eq {
  display: block;
}
.pl-list--current .pl-list__icon {
  display: none;
}

.pl-list:hover .pl-list__remove,
.pl-list--current .pl-list__remove,.pl-list:hover .pl-list__repeatsong,.pl-list--current .pl-list__repeatsong {
  opacity: 1;
  
}
.pl-list:hover .pl-list__remove svg,
.pl-list--current .pl-list__remove  svg,.pl-list:hover .pl-list__repeatsong svg,
.pl-list--current .pl-list__repeatsong  svg{
  fill : steelblue;
  
}
.myplaylistdiv{width: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 20px 10px 0px 10px;}

.myplaylistdiv h2    {
color: white !important;
    margin: 10px 0 !important;
    }

.pl-list--current .pl-list__remove:hover, .pl-list--current .pl-list__repeatsong:hover {
  background: #3f75a2;
}

.pl-list--empty {
-webkit-box-align: center;
    align-items: center;
    height: 40px;
    line-height: 40px;
    background: #313348;
    color: white;
  letter-spacing: 2px;

}

@-webkit-keyframes eq {
  0% {
    height: 3px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 3px;
  }
}

@keyframes eq {
  0% {
    height: 3px;
  }
  50% {
    height: 20px;
  }
  100% {
    height: 3px;
  }
}
.eq {
  display: -webkit-box;
  display: flex;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
          align-items: flex-end;
}

.eq__bar {
  width: 4px;
  background: #fff;
  -webkit-filter: drop-shadow(0 0 5px #fff);
          filter: drop-shadow(0 0 5px #fff);
}

.eq__bar:nth-child(1) {
  -webkit-animation: eq 0.8s ease-in-out infinite 0s;
          animation: eq 0.8s ease-in-out infinite 0s;
}

.eq__bar:nth-child(2) {
  -webkit-animation: eq 0.8s ease-in-out infinite 0.2s;
          animation: eq 0.8s ease-in-out infinite 0.2s;
}

.eq__bar:nth-child(3) {
  -webkit-animation: eq 0.8s ease-in-out infinite 0.4s;
          animation: eq 0.8s ease-in-out infinite 0.4s;
}

.h-hide {
  display: none;
}

.h-show {
  display: block;
}




#return-to-top {
    position: fixed;
    bottom: 50px;
    right: 2%;
    background: #6f6486;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 99999;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 16px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: #6f6486;
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}



