/***
====================================================================
	Copyright by Null1 media
	Moritz Locher
	mail [at] null1 [dot] media
====================================================================
***/

/***
====================================================================
	Allgemein
====================================================================
***/
::-moz-selection {
  background-color: #1c3479;
  color: #fff;
}

::selection {
  background-color: #1c3479;
  color: #fff;
}

::-webkit-input-placeholder {
  color: #777;
  font-weight: 300;
}

::-moz-placeholder {
  color: #777;
  opacity: 1;
  font-weight: 300;
}

::-ms-input-placeholder {
  color: #777;
  font-weight: 300;
}

html {
  overflow-x: hidden;
}

:root {
  --radio-bar-height: 76px;
}

body {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #777;
  line-height: 1.625em;
}

select { display: block; }

figure { margin: 0; }

a { transition: all .3s ease 0s; }

a,
a:focus,
a:hover {
  color: #1c3479;
  text-decoration: none;
  outline: 0;
}

iframe { border: 0; }

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "DJ Streusel", sans-serif;
  color: #222;
  text-transform: uppercase;
  line-height: 1.5em;
  margin-top: 0;
  margin-bottom: 0;
}

h1,
.h1 { font-size: 42px; }

h2,
.h2 { font-size: 36px; }

h3,
.h3 { font-size: 30px; }

h4,
.h4 { font-size: 24px; }

h5,
.h5 { font-size: 18px; }

h6,
.h6 { font-size: 16px; }

@media (max-width: 991px) {
  h1,
  .h1 { font-size: 36px; }

  h2,
  .h2 { font-size: 30px; }

  h3,
  .h3 { font-size: 24px; }

  h4,
  .h4 { font-size: 18px; }

  h5,
  .h5 { font-size: 16px; }

  h6,
  .h6 { font-size: 16px; }
}

@media (max-width: 575px) {
  h1,
  .h1 { font-size: 30px; }

  h2,
  .h2 { font-size: 24px; }

  h3,
  .h3 { font-size: 22px; }

  h4,
  .h4 { font-size: 16px; }

  h5,
  .h5 { font-size: 16px; }

  h6,
  .h6 { font-size: 16px; }
}

td,
th { border-radius: 0px; }

.form-control {
  width: 100%;
  display: block;
  color: #777;
  line-height: 48px;
  background: transparent;
  border: 1px solid #d4d5e0;
  padding: 0 25px;
}

.fullscreen {
  min-height: calc(100vh - constant(safe-area-inset-top) * 1.1);
  min-height: calc(100dvh - env(safe-area-inset-top) * 1.1);
}

.font-primary {
  font-family: "DJ Streusel", sans-serif;
  text-transform: uppercase;
}

.color-primary { color: #1c3479; }

.background-primary { background: linear-gradient(45deg,rgba(81, 78, 133, 1) 0%, rgba(26, 23, 102, 1) 16%, rgba(38, 240, 242, 1) 100%); }

.btn-primary {
  position: relative;
  min-width: 215px;
  display: inline-block;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 40px;
  background: linear-gradient(45deg,rgba(81, 78, 133, 1) 0%, rgba(26, 23, 102, 1) 16%, rgba(38, 240, 242, 1) 100%);
  border-radius: 20px;
  padding: 0 30px;
  transition: color .3s ease 0s;
  cursor: pointer;
}

.btn-primary:hover { color: #1c3479; }

.btn-primary:focus { outline: none; }

.btn-primary span {
  position: relative;
  z-index: 2;
  color: inherit;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  z-index: 1;
  background: #fff;
  border-radius: 17px;
  opacity: 0;
  transition: opacity .3s ease 0s;
}

.btn-primary:hover::after { opacity: 1; }

/***
====================================================================
	Header
====================================================================
***/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background: transparent;
}

.header.is-sticky {
  position: fixed;
  animation: headerIn .4s ease both;
}

.header.is-leaving {
  position: fixed;
  animation: headerOut .4s ease both;
}

@media (min-width: 768px) {
  .header.is-sticky .menu-bar { display: none; }

  .header.is-sticky nav { transform: scale(1); }
}

@keyframes headerIn {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

@keyframes headerOut {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(45deg,rgba(81, 78, 133, 1) 0%, rgba(26, 23, 102, 1) 16%, rgba(38, 240, 242, 1) 100%);
  opacity: 0;
  transition: opacity .5s ease;
}

.header.is-sticky::before { opacity: 1; }

.navbar-brand {
  min-height: 90px;
  display: block;
  margin: 5px 0;
}

.navbar-brand img {
  max-width: 0;
  transition: all .3s ease 0s;
}

.header.is-sticky .navbar-brand img { max-width: 50px; }

.menu-bar { cursor: pointer; }

.menu-bar i {
  font-size: 24px;
  color: #fff;
}

.main-menubar { position: relative; }

nav {
  display: flex;
  justify-content: space-between;
  margin: 0 15px;
  transition: all .3s ease 0s;
  transform-origin: 100% 50%;
}

header.hide nav { transform: scale(0); }

nav a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin: 0 25px;
}

@media (max-width: 767px) {
  header:not(.hide) .navbar-brand img { max-width: 0; }
  .main-menubar,
  nav { width: 100%; }
  nav a { margin: 0; }
}

@media (max-width: 370px) {
  nav a { font-size: 12px; }
}

nav a:hover,
nav a:focus { color: #fff; }

/***
====================================================================
  Cookie-Zustimmung
====================================================================
***/
#cm.bar #c-inr { max-width: 35em; }

#cc_div #cm {
	font-family: "Poppins", sans-serif !important;
	color: #fff;
  background-color: #1c3479;
}

#cc_div #cm #c-ttl, #s-ttl {
	font-family: "DJ Streusel", sans-serif;
	font-size: 20px !important;
	font-weight: 500 !important;
  color: #fff;
  text-transform: uppercase;
}

