html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: #181818;
  color: silver;
  margin: 0;
  padding: 0;
  font-family: "Saira", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  font-variation-settings: "wdth" 100;
}

h1 {
  font-weight: 100;
  font-size: 2rem;
  color: #a4b8b1;
}

h2 {
  font-weight: 100;
  font-size: 1.5rem;
  color: #6c9aa6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

a {
  color: white;
}

.flex {
  display: flex;
}

.scriptEnabled {
  display: none;
}

body.loaded .scriptEnabled {
  display: initial;
}

i.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
i.icon.star {
  background-image: url("../_img/star.svg");
}
i.icon.user {
  background-image: url("../_img/headphone.svg");
}

button i.icon,
.button i.icon {
  vertical-align: sub;
  margin-right: 8px;
}

header {
  background-image: url(../_img/back.png);
  background-size: 100% 100%;
  height: 96px;
}
header .logo {
  height: 96px;
  width: 118px;
  background-image: url(../_img/bars.png);
  background-size: 100% 100%;
}
header .modarchive {
  position: absolute;
  left: 145px;
  top: 47px;
  width: 350px;
  height: 40px;
  background-image: url(../_img/modarchive.png);
  background-size: contain;
  color: transparent;
}

nav.main {
  background-color: black;
  padding: 8px 10px;
  border-bottom: 1px solid #515337;
}
nav .container {
  display: flex;
  justify-content: space-between;
}
nav a {
  display: inline-block;
  margin: 2px;
  border: 1px solid #11422b;
  padding: 4px 10px;
  text-decoration: none;
  color: #889c78;
  border-radius: 4px;
  font-size: 14px;
}
nav a:hover {
  border: 1px solid #215c5e;
  color: #bdcfc8;
  cursor: pointer;
}
nav form {
  display: inline-block;
}
nav form input {
  background-color: black;
  border: 1px solid #444;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 4px;
  color: white;
}
nav form input:focus {
  outline: none;
}

.subnav.right {
  text-align: right;
}
.subnav.right a {
  text-decoration: none;
  color: silver;
  padding: 2px 6px;
  font-size: 14px;
  border: 1px solid #737373;
  border-radius: 2px;
}

.button.big,
button.big,
.btn-primary {
  display: inline-block;
  border: 1px solid #1BC29A;
  border-radius: 4px;
  padding: 4px 10px;
  text-decoration: none;
  color: #1BC29A;
  background-color: transparent;
}
.button.big:hover,
button.big:hover,
.btn-primary:hover {
  color: #99daa6;
  border-color: #99daa6;
  box-shadow: 0 0 8px #99daa6;
  cursor: pointer;
}
.button.big.icon,
button.big.icon,
.btn-primary.icon {
  padding-left: 30px;
  background-image: url("../_img/play.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: 8px center;
}
.button.big.icon.download,
button.big.icon.download,
.btn-primary.icon.download {
  background-image: url("../_img/download.svg");
}
.button.big.scriptEnabled,
button.big.scriptEnabled,
.btn-primary.scriptEnabled {
  display: none;
}

a.button,
button {
  text-decoration: none;
  border: 1px solid #666;
  color: #ccc;
  border-radius: 4px;
  padding: 4px 10px;
  outline: none;
  font-size: 14px;
}
a.button:hover,
button:hover {
  color: #fff;
}

button.inline.round,
.button.inline.round {
  color: transparent;
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border: 1px solid #1BC29A;
  border-radius: 50%;
  background-image: url("../_img/play.svg");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: 5px 4px;
  margin-right: 8px;
  filter: saturate(0) brightness(0.7);
}
button.inline.round:hover,
.button.inline.round:hover {
  filter: saturate(1) drop-shadow(0 0 2px #90ddcb);
}
button.inline.round.scriptEnabled,
.button.inline.round.scriptEnabled {
  display: none;
}

body.loaded .songs .button.inline.scriptEnabled {
  display: inline-block;
  vertical-align: middle;
}
body.loaded a.button.big.scriptEnabled {
  display: inline-block;
}

#player {
  background-color: black;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 130px;
  border-top: 2px solid #14463a;
  color: silver;
  display: none;
}
#player.active {
  display: flex;
  justify-content: space-between;
}
#player.active.standalone {
  display: block;
}
#player.active.standalone #visualizer {
  width: 100%;
  height: calc(100vw - 10px);
  margin-top: 10px;
}
#player.standalone {
  height: unset;
  top: 0;
}
#player #mainDisplay {
  height: 36px;
  margin: 4px;
  width: 100%;
  text-align: center;
  position: relative;
}
#player #mainDisplay h1 {
  padding: 0;
  margin: 0;
  font-size: 24px;
  line-height: 36px;
}
#player #mainDisplay div {
  font-size: 11px;
  line-height: 12px;
  position: absolute;
  top: 0;
  color: #8b9baa;
  text-align: left;
}
#player #mainDisplay div.right {
  right: 0;
  text-align: right;
}
#player #mainDisplay div.hidden {
  display: none;
}
#player #volumePanel {
  position: absolute;
  display: flex;
  left: 0;
  top: 81px;
  width: 120px;
  align-items: center;
}
#player button {
  display: block;
  background-color: transparent;
  border: none;
  color: transparent;
  width: 24px;
  height: 24px;
  overflow: hidden;
  margin: 0 10px;
  background-image: url("../_img/play.svg");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
  filter: saturate(0);
}
#player button:hover {
  filter: saturate(1) drop-shadow(0 0 2px #90ddcb);
  cursor: pointer;
}
#player button.pause {
  width: 48px;
  height: 48px;
  border: 1px solid #14463a;
  border-radius: 50%;
  background-size: 27px 28px;
  background-position: center center;
  background-image: url("../_img/pause.svg");
}
#player button.pause.active {
  background-image: url("../_img/play.svg");
}
#player button.next {
  background-image: url("../_img/next.svg");
}
#player button.prev {
  background-image: url("../_img/next.svg");
  transform: rotate(180deg);
}
#player button.popout {
  background-image: url("../_img/external.svg");
}
#player button.popin {
  background-image: url("../_img/internal.svg");
}
#player button.mono {
  background-image: url("../_img/mono.svg");
}
#player button.mono.active {
  background-image: url("../_img/stereo.svg");
}
#player button.volume {
  background-image: url("../_img/volume.svg");
}
#player button.volume.muted {
  background-image: url("../_img/volume-muted.svg");
}
#player button.info {
  background-image: url("../_img/info.svg");
  position: absolute;
  right: 0;
  top: 82px;
}
#player #playerButtons {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
#player #visualizer {
  width: 300px;
  background-color: #30393b;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#player #visualizer #patternView {
  position: absolute;
  left: 4px;
  top: 0;
  font-family: "Workbench", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  font-variation-settings: "BLED" 0, "SCAN" 0;
}
#player #visualizer #patternView div {
  white-space: nowrap;
}
#player #visualizer #patternView b {
  color: #e7b47c;
}
#player #visualizer #patternView em {
  color: #66dc9d;
  font-style: normal;
}
#player #visualizer #topBar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 53px;
  background: linear-gradient(0, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-bottom: 1px solid #558e7e;
}
#player #visualizer #centerBar {
  position: absolute;
  top: 53px;
  height: 15px;
  left: 0;
  right: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-color: #00b1ff;
}
#player #visualizer #bottomBar {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-top: 1px solid #170e0e;
}
#player .panel:nth-child(1) {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  position: relative;
}

