﻿/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/
@import url(reset.css);



/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



/* montserrat-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* noto-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
  --muted: #fff;
  --text-color: #000;
  --app-bg-color: rgba(255, 255, 255, 0.3);
  --normal-bg-color: rgba(255, 255, 255, 0.8);
  --active-song-bg-color: #000;
  --box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
  --white-color: #fff;
  --dark-color: #000;
  --progress-bg-color: rgba(0, 0, 0, 0.2);
  --light-weight: 300;
  --normal-weight: 400;
  --bold-weight: 700;
  --border-radius: 10px;
  --blur: 20px;
}

body, html {
  font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
}

.dark-mode {
  --text-color: #fff;
  --app-bg-color: rgba(16, 18, 27, 0.4);
  --normal-bg-color: rgba(16, 18, 27, 0.7);
  --active-song-bg-color: rgba(16, 18, 27, 0.7);
}
.dark-mode .dark-icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.dark-mode input[type='range'] {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.dark-mode input[type='range']::-webkit-slider-thumb {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.dark-mode input[type='range']::-moz-range-thumb {
  -webkit-filter: invert(1);
  filter: invert(1);
}

@media (max-width: 768px) {
  :root {
    --normal-bg-color: rgba(255, 255, 255, 0.8);
  }

  .dark-mode {
    --normal-bg-color: rgba(16, 18, 27, 0.8);
  }
}
body {
  --padding: 25px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: url(../songs/more-joh/thumbnail.jpg) no-repeat center;
  background-size: cover;
  height: 100vh;
  font-size: 15px;
  font-weight: var(--normalWeight);
  overflow: hidden;
}
body:before {
  content: '';
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.72)), to(rgba(255, 255, 255, 0.45)));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.45) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.45) 100%);
  width: 100%;
  height: 100vh;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-backdrop-filter: saturate(3);
  backdrop-filter: saturate(3);
}
body.dark-mode:before {
  opacity: 0;
}
@media (max-width: 768px), (max-height: 768px) {
  body {
    --padding: 15px;
  }
}

[alt='pause'] {
  display: none !important;
}

.btn {
  cursor: pointer;
}

.customSwitch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
.customSwitch .warper {
  width: 50px;
}
.customSwitch .warper .switch {
  position: absolute;
  visibility: hidden;
  margin-left: -9999px;
}
.customSwitch .warper .switch + label {
  position: relative;
  display: block;
  outline: none;
  border-radius: 30px;
  background-color: #dddddd;
  width: 50px;
  height: 25px;
  padding: 2px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.customSwitch .warper .switch + label:before, .customSwitch .warper .switch + label:after {
  content: '';
  position: absolute;
  top: 50%;
  bottom: 1px;
  left: 1px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.customSwitch .warper .switch + label:before {
  right: 1px;
  border-radius: 30px;
  background-color: #f1f1f1;
  height: 100%;
}
.customSwitch .warper .switch + label:after {
  border-radius: 100%;
  background-color: #fff;
  width: 25px;
  height: 25px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
.customSwitch .warper .switch:checked + label:before {
  background-color: #32d74b;
}
.customSwitch .warper .switch:checked + label:after {
  -webkit-transform: translate(25px, -50%);
  -ms-transform: translate(25px, -50%);
  transform: translate(25px, -50%);
}

/** APP **/
#app {
  z-index: 2;
  position: relative;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--border-radius);
  background-color: var(--app-bg-color);
  max-width: 1800px;
  width: 98vw;
  max-height: 900px;
  height: 98vh;
  color: var(--text-color);
  backdrop-filter: blur(var(--blur));
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  /* KRITISCH: Muss visible sein, damit die Suche oben "rausschweben" kann */
  overflow: visible !important;
}

/** HEADER **/
header {
  z-index: 10000;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--padding);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
