html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .8;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .8;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .8;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .8;
  }
}

@-webkit-keyframes nameFade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: .7;
  }
}

@-moz-keyframes nameFade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: .7;
  }
}

@-ms-keyframes nameFade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: .7;
  }
}

@keyframes nameFade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: .7;
  }
}

@-webkit-keyframes longfade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: .8;
  }
  100% {
    opacity: 0;
  }
}

@-moz-keyframes longfade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: .8;
  }
  100% {
    opacity: 0;
  }
}

@-ms-keyframes longfade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: .8;
  }
  100% {
    opacity: 0;
  }
}

@keyframes longfade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: .8;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes brighten {
  0% {
    background-color: #010101;
  }
  50% {
    background-color: #010101;
  }
  100% {
    background-color: rgba(1, 1, 1, 0);
  }
}

@-moz-keyframes brighten {
  0% {
    background-color: #010101;
  }
  50% {
    background-color: #010101;
  }
  100% {
    background-color: rgba(1, 1, 1, 0);
  }
}

@-ms-keyframes brighten {
  0% {
    background-color: #010101;
  }
  50% {
    background-color: #010101;
  }
  100% {
    background-color: rgba(1, 1, 1, 0);
  }
}

@keyframes brighten {
  0% {
    background-color: #010101;
  }
  50% {
    background-color: #010101;
  }
  100% {
    background-color: rgba(1, 1, 1, 0);
  }
}

@-webkit-keyframes colorize {
  0% {
    filter: grayscale(100%);
  }
  75% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
  }
}

@-moz-keyframes colorize {
  0% {
    filter: grayscale(100%);
  }
  75% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
  }
}

@-ms-keyframes colorize {
  0% {
    filter: grayscale(100%);
  }
  75% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
  }
}

@keyframes colorize {
  0% {
    filter: grayscale(100%);
  }
  75% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
  }
}

.fade-out {
  animation: fadeOut ease-in 1;
  animation-fill-mode: none;
  animation-duration: 2s;
}

.fade-in {
  animation: fadeIn ease-in 1;
  animation-fill-mode: none;
  animation-duration: 3s;
}

.name-fade {
  animation: nameFade linear 1;
  animation-fill-mode: none;
  animation-duration: 10s;
}

.longfade {
  animation: longfade ease-in 1;
  animation-fill-mode: none;
  animation-duration: 25s;
}

.brighten {
  animation: brighten ease-in 1;
  animation-fill-mode: none;
  animation-duration: 20s;
}

.colorize {
  animation: colorize ease-in 1;
  animation-fill-mode: none;
  animation-duration: 20s;
}

body {
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.top {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(1, 1, 1, 0);
  opacity: 1;
  transition: background-color 0.6s, opacity 0.6s;
  transition-delay: 0s;
}

.dedark {
  opacity: .7;
  background-color: #010101;
  transition: background-color 0.6s, opacity 0.6s;
  transition-delay: 0s;
}

.bottom {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  text-align: center;
  transition: filter 0.3s;
  transition-delay: .3s;
  top: 0;
  left: 0;
  overflow: hidden;
}

.bottom.color {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: filter 0.3s;
  transition-delay: .3s;
}

.logo:hover {
  -webkit-filter: grayscale(0%);
  -webkit-transition: .5s ease-in-out;
  -moz-filter: grayscale(0%);
  -moz-transition: .5s ease-in-out;
  -o-filter: grayscale(0%);
  -o-transition: .5s ease-in-out;
  filter: grayscale(0%);
  transition: .5s ease-in-out;
}

.logo {
  position: relative;
  margin: 10vh 10vw;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1000;
  height: 80vh;
  width: 80vw;
  -webkit-filter: grayscale(100%);
  -webkit-transition: .5s ease-in-out;
  -moz-filter: grayscale(100%);
  -moz-transition: .5s ease-in-out;
  -o-filter: grayscale(100%);
  -o-transition: .5s ease-in-out;
  filter: grayscale(100%);
  transition: opacity 0.1s, filter 0.1s;
  opacity: 0;
  transition-delay: 0s;
}

.logo > div {
  max-width: 760px;
}

.logo .display {
  font-weight: regular;
  font-size: 3em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo .content {
  font-family: Knewave, sans-serif;
  font-weight: normal;
  font-size: 2.5em;
  letter-spacing: 8px;
  margin-top: 12px;
  color: #999;
}

.logo .controltext {
  margin-top: 30px;
}

.reappear {
  opacity: 1;
  transition: opacity 2s;
  transition-delay: .8s;
}

.player {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: auto;
}

#songinfo, #songinfohover {
  opacity: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  color: white;
  text-align: right;
  font-size: 1.3em;
  vertical-align: middle;
  padding: 100px 0px 30px 0;
  opacity: 0;
  transition: opacity 0.6s !important;
  margin-bottom: 30px;
}

#songinfo a, #songinfohover a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: arial, sans-serif;
  padding: 30px 100px 30px 50px;
  background-color: black;
}