@media (max-width: 800px) {
  #player #mainDisplay div {
    display: none;
  }
  #player #volumePanel,
  #player button.info {
    display: none;
  }
}
@media (max-width: 640px) {
  main {
    padding-bottom: 270px;
  }
  header .modarchive {
    width: 250px;
    background-repeat: no-repeat;
  }
  #player {
    height: 260px;
  }
  #player.active {
    display: block;
  }
  #player #visualizer {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 420px) {
  header .logo {
    width: 68px;
  }
  header .modarchive {
    left: 90px;
  }
}
.range {
  width: 100%;
  position: relative;
}
.range .bar,
.range .progress {
  background-color: #616161;
  position: absolute;
  height: 2px;
  left: 0;
  top: 7px;
  right: 0;
}
.range .progress {
  background-color: #7dd3bd;
  top: 0;
  width: 0;
  right: unset;
}

input[type=range] {
  width: 100%;
  margin: 0;
  background-color: transparent;
  -webkit-appearance: none;
  position: relative;
  z-index: 1;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  width: 100%;
  height: 16px;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  margin-top: -0.15px;
  width: 16px;
  height: 16px;
  background: #7dd3bd;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  width: 100%;
  height: 16px;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #7dd3bd;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
}

input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 3.65px 0;
  color: transparent;
  width: 100%;
  height: 15.7px;
  cursor: pointer;
}

