@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    color:#cecaca;
}
body{
 
}
a{
 color:#000;
 text-decoration:none;
}
ul{
    list-style: none;
}
:root{
    --black:#000;
    --pink: #ff74a4;
    --violet: #9f6ea3;
    --lightblack: #515C6F;
    --white: #ffffff;
    --darkwhite: #cecaca;
    --pinkshadow: #ffcbdd;
    --lightbshadow: rgba(0,0,0,0.15);
  }
.wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color:#081526;
/* background: linear-gradient(var(--black) 0%, var(--violet) 100%);  */

}
.start{
    height:100vh;
    width:100%;
    background:url('./black.jpeg');
    object-fit:cover;
    background-size:cover;

}
.payBtn2{
    display:flex;
    justify-content:center;

}
.container{
    max-width: 500px;
    margin: 0 auto;
  background-color:#081526;
   /* background: linear-gradient(var(--black) 0%, var(--violet) 100%);  */
    display:grid;
    height:100vh;
    grid-template-columns: 50px 250px 50px;
    grid-template-rows: 90px 400px 100px;
    grid-template-areas: "header header header"
    "song-list-container player-container sideMenu" ;
}
.header{
    color: #ffffff;
    grid-area: header;
    display: flex;
    justify-content: center;
    background: transparent;
    align-items: center;
    letter-spacing:7px;
    font-size: 1.2rem;
  font-weight: 100;
}
.song-list-container{
    background: red;
    grid-area: song-list-container;
}
.player-container{
    background: transparent;
    grid-area: player-container;
}

.sideMenu{

    background: transparent;
    position: relative;
    width:50px;
    height:300px;
    display:flex;
    align-items: center;
    grid-area: sideMenu;
    opacity: 1;
    transition: all 1s ease-in;
}
.sideMenuShow{
    background: transparent;
    position: relative;
    width:50px;
    display:flex;
    align-items: center;
    grid-area: sideMenu;

    opacity: 1;

}
.sideMenuList{

    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;

}
.downBtn{
    display:flex;
    justify-content:center;
    text-align:center;
}
.sideMenuItem{

   margin:10px;
   font-size: .2rem;
   width:0px;

}
.sideMenu > ul li {

    color:rgb(235, 224, 210);
}
.card{

    box-shadow: 0 2px 4px -4px rgba(0, 0, 0, .4), 0 50px 45px -20px rgba(0, 0, 0, .2);
	border-radius: 30px;
	height: 280px;
	margin: 50px auto;

    background-color: #1b2b40;
	position: relative;
	width: 180px;
    border: solid 4px   #b3d3ff;

  }
  .title-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;

}


.song-list-container{
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: transparent;
    opacity: 0;

    transition: all 1s ease-in;
}
.song-list-container-see{
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: transparent;
    opacity: 1;
    transform: scale(1.5);
}
.song-list-container2{
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: transparent;
    opacity: 0;

    transition: all 1s ease-in;
}
.song-list-container-see2{
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: transparent;
    opacity: 1;
    transform: scale(1.5);
}



