@charset "utf-8";
/* CSS Document */

.banner-wrapper {
  background: url("../images/banner/music-banner.jpg") no-repeat top center #051127;
}
h2{margin: 30px auto 0;}

/* download album */
.downl-album {
  margin-top: 15px;
  margin-bottom: 15px;
}

a.downl.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/* ---------------album-item------------------ */
.album-item {
  padding: 15px;
  margin: 0 auto;
  text-align: center;
  max-width: 360px;
}

.album-item img {
  border-radius: 15px;
  margin-bottom: 8px;
  border:1px #c8c8c8 solid;
}

/* .album-item .title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
 font-size: 18px;
 line-height: 28px;
} */
.album-item a{color: var(  --secondry-color);}


.title-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0px 3px;
}

.title-wrapper .title {
  /* width: 85%; */
  text-align: left !important;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  font-size: 18px; line-height: 25px; font-weight: 500; 
  margin-right: 6px;
}

.title-wrapper .share img {
  width: 15px;
  height: 15px;
  border-radius:0;
  margin:5px 0 0 !important;
  border: none;
  cursor: pointer;
}


/*------------------music list--------------------*/
.music-list {
  border-top: 8px solid var(--red);
  border-radius: 10px;
  border-left: 1px solid #c8c8c8;
  border-right: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  padding: 20px;
}

.music-list b {
  font-size: 18px;
}

/* ---------------control---------------- */

:root {
  --pink: #ff74a4;
  --violet: #9f6ea3;
  --lightblack: #515C6F;
  --white: #ffffff;
  --darkwhite: #cecaca;
  --pinkshadow: #ffcbdd;
  --lightbshadow: rgba(0, 0, 0, 0.15);
}

.player-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #656565;
  flex-direction: row;
  flex-wrap: wrap;
}


.player-wrapper .icons li {
  width: 4px;
  height: 4px;
  background: none repeat scroll 0 0 #8b8b8b;
}
.player-wrapper .more{ margin: -15px 0 0; }
.player-wrapper .showLeft{ padding: 0;}

.music-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  max-width: 300px;

}

.music-content  .text{width: 230px;}
.music-content  .text p, .music-content  .text {  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;}

.music-content .m-img {
  width: 70px;
  margin-right: 10px;
}
.music-content img{  border-radius: 5px;}

.music-content p {
  line-height: 19px;
}

.albumname {
  font-size: 15px;
}

.trackname {
  font-size: 18px;
}


.controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;

}

.controls img {
  width: 30px;
  height: 30px;
  user-select: none;
  filter: brightness(0) saturate(100%) invert(61%) sepia(1%) saturate(0%) hue-rotate(109deg) brightness(89%) contrast(84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

.controls img:nth-child(2),
.controls img:nth-child(4) {
  width: 26px;
}

.controls #prev {
  margin-right: -13px;
}

.controls #next {
  margin-left: -13px;
}

.controls #prev.active, .controls #next.active{
  filter: brightness(0.2);
  cursor: pointer;
}

.controls .play-pause {
  height: 45px;
  width: 45px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
}

.play-pause::before {
  position: absolute;
  content: "";
  height: 38px;
  width: 38px;
  border-radius: inherit;
}

.play-pause img {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: inherit;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  filter: brightness(0) invert(1);
}

.duration{ width: 100px;}

/* ---------music-loader ----------- */
.profile-main-loader{display: none;}
.profile-main-loader .loader {
position: relative;
margin: 0px auto;
width: 50px;
height:50px;
}
.profile-main-loader .loader:before {
content: '';
display: block;
padding-top: 100%;
}

.circular-loader {
-webkit-animation: rotate 2s linear infinite;
        animation: rotate 2s linear infinite;
height: 100%;
-webkit-transform-origin: center center;
    -ms-transform-origin: center center;
        transform-origin: center center;
width: 100%;
position: absolute;
top: 0;
left: 0;
margin: auto;
}

.loader-path {
stroke-dasharray: 150,200;
stroke-dashoffset: -10;
-webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
        animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
stroke-linecap: round;
}