header .logo {
  margin-right: 100px;
}
header .logo svg {
  width: 20px;
  fill: #fff;
}
header .logo { position: absolute; left: 20px; top: 20px; }
header .logo img { width: 60px; }
header .search {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  min-width: 450px;
  z-index: 10001;
  display: flex;
  align-items: center;
  background: var(--normal-bg-color);
  padding: 10px 15px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
header .search__icon {
  width: 18px;
  fill: var(--text-color); 
  margin-right: 10px; 
  opacity: 0.6;
}
header .search__input {
  border: 0;
  background: transparent;
  width: 100%;
  font-weight: var(--light-weight);
  color: var(--text-color);
  font-family: inherit; 
  font-size: 14px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
header .search__input:focus {
  outline: none;
}
header .search__input::-webkit-input-placeholder {
  color: inherit;
}
header .search__input::-moz-placeholder {
  color: inherit;
}
header .search__input:-ms-input-placeholder {
  color: inherit;
}
header .search__input::-ms-input-placeholder {
  color: inherit;
}
header .search__input::placeholder {
  color: var(--text-color);
  opacity: 0.5;
}

header .search #search__box {
  z-index: 10002;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  border-radius: var(--border-radius);
  margin-top: 5px;
  background-color: var(--normal-bg-color);
  backdrop-filter: blur(20px);
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
header .search #search__box:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .search #search__box .item {
  display: none;
  border-radius: 5px;
  max-height: 50px;
  padding: 5px;
  cursor: pointer;
  transition: background 0.2s;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
header .search #search__box .item.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .search #search__box .item__thumb {
  border-radius: 5px;
  width: 40px;
  height: 40px;
  overflow: hidden;
}
header .search #search__box .item__thumb img {
  width: 100%;
  height: 100%;
}
header .search #search__box .item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 11px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
header .search #search__box .item__info .info__title {
  width: 100%;
  font-size: 14px;
  font-weight: 600; 
  color: var(--text-color);
}
header .search #search__box .item__info .info__author { 
  font-size: 12px; 
  opacity: 0.7; 
  color: var(--text-color); 
}
header .search #search__box .item__info > div:not(.info__title):not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
header .search #search__box .item__info > div:not(.info__title):not(:last-child):after {
  content: '\25CF';
  display: inline-block;
  margin: 0 5px;
  font-size: 7px;
}
header .search #search__box .item:hover {
  background: rgba(128,128,128,0.2);
}
header .search:focus-within input {
  color: var(--white-color);
}
header .search:focus-within svg {
  fill: var(--white-color);
}
header .search:focus-within #search__box {
  display: flex;
}
header .settings {
  position: relative;
}
header .settings__toggle {
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: absolute; 
  right: 20px; 
  top: 15px; 
  z-index: 10005; 
  cursor: pointer;
}
header .settings__toggle svg {
  width: 25px;
  height: 30px;
  fill: var(--text-color);
}
header .settings__box {
  z-index: 2;
  position: absolute;
  right: 0;
  display: none;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--border-radius);
  margin-top: 10px;
  background-color: var(--normal-bg-color);
  width: 200px;
  padding: 10px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -ms-flex-align: start;
  row-gap: 15px;
}
header .settings__box.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .settings__box #reset {
  border-radius: var(--border-radius);
  background-color: #ff453a;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
header .settings__box.active + .overlay {
  display: block;
}
header .settings .overlay {
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none;
  width: 200vw;
  height: 200vh;
}

/** FOOTER **/
footer {
  z-index: 5;
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--normal-bg-color);
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
  padding: var(--padding);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
footer input[type='range'] {
  background-color: var(--progress-bg-color);
  width: 100%;
  height: 2px;
  -webkit-appearance: none;
  flex: 1; 
  cursor: pointer;
}
footer input[type='range']::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  border: 0;
  border-radius: 50%;
  background-color: var(--white-color);
  width: 13px;
  height: 13px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