.song-list-item img{
    width:30px;
    height:30px;
    border-radius: 15px;
    border:.5px solid white;
}
 .controls-container{
      display:flex;
      align-items: center;
      justify-content: center;
      margin-top: 20px;
      margin-bottom: 20px;
  }
  .controls-container .play{
      border: none;
      height:50px;
      width: 50px;
      margin-left: 20px;
      margin-right: 20px;
      border-radius: 50%;
      background-color:#3F6694;
      /* background-color: rgba(225, 129, 11, 0.31); */
      box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    }
    .controls-container .pre{
        border: none;
        height:30px;
        width: 30px;
        border-radius: 50%;
        background-color: #b3d3ff;
      box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
      }
      .controls-container .next{
        border: none;
        height:30px;
        width: 30px;
        border-radius: 50%;
        background-color:#3F6796;
        box-shadow: rgba(150,111,88, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
        border: none;
      }
      .song-list-btn{
        background-color: transparent;
        border: none;
        margin-top: 0px;
        margin-bottom: 40px;
        text-align: center;
      }
      .slider-container{
        display:flex;
        justify-content: center;
        flex-direction: column;
        margin-bottom: -50px;

      }
      .max-container{
        background-color: #000000;
        height: 100vh;
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
.max-pic{
background-image: url('./maxhead.png');
background-repeat: no-repeat;
background-position: center;
background-size: cover;
object-fit: contain;
width:100%;
height: 100vh;

}
.max-pix{
    background-image: url('./maxhead.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    object-fit: contain;
     width:50px;
    height: 50px;
    border-radius:50px; 
    }
.footer{
height:200px;
width:100%;
padding-top:30px;
padding-bottom:20px;
background-color: #000;
display:flex;
align-items: center;
justify-content: center;
flex-direction:column;
overflow:hidden;
}
.bottom{
    padding:20px;
    display:flex;
    align-items: center;
    justify-content: space-between;
   width:100%;
   overflow:hidden;
}
.bottom p{
 font-size:.7rem;
 overflow:hidden;
}
.footer-container{
    display:flex;
align-items: center;
justify-content: center;
}
.cartTable{
    position: absolute;
    top:0px;
    left:100px;
    width:175px;
    left: 50%;
    transform: translateX(-50%);


}
.musicCartTitle{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 100;

}
.emptyBtn{
    border: none;
    height:40px;
    width: 40px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 50%;
    color:rgba(255, 255, 255, 0.31);
    background-color: rgba(225, 129, 11, 0.31);
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.emptyBtnContainer{
    display: flex;
    align-items: center;
    justify-content: center;
}
.paypal{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin:30px;

}
.cartCount{
    content:"";
    color:rgb(240, 132, 0);
    font-size: .9rem;
    font-weight: 600;
    z-index: 9999999;
    position: absolute;
    top:17px;
    right:15px;
}
.overlay{
    position: absolute;
    transition: 0.9s ease;
    height:370px;
    width: 175px;
    bottom:120%;
    left: 50%;
    background-color: rgb(235, 224, 210);
    opacity: 0;
    border-radius: 50px;
    transform: translateX(-45%);
    border-bottom:solid 2px  var(--violet);
    border-right: solid 2px  var(--violet);
    border-left: solid 2px  var(--violet);
    border-top: solid 2px  var(--violet);



}
 .overlayShow {
    opacity: 1.0;
    z-index: 199;
    top:37.5%;


}
.imgC{
    width:80px;
    height:80px;
    border-radius: 50px;
    position: absolute;
    top:-45px;
    left:50%;
    transform: translateX(-50%);
    z-index: 100;

}
.titleList{
    display:flex;
    justify-content: center;
    font-size: .6rem;
    cursor:pointer;
    padding-top:1px;
    color:#cecaca;
    list-style: none;
    text-transform: capitalize;
    box-shadow:inset 0 0 4px #cecaca;
    border-radius: 50px;
    padding: 5px;
    margin-top: 2px;
    transition: all .3s ease-in-out;

}
.titleList:hover{
    display:flex;
    justify-content: center;
    font-size: .5rem;
    cursor:pointer;
    padding-top:1px;
    color: #cecaca;
    list-style: none;
    text-transform: capitalize;

   box-shadow:inset 0 0 2px #cecaca;
    border-radius: 9px;
    margin-top: 2px;
    padding: 4px;
}
.song-list-contain{
    opacity:0;
    display: flex;
    justify-content: center;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background-color: #1b2b40;
    height: 0px;
    transition: all .3s ease-in;
    width:172px;
}
.show-song-list-contain{
    display: flex;
    justify-content: center;
    height: 245px;
    width:172px;
    opacity: 1;
    background-color: #1b2b40;


}

.arrowUp{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    z-index: 99999;
    color:  #3F6796;
}
.alTitle{
    font-size: .8rem;
}

.song{
    font-size: .6rem;
}

@keyframes spin{
    from{ transform: rotate(-360deg);
           }
    to{ transform: rotate(360deg); }
}
.spinner{
    width:80px;
    height:80px;
    border-radius: 50px;
    position: absolute;
    top:-44.7px;
    left:25%;
    transform: translateX(-50%);
    z-index: 100;
    animation-name: spin;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.cartCount{
    position: absolute;
    left:22px;
    top:9px;
}
.faBtn{
    border-radius: 50px;
    background: linear-gradient(315.13deg, rgba(194, 217, 237, 0.3) 5.21%, rgba(255, 255, 255, 0.3) 62.26%), rgb(109, 87, 58);;
    box-shadow: 4px 4px 12px rgba(138, 155, 189, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.9);
}
.cancel{
    color:#000;
    text-transform:capitalize;
    text-decoration:none;
}