/* 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 {
	font-family: 'Play';
}

body {
  margin: 0;
  background-color: #1c1b22;
}

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

.scroll {
  scrollbar-color: #ffffff rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}
.scroll::-webkit-scrollbar {
  width: 8px;
  background: rgba(0, 0, 0, 0);
}
.scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.scroll::-webkit-scrollbar-thumb {
  background:#ffffff;
  border: 1px solid rgba(0, 0, 0, 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 {
  background-color: #ffffff;
  border-radius: 15px;
  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 #aaaaaa;
}

.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 #aaaaaa;
}

.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.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.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.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;
}

.header_container_layout.active_layout {
  border-radius: 0 0 15px 15px;
}

.header_rand {
  padding: 10px 40px 0 40px;
}

.header_container_width {
  position: relative;
  top: 0px;
  margin: auto; 
  width: 100%; 
  max-width: 1220px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px 15px 0 0;
}

.header_container_width.active_layout {
  border-radius: 15px;
  margin-bottom: 10px;
}

.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: 10px 15px 0 15px;
}

.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;
  border-bottom: 5px solid #1c1b22;
  margin-bottom: 20px;
  border-bottom-left-radius: 15px;
  mix-blend-mode: screen;
  transform:translate3d(0,0,0);
  opacity: .6;
}

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

.bar_line_next {
  position: relative;
  margin: auto;
  width: 100%;
  border-bottom: 5px solid #1c1b22;
  mix-blend-mode: screen;
  transform:translate3d(0,0,0);
  margin-bottom: 20px;
  opacity: .6;
}

.bar_next {
  position: relative;
  top: 0px;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 10px 2px 10px;
  font-size: 20px;
  font-weight: 700;
  display: table;
  margin: auto;
  color:#ffffff;
  background: #1c1b22;
  mix-blend-mode: screen;
  transform:translate3d(0,0,0);
  border-radius: 15px 15px 0 0;
}

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

.bar_next {
  font-size: 18px;
}
}

@media only screen and (max-width: 940px){
.bar_line {
  position: relative;
  margin: auto;
  width: 100%;  
  border-bottom: 5px solid #1c1b22;
  margin-bottom: 20px;
  border-bottom-left-radius: 0px;
  mix-blend-mode: screen;
  transform:translate3d(0,0,0);
  opacity: .6;
}

.bar {
  position: relative;
  top: 0px;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 10px 2px 10px;
  font-size: 18px;
  font-weight: 700;
  display: table;
  margin: auto;
  color:#ffffff;
  background: #1c1b22;
  mix-blend-mode: screen;
  transform:translate3d(0,0,0);
  border-radius: 15px 15px 0 0;
}
}

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

.show_layout {
  position: relative;
  max-width: 100%; 
  margin: auto;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 10px;
  border-radius: 0 0 25px 25px;
}

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

.now {  
  grid-area: now; 
  place-self: center;
  position: relative;
  margin: auto;
  max-width: 1220px;
  width: 100%;
  border-radius: 0 0 15px 15px;
  z-index: 1;
}

.now::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.5);
  color: #000000;
  border-radius: 0 0 15px 15px;
  z-index: -1;
}

.now.active_layout {
  visibility: hidden;
}

.play_button { 
  grid-area: play_button; 
  text-align: center;
  padding-top: 10px;
  z-index: 1;
}

.next {  
  grid-area: next; 
  place-self: center;
  padding-top: 10px;
  width: 100%;
  z-index: 1;
}

.show_width {
  margin: auto;
  max-width: 1220px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
  animation: breath 20s linear infinite;
  -webkit-transform: translate3D(0, 0, 0);
          transform: translate3D(0, 0, 0);
}
@keyframes breath {
  0%   { background-size: 100% auto; }
  50% { background-size: 150% auto; }
  100% { background-size: 100% auto; }
}

#artist_show_now {
  font-size:20px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000000;
}

#title_show_now {
  font-size:18px;
  font-weight: 400;
  text-align: center;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000000;
}

.now_line_height {
  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){
#artist_show_now {
  font-size:18px;
}

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

@media only screen and (max-width: 940px){
.show_now {  
  margin: 0 15px 0 15px;
}  
.now {  
  max-width: 470px;
}
.show_width {
  max-width: 470px;
}
}

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

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

.bg {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0; 
}
.bg::before {
  position: absolute;
  content: '';
  display: block;
  background-color: rgba(28, 27, 34, .7);
  width: 100%;
  height: 100%;
}

.bg_header {
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1; 
}

.bg_header.active_layout {
  border-radius: 0 0 15px 15px;
}

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

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

.maxradio_info_container1 {  
  display: grid;
  max-width: 100%; 
  margin: auto;
  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; padding: 0 80px 0 80px; }

.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;
  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; padding: 0 30px 0 30px; }

.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; background: rgba(255, 255, 255, 0.3); padding: 20px; border-radius: 15px 0 0 15px; }

.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 0fr;
  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; background: rgba(255, 255, 255, 0.3); 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 { 
  display: grid; 
  align-items: center; 
  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:35px;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
  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;
  place-self: center;
	margin:0;
}

#player_title {
	font-size:30px;
  font-weight: 300;
  text-align: center;
  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;
  place-self: center;
	margin:0;
}

#player_msg1 {
	font-size:20px;
  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: center;
	margin:0;
}

#player_msg2 {
	font-size:18px;
  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: center;
	margin:0;
}

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

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

.req_msg {
  line-height: 25px;
}

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

#player_title {
	font-size:25px;
}

#player_msg1 {
	font-size:18px;
}

#player_msg2 {
	font-size:16px;
}

.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_artist {
	font-size:25px;
  line-height: 30px;
}

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

#player_msg1 {
	font-size:18px;
}

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

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

.container-recently {  
  display: grid;
  grid-gap: 1px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  padding: 0px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
}

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

.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;
  grid-gap: 1px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  padding: 0px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
}
}

@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: 0px;
  overflow: hidden;
  padding: 0px;
  grid-template-columns: 1fr 1fr 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;
  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: 0 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 1fr 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 {  
  display: grid;
  grid-gap: 1px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-perspective: 1000;
          perspective: 1000;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
          transform: translate3d(0,0,0);
  outline:none;
  border: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: 0px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.5);
}

.play_maxdance {
  border-left: 15px solid #00D6D6;
}

.play_maxdance90s {
  border-left: 15px solid #FF7B00;
}

.play_maxretro {
  border-left: 15px solid #FF3838;
}

.grid-tune  {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0fr 0fr 0fr;
  gap: 1px 0;
  grid-template-areas:
    "play1 play2" 
    "play3 play4"
    "play5 play6";
}

.play1 { 
  grid-area: play1;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.5);
  color: #000000; 
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  border-left: 15px solid #fbbc04;
}

.play2 { 
  grid-area: play2;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.5);
  color: #000000; 
  text-align: left;
  font-weight: 600;
  font-size: 20px;
}

.play3 { 
  grid-area: play3;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.5);
  color: #000000; 
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  border-left: 15px solid #0999da;
}

.play4 { 
  grid-area: play4;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.5);
  color: #000000; 
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  border-left: 15px solid #b54443;
}

.play5 { 
  grid-area: play5;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.5);
  color: #000000; 
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  border-left: 15px solid #ff8446;
}

.play6 { 
  grid-area: play6;
  display: grid;
  align-items: center;
  padding: 5%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.5);
  color: #000000; 
  text-align: left;
  font-weight: 600;
  font-size: 20px;
  border-left: 15px solid #52ac52;
}

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

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

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

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

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

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

@media screen and (max-width: 1105px) {
.grid-tune  {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr 0fr 0fr 0fr 0fr;
  gap: 1px 0;
  grid-template-areas:
    "play1" 
    "play2"
    "play3" 
    "play4"
    "play5" 
    "play6";
}
}

@media screen and (max-width: 940px) {
.grid-tune  {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 0fr 0fr 0fr;
  gap: 1px 0;
  grid-template-areas:
    "play1 play2"
    "play3 play4"
    "play5 play6";
}

.play1 { 
  grid-area: play1;
}

.play2 { 
  grid-area: play2;
}

.play3 { 
  grid-area: play3;
}

.play4 { 
  grid-area: play4;
}
.play5 { 
  grid-area: play5;
}

.play6 { 
  grid-area: play6;
}
}

@media screen and (max-width: 415px) {
.grid-tune  {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0fr 0fr 0fr 0fr 0fr 0fr;
  gap: 1px 0;
  grid-template-areas:
    "play1" 
    "play2"
    "play3" 
    "play4"
    "play5" 
    "play6";
}

.play1 { 
  grid-area: play1;
}

.play2 { 
  grid-area: play2;
}

.play3 { 
  grid-area: play3;
}

.play4 { 
  grid-area: play4;
}
.play5 { 
  grid-area: play5;
}

.play6 { 
  grid-area: play6;
}
}

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

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

.collapsible_maxdance {  
  color:#000000;
  background: rgba(255, 255, 255, 0.8);
  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";
  color: #000000;
  font-weight: 600;
}

.collapsible_maxdance90s {  
  color:#000000;
  background: rgba(255, 255, 255, 0.8);
  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";
  color: #000000;
  font-weight: 600;
}

.collapsible_maxretro {  
  color:#000000;
  background: rgba(255, 255, 255, 0.8);
  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";
  color: #000000;
  font-weight: 600;
}

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

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

.alexa_logo_maxdance { 
  background-image: url(/images/alexa_maxdance.svg); 
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover; 
  margin: auto;
  width: 50px;
  height: 50px;
}

.alexa_logo_maxdance90s { 
  background-image: url(/images/alexa_maxdance90s.svg); 
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover; 
  margin: auto;
  width: 50px;
  height: 50px;
}

.alexa_logo_maxretro { 
  background-image: url(/images/alexa_maxretro.svg); 
  background-position: center; 
  background-repeat: no-repeat;
  background-size: cover; 
  margin: auto;
  width: 50px;
  height: 50px;
}

.alexa_content { 
  max-height: 0;
  overflow: hidden;
  color: #000000;
  background: rgba(255, 255, 255, 0.8);
  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: #000000;
}
.alexa_maxdance:hover {
  color: #383838;
}

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

.alexa_maxretro {
  font-size: 16px;
  color: #000000;
}
.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;
  border-radius: 100%;
  font-size: 65px;
  -webkit-transform: translate3D(0, 0, 0);
          transform: translate3D(0, 0, 0);  
}

@media only screen and (max-width: 1200px){
.play {
  font-size: 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;
}
}

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