.players *,
.players *::before,
.players *::after {
  box-sizing: border-box;
}

.players * {
  margin: 0;
}

.players {
  display: inline-grid;
  justify-content: center;
  align-items: center;
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns: none;
}

@media screen and (min-width: 768px) {
  .players {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .players {
    grid-template-columns: 1fr;
  }
}



.player__wrapper {
  border-radius: 0px;
  background: #f7f7f8;
  /* box-shadow: 20px 20px 37px #cdcdcd, -20px -20px 37px #ffffff; */
  /* padding: 4vh 5.5vw 4.5vh 5.5vw; */
  max-width: 600px;
  align-self: start;
  margin: 20px 0vw;
}

.ab__controls {
  display: grid;
  align-content: center;
  align-items: baseline;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  justify-items: center;
  width: 100%;
}

.a__button,
.b__button,
.play__button,
.stop__button {
  font-size: 1.3rem;
  text-transform: uppercase;
  border: none;
  color: #9b9b9b;
  width: 5rem;
  padding: 0.75rem;
  border-radius: 2px;
  background: #e6e6e6;
  box-shadow: 7px 7px 15px #cdcdcd, -7px -7px 15px #ffffff;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}

.a__button:disabled ,
.b__button:disabled,
.play__button:disabled,
.stop__button:disabled {
  color: #c9c9c9;
  box-shadow: inset 7px 7px 15px #cdcdcd, inset -7px -7px 15px #ffffff;
  transition: all ease-in-out 0.3s;
}
.a__button:disabled:hover,
.b__button:disabled:hover,
.play__button:disabled:hover,
.stop__button:disabled:hover {
  color: #c9c9c9;
  box-shadow: inset 5px 5px 15px #cdcdcd, inset -5px -5px 15px #ffffff;
}

.a__button {
  width: 8rem;
  border-radius: 2px 0 0 2px;
  justify-self: self-end;
}

.b__button {
  width: 8rem;
  border-radius: 0 2px 2px 0;
  justify-self: self-start;
}

.play__button {
  justify-self: self-end;
}

.stop__button {
  width: 5rem;
  color: #966f6f;
  justify-self: self-start;
}

.stop__button:disabled {
  color: #966f6fd3;
}

.play__stop__controls {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  grid-gap: 1rem;
}

.progress__container {
  padding: 0; 
  display: inline-flex;
  background: #a8a8a8;
  height: 1rem;
  width: 100%;
  margin-bottom: 2.4rem;
  border-radius: 2px;
  border-radius: 2px;
  background: #e6e6e6;
  box-shadow: inset 7px 7px 15px #cdcdcd, inset -7px -7px 15px #ffffff;
  cursor: pointer;
  align-self: center;
  overflow: hidden;
}

.progress__bar {
  /* background: linear-gradient(360deg, #2da87b, #34dcac); */
  /* background: linear-gradient(360deg, #62d240, #75FB4C); */
  background: linear-gradient(360deg, #0203ff, #6868ff);
  
  border-radius: 2px;
  transition: all ease-in-out 0.03s;
}

.progress__fill {
  width: 0%;
}

.player {
  background-color: #f7f7f8;
  border-radius: 12px;
  display: inline-block;
  padding: 10px 30px;
}

