@media (prefers-color-scheme: dark) {

/* play-regular - cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Play';
  font-style: normal;
  font-weight: 400;
  src: url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-regular.eot'); /* IE9 Compat Modes */
  src: url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-regular.svg#Play') format('svg'); /* Legacy iOS */
}

/* play-700 - cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Play';
  font-style: normal;
  font-weight: 700;
  src: url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-700.eot'); /* IE9 Compat Modes */
  src: url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('/css/fonts/play-v19-cyrillic_cyrillic-ext_greek_latin_latin-ext_vietnamese-700.svg#Play') format('svg'); /* Legacy iOS */
}

html, img {
	font-family: 'Play';
  filter: invert(1);
}

body {
  margin: 0;
  background-color: #ffffff;
}

:root{
  scrollbar-color: #000000 transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background:#ffffff;
  border: 1px solid #ffffff;
}

.scroll {
  scrollbar-color: #ffffff rgba(255, 255, 255, 0);
  scrollbar-width: thin;
}
.scroll::-webkit-scrollbar {
  width: 8px;
  background: rgba(255, 255, 255, 0);
}
.scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}
.scroll::-webkit-scrollbar-thumb {
  background:#ffffff;
  border: 1px solid rgba(255, 255, 255, 0);
}

A { text-decoration : none; }
A:Hover { text-decoration : none; }

/* ---------------------HAMBURGER-NAV------------------------------------------------------------- */

.box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transform: translateY(-500%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease; 
  z-index:14;
}

.expand_box {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.menu_icon_box {
  cursor: pointer;
  position: relative;
  padding: 8px 10px;
  border-radius: 14px 0 0 14px;
  width: 40px;
  z-index: 15; 
}

.icon1 {
 width: 35px;
 height: 5px;
 background-color: #000000; 
 margin: 6px 0;
 border-radius: 5px;
 transition: 0.4s;
}
.icon2 {
 position: relative;
 left: 5px;
 width: 35px;
 height: 5px;
 background-color: rgba(0, 0, 0, 0.5); 
 margin: 6px 0;
 border-radius: 5px;
 transition: 0.4s;
}
.icon3 {
 width: 35px;
 height: 5px;
 background-color: #000000; 
 margin: 6px 0;
 border-radius: 5px;
 transition: 0.4s;
}

/* Rotate first bar */
.expand .icon1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
  transform: rotate(-45deg) translate(-9px, 6px) ;
}

/* Fade out the second bar */
.expand .icon2 {
  opacity: 0;
}

/* Rotate last bar */
.expand .icon3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
  transform: rotate(45deg) translate(-8px, -8px) ;
}

#topnav {
  border-radius: 15px 15px 50% 50% / 15px 15px 10% 10%;
  padding: 100px 20px 20px 20px;
}

.topnav_container {  
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "topnav1" 
    "topnav2"
    "topnavi";
}

.topnav_decoration {
  display: grid;
  justify-content: center;
  align-items: center;
  color: #000000; 
  text-align: center;
  font-size: 25px;
  line-height: 25px;
}

.topnav1 { 
  grid-area: topnav1; 
  display: grid;
  justify-content: center;
  align-items: center;
  color: #000000; 
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  height: auto;
  padding:10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.topnav2 { 
  grid-area: topnav2; 
  display: grid;
  justify-content: center;
  align-items: center;
  color: #000000; 
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  height: auto;
  padding:10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.topnavi {  
  display: grid;
  max-width: 500px;
  margin: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 0fr;
  gap: 0;
  grid-auto-flow: row;
  grid-template-areas:
    "topnav3 topnav4 topnav5";
  grid-area: topnavi;
}

.topnav3 { 
  grid-area: topnav3; 
  display: grid;
  justify-content: center;
  align-items: center;
  color: #000000; 
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  height: auto;
  padding:10px;
}

.topnav4 { 
  grid-area: topnav4; 
  display: grid;
  justify-content: center;
  align-items: center;
  color: #000000; 
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  height: auto;
  padding:10px;
}

.topnav5 { 
  grid-area: topnav5; 
  display: grid;
  justify-content: center;
  align-items: center;
  color: #000000; 
  text-align: center;
  font-size: 25px;
  line-height: 25px;
  height: auto;
  padding:10px;
}

@media only screen and (max-width: 940px){
.topnav_container {  
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr 0fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "topnav1" 
    "topnav2"
    "topnavi";
}
}

@media only screen and (max-width: 370px){
.topnavi {  
  display: grid;
  max-width: 500px;
  margin: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0fr 0fr;
  gap: 0;
  grid-auto-flow: row;
  grid-template-areas:
    "topnav3 topnav4"
    "topnav5 topnav5";
  grid-area: topnavi;
}
}

/* ---------------------------------------------------------------------------------- */

.logo_maxdance_icon {
  position: relative;
  background-repeat: no-repeat; 
  background-position: center; 
  background-size: cover; 
  width: 100px;
  height:100px; 
  -webkit-transition:all 0.5s;
  -moz-transition:all 0.5s;
  -o-transition:all 0.5s;
  transition:all 0.5s;
  -webkit-transform: translate3D(0, 0, 0);
          transform: translate3D(0, 0, 0);
  background-image: url(/images/logo/ICON_maxdance_BLACK.svg); 
  z-index: 100;
  -webkit-animation: pulse-animation 1s 2 forwards;
          animation: pulse-animation 1s 2 forwards;
  -webkit-animation: hithere 1s 2 forwards;
          animation: hithere 1s 2 forwards;        
}
@-webkit-keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 80px rgba(0, 0, 0, 0);
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 80px rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}
@keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

.logo_maxdance_icon.active_layout {
  width: 50px;
  height: 50px; 
  z-index: 100;
}

@media only screen and (max-width: 290px){
.logo_maxdance_icon {
  width: 50px;
  height: 50px; 
}
}

/* ---------------------------------------------------------------------------------- */

.logo_maxdance90s_icon {
  position: relative;
  background-repeat: no-repeat; 
  background-position: center; 
  background-size: cover; 
  width: 100px;
  height:100px; 
  -webkit-transition:all 0.5s;
  -moz-transition:all 0.5s;
  -o-transition:all 0.5s;
  transition:all 0.5s;
  -webkit-transform: translate3D(0, 0, 0);
          transform: translate3D(0, 0, 0);
  background-image: url(/images/logo/ICON_maxdance90s_BLACK.svg); 
  z-index: 100;
  -webkit-animation: pulse-animation 1s 2 forwards;
          animation: pulse-animation 1s 2 forwards;
  -webkit-animation: hithere 1s 2 forwards;
          animation: hithere 1s 2 forwards;          
}
@-webkit-keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 80px rgba(0, 0, 0, 0);
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 80px rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}
@keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

