@font-face {
 font-family: fontWeb;
 src: url(sitefiles/saarland.ttf);
}

.column_left {
  flex: 1 1 auto;
}

.column_right {
  width: 250px;
  flex: 0 1 auto;
}

@media (max-width: 500px) {
  body {
    flex-flow: row wrap-reverse;
  }

.column_right {
    width: 100%;
  }
}

.cover {
  width: 100%;
}

li, .player {
  display: flex;
  align-items: center;
}

button {
  background-color: #dddddd;
  color: #000000;
   border-radius: 0px 9px 9px 0px;
    border: 2px solid #000099;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 0;
    padding: 0.3em;
 box-shadow: 1px 1px 0px #000;
  
}
button span {
  line-height: 1.5;
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
button.loading .icon {
  animation: rotating 2s linear infinite;
}

.icon {
  
    fill: currentColor;
    stroke: 0;
  
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
}

.player button.play {
  font-size: 2em;
}

.song_list button.play, .player button.play {
  overflow: hidden;
  margin: 2px;
  flex-shrink: 0;
}

.player_tools {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0px 10px;
}

.player .title {
  font-size: 125%;
  margin: 0 0 0.5em;
}

.song_list {
  margin: 5px 20px;
  padding: 0;
}

.song_list p {
    margin: 0 5px;
}

.album, .artist, .title {
  color: #dddddd;
}

h1, h2, h3, .player {
  margin: 5px 10px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  box-sizing: border-box;
  background-color: #ddddddaa;
  background-image: linear-gradient(#0001, #0001);
  outline: none;
  -webkit-transition: .2s;
  transition: opacity .2s;
  
    border: 1px solid #000099;
  
  
    border-radius: 0;
  
}

/* if we merge the slider-thumb styles, it breaks chrome support :c */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px;
  height: 15px;
  box-sizing: border-box;
  cursor: pointer;
  background: #dddddd;
  border-radius: 0;
  
    border: 1px solid #000099;
  
  
    border-radius: 0;
  
  
    box-shadow: 0 0.25em 0.5em -0.1em #00009966;
  
}

.slider::-moz-range-thumb {
  width: 30px;
  height: 15px;
  box-sizing: border-box;
  cursor: pointer;
  background: #dddddd;
  border-radius: 0;
  
    border: 1px solid #000099;
    background-image: linear-gradient(to bottom, #fff4, #fff4);
  
  
    border-radius: 0;
  
  
    box-shadow: 0 0.25em 0.5em -0.1em #00009966;
  
}
.madewith, .madewith a {
  color: #dddddd;
}
.madewith {
  color: #dddddd;
  font-size: 70%;
  opacity: .5;
}
.playback_rate_controls {
  display: flex;
  margin-top: 5px;
  font-size: 10pt;
  gap: 3px;
  align-items: center;
  justify-content: flex-end;
}
.playback_rate_text {
  display: inline-block;
  text-align: left;
  width: 5ch;
}

.continue_button {
  padding: 6px 12px;
  line-height: 10pt;
  font-size: 11pt;
 font-family: fontWeb;
  margin-left: 15px;
}
