.player {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.player .bar-and-time-container {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  gap: 6px;
}
.player .bar-and-time-container .bar {
  position: relative;
  display: flex;
  height: 13px;
  flex-direction: column;
  justify-content: center;
}
.player .bar-and-time-container .time {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.player .bar-and-time-container .time span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.player .controls-container {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.player .controls-container button {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.player .controls-container button:hover {
  transform: scale(1.2);
}
.player .controls-container button.button_speed {
  width: 48px;
  height: 23px;
  border: 2px solid white;
  border-radius: 4px;
  color: white;
}
.player .controls-container button.button_play {
  background: url(../../assets/img/button_play.svg);
}
.player .controls-container button.button_play.pause {
  background: url(../../assets/img/button_pause.svg);
}
.player .controls-container button.button_jump {
  background: url(../../assets/img/button_jump.svg);
}
.player .controls-container button.button_back {
  background: url(../../assets/img/button_back.svg);
}
.player .controls-container button.button_mute {
  background: url(../../assets/img/button_volume.svg);
}
.player .controls-container button.button_mute.mute {
  background: url(../../assets/img/button_mute.svg);
}

/* Track styling */
input[type="range"] {
  position: relative;
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  float: left;
  outline: none;
  border-radius: 40px;
  border: none;
  border-color: transparent;
  color: transparent;
  background-color: rgba(255, 255, 255, 0.2);
}

input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) var(--buffered-width), rgba(255, 255, 255, 0.1) var(--buffered-width));
}

input[type="range"]::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  width: var(--seek-before-width);
  height: 3px;
  background-color: white;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  box-sizing: content-box;
  border: 2px solid white;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #5B203F;
  cursor: pointer;
  margin: -5px 0 0 0;
}

input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.2);
  background: white;
}

input[type="range"]::-moz-range-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: linear-gradient(to right, rgba(0, 0, 181, 0.6) var(--buffered-width), rgba(255, 255, 255, 0.8) var(--buffered-width));
}

input[type="range"]::-moz-range-progress {
  background-color: #007db5;
}

input[type="range"]::-moz-focus-outer {
  border: 0;
}

input[type="range"]::-moz-range-thumb {
  box-sizing: content-box;
  border: 2px solid white;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #5B203F;
  cursor: pointer;
}

input[type="range"]:active::-moz-range-thumb {
  transform: scale(1.2);
  background: #007db5;
}

input[type="range"]::-ms-track {
  width: 100%;
  height: 3px;
  cursor: pointer;
  background: transparent;
  border: solid transparent;
  color: transparent;
}

input[type="range"]::-ms-fill-lower {
  background-color: #007db5;
}

input[type="range"]::-ms-fill-upper {
  background: linear-gradient(to right, rgba(0, 125, 181, 0.6) var(--buffered-width), rgba(0, 125, 181, 0.2) var(--buffered-width));
}

input[type="range"]::-ms-thumb {
  box-sizing: content-box;
  border: 1px solid #007db5;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

input[type="range"]:active::-ms-thumb {
  transform: scale(1.2);
  background: #007db5;
}

/*# sourceMappingURL=player_style2.css.map */
