/* Main styles */
:root {
  --primary-color: rgb(24, 24, 24);
  --primary-background-color: #ececec;
  --secondary-color: rgb(75, 75, 75);
  --secondary-background-color: #ececec;
  --highlight-color: #FF0000;
  --box-shadow-color: rgb(201, 201, 201);
  --disabled-button-color: rgb(175, 175, 175);
  --border-radius: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}
html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--primary-color);
  background-color: var(--primary-background-color);
}

/* Main Container */
.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-background-color);
  padding: 10px;
}

/* Audio player */
.audio-player {
  width: 100%;
  max-width: 100rem;
  display: flex;
  margin: 0px;
  background-color: var(--secondary-background-color);
  border-radius: var(--border-radius);
  /*
  box-shadow: 0.2rem 0.2rem 1rem 0.2rem var(--box-shadow-color);

   */
}

/* Play button */
.play-button {
  width: 150px;
  height: 150px;

  /* Reset default button styles */
  border: none;
  outline: none;
  cursor: pointer;
  /* background-image: url(https://tpc.googlesyndication.com/simgad/5789663023945800672); */
  margin: 10px;
  background-color: #dbdbdb;
  background-size: cover;
}

/* Main player body, which includes title, waveform, volume and timecode */
.player-body {
  width: calc(100% - 160px);
  padding: 10px;
}


@media screen and (max-width: 600px) {
  .play-button {
    width: 90px;
    height: 90px;
  }
  .player-body {
    width: calc(100% - 90px);
  }
}


/* Audio track title */
.title {
  width: 100%;
  font-weight: 600;
  padding-top: 8px;
  padding-bottom: 6px;
}

/* Main waveform */
.waveform {
  width: 100%;
  min-height: 8rem;
  padding: 0.5rem 0;
}

/* Controls include volume mute/unmute, volume slider and timecode */
.controls {
  display: flex;
  justify-content: space-between;
}

/* Timecode */
.timecode {
  color: var(--secondary-color);
}

/* Volume */
.volume {
  display: flex;
  align-items: center;
}
.volume-icon {
  cursor: pointer;
}
.volume-slider {
  margin: 0 1rem;
  cursor: pointer;

  width: 100%;
  outline: none;
  -webkit-appearance: none;
  background: transparent;
}

/* Custom volume slider */
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 1.5rem;
  width: 1.5rem;
  border: none;
  border-radius: 50%;
  background: var(--highlight-color);

  margin-top: -0.6rem;
}
.volume-slider::-moz-range-thumb {
  -webkit-appearance: none;
  height: 1.5rem;
  width: 1.5rem;
  border: none;
  border-radius: 50%;
  background: var(--highlight-color);
}
.volume-slider::-ms-thumb {
  -webkit-appearance: none;
  height: 1.5rem;
  width: 1.5rem;
  border: none;
  border-radius: 50%;
  background: var(--highlight-color);
}
.volume-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.25rem;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
}
.volume-slider::-ms-track {
  background: transparent;
  border-color: transparent;
  color: transparent;

  width: 100%;
  height: 0.25rem;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
}

/* Muted/disabled volume slider */
.volume-slider[disabled] {
  cursor: not-allowed;
}
.volume-slider[disabled]::-webkit-slider-thumb {
  background-color: var(--disabled-button-color);
}
.volume-slider[disabled]::-moz-range-thumb {
  background-color: var(--disabled-button-color);
}
.volume-slider[disabled]::-ms-thumb {
  background-color: var(--disabled-button-color);
}
.volume-slider[disabled]::-webkit-slider-runnable-track {
  background-color: var(--disabled-button-color);
}
.volume-slider[disabled]::-ms-track {
  background-color: var(--disabled-button-color);
}
.playButtonIcon2 {
  float: left;
  padding: 5px;
  width: 39px;
  background-color: red;
  border-radius: 20px;
  margin-right: 10px;
}
.title {
  width: 100%;
  font-weight: 600;
  padding-top: 13px;
  padding-bottom: 6px;
}
