
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: grid;
  font-family: "Nunito", sans-serif;
  place-items: center;
}

.player-wrapper {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: 45vh !important;
  justify-content: center;
}

.player {
  background-color:#0d0d0d00 !important;
  padding-top: 18px;
  border-radius: 0.3125rem;
  border: 1px solid #e0e0e0;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
  color: #404040;
  display: inline-block;
  line-height: 1.5625;
  position: relative;
}

.player-controls {
  display: grid;
  grid-template-areas: "a b c d e f g";
  max-width: 31.25rem;
}
.player-controls > div {
  border-right: 1px solid #e0e0e0;
}
.player-controls > div:last-child {
  border-right: none;
}

.player-control {
  background-color: white;
  border: none;
  color: #404040;
  cursor: pointer;
  display: flex;
  line-height: 0;
  margin: 0;
  padding: 1em;
  text-decoration: none;
}
.player-control > svg {
  width: 1.125rem;
}

.player-timeline {
  background-color: #e0e0e0;
  height: 50%;
  max-width: 12.8125rem;
  position: relative;
}
.player-timeline .player-progress,
.player-timeline .player-seeker {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
}
.player-timeline .player-progress {
  background-color: #404040;
  z-index: 1;
}
.player-timeline .player-seeker {
  cursor: pointer;
  width: 100%;
  z-index: 2;
}

.player-time {
  display: flex;
  justify-content: space-between;
}
.player-time .player-time-current {
  font-weight: 700;
  padding: 0 0.3125rem;
}
.player-time .player-title {
  display: flex;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 25%, black 75%, rgba(0, 0, 0, 0) 100%);
  flex-grow: 1;
  max-width: 6rem;
  overflow: hidden;
}
.player-time .player-title p {
  animation: slide-x 10s linear infinite;
  white-space: nowrap;
}
@keyframes slide-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.player-time .player-time-total {
  opacity: 0.5;
  padding: 0 0.3125rem;
}

.player-volume {
  display: inline-block;
  height: 1.1rem;
  margin: 0 0 0 0.625rem;
  width: 5.019rem;
}