<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div.player {
  position:relative;
  top:5px;
}

div.player audio {
  display:none;
}

div.player button {
  display:none;
  width:40px;
  height:30px;
  border-radius:12px;
  border:1px solid #333;
  padding:0px;
  background:linear-gradient(#c37d1c 0%, #f3d03a 30%, #f3d03a 70%, #c37d1c 100%);
  font-size:24px;
  color:#a51114;
  text-shadow:2px 2px 3px rgba(0, 0, 0, 0.5);
  outline:none;
  cursor:pointer;
}

div.player button:active:hover {
  background:#f3d03a;
  text-shadow:1px 1px 2px rgba(0, 0, 0, 0.5);
}

div.player div.time {
  display:inline-block;
  width:90px;
  height:30px;
  line-height:30px;
  font-size:16px;
  text-align:center;
  vertical-align:top;
  color:#a51114;
  font-weight:bold;
  text-shadow:rgba(0,0,0,0.3) 1px 1px;
  background-color:rgba(0, 0, 0, 0.2);
  box-shadow:inset 0px 2px 2px rgba(0, 0, 0, 0.2);
  border-radius:12px;
}

div.player div.volume {
  display:inline-block;
  margin:0px 25px 0px 15px;
  width:50px;
  height:30px;
  line-height:30px;
  vertical-align:top;
}

div.player div.volume div.ui-slider {
  top:12px;
  height:4px;
  background-color:#333;
  border-color:#000;
}

div.player div.volume span.ui-slider-handle {
  top:-8px;
  margin-left:-8px;
  width:18px;
  height:18px;
  line-height:18px;
  border-color:#000;
  border-radius:10px;
  background:linear-gradient(#c37d1c 0%, #f3d03a 30%, #f3d03a 70%, #c37d1c 100%);
  font-size:14px;
  color:#ac0c13;
  text-shadow:1px 1px 1px rgba(0, 0, 0, 0.2);
  text-align:center;
  outline:none;
  cursor:pointer;
}

div.player div.volume span.ui-slider-handle.ui-state-active {
  background:#f3d03a;
  text-shadow:0.5px 0.5px 1px rgba(0, 0, 0, 0.2);
}
</pre></body></html>