* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body {
    height: fit-content;
    background-color: #1f2833	;
    color: #ffffff;
    overflow-x: hidden;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: inherit;
}
::selection {
    background-color: 	#1f2833;
    color: 	#abb1cf;
}
/* Hide scrollbar */
body::-webkit-scrollbar {
    display: none;
}
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Navigation */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 50px;
    max-width: 1400px;
    margin: auto;
    width: 100%;
}
.menu-icon {
    cursor: pointer;
    float: right;
    padding: 20px 3px;
    z-index: 107;
}
.menu-icon .nav-icon {
    background-color: #66FCF1;
    display: block;
    height: 2px;
    width: 23px;
    position: relative;
    transition: background 0.2s ease-out;
}
.menu-icon .nav-icon::before,
.menu-icon .nav-icon::after {
    background-color: #66FCF1;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
}
.menu-icon .nav-icon::before {
    top: 7px;
}
.menu-icon .nav-icon::after {
    bottom: 7px;
}
.navigation .menu-icon .nav-icon::before{
    top: 8px;
}
.navigation .menu-icon .nav-icon::after{
    top: -8px;
}
.navigation .menu-btn:checked ~ .menu-icon .nav-icon{
    background-color: transparent;
}
.navigation .menu-btn:checked ~ .menu-icon .nav-icon::before{
    transform: rotate(-45deg);
    top: 0px;
}
.navigation .menu-btn:checked ~ .menu-icon .nav-icon::after{
    transform: rotate(45deg);
    top: 0px;
}
.menu-btn{
    display: none;
}

/*MENU*/
.menu{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #111111f1;
    z-index: 106;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fade 0.3s;
}
.menu li a{
    color: #ffffff;
    margin: 0px 29px;
    font-size: 1.7rem;
    font-family: Monoton;
    transition: all ease 0.3s;
}
.menu li a:hover{
    font-size: 2.3rem;
    color: 	#66FCF1;
    transition: all ease 0.3s;
}

.navigation .menu-btn:checked ~ .menu{
    display: flex;
}

@keyframes fade{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.logo{
    color: 			#66FCF1;
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0px auto 0px 40px;
    display: flex;
    align-items: center;
    font-family: Monoton;
    letter-spacing: 1px;
}
[v-cloak]{
    display: none;
  }
  .player{
    overflow: hidden;
  }
.display {
  height: 90vh;
  max-height: calc(90vh - 111px); 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.disc {
  max-width: 100%;
  max-height: 100%; 
  height: auto; 
  width: auto; 
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    animation-play-state: paused;
  }
  @keyframes rotate{
    to{
      transform: rotate(360deg);
    }
  }
  .player.play .display .disc{
    animation-play-state: running;
  }
  nav {
    padding: 0px 10px;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  nav ul li {
    display: inline;
    align-items: center;
  }

  
  nav ul li a {
    color: white;
    padding: 10px 10px;
    display: inline-block;
  }
  
  nav ul li a:hover {
    background-color: rgba(189, 125, 125, 0.884);
  }

   /* BOTTOM CONTROLS SECTION */
   #cover{
    position: absolute;
    width: 12%;
    left: 50px;
    display:none;
    align-items: flex-start;
  }
  .nav-bar{
    width: 100%;
    max-width: 600px;
  }
  .info{
    position: relative;
    bottom: 0;
    padding: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    align-items: flex-start;
  }
  #title{
    color: #fff;
    align-items: flex-start;
  }
  .progress-cont{
    color: #fff;
    cursor: pointer;
    height: 5px;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    background: #fff;
  }
  .progress{
    height: 90%;
    width: 0%;
    background: rgb(71, 142, 177);
  }
  .controls{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .action-btn{
    color: gray;
    cursor: pointer;
    font-size: 1.1rem;
    text-shadow: gray;
    background: none;
    border:none;
    margin: 10px;
  }
  .action-btn:hover{
    color: #47a2bc;
  }
  .big{
    font-size: 2.1em;
  }
  .sidebar{
    position: fixed;
    left: 0;
    height: 100vh;
    margin-left: -300px;
    width: 300px;
    background: var(--primary);
    display: flex;
    margin-top: 25vh;
    justify-content: flex;
    align-items: flex-start ;
    flex-direction: column;
    z-index: 100;
    transition: .5s ease-in-out;
  }
  .sidebar button#song-select{
    padding: 2px;
  }
  .sidebar.open{
    margin-left: 0px;
    text-align: center;
    background-color: #101010;
  }
  .sidebar #x-sidebar{
    position: absolute;
    top: 1px;
    right: 10px;
    background: none;
    color: #fff;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
  }

   /*FOOTER*/