footer input[type='range']::-moz-range-thumb {
  z-index: 2;
  position: relative;
  border: 0;
  border-radius: 50%;
  background-color: var(--white-color);
  width: 13px;
  height: 13px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
footer > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
footer .time {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: flex; 
  align-items: center; 
  gap: 15px;
}
footer .time span {
  width: 50px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
}
footer .volume__mute {
  width: 20px;
  height: 20px;
}
footer .volume__mute img {
  width: 100%;
}
footer .volume__progress {
  max-width: 100px;
}
@media (max-width: 768px) {
  footer .volume {
    display: none;
  }
}

/** MAIN **/
#main {
  z-index: 1;
  max-height: 100%;
  padding: 100px 0;
  padding-top: 80px;
}
#main .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  height: 20px;
  padding: 0;
  list-style: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
}
#main .owl-dots button {
  display: block;
  border: 0;
  border-radius: 50%;
  margin: 0;
  background-color: #A0A0A0;
  width: 9px;
  height: 9px;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#main .owl-dots button.active {
  background-color: #000;
  width: 14px;
  height: 14px;
}
#main .playList {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  margin: auto;
  max-width: 1100px;
  width: 90vw;
  max-height: 80vh;
  padding: 15px 0;
  -ms-grid-columns: 3fr 25px 5fr;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  gap: 40px;
}
#main .playList__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  border-radius: var(--border-radius);
  background-color: var(--normal-bg-color);
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  padding: 20px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  row-gap: 20px;
}
#main .playList__control > * {
  width: 100%;
}
#main .playList__thumb {
  display: block;
  border-radius: var(--border-radius);
  max-height: 316px;
  height: 100%;
  overflow: hidden;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
#main .playList__thumb img {
  width: 100%;
}
#main .playList__controlBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
#main .playList__controlBar img {
  width: 20px;
}
#main .playList__controlBar .btn {
  height: 30px;
  padding: 5px 0;
}
#main .playList__controlBar .btn-play {
  display: -ms-grid;
  display: grid;
  place-items: center;
  border: 2px solid var(--text-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
#main .playList__controlBar .btn.active {
  border-bottom: 2px solid var(--text-color);
}
#main .playList__heading {
  margin-bottom: 20px;
  padding: 0 20px;
}
#main .playList__title {
  display: -webkit-box;
  max-width: 500px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 24px;
  font-family: 'Montserrat';
  font-weight: var(--bold-weight);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#main .playList__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
#main .playList__info > div:not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
#main .playList__info > div:not(:last-child):after {
  content: '\25CF';
  display: inline-block;
  margin: 0 10px;
  font-size: 10px;
}
#main .playList__songs {
  --height-item: 60px;
  position: relative;
  max-height: calc(var(--height-item) * 5);
  overflow: auto;
  scrollbar-width: none;
}
#main .playList__songs .song {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--border-radius);
  height: var(--height-item);
  padding: 15px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  gap: 15px;
}
#main .playList__songs .song__action {
  width: 15px;
}
#main .playList__songs .song__action img {
  display: none;
  width: 15px;
}
#main .playList__songs .song__name {
  display: block;
  display: -webkit-box;
  width: 100%;
  font-family: 'Noto Sans', 'Segoe UI', 'Arial', sans-serif;
  overflow: hidden;
  padding-right: 30px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
  line-height: 1.3;
}
#main .playList__songs .song__duration {
  display: none !important;
}
#main .playList__songs .song.active {
  background-color: var(--active-song-bg-color);
  color: var(--white-color);
}
#main .playList__songs .song.active .song__action img {
  display: block;
}
#main .playList__songs .song.active .song__order {
  display: none;
}
#main .playList__songs .song.active .song__duration {
  opacity: 1;
}
#main .owl-stage {
  display: flex;
}
#main .owl-stage .owl-item {
  float: unset;
}
#main .owl-stage .owl-item:not(.center) .playList {
  pointer-events: none;
}
#main .playing .playList__controlBar [alt='play'],
#main .playing .song.active [alt='play'] {
  display: none !important;
}
#main .playing .playList__controlBar [alt='pause'],
#main .playing .song.active [alt='pause'] {
  display: block !important;
}
@media (max-width: 768px), (max-height: 768px) {
  #main {
    padding: 60px 0 50px;
  }
  #main .owl-dots {
    margin: 15px 0;
  }
  #main .playList {
    grid-template-columns: 1fr;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    -ms-grid-columns: 1fr;
    row-gap: 20px;
    padding: 20px;
  }
  #main .playList__control {
    max-height: 250px;
    padding: 10px;
    row-gap: 10px;
  }
  #main { 
    padding-top: 70px; 
  }
}
@media (min-width: 320px) and (max-width: 768px) {
  #main .playList__songs {
    --height-item: 50px;
    max-height: calc(var(--height-item) * 5);
  }
    #main .owl-dots {
    margin: 0px 0;
  }
}
@media (max-width: 568px), (max-height: 320px) {
  #main .playList__songs {
    --height-item: 45px;
    max-height: calc(var(--height-item) * 4);
  }
}
.dark-mode #main .owl-dots button {
  background-color: #555555;
}
.dark-mode #main .owl-dots button.active {
  background-color: #FFFFFF;
}

