#myProgress {
  flex-grow: 1;
  background-color: var(--color-grey);
  cursor: pointer;
  height: 1rem;
}

#myBar {
  width: 0%;
  height: 100%;
  background-color: var(--color-span);
}

.player-flex {
  display: flex;
  height: 1.5rem;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0rem;
  /*position: absolute;
  top: 3.5rem;
  left: 0rem;
  right: 0;*/
  margin-top: 0.75rem;
}

.logo {
  fill: red;
}

.btn-action {
  cursor: pointer;
  padding-top: 10px;
  width: 30px;

}

.btn-action.play-pause {
  width: 4.5rem;
  height: 3.5rem;
  font-size: 3rem;
  background-color: transparent;
  line-height: 3.5rem;
  padding-top: 0rem;
  padding-left: 0rem;
  position: absolute;
  top: 0;
  left: 0;
}

.btn-action.play-pause:hover {
  color: var(--color-span);
}

.btn-ctn,
.infos-ctn {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
}

.infos-ctn {
  padding-top: 0;
  width: 6rem;
}

.infos-ctn>.timer,
.infos-ctn>.duration {
  width: 42px;
  font-size: 14px;
  line-height: 1.5rem;
  text-align: right;
}

.btn-ctn>div {
  padding: 5px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.infos-ctn>div {
  /*margin-bottom: 8px;*/
}

.first-btn {
  margin-left: 3px;
}

.duration {
  /*margin-left: 10px;*/
}

.title {
  padding-left: 4.5rem;
  /*width: 210px;*/
  text-align: left;
  min-height: 43px;
}

.player-ctn {
  /*padding: 10px;*/
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 860px;
}

.playlist {
  padding-left: 0rem;
  font-size: 14px;
  line-height: 1.5rem;
  margin-top: 1.5rem;
}

.playlist-title {
  display: inline-block;
  border-bottom: 1px solid var(--color-black);
}

.playlist-track-ctn {
  display: flex;
  margin-top: 3px;
  border-radius: 5px;
  cursor: pointer;
  justify-content: space-between;
}


.playlist-track-ctn>div {
  /*margin: 10px;*/
}

.playlist-track-ctn:hover>div {
  color: var(--color-span);
}

.playlist-info-track {
  flex-grow: 1;
}

.playlist-info-track,
.playlist-duration {
  /*padding-top: 7px;
  padding-bottom: 7px;*/
  line-height: 1.5rem;
  color: var(--color-black);
  font-size: 14px;
  pointer-events: none;
}

.playlist-duration {
  width: 42px;
  text-align: right;
}

.playlist-ctn {}

.active-track {
  font-weight: 600;

}

.active-track>.playlist-info-track,
.active-track>.playlist-duration,
.active-track>.playlist-btn-play {
  /*color: #ffc266 !important;*/
}


.playlist-btn-play {
  pointer-events: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.fas {
  color: var(--color-span);
  font-size: 20px;
}

.volume-ctn {
  position: relative;
  display: none;
}

.btn-mute {
  z-index: 3;
  position: relative;
  cursor: pointer;
}

.btn-mute:hover {
  color: var(--color-span);
}

.volume__controls {
  width: 0.5rem;
  height: 3rem;
  background-color: rgba(0, 0, 0, .62);
  border-radius: 7px;
  position: absolute;
  left: -7px;
  bottom: -3px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  writing-mode: vertical-lr;
  direction: rtl;
  padding: 0.5rem 0.75rem;
  padding-bottom: 2rem;

}


input[type="range"] {
  margin: 0;
  appearance: none;
  background: transparent;
  width: 0.5rem;
  cursor: pointer;
  accent-color: var(--color-span);
  padding: 0;
  margin: 0;
  background-color: var(--color-span);
  position: absolute;
  top: 0.5rem;
  bottom: 2rem;
  left: 0.75rem;
}

input[type="range"]:focus {
  outline: none;
}

/* Chrome, Safari, Edge (Chromium) */
input[type="range"]::-webkit-slider-runnable-track {
  background: var(--color-white);
  width: 0.5rem;
  height: 100%;
  border-radius: 3px;
  margin: 0;
  padding: 0;
}

/* Firefox */
input[type="range"]::-moz-range-track {
  background: var(--color-white);
  width: 0.5rem;
  height: 100%;
  border-radius: 3px;
  margin: 0;
  padding: 0;
}



input[type=range]::-ms-track {
  height: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
  background: var(--color-white);
  width: 0.5rem;
  height: 100%;
  border-radius: 3px;
  margin: 0;
  padding: 0;
}

/* Chrome, Safari, Edge (Chromium) */
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  background: var(--color-span);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-left: -4px;
  border: 0;
}

/* Firefox */
input[type="range"]::-moz-range-thumb {
  appearance: none;
  background: var(--color-span);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 0;
}

@media screen and (min-width: 45rem) {
  .player-flex {
    padding-left: 4.5rem;
    top: 1.5rem;
    left: 3.75rem;
    margin-top: 0;
  }

  .playlist {
    padding-left: 4.5rem;
    margin-top: 0.25rem;
  }

  .volume-ctn {
    display: block;
  }

  .player-ctn {
    /*padding: 10px;*/
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

  .title {
    min-height: 0;
  }
}