.logo_maxdance90s_icon.active_layout {
  width: 50px;
  height: 50px; 
  z-index: 100;
}

@media only screen and (max-width: 290px){
.logo_maxdance90s_icon {
  width: 50px;
  height: 50px; 
}
}

/* ---------------------------------------------------------------------------------- */

.logo_maxretro_icon {
  position: relative;
  background-repeat: no-repeat; 
  background-position: center; 
  background-size: cover; 
  width: 100px;
  height:100px; 
  -webkit-transition:all 0.5s;
  -moz-transition:all 0.5s;
  -o-transition:all 0.5s;
  transition:all 0.5s;
  -webkit-transform: translate3D(0, 0, 0);
          transform: translate3D(0, 0, 0);
  background-image: url(/images/logo/ICON_maxretro_BLACK.svg); 
  z-index: 100;
  -webkit-animation: pulse-animation 1s 2 forwards;
          animation: pulse-animation 1s 2 forwards;
  -webkit-animation: hithere 1s 2 forwards;
          animation: hithere 1s 2 forwards;          
}
@-webkit-keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 80px rgba(0, 0, 0, 0);
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgb(0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 80px rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}
@keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

.logo_maxretro_icon.active_layout {
  width: 50px;
  height: 50px; 
  z-index: 100;
}

@media only screen and (max-width: 290px){
.logo_maxretro_icon {
  width: 50px;
  height: 50px; 
}
}

/* ---------------------------------------------------------------------------------- */

.header_container {
  display: grid;
  align-items: center;
  position: fixed;
  margin: auto;
  width: 100%;
  z-index: 11;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
  gap: 20px;
  grid-auto-flow: row;
  grid-template-areas:
    "header_container_info";
}

#header_container_layout {
  transition: all 0.5s ease-in-out;
  border-radius: 25% 25% 50% 50% / 0% 0% 25% 25%;
}

#header_container_layout.active_layout {
  border-radius: 25% 25% 50% 50% / 0% 0% 25% 25%;
}

.header_rand {
  padding: 0 0 0 0;
}

.header_container_width {
  position: relative;
  top: 0px;
  margin: auto; 
  width: 100%; 
  max-width: 1220px;
  border-radius: 15px 15px 50% 50% / 15px 15px 25% 25%;
}

.header_container_width.active_layout {
  border-radius: 15px 15px 50% 50% / 15px 15px 25% 25%;
}

.header_container_info {  
  position: relative;  
  display: grid;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 15px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 0fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "date_now infonav nav";
}

.nav { grid-area: nav; margin-left: auto; margin-right: 0; }

.infonav { 
  grid-area: infonav; 
  display: grid;
  justify-content: center;
}

.date_now { grid-area: date_now; z-index: 100; }

.date {
  display: grid;
  align-items: center;
  text-align: left;
  font-size: 15px;
  color: #000000; 
}

@media only screen and (max-width: 940px){
#header_container_layout {
  transition: all 0.5s ease-in-out;
}

.header_rand {
  padding: 0 0 0 0;
}

.header_container_width {
  position: relative;
  top: 0px;
  margin: auto; 
  width: 100%; 
  max-width: 470px;
}

.header_container_info {  
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 0fr;
  gap: 5px;
  grid-auto-flow: row;
  grid-template-areas:
    "date_now infonav nav";
}