#s-ttl { color: #000 !important; }

#cc_div #cm #c-txt {
  font-size: 1rem;
  font-weight: 300;
}

.cc_div .cc-link {
	font-weight: normal !important;
	color: #fff !important;
	border-bottom: 1px solid #fff !important;
}

.cc_div .c-bl .cc-link {
  color: #1c3479 !important;
	border-bottom: 1px solid #1c3479 !important;
}

.cc_div .c-bn:not(#s-c-bn) {
  position: relative;
  top: 0;
  font-size: 13px !important;
	font-weight: 500 !important;
  color: #1c3479 !important;
  text-transform: uppercase;
	background: #fff !important;
  border: 2px solid transparent;
	border-radius: 20px !important;
	padding: 10px 20px !important;
	transition: all .3s !important;
}

.cc_div .c-bn:not(#s-c-bn):hover {
  color: #fff !important;
  background: transparent !important;
  border-color: #fff !important;
}

.cc_div #s-inr .c-bn:not(#s-c-bn) {
  position: relative;
  top: 0;
  font-size: 13px !important;
	font-weight: 500 !important;
  color: #1c3479 !important;
  text-transform: uppercase;
	background: #fff !important;
  border: 2px solid #1c3479;
	border-radius: 20px !important;
	padding: 10px 20px !important;
	transition: all .3s !important;
}

.cc_div #s-inr .c-bn:not(#s-c-bn):hover {
  color: #fff !important;
  background: #1c3479 !important;
  border-color: #1c3479 !important;
}

.cc_div .c-bn:not(#s-c-bn).c_link {
	color: #fff !important;
	border: 2px solid #fff !important;
	background-color: transparent !important;
}

.cc_div .c-bn:not(#s-c-bn).c_link:hover {
	color: #fff !important;
	background: #1c3479 !important;
}

#c-s-in { font-family: "Poppins", sans-serif !important;	}

#s-inr,
#s-hdr,
#s-bns { background-color: #fff !important; }

#s-hdr,
#s-bns,
#s-bl .c-bl { border-color: rgba(255, 255, 255, .2); }

#s-c-bnc #s-c-bn,
#s-bl .c-bl:hover { background-color: transparent; }

#s-c-bn::after,
#s-c-bn::before { background-color: #000; }

.cc_div,
#s-cnt .p { color: #000; }

#s-bl .c-bl.b-ex { background-color: #ddd; }

#s-cnt .b-bn .b-tl:active,
#s-cnt .b-bn .b-tl:hover,
#s-bl tbody tr:hover { background-color: #1c3479; }