input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0;
}

input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0;
}

input[type=range]::-ms-thumb {
  width: 16px;
  height: 16px;
  background: #7dd3bd;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}

.dropdown {
  position: relative;
}
.dropdown menu {
  position: absolute;
  display: none;
  list-style: none;
  background-color: black;
  border: 1px solid #515337;
  border-radius: 8px;
}
.dropdown menu.active {
  display: block;
}

.songs {
  margin: 10px 0;
}
.songs td {
  padding: 2px 4px;
}
.songs th {
  background-color: #172828;
  border-bottom: 1px solid #306265;
  font-weight: normal;
  text-align: left;
  padding: 2px 8px;
}
.songs a {
  color: #a4b8b1;
  text-decoration: none;
}
.songs a:hover {
  color: #1BC29A;
}
.songs a.title {
  width: 200px;
}
.songs a.artist {
  color: #e7b47c;
  margin-left: 6px;
}
.songs a.artist:hover {
  color: #1BC29A;
}
.songs i.format {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  font-style: normal;
  text-align: center;
  width: 30px;
  border: 1px solid #66b9dc;
  color: #66b9dc;
  vertical-align: middle;
}
.songs i.format.mod {
  border-color: #6cae73;
  color: #6cae73;
}
.songs i.format.it {
  border-color: #dc7f66;
  color: #dc7f66;
}
.songs i.format.s3m {
  border-color: #c6a75d;
  color: #c6a75d;
}

.song .title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.song .title .meta {
  display: flex;
  gap: 5px;
}
.song .actions {
  margin: 0 0 10px 0;
}
.song .body {
  display: flex;
  gap: 10px;
}
.song .body h2 {
  margin: 0;
}
.song .body .internal .internal-text {
  font-family: monospace;
  font-size: 14px;
  line-height: 14px;
}
.song .badges {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 250px;
}
.song .badges li {
  display: inline-block;
  background-color: #777;
  padding: 2px 4px;
  margin: 5px 0;
  border-radius: 4px;
  color: black;
  white-space: nowrap;
  font-size: 13px;
}

.artists {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.artists img {
  width: 120px;
  height: 120px;
  display: block;
  border: 1px solid #515952;
  transition: all 0.2s ease-in-out;
}
.artists a {
  color: #a4d3b4;
  text-decoration: none;
  margin: 6px;
}
.artists a:hover img {
  border: 1px solid #8ad78e;
  box-shadow: 1px 1px 16px #1BC29A;
}

form .mb-3 {
  margin-bottom: 12px;
}
form .form-label {
  display: inline-block;
  font-size: 14px;
  min-width: 100px;
}
form .form-control.textinput, form .form-control.emailinput {
  background-color: #333;
  padding: 4px 8px;
  font-size: 14px;
  border: 1px solid #666;
  color: #fff;
}
form.block .form-label {
  display: block;
}
form.block input[type=text],
form.block input[type=number] {
  width: 100%;
  background-color: #333;
  padding: 4px 8px;
  font-size: 14px;
  border: 1px solid #666;
  color: #fff;
}
form.block select[multiple=multiple],
form.block select.selectmultiple {
  width: 100%;
  background-color: #333;
  padding: 4px 8px;
  font-size: 14px;
  border: 1px solid #666;
  color: #fff;
}

.small {
  font-size: 12px;
  color: #ccc;
}

footer {
  margin: 20px 0 150px 0;
}

.alert {
  display: block;
  border: 1px solid #888;
  border-radius: 6px;
  padding: 10px;
  margin: 10px 0;
}
.alert.warning, .alert.alert-warning {
  border-color: #6e1c1c;
  color: #a86a59;
}

.fixed-alert {
  position: fixed;
  top: 0;
  right: 0;
  background-color: red;
  color: white;
  padding: 4px 8px;
  font-size: 10px;
  z-index: 1000;
}

/*# sourceMappingURL=main.css.map */