.date {
  display: grid;
  align-items: center;
  position: relative;
  line-height: 20px;
  text-align: left;
  font-size: 15px;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; 
  overflow: hidden;
  word-wrap: break-word;
}
}

/* ---------------------------------------------------------------------------------- */

.bar_line {
  position: relative;
  mix-blend-mode: multiply;
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
  z-index: 1;
}

.bar {
  position: relative;
  top:8px;
  line-height: 25px;
  text-transform: uppercase;
  text-align: left;
  padding: 5px 10px 5px 10px;
  font-size: 25px;
  font-weight: 700;
  display: table;
  color:#ffffff;
  background: #000000;
  mix-blend-mode: multiply;
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 5px;
  z-index: 1;
}


@media only screen and (max-width: 1200px){
.bar {
  font-size: 20px;
}
}

/* ---------------------------------------------------------------------------------- */

.show_layout {
  position: relative;
  max-width: 1300px; 
  margin: auto;
  overflow: hidden;
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0 220px 0;
  border-radius: 25% 25% 50% 50% / 0% 0% 10% 10%;
  opacity: .8;
  filter: invert(1);
  animation-name: bounce-background;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;

    /* For Chrome & Safari */
  -webkit-animation-name: bounce-background;
  -webkit-animation-timing-function:ease-in-out;
  -webkit-animation-duration:10s;
  -webkit-animation-iteration-count:infinite;
  -webkit-transform: translate3D(0, 0, 0);
          transform: translate3D(0, 0, 0);
}
@keyframes bounce-background {
    from {
        background-position: top;
    }
    50% {
        background-position: bottom;
    }
    to {
        background-position: top;
    }
}

.show_now {  
  display: grid;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas: 
    "now"
    "next";
}

.now {  
  grid-area: now; 
  position: absolute;
  display: grid;
  align-items: center;
  background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0.5) 100%);
  top: 0px;
  left: 0px;
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: 400px;
  padding-right: 20px;
  border-radius: 0% 100% 100% 0% / 0% 50% 50% 0%;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);  
  z-index: 1;
  filter: invert(1);
}

.play_button { 
  position: relative;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.next {  
  position: relative;
  top: 220px;
  grid-area: next; 
  place-self: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 20px;
  border-radius: 50% 50% 0% 0% / 100% 100% 0% 0%;
  z-index: 0;
}

.show_width {
  position: relative;
  top: 0px;
  margin: auto;
  max-width: 1300px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50% 50% 50% 50% / 0% 0% 25% 25%;
  animation-name: bounce-background;
  animation-timing-function: ease-in-out;
  animation-duration: 10s;
  animation-iteration-count: infinite;

    /* For Chrome & Safari */
  -webkit-animation-name: bounce-background;
  -webkit-animation-timing-function:ease-in-out;
  -webkit-animation-duration:10s;
  -webkit-animation-iteration-count:infinite;
  -webkit-transform: translate3D(0, 0, 0);
          transform: translate3D(0, 0, 0);
}
@keyframes bounce-background {
    from {
        background-position: top;
    }
    50% {
        background-position: bottom;
    }
    to {
        background-position: top;
    }
}

#artist_show_now {
  font-size:30px;
  text-align: left;
  font-weight: 700;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}

#title_show_now {
  font-size:28px;
  font-weight: 400;
  text-align: left;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}

.now_line_height {
  padding: 20px 0 0px 0;
  z-index: 1;
}

.cover_show {
  position: fixed;
  background: #1c1b22;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cover_now {
  position: absolute;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media only screen and (max-width: 1200px){
.now {  
  max-width: 350px;
}
#artist_show_now {
  font-size:25px;
}

#title_show_now {
  font-size:20px;
}
}

@media only screen and (max-width: 940px){
.show_layout {
  max-width: 500px; 
  background-position: 30% top;
  animation-name: none;
} 
.show_now {  
  margin: 0 0px 0 0px;
}  
.now {  
  top: 50px;
  left: 0px;
  margin: 0;
  width: 100%;
  height: 60%;
  max-width: 200px;
}

#artist_show_now {
  font-family: 'Play';
  transform: none;
  font-weight: 700;
  top: 0px;
  left: 0px;
  font-size:18px;
  line-height: 20px;
}

#title_show_now {
  font-size:16px;
}
}

@media only screen and (max-width: 290px){
.show_layout {
  padding-top: 50px;
}
}

/* ---------------------------------------------------------------------------------- */