.cc_div .act .b-bn .exp::before,
.cc_div .b-bn .exp::before { border-color: #fff; }

.cc_div .b-tg .c-tgl:checked:not([disabled]) ~ .c-tg { background: #1c3479; }

/***
====================================================================
	Start
====================================================================
***/
.banner-content img {
  width: 100%;
  max-width: 620px;
  padding: 40px;
}

.scroll-down {
  position: absolute;
  bottom: calc(40px + var(--radio-bar-height));
  left: 50%;
  color: #fff;
  padding-bottom: calc(32px + constant(safe-area-inset-bottom) * 1.1);
  padding-bottom: calc(32px + env(safe-area-inset-bottom) * 1.1);
}

/***
====================================================================
	Über mich
====================================================================
***/
#ueber-mich p { color: #000; }

#ueber-mich img {
  position: absolute;
  right: 80px;
  bottom: -60px;
  width: 100%;
  max-width: 250px;
  z-index: -1;
}

@media (max-width: 1300px) {
  #ueber-mich img { opacity: .35; }
}

/***
====================================================================
	Songs
====================================================================
***/
.song-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  transition: transform .3s ease 0s, box-shadow .3s ease 0s;
}

.song-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.song-card-cover { position: relative; }

.song-card-cover img {
  width: 100%;
  display: block;
}

.btn-preview {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  background: rgba(0, 0, 0, .6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s ease 0s;

}

.btn-preview:hover { background: rgba(0, 0, 0, .8); }

.btn-preview.is-playing { background: #1c3479; }

.btn-preview .fa-play { margin-left: 2px; }

.song-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, .2);
  opacity: 0;
  transition: opacity .3s ease 0s;
}

.song-progress.is-active { opacity: 1; }

.song-progress-bar {
  height: 100%;
  width: 0;
  background: #1c3479;
  transition: width .1s linear;
}

.song-card-info { padding: 20px; }

.song-card-info h3,
.song-card-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.song-card-info h3 { font-size: 20px; }

.song-card-artist {
  color: #999;
  font-size: 13px;
  margin-bottom: 12px;
}

.song-card-featured {
  display: flex;
  flex-direction: row;
}

.song-card-featured .song-card-cover {
  flex: 0 0 50%;
  max-width: 50%;
}

.dj-streusel-featured {
  position: absolute;
  left: -180px;
  height: 100%;
  z-index: 1;
}

.song-card-featured .song-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 30px;
}

@media (max-width: 767px) {
  .song-card-featured { flex-direction: column; }
  .song-card-featured .song-card-cover {
    flex: none;
    max-width: 100%;
  }
}

.song-card-featured .btn-primary span::before { margin-right: 5px; }

.song-card .btn-primary {
  min-width: auto;
  padding: 0 20px;
}

.song-card-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.btn-platform-spotify span::before {
  content: "\f1bc";
  font-family: "Font Awesome 6 Brands";
}

.btn-platform-appleMusic span::before {
  content: "\f179";
  font-family: "Font Awesome 6 Brands";
}

.btn-platform-youtubeMusic span::before {
  content: "\f167";
  font-family: "Font Awesome 6 Brands";
}

.btn-platform-amazonMusic span::before {
  content: "\f270";
  font-family: "Font Awesome 6 Brands";
}

.btn-platform-deezer {
  content: "\e077";
  font-family: "Font Awesome 6 Brands";
}

.btn-songs {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 40px;
  background: linear-gradient(45deg,rgba(81, 78, 133, 1) 0%, rgba(26, 23, 102, 1) 16%, rgba(38, 240, 242, 1) 100%);
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  transition: color .3s ease 0s;
}

.btn-songs:not([disabled]):hover { color: #1c3479; }

.btn-songs span {
  position: relative;
  z-index: 2;
  color: inherit;
}

.btn-songs:not([disabled]):hover::after { opacity: 1; }

.btn-songs::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  z-index: 1;
  background: #fff;
  border-radius: 17px;
  opacity: 0;
  transition: opacity .3s ease 0s;
}

.btn-songs:disabled {
  opacity: .4;
  cursor: not-allowed;
}

#song-page {
  font-size: 14px;
  color: #fff;
}

/***
====================================================================
	Folge mir
====================================================================
***/
.social-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.social-card:hover {
  color: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2);
  transform: translateY(-4px);
}

.social-card-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

.social-card-tiktok { background: #010101; }

.social-card-tiktok::before,
.social-card-tiktok::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 12px;
  opacity: 0;
  transition: opacity .4s ease;
}