@-webkit-keyframes rotate {
100% {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
}

@keyframes rotate {
100% {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
}
@-webkit-keyframes dash {
0% {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
}
50% {
  stroke-dasharray: 89,200;
  stroke-dashoffset: -35;
}
100% {
  stroke-dasharray: 89,200;
  stroke-dashoffset: -124;
}
}
@keyframes dash {
0% {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
}
50% {
  stroke-dasharray: 89,200;
  stroke-dashoffset: -35;
}
100% {
  stroke-dasharray: 89,200;
  stroke-dashoffset: -124;
}
}

@keyframes color {
0% {
  stroke: #898989;
}
40% {
  stroke: #898989;
}
66% {
  stroke: #898989;
}
80%, 90% {
  stroke: #898989;
}
}


/* ----------------------------wave------------------------------ */
#music-bars {
  height: 41px;
  margin: 0 auto 20px;
  padding: 0 1px;
  cursor: pointer;
}

#pausem {
  display: none;
}

.repeat-toggle.active img {
  filter: brightness(0.2);
  /* Highlight active repeat */
}

.track img {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  margin-right: 5px;
}

/* .track-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
} */

.track-list {
  margin-top: 20px;
}

.track-list .m-download, .track-content .duration {display: none;}

.more-i {
  position: relative;
  margin-top: -25px;
}

.track {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.downl img {
  filter: invert();
  height: 22px;
  vertical-align: middle;
}

.dropdown-content img {
  height: 14px;
  vertical-align: middle;
  margin: 0px 8px 0 0;
}

.track-content{display: flex; flex-direction: row; align-items: center; margin-left:7px;}

.track-content p{line-height: 19px;}
.track-content p, .track-content{white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;}

  .header .content p{ 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 30ch;}

    .header .content p .trackname{font-size: 17px;}
/* ------------------more-i------------------ */

.showLeft {
  /* border: 1px solid white !important; */
  color: black !important;
  padding: 0 10px;
}

.icons li {
  background: none repeat scroll 0 0 black;
  height: 3px;
  width: 3px;
  line-height: 0;
  list-style: none outside none;
  margin-right: 5px;
  margin-top: 2px;
  border-radius: 50%;
  pointer-events: none;
}

.btn-left {
  left: 0;
}

.btn-right {
  right: 0;
}

.btn-left,
.btn-right {
  position: absolute;
  top: 0;
}

.dropbtn {
  font-size: 16px;
  border: none;
  cursor: pointer;
}


.dropdown1 {
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0;
}

.dropdown-content {
  display: none;
  position: relative;
  margin-right: 20px;
  background-color: #f9f9f9;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 3;
  width: max-content;
  padding: 5px;
  border-radius: 2px;
}

.dropdown-content a {
  color: #656565 !important;
  padding: 6px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight: 400;
}

/* .dropdown a:hover {
  background-color: #f1f1f1;
} */

.show {
  display: block;
}

/* -------------------------------- */


#music-bars img {
  height: 41px;
}

.image-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.image-container img {
  display: block;
  max-width: 40px !important;
}

.image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url('/images/music/music-bar.svg') no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-container.active::after {
  opacity: 1;
}

.music-waves {
  background-image: url(/images/music/music-wave.svg);
  background-size: cover;
  height: 41px;
}




/* --------------------------music icon animation----------------------------- */
.object{display: flex; justify-content: space-between; align-items: baseline;}

.bird{width:40px; margin-left: 5%; animation: bounce2 2s ease infinite;}
@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-20px);}
	60% {transform: translateY(-10px);}
}

:root {
  --timing-func: cubic-bezier(0.1, 0.8, 0.6, 0.9);
}

.animal{width:55px; margin-right: 5%;
  animation:
  0.25s var(--timing-func) infinite alternate domo-bounce,
  2s var(--timing-func) infinite domo-twist;
}

@keyframes domo-bounce {
  to {
    translate: 0 -20%;
  }
}

