:root {
  --p1-color: #E8323E;
}

body {
  background-color: #f6fafc;
}

.display-4 {
  font-family: "Poppins";
  font-weight: 700;
}

.title {
  font-weight: 700;
  font-family: 'Poppins';
  font-size: 1rem;
}

.subtitle {
  font-weight: 400;
  font-family: 'Poppins';
  font-size: 1rem;
}

.player {
  background-color: #ffffff;
  width: 100%;
  height: 200px;
  border-radius: 0.8rem;
  padding: inherit;
  display: flex;
  align-items: center;
}

.player audio {
  display: none;
}

.dados {
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.player-button {
  background-color: transparent;
  border: 0;
  width: 70px;
  height: auto;
  cursor: pointer;
  padding: 0;
}

.range {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vol-icon {
  font-size: 1.5rem;
  color: var(--p1-color);
}

input[type=range] {
  width: 100%;
  background-color: transparent;
  -webkit-appearance: none;
}

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

input[type=range]::-webkit-slider-runnable-track {
  border: 2px solid rgba(0, 0, 0, 0);
  width: 100%;
  height: 0px;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  margin-top: -9.9px;
  width: 17px;
  height: 17px;
  background: var(--p1-color);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: var(--p1-color);
}

input[type=range]::-moz-range-track {
  border: 2px solid rgba(0, 0, 0, 0);
  width: 100%;
  height: 0px;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 17px;
  height: 17px;
  background: var(--p1-color);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

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

input[type=range]::-ms-fill-lower {
  background: var(--p1-color);
  border: 1.4px solid rgba(0, 0, 0, 0);
}

input[type=range]::-ms-fill-upper {
  background: var(--p1-color);
  border: 1.4px solid rgba(0, 0, 0, 0);
}

input[type=range]::-ms-thumb {
  width: 17px;
  height: 17px;
  background: var(--p1-color);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 0px;
}

input[type=range]:focus::-ms-fill-lower {
  background: var(--p1-color);
}

input[type=range]:focus::-ms-fill-upper {
  background: var(--p1-color);
}