.player-v2.player {
  background: #111111;
  border-top: 0;
  box-shadow: none;
  padding: 0;
}
.player-v2 .player-progress {
  display: block;
  height: 6px;
  background: #707070;
}
.player-v2 .player-progress__bar {
  background: #00D5FF;
}
.player-v2 .player-progress__dot {
  width: 20px;
  height: 20px;
  background: #d9d9d9;
}
.player-v2 .player-shell {
  min-height: 120px;
  padding: 14px 26px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(160px, 55%) minmax(110px, 1fr);
  align-items: center;
  gap: 14px;
}
.player-v2 .player-identity {
  min-width: 110px;
  gap: 12px;
}
.player-v2 .player-cover {
  width: 70px;
  height: 70px;
  border-radius: 2px;
  background: #00D5FF;
}
.player-v2 .player-meta {
  gap: 5px;
  min-width: 0;
}
.player-v2 .player-title {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.player-v2 .player-meta__line {
  color: #ffffff;
  font-size: 15px;
}
.player-v2 .player-wave {
  display: block;
  width: 100%;
  min-width: 160px;
}
.player-v2 .waveform-shell {
  height: 65px;
}
.player-v2 .volume {
  display: none;
}
.player-v2 .player-controls {
  justify-content: flex-end;
  gap: 0;
}
.player-v2 .transport {
  gap: 17px;
}
.player-v2 .transport #playerPrev,
.player-v2 .transport #playerNext,
.player-v2 .transport #playToggle {
  display: grid;
}
.player-v2.player .btn-plain {
  border: 0;
  background: transparent;
  color: #ffffff;
  border-radius: 0;
  width: 35px;
  height: 35px;
  font-size: 28px;
}
.player-v2.player .btn-plain:hover {
  background: transparent;
  color: #00D5FF;
}
.player-v2.player .is-primary {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 42px;
}
.player-v2 .player-fullscreen {
  display: none;
}
@media (max-width: 760px) {
  .player-v2.player {
    background: #111111;
  }
  .player-v2 .player-progress {
    height: 6px;
  }
  .player-v2 .player-progress__dot {
    width: 20px;
    height: 20px;
  }
  .player-v2 .player-shell {
    min-height: 92px;
    padding: 20px 15px 15px;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 15px;
  }
  .player-v2 .player-wave {
    display: none;
  }
  .player-v2 .player-identity {
    display: contents;
  }
  .player-v2 .player-meta {
    align-self: center;
    gap: 8px;
  }
  .player-v2 .player-title {
    font-size: 15px;
    line-height: 1.08;
  }
  .player-v2 .player-meta__line {
    font-size: 15px;
    line-height: 1.1;
  }
  .player-v2 .player-controls {
    align-self: center;
  }
  .player-v2.is-fullscreen {
    top: 57px;
    bottom: 0;
    height: calc(100dvh - 57px);
    overflow: hidden;
  }
  .player-v2.is-fullscreen .player-progress, .player-v2.is-fullscreen .player-shell {
    display: none;
  }
  .player-v2.is-fullscreen .player-fullscreen {
    height: 100%;
    min-height: 0;
    padding: 20px 15px 28px;
    display: grid;
    grid-template-rows: 35px auto 76px auto 76px;
    gap: 16px;
    background: #111111;
  }
  .player-v2 .player-fullscreen__close {
    align-self: flex-start;
    width: 48px;
    height: 48px;
    font-size: 44px;
  }
  .player-v2 .player-fullscreen__cover-shell {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    justify-self: center;
    align-self: center;
    aspect-ratio: 1/1;
    border: 2px solid #ffffff;
    border-radius: 6px;
    overflow: hidden;
    background: #0b3f47;
  }
  .player-v2 .player-fullscreen__cover {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .player-v2 .player-fullscreen__cover-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background: #000000;
    font-size: 60px;
    transform: translate(-50%, -50%);
    display: none !important;
  }
  .player-v2 .player-fullscreen__cover-play:hover {
    background: #000000;
  }
  .player-v2 .player-fullscreen__meta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    gap: 8px;
    padding: 0 15px;
    align-self: start;
  }
  .player-v2 .player-fullscreen__title {
    min-width: 0;
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .player-v2 .player-fullscreen__artist {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.1;
  }
  .player-v2 .player-fullscreen__progress-wrap {
    display: grid;
    gap: 10px;
    padding: 0 15px;
    align-self: start;
  }
  .player-v2 .player-fullscreen__progress {
    position: relative;
    height: 6px;
    background: #2a2a2a;
    cursor: pointer;
  }
  .player-v2 .player-fullscreen__progress-bar {
    height: 100%;
    width: 0%;
    background: #00D5FF;
  }
  .player-v2 .player-fullscreen__progress-dot {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #d9d9d9;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .player-v2 .player-fullscreen__time {
    display: flex;
    justify-content: space-between;
    color: #707070;
    font-size: 18px;
    font-weight: 700;
  }
  .player-v2 .player-fullscreen__transport {
    padding: 0 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .player-v2 .player-fullscreen__transport .btn-plain {
    width: 58px;
    height: 58px;
    font-size: 58px;
  }
  .player-v2 .player-fullscreen__transport .is-primary {
    width: 72px;
    height: 72px;
    font-size: 72px;
  }
}
@media (max-width: 460px) {
  .player-v2 .transport {
    gap: 8px;
  }
}/*# sourceMappingURL=player-v2.css.map */