@keyframes domo-twist {
  25% {
    rotate: -10deg;
  }
  50% {
    rotate: 10deg;
  }
  75% {
    rotate: 10deg;
  }
}



.muzieknootjes {
  display: block;
  margin: auto;
  position: relative;
  width: 70%;
  min-width: 300px;
  height:auto;
  /* border: 0px solid #dad5d5; */
 
}

.noot-1,
.noot-2,
.noot-3,
.noot-4 {
  position: absolute;
  animation: notes 2s infinite linear;
  font-size:25px;
  opacity: 0;
}

.noot-1 {
  top: 80px;
  left: 0;
  animation-delay: 0.5s;
  color: #F56344;
}

.noot-2 {
  top: 80px;
  left: 20%;
  animation-delay: 1s;
  color: #7ac2ad;
}

.noot-3 {
  top: 90px;
  left: 70%;
  animation-delay: 1.5s;
  color: #8a4072;
 
}

.noot-4 {
  top: 40px;
  left: 90%;
  animation-delay: 2s;
  color: #f59936;
 
}

@keyframes notes {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1.5) translate(50%, -50%);
  }
  80% {
    opacity: 0;
    transform: scale(1.5) translate(100%, -100%);
  }
  100% {
    transform: scale(1.5) translate(100%, -100%);
    opacity: 0;
  }
}

/* -------------------------------------------- */

.img-replace {
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}


.customization_popup_trigger {
  display: block;
}



/* --------------xpopup-------------- */
 

.customization_popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* background-color: rgba(94, 110, 141, 0.9); */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 99;
}

.customization_popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.customization_popup_container {
  position: absolute;
  /* width: 30%; */
   width:480px;
  margin: 0 auto;
  right: 15px;
  bottom: 0;
  height: auto;
  background: #FFF;
  /* border-radius: .25em .25em .4em .4em; */
  border-radius:10px;
  text-align: center;
     box-shadow: 0 0 20px rgba(0, 0, 0, .3);
  -webkit-transform: translatex(400px);
  -moz-transform: translatex(400px);
  -ms-transform: translatex(400px);
  -o-transform: translatex(400px);
  transform: translatex(400px);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}



.customization_popup_container .customization_popup_buttons:after {
  content: "";
  display: table;
  clear: both;
}

.customization_popup_container .customization_popup_buttons li {
  float: left;
  width: 50%;
  list-style: none;
}

.customization_popup_container .customization_popup_buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.customization_popup_container .customization_popup_buttons li:first-child a {
  background: #fc7169;
  border-radius: 0 0 0 .25em;
}

.no-touch .customization_popup_container .customization_popup_buttons li:first-child a:hover {
  background-color: #fc8982;
}

.customization_popup_container .customization_popup_buttons li:last-child a {
  background: #b6bece;
  border-radius: 0 0 .25em 0;
}

.no-touch .customization_popup_container .customization_popup_buttons li:last-child a:hover {
  background-color: #c5ccd8;
}

.customization_popup_container .customization_popup_close {
  position: absolute;
  /* top: 8px; */
  right: 8px;
  width: 30px;
  height: 30px;

}

.customization_popup_container .customization_popup_close::before, .customization_popup_container .customization_popup_close::after {
  content: '';
  position: absolute;
  top: 12px;
  width: 14px;
  height:2px;
  background-color: #000;
}

.customization_popup_container .customization_popup_close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}

.customization_popup_container .customization_popup_close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}

.is-visible .customization_popup_container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}


/* ---------custom css lyrics---------- */



.customization_popup_container .header{  display: flex;
  align-items: center;
  justify-content: space-between;

  color: #000000;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: left;
  padding: 5px;
  background: #e9e9e9;
  border-radius: 10px 10px 0 0;
  border-top:6px solid var(--red);
  border-bottom:1px solid #ccc;
}

.customization_popup_container .header .content{display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;}

.customization_popup_container .header .content img {   
width:40px;
border-radius: 5px;
margin-right: 10px;}   



.header .content p {
  line-height: 19px;
}