#songinfohover:hover {
  opacity: 1 !important;
  transition: opacity 0.2s !important;
  animation-play-state: inherit;
}

.controlpanel {
  color: white;
  padding: 30px 30px 100px 100px;
  position: absolute;
  text-align: right;
  font-size: 1.3em;
  right: 0;
  opacity: 0;
  vertical-align: middle;
  transition: opacity 0.3s !important;
  cursor: default;
  z-index: 1001;
  user-select: none;
}

.controlpanel:hover {
  opacity: 1 !important;
}

.controlpanel .controls {
  display: flex;
  align-items: center;
}

.controlpanel .controls span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.controlpanel span {
  text-align: center;
  width: 50px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
}

.controlpanel span.mood {
  text-align: center;
}

.controlpanel span:hover i {
  transform: scale(1.5, 1.5);
  color: #f8f14f;
  transition: color 0.1s, transform 0.05s;
}

.controlpanel i {
  vertical-align: middle;
  transition: color 0.1s, transform 0.3s;
  margin-top: 3px;
}

.controltext {
  font-family: monospace;
  text-transform: uppercase;
  display: block;
  font-size: 1em;
  width: auto;
  background-color: black;
  color: white;
  padding: 5px 10px;
  vertical-align: middle;
  position: relative;
  height: auto;
  line-height: 1.2em;
}

.hide {
  display: none !important;
}

.show {
  display: inline-block;
}

.invisible {
  opacity: 0;
  transition: opacity 0.3s;
}

.moods {
  background-color: white;
  color: black;
  text-align: center;
  padding: 5px 5px;
  margin-top: 20px;
  width: 100%;
  position: relative;
  right: 5px;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.moods > div {
  flex: 1;
}

.moods span:hover i {
  color: #8d0100;
}

.author {
  font-size: .75em;
  font-family: monospace;
  text-align: center;
  margin-bottom: 3px;
}

div.mood {
  width: auto;
  transition: color 0.1s;
}

div.mood:hover {
  color: #8d0100;
  transition: color 0.1s;
}

#cookieConsent {
  display: none;
}

#cookieConsentInner {
  background-color: rgba(20, 20, 20, 0.8);
  min-height: 26px;
  font-size: 14px;
  color: #ccc;
  line-height: 26px;
  font-family: "Trebuchet MS",Helvetica,sans-serif;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

#cookieConsent a {
  color: #4B8EE7;
  text-decoration: none;
}

#closeCookieConsent {
  display: inline-block;
  cursor: pointer;
  height: 20px;
  width: 20px;
  font-weight: bold;
  flex: 0;
  align-self: flex-start;
  padding-right: 10px;
}

#closeCookieConsent:hover {
  color: #FFF;
}

#cookieConsent a.cookieConsentOK {
  background-color: #F1D600;
  color: #000;
  display: inline-block;
  border-radius: 5px;
  padding: 0 20px;
  cursor: pointer;
  margin: 0 20px 0 0px;
  flex: 0;
}

#cookieConsent a.cookieConsentOK:hover {
  background-color: #E0C91F;
}

#cookieConsentText {
  flex: 1;
  padding: 15px 30px;
  line-height: 1.2em;
}

.patchnotes {
  background-color: black;
  border: 1px solid white;
  color: white;
  font-size: 10pt;
  font-family: 'courier', monowidth;
  text-align: left;
  width: 360px;
  margin-top: 20px;
  max-height: 400px;
  overflow: auto;
}

.patchnotes h4 {
  padding-top: none !important;
  margin-top: none !important;
  font-size: 14pt;
  font-weight: bold;
  background-color: white;
  color: black;
  padding: 4px;
  text-align: center;
}

.patchnotes ul {
  padding: 10px;
}

.patchnotes span {
  padding-right: 6px;
  height: 100%;
  width: auto;
}

.patchnotes li {
  display: flex;
}

.patchnotes li + li {
  padding-top: 6px;
}

.version {
  list-style-type: none;
  font-weight: bold;
}