.bg {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
}
.bg::before {
  position: absolute;
  content: '';
  display: block;
  background: rgba(255, 255, 255, 0.8);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.bg_img {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
}
.bg_img::before {
  position: absolute;
  content: '';
  display: block;
  background-image: url(/images/show/maxdance.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: normal;
  width: 100%;
  height: 100%;
}

.bg_header {
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 25% 25% 50% 50% / 0% 0% 25% 25%;
  z-index: 0; 
}

.bg_header.active_layout {
  border-radius: 25% 25% 50% 50% / 0% 0% 25% 25%;
}

.bg_header_songfinder {
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px 15px 50% 50% / 15px 15px 10% 10%;
  z-index: -1; 
}

.bg_footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

.bg_alexa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

.bg_tunein {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

/* ---------------------------------------------------------------------------------- */

.maxradio_info_container1 {  
  display: grid;
  max-width: 100%; 
  margin: auto;
  padding: 0 0px 0 0px;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr;
  gap: 30px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_info1"
    "maxradio_info3";
}

.maxradio_layout1 {
  width: 100%; 
  margin: auto;
}

.maxradio_layout2 {
  width: 100%; 
  padding: 30px 0 30px 0;
  margin: auto;
}

.maxradio_info1 {  
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_show";
  grid-area: maxradio_info1;
}

.maxradio_show { grid-area: maxradio_show; }

.maxradio_info3 {
  display: grid;
  width: 100%;
  max-width: 1220px; 
  margin: auto;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_next";
  grid-area: maxradio_info3;
}

.maxradio_next { grid-area: maxradio_next; width: 40%; margin: auto; }

.maxradio_info_container2 {  
  display: grid;
  max-width: 1220px; 
  margin: auto;
  padding-left: 40px;
  padding-right: 40px;
  grid-template-columns: 40% 1fr;
  grid-template-rows: 0fr;
  gap: 30px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_info4 maxradio_info5";
}

.maxradio_info4 {  
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr;
  gap: 30px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_recently"
    "maxradio_content";
  grid-area: maxradio_info4;
}

.maxradio_recently { grid-area: maxradio_recently; }

.maxradio_content { grid-area: maxradio_content; }

.maxradio_info5 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr;
  gap: 30px;
  grid-auto-flow: row;
  grid-template-areas:
    "top_charts"
    "maxradio_weather";
  grid-area: maxradio_info5;
}

.maxradio_weather { grid-area: maxradio_weather; }

.top_charts { grid-area: top_charts; }

@media only screen and (max-width: 940px){
.maxradio_info_container1 {  
  display: grid;
  max-width: 100%; 
  margin: auto;
  padding: 0 0px 0 0px;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr;
  gap: 30px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_info1"
    "maxradio_info3";
}

.maxradio_info1 {  
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_show";
  grid-area: maxradio_info1;
}

.maxradio_show { grid-area: maxradio_show; }

.maxradio_info3 {
  display: grid;
  max-width: 470px;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_next";
  grid-area: maxradio_info3;
}

.maxradio_next { grid-area: maxradio_next; width: 80%; margin: auto; }

.maxradio_info_container2 {  
  display: grid;
  max-width: 470px; 
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr;
  gap: 30px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_info4" 
    "maxradio_info5";
}

.maxradio_info4 {  
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr;
  gap: 30px;
  grid-auto-flow: row;
  grid-template-areas:
    "maxradio_recently"
    "maxradio_content";
  grid-area: maxradio_info4;
}

.maxradio_recently { grid-area: maxradio_recently; }

.maxradio_weather { grid-area: maxradio_weather; }

.maxradio_info5 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr;
  gap: 30px;
  grid-auto-flow: row;
  grid-template-areas:
    "top_charts"
    "maxradio_weather";
  grid-area: maxradio_info5;
}

.maxradio_content { grid-area: maxradio_content; }

.top_charts { grid-area: top_charts; }
}

/* ---------------------------------------------------------------------------------- */

.footer_container {  
  display: grid;
  margin: auto; 
  max-width: 1220px; 
  overflow: hidden;
  padding: 40px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "footer contact";
  grid-area: footer;
}

.footer { 
  grid-area: footer; 
  display: grid; 
  align-items: center; 
  z-index: 0; 
  padding: 20px; 
  border-radius: 15px 0 0 15px; 
  mix-blend-mode: normal;
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0); 
  filter: invert(1);
  opacity: .8;   
  overflow: hidden;
}

.contact { grid-area: contact; z-index: 0; background: rgba(255, 255, 255, 0.8); padding: 20px; border-radius: 0 15px 15px 0; }

@media only screen and (max-width: 940px){
.footer_container {  
  display: grid;
  margin: auto; 
  max-width: 470px; 
  overflow: hidden;
  padding: 30px 15px 15px 15px; 
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 1fr;
  gap: 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "contact"
    "footer";
  grid-area: footer;
}

.contact { grid-area: contact; z-index: 0; background: rgba(255, 255, 255, 0.8); padding: 0px; border-radius: 15px 15px 0 0; }

.footer { grid-area: footer; z-index: 0; padding: 20px; border-radius: 0 0 15px 15px; }
}

/* ---------------------CONTACT-FORM------------------------------------------------------------- */

.contact_container {
  padding: 0 20px 0;
}

.contact_topIcon {
	content: "";
	display: block;
  font-size: 32px;
  text-align: center;
}

.contact_title {
	font-size: 30px;
	font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
}

@media only screen and (max-width: 940px){
.contact_container {
  padding: 20px 20px 0;
}
}

/* ---------------------------------------------------------------------------------- */

.maxradio_infocover { 
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  width: 100%;
}

.maxradio_title { 
  position: relative;
  margin: auto;
  display: grid; 
  align-items: last baseline;
  max-width: 400px;
  width: 100%;
  overflow: hidden; 
}

