@import 'fonts.css';
* {
  box-sizing: border-box;
}
html,
input,
button,
td {
  font-size: 16px;
  font-family: Arial, AkzidenzMedium, Helvetica, sans-serif;
}
body {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #444;
}
html,
body,
#root,
.ddw-app {
  height: 100%;
}
.ddw-app {
  display: flex;
  flex-direction: column;
}
.ddw-app nav {
  flex-shrink: 0;
  display: flex;
  flex-basis: 50px;
}
.ddw-app nav h1 {
  flex: 1;
}
.ddw-app nav button {
  flex: 0;
  white-space: nowrap;
  margin: 7px;
}
.ddw-app .ddw-config {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
}
.deewee i {
  margin-right: 2px;
  margin-left: -1px;
}
button {
  background: black;
  border: 2px solid white;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
}
button:hover {
  background: white;
  color: black;
}
button[disabled] {
  background: black;
  color: #444;
  border-color: #444;
}
button.icon-btn {
  border: 0;
  background: inherit;
  cursor: pointer;
  color: white;
}
button.icon-btn .icon {
  cursor: pointer;
}
.icon {
  width: 16px;
  height: 16px;
  margin: 0 5px;
}
html {
  background: black;
  color: white;
}
html nav {
  border-bottom: 1px solid black;
  text-align: center;
  line-height: 300%;
  background: white;
  color: black;
}
html nav h1 {
  padding: 0;
  margin: 0;
}
html nav button {
  border: 2px solid black;
  outline: 0;
  background: white;
  color: black;
}
html nav button:hover {
  background: black;
  color: white;
}
html .ddw-config {
  background: #222;
  padding: 10px;
}
html .ddw-config h2 {
  font-size: 120%;
}
html .ddw-config .form-row,
html .ddw-config .form-actions {
  display: flex;
  flex-direction: row;
  margin: 5px 0;
}
html .ddw-config .form-row label {
  flex: 0;
  flex-basis: 150px;
  margin-right: 10px;
}
html .ddw-config .form-row .form-field {
  flex: 1;
  white-space: nowrap;
}
html .ddw-config .form-row .form-field input {
  background: #333;
  color: white;
  outline: 0;
  border: 0;
  padding: 3px 10px;
}
html .ddw-config .form-row .form-field input.fill {
  width: 100%;
}
html .ddw-config .form-row .form-field input.small {
  width: 50px;
}
html .ddw-config .form-actions {
  display: block;
  text-align: right;
}
html .ddw-main {
  background: black;
  color: white;
  margin: 20px 0;
}
.ddw-login {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ddw-login .btn-spotify-login {
  color: white;
  background-color: #1ed760;
  border-radius: 500px;
  line-height: 1;
  padding: 16px 48px 18px;
}
.new-track {
  background: #181818;
  padding: 10px 15px;
  margin: 5px auto;
  width: 50%;
}
.new-track .new-track-form {
  display: flex;
  align-items: center;
}
.new-track .new-track-form input {
  background: inherit;
  border: 0;
  outline: 0;
  color: white;
}
.new-track .new-track-form .new-index {
  width: 40px;
}
.new-track .new-track-form .new-spotify-id {
  flex: 1;
}
.playlist-tracks {
  list-style: none;
  margin: 0;
  padding: 0;
}
.playlist-tracks li {
  margin: 5px auto;
  padding: 0;
  width: 50%;
}
.playlist-tracks li.last-queued {
  border-top: 2px solid white;
  padding-top: 5px;
}
.playlist-tracks .track {
  display: flex;
  flex-direction: row;
  background: #333;
  padding: 10px 15px;
}
.playlist-tracks .track .number {
  flex: 0;
  flex-basis: 40px;
}
.playlist-tracks .track .info {
  flex: 1;
}
.playlist-tracks .track .info .artists {
  color: #aaa;
}
.playlist-tracks .track .info .name {
  font-weight: bold;
}
.playlist-tracks .track .info .extra {
  color: #666;
  font-size: 70%;
}
.playlist-tracks .track .info .extra span {
  margin-right: 1em;
}
@media only screen and (min-width: 960px) and (max-width: 1199px), only screen and (min-width: 720px) and (max-width: 959px) {
  .ddw-config .wrapper {
    min-width: 500px;
  }
}
@media only screen and (max-width: 719px) {
  nav h1 {
    font-size: 18px;
  }
  .new-track,
  .playlist-tracks li {
    width: 90%;
  }
  .not-mobile {
    display: none;
  }
}
.queue-now {
  text-align: center;
  margin-top: 30px;
}