/** NOTIFICATIONS **/
#notifications {
  z-index: 3;
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  color: var(--text-color);
}
#notifications #notifications__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
#notifications #notifications__box .notification {
  opacity: 0;
  -webkit-transform: translateX(110%);
  -ms-transform: translateX(110%);
  transform: translateX(110%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: var(--border-radius);
  margin-bottom: 0;
  background-color: var(--normal-bg-color);
  width: 300px;
  max-height: 0;
  padding: 15px;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  row-gap: 3px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
#notifications #notifications__box .notification__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
#notifications #notifications__box .notification__author {
  font-weight: 600;
}
#notifications #notifications__box .notification__title {
  text-transform: uppercase;
  font-size: 13px;
}
#notifications #notifications__box .notification__content {
  margin: 0;
  line-height: 1;
  font-weight: var(--normalWeight);
}
#notifications #notifications__box .notification.active {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  margin-bottom: 10px;
  max-height: 300px;
  padding: 10px 15px;
}

/** Loading **/
#loading {
  z-index: 99999;
  position: fixed;
  inset: 0;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  margin: 0px;
  background-color: #f7f7f7;
  width: 100vw;
  height: 100vh;
  padding: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
#loading .box_section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: #fff;
  width: 120px;
  height: 120px;
  -webkit-animation: 1s ease-in-out alternate infinite shadows;
  animation: 1s ease-in-out alternate infinite shadows;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