.now_padding {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

#player_artist {
	font-size:27px;
  line-height: 32px;
  font-weight: 600;
  text-align: center;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  place-self: center;
	margin:0;
}
#player_artist_bg {
  display: table;
  margin: auto;
  padding: 3px 15px 3px 15px; 
  border-radius: 15px 15px 0 0; 
}

#player_title {
	font-size:22px;
  font-weight: 300;
  text-align: center;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  place-self: center;
	margin:0;
}
#player_title_bg {
  display: table;
  margin: auto;
  padding: 0px 10px 3px 10px; 
  border-radius: 5px; 
}

#player_msg {
	font-size:20px;
  font-weight: 400;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-align: center;
  word-wrap: break-word;
	margin:0;
}

#player_msg1 {
	font-size:27px;
  font-weight: 400;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-align: left;
	margin:0;
}

#player_msg2 {
	font-size:22px;
  font-weight: 400;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-align: left;
	margin:0;
}

#player_img {
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.player_item {
  position:relative;
  padding: 0px 40px 0px 40px;
}

.req_msg {
  line-height: 25px;
}

@media only screen and (max-width: 1200px){
#player_artist {
	font-size:25px;
  line-height: 30px;
}

#player_title {
	font-size:20px;
  line-height: 25px;
}

#player_msg1 {
	font-size:25px;
}

#player_msg2 {
	font-size:20px;
}

.req_msg {
  line-height: 23px;
}

#player_img {
  width: 152px;
  height: 152px;
}
#player_img_rotate {
  width: 162px;
  height: 162px;
}
}

@media only screen and (max-width: 940px){
.now_padding {
  padding-left: 0px;
}

.player_container {
  min-width: 0%;
  line-height: 20px;
}

#player_msg1 {
	font-size:18px;
}

#player_msg2 {
	font-size:16px;
}
}

/* ---------------------------------------------------------------------------------- */

.container-recently {  
  display: grid;
  overflow: hidden;
  padding: 20px;
  border-radius: 15px;
  mix-blend-mode: normal;
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0); 
  filter: invert(1); 
  opacity: .8;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr 0fr 0fr;
}

.grid-recently {  
  display: grid;
  border-bottom: 1px solid #333;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "recently_blur";
}

.grid-recently:last-child { border-bottom: none; }

.recently_blur {  
  display: grid;
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "recently_description";
  grid-area: recently_blur;
}

.recently_description {  
  display: grid;
  align-items: center;
  height: 90px;
  grid-template-columns: 0fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "recently_div1 recently_div2";
  grid-area: recently_description;
}

.recently_div1 {
  grid-area: recently_div1;
  padding: 0 10px;
  z-index: 1;
}

.recently_div2 { 
  grid-area: recently_div2;
  border-left: 2px solid; 
  padding: 0 10px; 
  position: relative;
  z-index: 1;
}

.recently_artist {
	font-size:20px;
  line-height: 25px;
  font-weight: 600;
  text-align: left;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical; 
  overflow: hidden;
  word-wrap: break-word;
}

.recently_title {
	font-size:18px;
  line-height: 22px;
  font-weight: 300;
  text-align: left;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; 
  overflow: hidden;
  word-wrap: break-word;
}

.recently_date {
  position: relative;
  display: grid;
  align-items: center;
  font-size:16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
}

.recently_item {
  position:relative;
  padding: 0px; 
  overflow: hidden;
  border-radius: 15px;
}

#recently_img {
  background-position: center; 
  background-repeat: no-repeat;
  width: 20px;
  height: 90px;
}

.fa-clock {
  font-size: 18px;
}

@media only screen and (max-width: 1200px){
.recently_artist {
  line-height: 23px;
	font-size:18px;
}

.recently_title {
  line-height: 20px;
	font-size:16px;
}

.recently_date {
  position: relative;
  display: grid;
  align-items: center;
  font-size:16px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.recently_description {
  line-height: 20px;
  height: 76px;
}

#recently_img {
  background-position: center; 
  background-repeat: no-repeat;
  width: 20px;
  height: 76px;
}

.fa-clock {
  font-size: 16px;
}
}

@media only screen and (max-width: 940px){
.container-recently {  
  display: grid;
  overflow: hidden;
  padding: 20px;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr 0fr 0fr;
}
}

@media only screen and (max-width: 250px){
.recently_description {  
  display: grid;
  align-items: center;
  grid-template-columns: 10px 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "recently_div1 recently_div2";
  grid-area: recently_description;
}

.recently_div1 {
  display: none;
}
}

/* ---------------------------------------------------------------------------------- */

.container-next {  
  display: grid;
  grid-gap: 10px;
  overflow: hidden;
  padding: 0px;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
}

.grid-container-next {  
  display: grid;
  height: 90px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "next_blur";
}

.next_blur {  
  display: grid;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  opacity: .8;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "next_description";
  grid-area: next_blur;
}

.next_cover { 
  grid-area: next_cover; 
  display: grid;
  align-items: center;
  z-index: 4;
}

.next_description { 
  grid-area: next_description; 
  cursor: context-menu;
  display: grid;
  align-items: center;
  white-space: normal;
  z-index: 4;
}

