/* import external stylesheets - everything here gets bundled into bass.min */
@import url(./ext/settings-card.css);
@import url(./ext/input.css);
@import url(./ext/equalizer.css);
@import url(./ext/loader.min.css);
@import url(./ext/tuesday.min.css);
@import url(./ext/firefly.min.css);
@import url(./ext/chapter-select.css);
@import url(./partial/menu.css);
@import url(./partial/volume.css);
@import url(./partial/welcome.css);
@import url(./partial/chapters.css);
@import url(./partial/tracklist.css);
@import url(./partial/animations.css);
@import url(./partial/footer.player.css);
@import url(./partial/track.info.modal.css);

/* default styles */
*:focus:focus-visible {
  outline: none;
}

*:focus-visible {
  outline: none;
}

*:focus {
  outline: none;
}

.disabled {
  pointer-events: none;
  filter: contrast(0.1);
  color: black;
}

.off {
  pointer-events: none!important;
  opacity: 0!important;
}

img {
  pointer-events: none;
}

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, s, samp, small, strike, 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

canvas {
  width: 100%;
  height: 100%;
  position: fixed;
  opacity: .75;
  z-index: 9999;
  transition: opacity 800ms ease-in-out;
}

/* HTML5 display-role reset for older browsers */
ol, ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.access-link {
  color: #7bd2e3;
  font-weight: bold;
}

a:hover, a:visited {
  text-decoration: none;
}

button {
  background: transparent;
  box-shadow: 0px 0px 0px transparent;
  border: 0px solid transparent;
  text-shadow: 0px 0px 0px transparent;
  color: #fefefe;
  padding: 0;
  display: inline-block;
  cursor: pointer;
}

button:active {
  outline: none;
  border: none;
}

.gray {
  filter: grayscale(1);
}
.show {
  display: block !important;
}

.hide {
  opacity: 0!important;
  pointer-events: none!important;
  transition: opacity .3s ease-out;
}

.remove {
  display: none;
  transition: opacity .3s ease-out;
}

.end-animation {
  animation-iteration-count: 1;
}

.avail {
  pointer-events: all;
}

.open {
  opacity: 1;
  pointer-events: all;
}

.freeze {
  pointer-events: none!important;
}

.bold {
  font-weight: 400;
}

.invert {
  opacity: 0.4;
}

.pause-an {
  animation-play-state: paused;
}

.flip {
  transform: rotate(180deg);
  transition: 0.2s ease;
  transition-delay: 0.03s;
}

.flip-back {
  transform: rotate(0deg);
  transition: 0.2s ease;
  transition-delay: 0.03s;
}

.stop-animation {
  animation-iteration-count: 1;
}