.customization_popup_container .matter{margin: 0; padding:0 10px 20px; height:450px; overflow: hidden; overflow-y: scroll;}
.customization_popup_container .matter p, .customization_popup_container .matter li{
  font-size: 16px;
  color: #656565;
  line-height: 30px;}
.customization_popup_container .matter p{white-space: pre-wrap;}

/* Scrollbar Styling */
.matter::-webkit-scrollbar {
  width:5px;
}

.matter::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.matter::-webkit-scrollbar-thumb {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #6d6d6d; 
}


/* --------switch button--------- */
.switch {
  position: relative;
  display: inline-block;
  /* margin:15px 40px -10px 0;
  right: -40%; */
  cursor: pointer;
  margin: 15px auto -5px;
}

.switch > span {
  position: absolute;
  top: 8px;
  /* pointer-events: none; */
  font-weight: 500;
  font-size: 13px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  width: 50%;
  text-align: center;
  line-height: 15px;
}

input.check-toggle-round-flat:checked ~ .off {
  color: var(--red);
}

input.check-toggle-round-flat:checked ~ .on {
  color: #fff;
}

.switch > span.on {
  left: 0;
  padding-left: 2px;
  color:var(--red);
}

.switch > span.off {
  right: 0;
  padding-right: 4px;
  color: #fff;
}

.check-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
.check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input.check-toggle-round-flat + label {
  padding: 2px;
  width: 126px;
  height:30px;
  background-color: var(--red);
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}
input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}

input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: var(--red);
  border-radius: 60px;
}
input.check-toggle-round-flat + label:after {
  top: 4px;
  left: 2px;
  bottom: 4px;
  width:63px;
  background-color: #fff;
  -webkit-border-radius: 52px;
  -moz-border-radius: 52px;
  -ms-border-radius: 52px;
  -o-border-radius: 52px;
  border-radius: 52px;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -o-transition: margin 0.2s;
  transition: margin 0.2s;
}

/* input.check-toggle-round-flat:checked + label {
} */

input.check-toggle-round-flat:checked + label:after {
  margin-left: 58px;
}

.lyrics-txt{display: none;}
.lyrics-txt.active{display: block; margin-top: 20px;}


/* -------------------------responsive---------------------------- */
@media only screen and (max-width: 1400px) {h2 { margin: -35px auto 30px; z-index: 2; }
}

@media screen and (max-width: 991px) {.m-container{max-width:98% !important; margin: 0 auto;}
.music-content{max-width: 250px;} 
.controls{width: 200px;}
}

@media screen and (max-width:790px){.duration{font-size: 14px;}
 .music-content{flex: 0 0 100%; max-width: -webkit-fill-available; margin-bottom: 10px;}
}
    
@media screen and (max-width:768px) {.hide {display: none;}
.noot-1, .noot-2, .noot-3, .noot-4{font-size:17px;}
.noot-1{top:60px; left:5%;}
.noot-2{top:65px; left:25%;}
.noot-3{top:70px; left:50%;}
.noot-4{top:75px; left:70%;}
.bird{width: 32px;}
.animal{width:45px;}
.track-list .m-download, .track-content .duration {display: block;}
.track-name{font-size: 16px;}
.track-content .duration {color: #656565; font-size: 13px;}
}


@media screen and (max-width:530px) {
  /* .music-content{max-width: 100%; margin-bottom:10px;} */
.customization_popup_container{width:90%;}
.customization_popup_container .matter{height:250px;}
}

@media screen and (max-width:460px) {.player-wrapper .duration{display: none;}
.header .content p{  max-width: 15ch;}
.header .content p .trackname{font-size: 16px;}
.header .content p .albumname{font-size: 14px;}
}

@media only screen and (orientation: landscape) and (max-height: 480px) {
  /* CSS rules for landscape mode with a maximum height of 480px */
  /* This might target narrower landscape views on some phones */
.customization_popup_container{width:98%; margin:0 auto; right:0; left:0;}
.customization_popup_container .matter{height:195px;}

}