#loading .site_logo {
  width: 100px;
}
#loading .img_filter {
  position: absolute;
  opacity: 0.45;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#f6f7f9), color-stop(20%, #e9ebee), color-stop(40%, #f6f7f9), to(#f6f7f9)) no-repeat;
  background: -o-linear-gradient(left, #f6f7f9 0%, #e9ebee 20%, #f6f7f9 40%, #f6f7f9 100%) no-repeat;
  background: linear-gradient(to right, #f6f7f9 0%, #e9ebee 20%, #f6f7f9 40%, #f6f7f9 100%) no-repeat;
  width: 120px;
  height: 120px;
  -webkit-animation-name: placeHolderShimmer;
  -webkit-animation-duration: 0.9s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
@-webkit-keyframes shadows {
  0% {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  100% {
    -webkit-box-shadow: 9px 16px 8px #e3e3e3;
    box-shadow: 9px 16px 8px #e3e3e3;
  }
}
@keyframes shadows {
  0% {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  100% {
    -webkit-box-shadow: 9px 16px 8px #e3e3e3;
    box-shadow: 9px 16px 8px #e3e3e3;
  }
}

/** NAV LEGAL **/
.nav-legal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.7;
  z-index: 10;
}
.nav-legal a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 15px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.nav-legal a:hover {
  opacity: 1;
  color: var(--dark-color);
}
.dark-mode .nav-legal a:hover {
  color: #999; 
}

/** RESET INFO **/
.reset-info {
  font-size: 0.8rem;
  padding: 0 1rem 1rem 1rem;
  opacity: 0.7;
  line-height: 1.3;
}

/** SHARE OVERLAY **/
.share-overlay {
  position: fixed; 
  z-index: 20000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none; 
  justify-content: center; 
  align-items: center;
}
.share-overlay.active { 
  display: flex; 
}

.share-box {
  background: var(--normal-bg-color);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  backdrop-filter: blur(var(--blur));
}
.share-box h3 {
  color: var(--text-color);
  margin-bottom: 20px;
}

.share-options {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.share-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-btn:hover { 
  transform: scale(1.2); 
}

.close-overlay {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color); 
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.close-overlay:hover {
  background: var(--text-color);
  color: var(--normal-bg-color);
}

/** MISC **/
.dark-mode .dark-icon { filter: brightness(0) invert(1); }

/** SPLASHSCREEN **/
#splashscreen {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex; justify-content: center; align-items: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#splashscreen img { 
  width: 300px; 
  height: auto;
}
body.is-loading #app { filter: blur(15px); }
body.is-loading {
  overflow: hidden;
}

/** INFO OVERLAY **/
.overlay-container {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 100000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}
.overlay-container.active {
  display: flex;
}

.overlay-content {
  background: var(--normal-bg-color);
  padding: 30px; border-radius: 15px;
  max-width: 90%; color: var(--text-color);
  position: relative;
  max-width: 700px;        /* maximale Breite */
  width: 90%;  
  line-height: 1.5;
}
#closeInfo {
  position: absolute; top: 10px; right: 15px;
  background: none; border: none; font-size: 24px; color: var(--text-color);
}

/** SCHRIFTART FIX **/
.time__current, .time__duration, .song__duration, footer .time span {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
}

/** HEADER – Hamburger & Layout **/
.header-left {
  display: flex;
  align-items: center;
  margin: 0px 0 0 80px;
  gap: 15px;
}

/* Hamburger Button */
.hamburger {
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 10006;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-color);
}

/** MOBILE MENU **/
.mobile-menu {
  position: absolute;
  top: 70px;
  left: 20px;
  min-width: 400px;
  padding: 20px 25px 40px;
  display: none;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
.mobile-menu.active {
  display: flex;
}
.dark-mode .mobile-menu {
  background: rgba(16, 18, 27, 0.75);
}

/* Menü-Links */
.mobile-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  transition: opacity 0.2s;
}
.mobile-menu a:hover {
  opacity: 0.7;
}

/* Weniger wichtige Links */
.mobile-menu .menu-secondary {
  font-size: 12px;
  line-height: 10px;
  opacity: 0.75;
  padding: 0 !important;
}

/* Trennlinie */
.mobile-menu .menu-divider {
  border: none;
  height: 1px;
  margin: 12px 0;
  background: rgba(0, 0, 0, 0.15);
}
.dark-mode .mobile-menu .menu-divider {
  background: rgba(255, 255, 255, 0.2);
}

.menu-secondary-row {
  display: flex;
  gap: 12px;          /* Abstand zwischen den Links */
  flex-wrap: wrap;   /* optional für kleine Displays */
}


/* Erklärende Texte */
.mobile-menu .menu-note {
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.6;
  margin: 4px 0 6px;
  pointer-events: none;
}

#mobileMenuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 900;
}
#mobileMenuOverlay.active {
  display: block;
}

/** ALBUM BACKGROUND **/
#album-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  filter: blur(40px);
  transform: scale(1.1);
}
#album-background .bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
#album-background .bg-layer.active {
  opacity: 1;
}
#album-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