.social-card-tiktok::before { background: linear-gradient(135deg, #25f4ee, #010101 50%); }

.social-card-tiktok::after {
  background: linear-gradient(225deg, #fe2c55, #010101 50%);
  mix-blend-mode: screen;
}

.social-card-tiktok:hover::before,
.social-card-tiktok:hover::after { opacity: 1; }

.social-card > * {
  position: relative;
  z-index: 1;
}

.social-card > i {
  font-size: 48px;
  margin-bottom: 12px;
}

.social-card-name {
  font-size: 24px;
  letter-spacing: 1px;
}

.social-card-cta {
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.social-card:hover .social-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.social-card-cta .fa-arrow-right {
  margin-left: 6px;
  transition: transform .3s ease;
}

.social-card:hover .social-card-cta .fa-arrow-right { transform: translateX(4px); }

/***
====================================================================
	Footer
====================================================================
***/
.footer { padding: 40px 0; }

.footer,
.footer a { color: #fff; }

/***
====================================================================
	Links
====================================================================
***/
#links .banner-content img { max-width: 350px; }

.footer-link {
  position: absolute;
  bottom: 5px;
  font-size: 12px;
  color: #fff;
}

/***
====================================================================
	Seiten
====================================================================
***/
.title-section {
  min-height: 100px;
  transform: scale(1);
  transform-origin: 0% 50%;
  transition: all .3s ease 0s;
}

.header:not(.hide) + .title-section { transform: scale(0); }

/***
====================================================================
	Radio
====================================================================
***/
.radio-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  color: #fff;
  background: linear-gradient(45deg, rgba(81, 78, 133, 1) 0%, rgba(26, 23, 102, 1) 16%, rgba(38, 240, 242, 1) 100%);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .25);
  padding-bottom: env(safe-area-inset-bottom);
}

.radio-bar-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .15);
  overflow: hidden;
}

.radio-bar-progress-bar {
  width: 0;
  height: 100%;
  background: #fff;
  transition: width 1s linear;
}

.radio-bar-inner {
  max-width: 1400px;
  height: var(--radio-bar-height);
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  padding: 0 20px;
}

.radio-bar-cover {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 56px;
  overflow: hidden;
  font-size: 22px;
  color: rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .25);
  border-radius: 8px;
}

.radio-bar-cover img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radio-bar-cover.has-image img { display: block; }

.radio-bar-cover.has-image .fa-music { display: none; }

.radio-bar-info {
  min-width: 0;
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  flex-direction: column;
  line-height: 1.25;
}

.radio-bar-station {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: .85;
  margin-bottom: 2px;
}

.radio-bar-live {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #e91e1e;
  border-radius: 3px;
  padding: 1px 6px;
}

.radio-bar-live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  margin-right: 5px;
  animation: radioPulse 1.5s ease-in-out infinite;
}

@keyframes radioPulse {
  0%,
  100% { opacity: 1; }
  50% { opacity: .35; }
}

