.musicWrapper-nolib {
  display: none;
}

.musicWrapper {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 6px 3px 3px;
  background: none;
  transition: all 0.16s;
  border: 1px solid transparent;
  color: inherit;
  font-size: 18px;
  user-select: none;
}

.musicWrapper[disabled] {
  opacity: 0.6;
}

.musicWrapper > span {
  margin-right: 6px;
  vertical-align: bottom;
}

.musicWrapper:not([disabled]):hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.24);  
}

.musicWrapper:focus {
  outline: none; 
  border-color: #fff;
}

.musicWrapper:active {
  background: rgba(255, 255, 255, 0.36);  
}

.musicWrapper.active {
  border-color: var(--accent-color);
}

/* Music Player */
#musicWrapper-player {
  z-index: 2;
  position: fixed;
  box-sizing: border-box;
  bottom: 0px;
  width: 100%; 
  height: 50px;
  padding: 8px 6px 6px;
  cursor: default;
  user-select: none;
  text-align: center;
  transition: bottom 0.24s;
}

#musicWrapper-controls {
  float: left;
}

#musicWrapper-controls span {
  vertical-align: middle;
  width: 24px;
  margin-right: 6px;
  transition: color 0.16s;
}

#musicWrapper-controls span:hover {
  cursor: pointer;
  color: var(--accent-color-light);
}

#musicWrapper-controls span:first-child {
  width: 40px;
}

#musicWrapper-pb {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%; 
  height: 4px;
  cursor: pointer;
  transition: all 0.16s;
}

#musicWrapper-pb:hover {
  top: -4px;
  height: 8px;
  border-top: 1px solid #333;
}

#musicWrapper-pb div {
  background: var(--accent-color-light);
  position: absolute;
  box-sizing: border-box;
  bottom: 0px;
  width: 0%; 
  height: 100%;
  transition: width 0.1s linear;
}

#musicWrapper-trackName {
  text-align: center;
}

#musicWrapper-position {
  float: right;
}

#musicWrapper-canvas {
  position: fixed;
  display: none;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: #0000008f;
  background-size: cover;
  background-position: center;
}