footer{
  background-color: #0e0e0ec2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10%;
}
footer .copyright{
  color: #999696;
  font-size: 0.9rem;
}
footer .logo{
  margin: 0px;
  font-size: 2rem;
  font-weight: 400;
}
/*fix-menue-btn*/
.fix-icon .menu-icon{
  position: fixed;
  left: 40px;
  top: 40px;
  background-color: #1c1f25;
  border-radius: 50%;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*PROGRESS-BAR*/
#progress{
  height: 20px;
  width: 20px;
  border-radius: 25%;
  position: fixed;
  bottom: 10px;
  right: 10px;
  box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
  display: grid;
  place-items: center;
  z-index: 80;
}
#progress-value{
  display: block;
  height: calc(80% - 6px);
  width: calc(80% - 6px);
  background-color: #1c1f25;
  border: 20%;
  display: grid;
  place-items: center;
  font-weight: 400;
  font-size: 0px;
}
/*home-page-responsive*/
@media (max-width: 1600px) {
  #main-slider,
  #latest-al,
  #latest-mu,
  .slider-btns{
      width: 90%;
  }
  .menu li a{
      margin: 0px;
      font-size: 1.6rem;
  }
  #cover{
    transform: scale(1);
    top: -80%;
    left: 3px;
  }

}


@media (max-width: 1250px) {
  #main-slider,
  #latest-al,
  #latest-mu,
  .slider-btns{
      width: 90%;
  }
  .menu li a{
      margin: 0px;
      font-size: 1.6rem;
  }
}

@media (max-width: 900px) {
  #cover{
    transform: scale(.7);
    top: -80%;
    left: 3px;
  }
 
}

@media(max-width:912px){
  #cover{
    transform: scale(1);
    top: -75%;
    left: 3px;
  }

  .navigation{
      padding: 20px 10px;
      width: 90%;
  }
  .logo{
      font-size: 2rem;
  }
  footer .logo{
      font-size: 1.3rem;
  }
  footer{
      padding: 10px 20px;
      text-align: center;
  }
}


@media(max-width:824px){
  #cover{
    transform: scale(1);
    top: -70%;
    left: 3px;
  }

  .navigation{
      padding: 20px 10px;
      width: 90%;
  }
  .logo{
      font-size: 2rem;
  }
  footer .logo{
      font-size: 1.3rem;
  }
  footer{
      padding: 10px 20px;
      text-align: center;
  }
}


@media (max-width:600px) {
  #cover{
    transform: scale(1);
    top: -65%;
    left: 3px;
  }

  .navigation{
      display: grid;
      grid-template-columns: 60px 1fr;
      grid-template-rows: 1fr 1fr;
      padding: 20px 0px;
  }
  .logo{
      margin: 0px;
  }
  .menu li a:hover{
      font-size: 1.8rem;
  }
  footer .copyright{
      font-size: 0.6rem;
  }
  .fix-icon .menu-icon{
      left: 10px;
      top: 0px;
      border-radius: 4px;
  }
}

@media (max-width:200px) {
  #cover{
    transform: scale(1);
    top: -60%;
    left: 3px;
  }

  .navigation{
      display: grid;
      grid-template-columns: 60px 1fr;
      grid-template-rows: 1fr 1fr;
      padding: 20px 0px;
  }
  .logo{
      margin: 0px;
  }
  .menu li a:hover{
      font-size: 1.8rem;

}

}






