body, h1,h2,h3,h4,h5,h6 {font-family: "Montserrat", sans-serif}
.w3-row-padding img {margin-bottom: 12px}
/* Set the width of the sidebar to 120px */
.w3-sidebar {width: 120px;background: #222;}
/* Add a left margin to the "page content" that matches the width of the sidebar (120px) */
#main {margin-left: 120px}
/* Remove margins from "page content" on small screens */
@media only screen and (max-width: 600px) {#main {margin-left: 0}};
/* cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  width: 40%;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.pil{
      width:100%;
      height:50px;
}
.bgimg {
  background-color: black;
  
}
    #myProgress {
      width: 100%;
      background-color: #d9d9f2; 
      cursor: pointer;
      border-radius: 10px;
    }
    
    #myBar {
      width: 0%;
      height: 5px;
      background-color: #ffc266;
      border-right: 10px solid rgb(255, 0, 0);
      border-radius: 10px;
    }
    
    .logo {
      fill: red;
    }
    
    .btn-action{
      cursor: pointer;
      padding: 10px;
      width: 70px;
    }
    
    .btn-ctn, .infos-ctn{
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .infos-ctn{
    padding-top: 20px;
    }
    
    .btn-ctn > div {
     padding: 5px;
     margin-top: 18px;
     margin-bottom: 18px;
    }
    
    .infos-ctn > div {
     margin-bottom: 8px;
     color: #ffc266;
    }
    
    .first-btn{
      margin-left: 3px;
    }
    
    .duration{
      margin-left: 10px;
    }
    
    .title{
      margin-left: 10px;
      width: 210px;
      text-align: center;
    }
    
    .player-ctn{
      border-radius: 20px;
      width: 90%;
      padding: 8px;
      margin:auto;
      margin-top: 0px;
      font-weight: bolder;
    }
    
    .playlist-track-ctn{
      display: flex;
      border-radius: 5px;
      cursor: pointer;
    }
    
    .playlist-track-ctn > div{
      margin:10px;
    }
    .playlist-info-track{
      width: 80%;
    }
    .playlist-info-track,.playlist-duration{
      padding-top: 7px;
      padding-bottom: 7px;
      color: #e9cc95;
      font-size: 14px;
      pointer-events: none;
    }
    .playlist-ctn{
       padding-bottom: 20px;
       margin-top: 60%;
    }
    .active-track{
      background: #4d4d4d;
      color: #ffc266 !important;
      font-weight: bold;
      
      
    }
    
    .active-track > .playlist-info-track,.active-track >.playlist-duration,.active-track > .playlist-btn-play{
      color: #ffc266 !important;
    }
    
    
    .playlist-btn-play{
      pointer-events: none;
      padding-top: 5px;
      padding-bottom: 5px;
    }
    .fas{
      color: #ffc266;
      font-size: 20px;
    }

    /* playlists section */
    .cardes-list {
      z-index: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
    }

    /* New releases */
    .container {
      max-width: 1400px;
      padding: 10px 0px;
      margin: 0 auto;
    }
    
    .cards {
      display: grid;
      grid-auto-columns: 50%;
      grid-column-gap: 30px;
      grid-auto-flow: column;
      padding: 25px 0px;
      list-style: none;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
    }
    
    .card {
      display: flex;
      flex-direction: column;
      padding: 20px;
      background: var(--white);
      border-radius: 12px;
      background-color: #292828;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 15%);
      scroll-snap-align: start;
      transition: all 0.2s;
      
    }
    .card:hover {
      color: var(--white);
      background: var(--orange);
    }
    .card > a{
      text-decoration: none;
    }
    .card .card-content {
      margin: 20px 0;
      max-width: 85%;
      text-align: center;
      text-decoration: none;
    }
    
    .cards::-webkit-scrollbar {
      height: 12px;
    }
    .nr_cards{
      width:100%;
      height:auto;
    }
    
    .cards::-webkit-scrollbar-thumb,
    .cards::-webkit-scrollbar-track {
      border-radius: 92px;
    }
    
    .cards::-webkit-scrollbar-thumb {
      background: var(--darkorange);
    }
    
    .cards::-webkit-scrollbar-track {
      background: var(--thumb);
    }
    
    @media (min-width: 500px) {
      .cards {
        grid-auto-columns: calc(50% - 10px);
        grid-column-gap: 20px;
      }
    }
    
    @media (min-width: 700px) {
      .cards {
        grid-auto-columns: calc(calc(100% / 3) - 20px);
        grid-column-gap: 30px;
      }
    }
    
    @media (min-width: 1100px) {
      .cards {
        grid-auto-columns: calc(25% - 30px);
        grid-column-gap: 40px;
      }
    }
    
    .carde {
      margin: 30px auto;
      width: 30%;
      height: 170px;
      border-radius: 10px;
      cursor: pointer;
      transition: 0.4s;
      
    }
    
    .carde_image {
      width: 100%;
      height: 100%;
    }
    
    .carde .carde_image img {
      width: 100%;
      height: 80%;
      border-radius: 40px;
      object-fit: cover;
    }

    .carde > a{
      text-decoration:none;
    }
    
    .carde_title {
      text-align: center;
      font-weight: bold;
      font-size: 15px;
      margin-top:-15px;
      color:white;

    }
    
    .carde:hover {
      transform: scale(0.9, 0.9);
      box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
        -5px -5px 30px 15px rgba(0,0,0,0.22);
    }
    
    .sticky{
      position: sticky;
      bottom: 0px;
      background-color:#000000;
      border-radius:10px;
      padding-left: 10px;
      padding-right: 10px;
    }
    /* navigation */
    .navbar {
      overflow: hidden;
      background-color: #292828;
      position: fixed;
      bottom: 0;
      width: 100%;
      text-transform: uppercase;
    }
    
    .navbar a {
      float: left;
      display: block;
      color: #f2f2f2;
      text-align: center;
      padding: 15px 13px;
      text-decoration: none;
      font-size: 15px;
    }
    
    .navbar a:hover {
      background: #f1f1f1;
      color: black;
    }
    
    .navbar a.active {
      background-color: rgb(255, 255, 255);
      color:black;
    }
    
    .main {
      padding: 16px;
      margin-bottom: 30px;
    }
   /* Style the search box */
   .search_box {
    width: 100%;
    font-size: 18px;
    padding: 11px;
    border: 1px solid #ddd;
  }
  
  #qResults {
  list-style-type: none;
  padding: 0;
  margin: 0;
  }
  #qResults > a {
    padding: 12px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: block;
    
    
  }
  #qResults > a:hover {
    background-color: rgb(124, 114, 114);
  }

/* Slideshow */
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  font-size: 13px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  color:red;
  font-weight: bolder;

}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 3.0s;
}

@keyframes fade {
  from {opacity: .0} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

    