@font-face {
 font-family: fontWeb;
 src: url(sitefiles/saarland.ttf);
}

.column_left {
  flex: 1 1 auto;
}

.column_right {
  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 {
  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 {
}

h1, h2, h3, .player {
  margin: 5px 10px;
}

.slider {
  width: 100%;
  height: 10px;
  box-sizing: border-box;
  background-color: #dddddd;
  background-image: linear-gradient(#0001, #0001);
  outline: none;
  transition: opacity .2s;
    border: 1px solid #000099;
    border-radius: 0;
}

.madewith, .madewith a {
	color: #dddddd;
}
.madewith {
  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;
}