/** INFO SLIDE **/
.infoSlide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 1000px;
  max-width: 90vw;
  height: 500px;
  font-family: 'Montserrat', sans-serif;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.dark-mode .infoSlide {
  background: rgba(16, 18, 27, 0.25);
}

/* Linke Seite */
.infoSlide__left {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Kreuz */
.infoSlide__cross {
  position: relative;
  width: 140px;
  height: 140px;
}
.infoSlide__cross::before,
.infoSlide__cross::after {
  content: "";
  position: absolute;
  background: #ffffff;
}
/* Vertikaler Balken */
.infoSlide__cross::before {
  width: 10px;
  height: 140px;
  left: 50%;
  transform: translateX(-50%);
}
/* Horizontaler Balken */
.infoSlide__cross::after {
  width: 140px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
}
/* Dark Mode → Kreuz weiß */
.dark-mode .infoSlide__cross::before,
.dark-mode .infoSlide__cross::after {
  background: #ffffff;
}

/* Rechte Seite */
.infoSlide__right {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.infoSlide__right h2 {
  font-size: 28px;
  margin-bottom: 0px;
}
.infoSlide__right p {
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}
.infoSlide__right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.infoSlide__right li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.infoSlide__right li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -6px;
  font-size: 26px;
  line-height: 1.2;
  color: var(--text-color);
  opacity: 0.7;
}
.infoSlide__right li:hover::before {
  opacity: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.infoSlide__right a {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  padding-bottom: 2px;
  transition: border-bottom-style 0.2s ease,
              opacity 0.2s ease;
  opacity: 0.85;
}
.infoSlide__right a:hover {
  border-bottom-style: solid;
  opacity: 1;
}


header .search:focus-within input {
  color: var(--text-color);
}
header .search:focus-within svg {
  fill: var(--text-color);
}


/* 768 anpassungen */

@media (max-width: 768px) {
  .infoSlide {
    grid-template-columns: 1fr;
    height: auto;
  }
  .infoSlide__left {
    padding: 40px 0;
  }
  .infoSlide__right {
    padding: 30px;
  }
  header .search {
    display: flex !important;
    top: 60px;
    width: 90%;
    max-width: 360px;
    min-width: 220px;
  }
  header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: var(--padding) !important;
    height: auto;
  }
  header .logo {
    margin: 0 !important;
  }
  header .search {
    top: 15px;
    width: 50%;
    max-width: 250px;
  }
  
header .search {
    position: static;
    transform: none;
    flex: 1;
    margin-left: 40px;
    width: auto;
  }  
  
  
  .nav-legal {
    position: absolute !important;
    top: 20px;
    right: 20px;
    margin: 0 !important;
    line-height: 1;
  }
  header {
    align-items: center;
    padding: var(--padding);
  }
  .header-left {
    align-items: center;
  margin: 10px 0 0 80px;
}
    
    
  }
  header .logo {
    margin: 0;
    align-self: center;
  }
  header .search {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    width: 60%;
    max-width: 280px;
  }
  header .search__input {
    width: 100%;
  }
  .nav-legal {
    top: 20px;
    right: 20px;
    transform: none;
  }
  #app { 
    height: 100vh; 
    width: 100vw; 
    border-radius: 0; 
  }
}
/* ende 768 */


.search {
    position: relative;
    display: flex;
    align-items: center;
}

.search__clear {
    position: absolute;
    right: 15px; /* Abstand vom rechten Rand */
    cursor: pointer;
    font-size: 28px;
    color: #999;
    display: none; /* Standardmäßig ausblenden */
    z-index: 10;
    line-height: 1;
}

.search__clear:hover {
    color: #000; /* Farbe beim Drüberfahren */
}

@media (max-width: 768px) {

  header {
    top: 48px; /* Header etwas nach unten verschieben */
  }

}

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