.radio-bar-title {
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-bar-artist {
  overflow: hidden;
  font-size: 13px;
  font-weight: 300;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: .9;
}

.radio-button-app {
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 7px;
}

.radio-button-app:hover {
  color: #1c3479;
  background-color: #fff;
}

.radio-bar-play {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 48px;
  font-size: 18px;
  color: #1c3479;
  background: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.radio-bar-play:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
  transform: scale(1.06);
}

.radio-bar-play:focus { outline: none; }

.radio-bar-play .fa-play { margin-left: 2px; }

.radio-bar-volume {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.radio-bar-mute {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.radio-bar-mute:hover { opacity: .8; }

.radio-bar-volume input[type="range"] {
  width: 110px;
  height: 4px;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(to right, #fff 0%, #fff 70%, rgba(255, 255, 255, .25) 70%, rgba(255, 255, 255, .25) 100%);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.radio-bar-volume input[type="range"]::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  border-radius: 50%;
  cursor: pointer;
}

.radio-bar-volume input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 767px) {
  :root { --radio-bar-height: 68px; }

  .radio-bar-inner {
    gap: 12px;
    padding: 0 14px;
  }

  .radio-bar-cover {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .radio-bar-volume { display: none; }

  .radio-bar-title { font-size: 14px; }

  .radio-bar-artist { font-size: 12px; }

  .radio-bar-play {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    font-size: 16px;
  }
}

/***
====================================================================
	App
====================================================================
***/
.radio-app-page {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(45deg, rgba(81, 78, 133, 1) 0%, rgba(26, 23, 102, 1) 16%, rgba(38, 240, 242, 1) 100%);
  background-attachment: fixed;
  padding: 32px 20px calc(32px + env(safe-area-inset-bottom));
}

.radio-app {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.radio-app-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.radio-app-cover {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  font-size: 80px;
  color: rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  border-radius: 16px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.radio-app-dj-streusel-right {
  position: absolute;
  top: -10px;
  right: -130px;
  height: 100%;
  z-index: 1;
}

.radio-app-cover-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.radio-app-cover .radio-app-cover-wrapper { display: none; }

.radio-app-cover.has-image .radio-app-cover-wrapper { display: block; }

.radio-app-cover.has-image .fa-music { display: none; }

.radio-app-cover #radio-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radio-app-info {
  min-width: 0;
  margin-bottom: 22px;
  padding: 0 8px;
}

.radio-app-title {
  display: block;
  overflow: hidden;
  font-size: 22px;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
}

.radio-app-artist {
  display: block;
  overflow: hidden;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-app-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.radio-app-progress .radio-bar-progress {
  height: 4px;
  overflow: hidden;
  flex: 1 1 auto;
  background: rgba(255, 255, 255, .2);
  border-radius: 2px;
}

.radio-app-progress .radio-bar-progress-bar {
  width: 0;
  height: 100%;
  background: #fff;
  border-radius: 2px;
  transition: width 1s linear;
}

.radio-app-time {
  min-width: 36px;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, .8);
}

.radio-app-time:last-child { text-align: right; }

.radio-app-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.radio-app-controls .radio-bar-play {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  font-size: 26px;
}

.radio-app .radio-bar-volume {
  position: relative;
  justify-content: center;
  margin-bottom: 32px;
}

.radio-app .radio-bar-volume .radio-bar-mute {
  position: absolute;
  left: 100px;
}

.radio-app .radio-bar-volume input[type="range"] { width: 180px; }

.radio-app-panels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-app-panel {
  position: relative;
  text-align: left;
}

.radio-app-panel-toggle {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 0, 0, .25);
  border: 0;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background .2s ease;
}

.radio-app-panel-toggle:hover { background: rgba(0, 0, 0, .35); }

.radio-app-panel-toggle:focus { outline: none; }

.radio-app-panel-toggle i { transition: transform .25s ease; }

.radio-app-panel.is-open .radio-app-panel-toggle i { transform: rotate(180deg); }

.radio-app-panel-body {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  left: 0;
  max-height: 0;
  z-index: 5;
  overflow: hidden;
  background: rgba(12, 10, 40, .92);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, .35);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: max-height .3s ease;
}

.radio-app-panel.is-open .radio-app-panel-body {
  max-height: 70vh;
  overflow-y: auto;
}

.radio-app-list {
  list-style: none;
  margin: 0;
  padding: 4px 8px 12px;
}

.radio-app-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  padding: 8px 12px;
}

.radio-app-list-item + .radio-app-list-item { margin-top: 2px; }

.radio-app-list-item:hover { background: rgba(255, 255, 255, .05); }

.radio-app-list-cover {
  position: relative;
  width: 44px;
  height: 44px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 44px;
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .35);
  border-radius: 6px;
}

.radio-app-list-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radio-app-list-meta {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.radio-app-list-title {
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-app-list-artist {
  overflow: hidden;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-app-list-time {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .5px;
}

.radio-app-empty {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  text-align: center;
  padding: 14px 20px;
}

.offline-content img {
  width: 100%;
  max-width: 300px;
}

@media (max-width: 575px) {
  .radio-app-page { padding: 24px 16px calc(24px + env(safe-area-inset-bottom)); }

  .radio-app-cover {
    max-width: 250px;
    font-size: 64px;
  }

  .radio-app-dj-streusel-right { right: -102px; }

  .radio-app-title { font-size: 19px; }

  .radio-app-artist { font-size: 14px; }

  .radio-app-controls .radio-bar-play {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    font-size: 22px;
  }

  .radio-app .radio-bar-volume { display: none; }
}

/***
====================================================================
	Schriftarten
====================================================================
***/
@font-face {
   font-display: swap;
   font-family: "DJ Streusel";
   font-style: normal;
   font-weight: normal;
   src: url("https://cdn.dj-streusel.com/fonts/dj-streusel.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 100;
  src: url("https://cdn.dj-streusel.com/fonts/poppins-v24-latin-100.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 200;
  src: url("https://cdn.dj-streusel.com/fonts/poppins-v24-latin-200.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("https://cdn.dj-streusel.com/fonts/poppins-v24-latin-300.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("https://cdn.dj-streusel.com/fonts/poppins-v24-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("https://cdn.dj-streusel.com/fonts/poppins-v24-latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("https://cdn.dj-streusel.com/fonts/poppins-v24-latin-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("https://cdn.dj-streusel.com/fonts/poppins-v24-latin-700.woff2") format("woff2");
}