.fa-bounce {
  animation-delay: 5s;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

.smooth {
  scroll-behavior: smooth;
}

/* app base */

html, body {
  font-size: 68%;
  overscroll-behavior: none !important;
}

body {
  background: #111;
  color: #fefefe;
  font-family: "Raleway", sans-serif;
  opacity: 1;
  letter-spacing: 0.2em;
  opacity: 0;
  overflow: hidden;
  transition: opacity 800ms ease-in-out;
}

strong {
  font-weight: 400;
}

.fa-2x {
  font-size: 2.1rem;
}

.fa-stack-2x {
  opacity: .15;
}

.fa-stack:hover {
  opacity: .85;
}

.noselect {
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}

.app-container {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  width: 100vw;
  transition: opacity .8s ease-in-out;
  opacity: 0;
}

.theme-img-container {
  height: 100dvh;
  width: 100vw;
  position: fixed;
  transition: opacity .2s ease-in-out;
}

.theme-img-container img {
  height: 100dvh;
  width: 100vw;
  object-fit: cover;
  transition: opacity .3s ease-in-out;
}

.gradient-container-left {
  background: rgba(0,0,0,0.2);
  background-size: cover;
  background-position: center;
  display: flex;
  height: 100dvh;
  width: 100vw;
  position: fixed;
}

/* screen queries  */
@media only screen and (min-width: 2000px) {
  .sliders {
    width: 25%;
  }
  .tip-message {
    width: 33vw;
  }
  .welcome-message {
    width: 70vw;
  }
  .welcome-message-2 {
    width: 70vw;
  }
  .close-tracklist {
    bottom: 75px;
  }
  .scroll-down {
    bottom: 80px;
  }
  .scroll-up {
    bottom: 80px;
  }
}

@media only screen and (max-width: 1920px) {
  .tip-message {
    width: 50vw;
  }
  .welcome-message-2 {
    width: 70vw;
  }
}

@media only screen and (max-width: 1280px) {
  .wishlist-list {
    width: 100vw;
    padding: 0 70px;
  }
  .tracklist-title {
    width: 100%;
    top: 50px;
    padding: 0 70px 21px;
  }
  .download-track {
    right: 71px;
   }
   .explore-artist {
    right: 165px;
   }
   .modal-options {
    right: 100px;
   }
   .close-tracklist {
    left: 70px;
   }
}

@media only screen and (max-width: 940px) {
  .wishlist-modal {
    width: 100vw;
  }
  .wishlist-list {
    width: 100vw;
    padding: 0 50px;
  }
  .tracklist-title {
    width: 100%;
    top: 50px;
    padding: 0 51px 21px;
  }
  .collection-title {
    left: 0%;
    width: 100%;
  }
  .download-track {
    right: 51px;
  }
  .explore-artist {
    right: 100px;
  }
  .scene-select-wrapper {
    transform: scale(.69);
  }
  .tip-message {
    width: 80vw;
  }
  .welcome-message-2 {
    width: 90vw;
  }
  .welcome-message {
    width: 90vw;
  }
  .sliders {
    width: 54%;
  }
  .track-list-container {
    max-width: 475px;
  }
  .modal-options {
    right: 75px;
   }
   .close-tracklist {
    left: 50px;
   }
}

@media only screen and (max-width: 750px) {
  html, body {
    font-size: 66%;
  }
  .wishlist-modal {
    width: 100vw;
  }
  .wishlist-list {
    width: 100vw;
    padding: 0 30px;
    margin-top: 125px; 
    height: 66dvh;
    font-size: 1.4rem;
  }
  .app-settings-window {
    width: 100vw;
  }
  .app-settings-list {
    width: 100vw;
    font-size: 1.7rem;
  }
  .tip-message {
    width: 85vw;
  }
  .welcome-message {
    font-size: 1.75rem;
    line-height: 3.75rem;
  }
  .welcome-message-2 {
    font-size: 1.8rem;
  }
  .tip-modal-container button {
    font-size: 1.35rem;
  }
  .tip-modal a {
    font-size: 1.8rem;
}
  .footer {
    font-size: 1.62rem;
  }
  .toggle-settings {
    right: 30px;
    bottom: 34px;
    font-size: 2rem;
  }
  .view-track-notes {
    left: 30px;
    bottom: 110px;
    font-size: 2rem;
  }
  .footer .song-title {
    display: inline-block;
    font-size: 1.5rem;
  }
  .track-info {
    width: 80vw;
  }
  .track-modal {
    height: 280px;
  }
  .tip-modal .song-title {
    font-size: 1.85rem;
  }
  .tip-modal .song-artist {
    font-size: 1.85rem;
  }
  .app-options {
    left: 25px;
    top: 25px;
    font-size: 2.6rem;
  }
  .track-list-container {
    max-width: 400px;
  }
  .tracklist-title {
    width: 100%;
    top: 50px;
    padding: 0 31px 21px;
  }
  .grid {
    margin-bottom: -25px;
  }
  .firefly {
    width: 0.65vw;
    height: 0.65vw;
  }
  .toggle-wishlist {
    right: 30px;
  }
  .menu {
    left: 30px;
  }
  .explore-artist {
    right: 80px;
  }
  .download-track {
    right: 33px;
  }
  .buy-label {
    padding-right: 1px;
  }
  .sliders {
    width: 85%;
  }
  .sound-settings {
    left: 30px;
    bottom: 34px;
    font-size: 2rem;
  }
  .play-controls {
    margin-left: -5px;
    gap: 32px;
  }
   .chapter-select {
    font-size: 1.9rem;
    top: 30px;
   }
  .scene-select-wrapper {
    transform: scale(.67);
    margin-top: -80px;
    flex-wrap: wrap;
  }
  .channel-border {
    transform: scale(.87);
  }
  .play-live {
   transform: translate(3px, 1px);
  }
  .pause-live {
   transform: translate(3px, 1px);
  }
  .modal-options {
    right: 55px;
  }
  .app-settings-layout {
    flex-direction: row;
  }
  .clip-board {
    top: 42px;
    bottom: auto;
    font-size: 1.12rem;
    width: 115px;
    padding: 13px;
  }
  .close-tracklist {
    position: fixed;
    left: 30px;
    bottom: 50px;
  }
  .scroll-down {
    bottom: 120px;
  }
  .scroll-up {
    bottom: 120px;
  }
  .close-settings {
    right: 30px;
  }
}

/* smallest portrait */
@media only screen and (max-width: 550px) {
  html, body {
    font-size: 64%;
  }
  .channel-select {
    font-size: 1.55rem;
  }
  .wishlist-list {
    height: 63dvh;
  }
  .footer {
    height: 300px;
  }
  .loader {
    margin-top: -50px;
  }
  .close-settings {
    right: 30px;
  }
}

@media only screen and (max-height: 649px) {
  html, body {
    font-size: 71%;
  }
  .tracklist-title {
    top: 25px;
  }
  .app-settings-list {
    height: 90vh;
    font-size: 1.7rem;
    line-height: 1.5rem;
    padding: 0 25px;
  }
  .wishlist-modal {
    width: 100vw;
  }
  .wishlist-list {
    margin-top: 125px;
    width: 100vw;
    padding: 0 45px;
    height: 57dvh;
  }
  .tracklist-title {
    width: 100%;
    top: 50px;
    padding: 0 45px 21px;
  }
  .track-modal {
    height: 230px;
  }
  .scene-select-label {
    padding-top:15px;
  }
  .download-track {
    right: 50px;
  }
  .toggle-wishlist {
    bottom:40px;
  }
  .view-track-notes {
    bottom:40px;
  }
  .play-controls {
    bottom:37px;
  }
  .now-playing {
    bottom:103px;
  }
  .sk-chase2 {
    width: 30px;
    height: 30px;
  }
  .sliders {
    width: 42%;
    font-size: 2.25rem;
  }
  .scene-select-wrapper {
    margin-top: 100px;
    transform: scale(.65);
  }
  .tip-message {
    width: 80vw;
  }
  .tip-modal {
    padding: 0px 50px;
  }
  .sound-settings {
    bottom: 40px;
  }
  .toggle-settings {
    bottom: 40px;
  }
  .close-settings {
    bottom: 40px;
    right: 30px;
  }
  .ko-fi {
    top: 40px;
  }
  .modal-options {
    right: 65px;
  }
  .close-tracklist {
    left: 45px;
    bottom: 85px;
  }
  .scroll-down {
    bottom: 105px;
  }
  .scroll-up {
    bottom: 105px;
  }
  .loader {
    margin-top: -50px;
  }
}

@media only screen and (max-height: 500px) and (max-width: 500px) {
  html, body {
    font-size: 70%;
  }
  .app-settings-list {
    height:95vh;
  }
  .now-playing {
    bottom: 115px;
  }
  .play-controls {
    bottom: 40px;
  }
  .loader {
    margin-top: -50px;
  }
}

@media only screen and (max-height: 450px) {
  html, body {
    font-size: 66%;
  }
  .tip-message {
    width: 70vw;
  }
  .welcome-message {
    width: 70vw;
  }
  .welcome-message-2 {
    width: 70vw;
  }
  .sliders {
    width: 50%;
    padding: 15px;
  }
  .visual-control {
    display: none!important;
  }
  .now-playing {
    bottom: 115px;
  }
  .play-controls {
    bottom: 40px;
  }
  .wishlist-list {
    height: 50vh;
  }
}