.next_ellipsis {
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.next_track {
  padding: 5px 20px 0 20px;
}

#next_img {
  background-position: center; 
  background-repeat: no-repeat;
  width: 20px;
  height: 90px;
}

#next_artist {
  font-size:20px;
  line-height: 25px;
  font-weight: 600;
  text-align: center;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical; 
  overflow: hidden;
}

#next_title {
  font-size:18px;
  line-height: 24px;
  font-weight: 300;
  text-align: center;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical; 
  overflow: hidden;
}

.next_item {
  position: relative;
  top: 0;
  padding: 0px;
  overflow: hidden;
  border-radius: 15px;
}

@media screen and (max-width: 1200px) {
.container-next {  
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr;
}

.grid-container-next {  
  display: grid;
  height: 76px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "next_blur";
}

.next_blur {  
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "next_description";
  grid-area: next_blur;
}

.next_icon { 
  grid-area: next_icon; 
  cursor: context-menu;
  display: grid;
  align-items: center;
  text-align: center;
  white-space: normal;
  font-size: 30px;
  z-index: 4;
}

.next_cover { 
  grid-area: next_cover; 
  display: grid;
  align-items: center;
  z-index: 4;
}

.next_description { 
  grid-area: next_description; 
  cursor: context-menu;
  display: grid;
  align-items: center;
  white-space: normal;
  z-index: 4;
}

.next_ellipsis {
  overflow: hidden;
}

#next_img {
  background-position: center; 
  background-repeat: no-repeat;
  width: 20px;
  height: 76px;
}

#next_artist {
  line-height: 23px;
	font-size:18px;
}

#next_title {
  line-height: 20px;
	font-size:16px;
}
}

@media screen and (max-width: 940px) {
.container-next {  
  display: grid;
  overflow: hidden;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.grid-container-next {  
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "next_blur";
}

.next_blur {  
  display: grid;
  border-radius: 15px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "next_description";
  grid-area: next_blur;
}

.next_icon { 
  grid-area: next_icon; 
  cursor: context-menu;
  display: grid;
  align-items: center;
  text-align: center;
  white-space: normal;
  font-size: 20px;
  z-index: 4;
}

.next_cover { 
  grid-area: next_cover; 
  display: grid;
  align-items: center;
  z-index: 4;
}

.next_description { 
  grid-area: next_description; 
  cursor: context-menu;
  display: grid;
  align-items: center;
  white-space: normal;
  z-index: 4;
}

.next_ellipsis {
  overflow: hidden;
}

#next_img {
  background-position: center; 
  background-repeat: no-repeat;
  width: 20px;
  height: 76px;
}
}

/* ---------------------------------------------------------------------------------- */

.container-news {  
       -o-perspective: 1000;
      -ms-perspective: 1000;
  -webkit-perspective: 1000;
          perspective: 1000;
       -o-backface-visibility: hidden;
      -ms-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
       -o-transform: translate3d(0,0,0);
      -ms-transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
       -o-outline:none; 
      -ms-outline:none;   
  -webkit-outline:none;        
          outline:none;
       -o-border:none;
      -ms-border:none;
  -webkit-border:none;
          border:none;
       -o-text-decoration:none;
      -ms-text-decoration:none;
  -webkit-text-decoration:none;
          text-decoration:none;
}

/* ---------------------------------------------------------------------------------- */

.container-top {  
  display: grid;
  grid-gap: 1px;
}

.grid-top {  
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "top_container";
}

.top_container {  
  display: grid;
  grid-template-columns: 0fr 0fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "top_div1 top_div2 top_div3";
  grid-area: top_container;
}

.top_div1 { 
  grid-area: top_div1;
  z-index: 2;
}
.top_div2 { 
  grid-area: top_div2;
  background-color: #f9f9fb;
  display: grid;
  align-items: center;
  padding-left: 10px;
  color: #001743;
  font-weight: 600;
  font-size: 30px;
}

.top_div3 { 
  grid-area: top_div3;
  background-color: #f9f9fb;
  padding-left: 10px; 
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1;
}

.top_cover { 
  display: grid;
  align-items: center;
}

.top_description {
  line-height: 24px;
  padding: 0 20px 0 0;
}

.top_artist {
  font-size:20px;
  font-weight: 600;
  color:#000000;
  text-align: left;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; 
  overflow: hidden;
}

.top_title {
  font-size:18px;
  font-weight: 300;
  color:#000000;
  text-align: left;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical; 
  overflow: hidden;
}

.top_item {
  position:relative;
  padding: 0px; 
  overflow: hidden;
  border-radius: 15px;
}

#top_img {
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  width: 90px;
  height: 90px;
}

/* ---------------------------------------------------------------------------------- */

.container_charts {
  display: grid;
  grid-gap: 5px;
}

.grid-container-charts {
  display: grid;
  grid-template-columns: 0fr 60px 1fr;
  grid-template-rows: 1fr;
  gap: 5px;
  grid-auto-flow: row;
  grid-template-areas:
    "charts_cover charts_div1 charts_div2";
}

