* {
  box-sizing: border-box;
}

.bottom-sheet,
.artists-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  height: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.1s linear;
}

.bottom-sheet.show,
.artists-sheet.show {
  opacity: 1;
  pointer-events: auto;
}

.bottom-sheet .light {
  filter: invert(1);
}

.sheet-overlay,
.artists-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 499;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #000;
}

.sheet-content,
.artists-content {
  z-index: 501;
  width: 100%;
  position: relative;
  background: #fff;
  max-height: 100vh;
  max-width: 1150px;
  padding: 1rem;
  transform: translateY(100%);
  border-radius: .8rem .8rem 0 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.sheet-content {
  height: 50vh;
}

.bottom-sheet.show .sheet-content,
.artists-sheet.show .artists-content {
  transform: translateY(0%);
}

.bottom-sheet.dragging .sheet-content {
  transition: none;
}

.bottom-sheet.fullscreen .sheet-content {
  border-radius: 0;
  overflow-y: hidden;
}

.sheet-header,
.artists-header {
  display: flex;
  justify-content: center;
}

.drag-icon {
  cursor: grab;
  user-select: none;
  padding: 15px;
  margin-top: -15px;
}

.drag-icon span {
  height: .25rem;
  width: 3.5rem;
  display: block;
  background: #00000040;
  border-radius: 1.75rem;
}

.bottom-sheet .sheet-body {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding: 15px 0 40px;
  scrollbar-width: none;
}

.bottom-sheet .sheet-body::-webkit-scrollbar {
  width: 0;
}

.bottom-sheet .sheet-body h2 {
  font-size: 1.8rem;
}

.bottom-sheet .sheet-body p {
  margin-top: 20px;
  font-size: 1.05rem;
}

.sheet-song {
  display: flex;
  gap: .5rem;
}

.sheet-track-art {
  background-size: cover !important;
  width: 50px;
  height: 50px;
  border-radius: 0.4rem;
}

.sheet-music-info {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-around;
}

.sheet-music-info .sheet-track-title,
.sheet-music-info .sheet-track-artist {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.sheet-music-info .sheet-track-title {
  font-weight: 600;
}

.button-group,
.artists-group {
  display: flex;
  flex-direction: column;
  border-radius: .4rem;
  background-color: #00000012;
  justify-content: center;
  padding: .25rem;
  gap: .25rem;
}

.button-group>*,
.artist-element {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  gap: 1rem;
  border-radius: .35rem;
  padding: .5rem 1rem;
  transition: .3s ease;
}

.button-group>*:hover,
.artist-element:hover {
  background-color: #00000018;
}

.button-group>*:active,
.artist-element:active {
  background-color: #00000024;
}

.artist-element {
  padding: .25rem !important;
  gap: .5rem !important;
}

.artist-element>.artist-image {
  overflow: hidden;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  border: 1px solid #00000024;
}

hr {
  margin: 0 0.35rem;
  border-radius: 1px;
  border: 0.25px solid #00000018;
}