@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Poppins",sans-serif;
  font-style: normal;
  color: #393939;
  overflow-x: hidden;
}


/* HTML5 Audio player with playlist styles */
.example, .example2, .example3 {
    margin: 0px auto 0;
    width: 100%;
    padding-bottom: 0;
    position: absolute;
    left: 0;
    bottom: 0;
}
.player {
  background: #1F0F31;
  height: 100px;
  position: relative;
  width: 100%;
  z-index: 9;
}
.title,
.artist {
  left: 167px;
  /* position: absolute; */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  font-weight: 600;
}
.title {
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  /* top: 23px; */
}
.artist {
  color: #eeeeee;
  font-size: 11px;
  top: 40px;
}
.pl {
  background: url(../images/playlist.png) no-repeat;
  cursor: pointer;
  left: inherit;
  position: absolute;
  top: inherit;
  right: 180px;
  bottom: 23px;
  z-index: 5;
  width: 35px;
  height: 40px;
  background-size: 100%;
}
/*.pl:hover {
  top: 21px;
}*/
.cover {
  border-radius: 5px 5px 5px 5px;
  height: 94px;
  left: 20px;
  position: absolute;
  top: 30px;
  width: 94px;
  display: none;
}
.controls {
  cursor: pointer;
  left: 0px;
  position: absolute;
  top: auto;
  left: 100px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.controls .play,
.controls .pause {
  width: 30px;
  height: 30px;
  margin: 0 5px 0px 5px;
  background-size: 50%;
}
.controls .play,
.controls .pause,
.controls .rew,
.controls .fwd,
.controls .shuffle,
.controls .repeat,
.controls .stop {
  text-indent: -10000px;
  border: none;
  float: left;
  background-size: 100% !important;
}
.controls .rew,
.controls .fwd,
.controls .shuffle,
.controls .repeat,
.controls .stop {
  width: 25px;
  height: 24px;
  margin: 5px 5px 5px 5px;
}
.controls .play {
  background: url(../images/play.png) no-repeat;
  background-position: 2px 0px;
}
.controls .pause {
  background: url(../images/pause.png) no-repeat;
  display: none;
}
.controls .rew {
  background: url(../images/rewind.png) no-repeat;
}
.controls .fwd {
  background: url(../images/next.png) no-repeat;
}
.controls .stop {
  background: url(../images/stop.png) no-repeat;
  display: none;
}
.controls .shuffle {
  background: url(../images/shuf.png) no-repeat;
}
.controls .repeat {
  background: url(../images/reap.png) no-repeat;
}








.hidden {
  display: none;
}
.controls .visible {
  display: block;
}
.volume {
  height: 11px;
  left: auto;
  position: absolute;
  top: inherit;
  width: 140px;
  right: 240px;
  bottom: 40px;
}
.mute .volume-btn {
  background: url(../images/volume-off.png) no-repeat;
}
.volume-btn {
  background: url(../images/volume-up.png) no-repeat;
  height: 20px;
  width: 20px;
  float: left;
  position: relative;
  top: -4px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}


.heart {
    background: url(../images/heart.png) no-repeat;
    height: 40px;
    width: 40px;
    background-size: 70%;
    left: auto;
    position: absolute;
    top: inherit;
    bottom: 20px;
    right: 280px;
    z-index: 5;
}


.share {
    background: url(../images/share.png) no-repeat;
    height: 40px;
    width: 40px;
    background-size: 70%;
    left: auto;
    position: absolute;
    top: inherit;
    bottom: 1px;
    right: -50px;
    z-index: 5;
}

.volume-adjust {
  height: 11px;
  position: relative;
  width: 70%;
  background: #fff;
  float: none;
  /* transform: rotate(-90deg); */
  top: -62px;
  right: 43px;
  opacity: 0;
}
.volume-adjust > div > div {
  height: 11px;
  background: #ee952d;
}
.progressbar {
  background-color: #fff;
  cursor: pointer;
  z-index: 1;
  /* right: 6.875em; */ /* 110 */
  height: 9px;
  left: 0px;
  position: absolute;
  width: 52%;
  top: inherit;
  margin: 0px 5%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50px;
  bottom: 40px;
}
.novolume .progressbar {
  right: 4.375em; /* 70 */
}
.progressbar div {
  width: 0%;
  height: 9px;
  position: absolute;
  left: 0;
  top: 0;
}
.bar-loaded {
  background-color: #E2E2EA;
  z-index: 1;
  border-radius: 50px;
}
.bar-played {
    background: #EE952D;
    border-radius: 50px;
    z-index: 2;
}
.timeHolder {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  margin: 0px 5%;
  width: 120px;
  bottom: 59px;
  right: 290px;
  left: inherit;
}
.time-current,
.time-duration,
.time-separator {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  float: left;
}
.volume .ui-slider-handle {
  background: url("../images/spr.png") no-repeat scroll -201px -188px
    rgba(0, 0, 0, 0);
  height: 13px;
  width: 13px;
}
.playlist {
  background-color: #fff;
  list-style-type: none;
  margin: -10px 0 0 2px;
  padding-bottom: 10px;
  padding-top: 15px;
  position: relative;
  width: 95%;
  z-index: 1;
  margin: 0px auto;
  display: none;
}
.playlist li,
.playlist div {
  color: #151b48;
  cursor: pointer;
  margin: 0 0 5px 15px;
}
.playlist li > a,
.playlist div > a {
  color: #151b48;
  text-decoration: none;
}
.playlist li.active,
.playlist div.active {
  font-weight: bold;
}
.slick-dots {
  bottom: 5px !important;
}
.slick-dots li button:before {
  font-size: 8px !important;
}



.info {
    position: absolute;
    bottom: 60%;
    left: 24%;
    right: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}