.charts_cover { 
  grid-area: charts_cover;
}

.charts_div1 { 
  grid-area: charts_div1; 
  display: grid;
  align-items: center;
}

.charts_div2 { 
  grid-area: charts_div2; 
  display: grid;
  align-items: center;
}

#charts_cover {
  width: 96px;
  height: 96px;
}

.charts_artist {
  color:#ffffff;
  font-size:20px;
  font-weight: 600;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.charts_title {
  color:#ffffff;
  font-size:18px;
  font-weight: 400;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.charts_number {
  display: grid;
  align-items: center;
  color: #001743;
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  padding: 0 10px 0 10px;
}

.charts_description {
  line-height: 16px;
  min-width:0%;
  padding: 0 20px 0 0;
}

.charts_item {
  padding: 5px;
}

@media only screen and (max-width: 1200px){
.charts_artist {
  font-size:18px;
  font-weight: 600;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.charts_title {
  font-size:16px;
  font-weight: 400;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.charts_number {
  display: grid;
  align-items: center;
  color: #001743;
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  padding: 0 10px 0 10px;
}

#charts_cover {
  width: 76px;
  height: 76px;
  border: 2px solid #001743;
}
}

/* ---------------------------------------------------------------------------------- */

#desktop {display: block;}
#mobile {display: none;}

@media screen and (max-width: 940px) {

#desktop {display: none;}
#mobile {display: block;}

}

/* ---------------------------------------------------------------------------------- */

#tune_item {
  position: relative;
  top: 0;
  padding: 20px;
  overflow: hidden;
  border-radius: 15px;
  mix-blend-mode: normal;
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
  filter: invert(1);
  opacity: .8;
}

.grid-tune  {
  display: grid;
  grid-template-columns: 0px 0px 1fr;
  grid-template-rows: 0fr 0fr 0fr 0fr 0fr 0fr 0fr 0fr 0fr;
  gap: 0 0;
  grid-template-areas:
    "s b1 play1" 
    "s b2 play2"
    "s b3 play3" 
    "s b4 play4"
    "s b5 play5" 
    "s b6 play6"
    "s b7 play7"
    "s b8 play8"
    "s b9 play9";
}

.grid-tune a {
  color: currentColor;
}

.play1 { 
  grid-area: play1;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.play2 { 
  grid-area: play2;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.play3 { 
  grid-area: play3;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.play4 { 
  grid-area: play4;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.play5 { 
  grid-area: play5;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.play6 { 
  grid-area: play6;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.play7 { 
  grid-area: play7;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.play8 { 
  grid-area: play8;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  border-bottom: 1px solid #333;
}

.play9 { 
  grid-area: play9;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
}

.b1 { 
  grid-area: b1;
  background: rgba(255, 255, 255, 0.8);
}

.b2 { 
  grid-area: b2;
  background: rgba(255, 255, 255, 0.8);
}

.b3 { 
  grid-area: b3;
  background: rgba(255, 255, 255, 0.8);
}

.b4 { 
  grid-area: b4;
  background: rgba(255, 255, 255, 0.8);
}

.b5 { 
  grid-area: b5;
  background: rgba(255, 255, 255, 0.8);
}

.b6 { 
  grid-area: b6;
  background: rgba(255, 255, 255, 0.8);
}

.b7 { 
  grid-area: b7;
  background: rgba(255, 255, 255, 0.8);
}

.b8 { 
  grid-area: b8;
  background: rgba(255, 255, 255, 0.8);
}

.b9 { 
  grid-area: b9;
  background: rgba(255, 255, 255, 0.8);
}

.s { grid-area: s; }

@media screen and (max-width: 1200px) {
.play1 { 
  grid-area: play1;
  font-size: 17px;
}

.play2 { 
  grid-area: play2;
  font-size: 17px;
}

.play3 { 
  grid-area: play3;
  font-size: 17px;
}

.play4 { 
  grid-area: play4;
  font-size: 17px;
}

.play5 { 
  grid-area: play5;
  font-size: 17px;
}

.play6 { 
  grid-area: play6;
  font-size: 17px;
}

.play7 { 
  grid-area: play7;
  font-size: 17px;
}

.play8 { 
  grid-area: play8;
  font-size: 17px;
}

.play9 { 
  grid-area: play9;
  font-size: 17px;
}
}

@media screen and (max-width: 1014px) {
.play1 { 
  grid-area: play1;
  font-size: 16px;
}

.play2 { 
  grid-area: play2;
  font-size: 16px;
}

.play3 { 
  grid-area: play3;
  font-size: 16px;
}

.play4 { 
  grid-area: play4;
  font-size: 16px;
}

.play5 { 
  grid-area: play5;
  font-size: 16px;
}

.play6 { 
  grid-area: play6;
  font-size: 16px;
}

.play7 { 
  grid-area: play7;
  font-size: 16px;
}

.play8 { 
  grid-area: play8;
  font-size: 16px;
}

.play9 { 
  grid-area: play9;
  font-size: 16px;
}
}

/* ---------------------------------------------------------------------------------- */

#alexa_item {
  position: relative;
  top: 0;
  padding: 0px;
  overflow: hidden;
  border-radius: 15px;
  mix-blend-mode: normal;
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
  filter: invert(1);
  opacity: .8;
}

.collapsible_maxdance {  
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: center;
  outline: none;
  font-size:20px;
  font-weight: 600;
  overflow: hidden;
}

.collapsible_maxdance:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f078";
  font-weight: 600;
}

.collapsible_maxdance90s {  
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: center;
  outline: none;
  font-size:20px;
  font-weight: 600;
  overflow: hidden;
}

.collapsible_maxdance90s:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f078";
  font-weight: 600;
}

.collapsible_maxretro {  
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: center;
  outline: none;
  font-size:20px;
  font-weight: 600;
  overflow: hidden;
}

.collapsible_maxretro:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f078";
  font-weight: 600;
}

.active:after {
  content: "\f077";
}

.icon-container {
  display: grid;
  justify-content: center;
  align-items: center;
}

.alexa_logo_maxdance { 
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover; 
  margin: auto;
  width: 50px;
  height: 50px;
}
.alexa_logo_maxdance svg path{
  fill: currentcolor;
}

.alexa_logo_maxdance90s { 
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover; 
  margin: auto;
  width: 50px;
  height: 50px;
}
.alexa_logo_maxdance90s svg path{
  fill: currentcolor;
}

.alexa_logo_maxretro { 
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover; 
  margin: auto;
  width: 50px;
  height: 50px;
}
.alexa_logo_maxretro svg path{
  fill: currentcolor;
}

.alexa_content { 
  max-height: 0;
  overflow: hidden;
  font-size: 20px;
  white-space: normal;
  word-break: break-word;
  transition: max-height 0.2s ease-out;
}

.alexa_content a { 
  font-size: 20px;
  font-weight: 600;
}

.alexa_maxdance {
  font-size: 16px;
  color: #383838;
}
.alexa_maxdance:hover {
  color: #383838;
}

.alexa_maxdance90s {
  font-size: 16px;
  color: #383838;
}
.alexa_maxdance90s:hover {
  color: #383838;
}

.alexa_maxretro {
  font-size: 16px;
  color: #383838;
}
.alexa_maxretro:hover {
  color: #383838;
}

/* ---------------------------------------------------------------------------------- */

label.tog > input {
  display: none; /* Hide the checkbox */
}

label.tog > input + span {
  text-indent: -9000px; /* Make text Accessible but not visible */
  display: inline-block;
  width: 80px;
  height: 80px;
  background: center / contain no-repeat url("/images/circle-pause_day.svg"); /*Play*/
  cursor: pointer;
}

label.tog > input:checked + span {
  background-image: url("/images/circle-play_day.svg"); /*Pause*/
}

@media only screen and (max-width: 1200px){
label.tog > input {
  display: none; /* Hide the checkbox */
}

label.tog > input + span {
  text-indent: -9000px; /* Make text Accessible but not visible */
  display: inline-block;
  width: 60px;
  height: 60px;
  background: center / contain no-repeat url("/images/circle-pause_day.svg"); /*Play*/
  cursor: pointer;
}

label.tog > input:checked + span {
  background-image: url("/images/circle-play_day.svg"); /*Pause*/
}
}

@media only screen and (max-width: 940px){
label.tog > input {
  display: none; /* Hide the checkbox */
}

label.tog > input + span {
  text-indent: -9000px; /* Make text Accessible but not visible */
  display: inline-block;
  width: 60px;
  height: 60px;
  background: center / contain no-repeat url("/images/circle-pause_day.svg"); /*Play*/
  cursor: pointer;
}

label.tog > input:checked + span {
  background-image: url("/images/circle-play_day.svg"); /*Pause*/
}
}

/* ---------------------------------------------------------------------------------- */

.play {
  position: relative;
  cursor: pointer;
  font-size: 65px;
  line-height: 65px;
  -webkit-transform: translate3D(0, 0, 0);
          transform: translate3D(0, 0, 0);  
}

@media only screen and (max-width: 1200px){
.play {
  font-size: 55px;
  line-height: 55px;
}
}

/* ---------------------------------------------------------------------------------- */

.songfinder_frame {
  max-width: 1300px; 
  width: 100%; 
  height: 700px; 
  padding: 0 40px 0 40px;
  border-radius: 15px;
  z-index: 1;
}

@media only screen and (max-width: 1200px){
.songfinder_frame {
  width: 100%; 
  height: 700px; 
}
}

@media only screen and (max-width: 940px){
.songfinder_frame {
  max-width: 500px; 
  width: 100%; 
  height: 500px; 
  padding: 0 15px 0 15px;
}
}

/* ---------------------------------------------------------------------------------- */

.songfinder_maxretro_padding {
  padding: 80px 40px 40px 40px;
}

.songfinder_maxretro {
  max-width: 1220px; 
  width: 100%; 
  height: 100%; 
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 940px){
.songfinder_maxretro_padding {
  padding: 80px 15px 40px 15px;
}

.songfinder_maxretro {
  max-width: 470px;
}
}

/* ---------------------------------------------------------------------------------- */
}