/* COULEURS */

/* couleur orange primary : #D4A843 */
/* couleur background primary : #0A0A0A */

body{
    margin: 0;
    padding: 0;
    background-color: #0A0A0A;
    color: rgb(228, 228, 228);
    font-family: "Montserrat", sans-serif;
}

.lecteur_bas{
    position:fixed;
    display:flex;
    bottom: 80px;
    background-color: #D4A843;
    border-radius: 10px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.gauche_lecteur_bas{
    display:flex;
    align-items: center;
}

.gauche_lecteur_bas img{
    width: 50px;
    padding: 5px;
    border-radius: 10px;
}

.lecteur_bas .bouttons_actions img{
    width: 30px;
    margin: 0 10px;
}

.infos_texte_musique_en_cours{
    display:flex;
    flex-direction: column;
    margin-left: 5px;
}

.infos_texte_musique_en_cours p{
    margin:0;
    color: black;
}

.infos_texte_musique_en_cours .titre{
    font-weight: bold;
}

.infos_texte_musique_en_cours .artiste{
    color: rgb(36, 36, 36);
}

.bas{
    position:fixed;
    bottom:0;
    display:flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 30px;
    background-color: #0A0A0A;
}

.bas img{
    width: 30px;
    padding: 10px 0;
}

#lecteur_global {
    display: none;
}

#lecteur_global.active {
    display: block;
}

.header{
    display:flex;
    justify-content: center;
}

.header img{
    width: 100px;
}

.sect{
    padding: 15px;
}

.sect p{
    margin:0 0 10px 0;
}

.playlists{
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    display: grid;
}


.playlists .carre img{
    width: 100%;
    border-radius: 5px;
}

.playlists .carre p{
    font-size: 1em;
    margin:0;
}

/*****************************************************/
/* PAGE MUSIC */

.haut{
    margin: 10px;
}

.haut img{
    width: 25px;
}

.image_music{
    display:flex;
    padding: 15px;
    justify-content: center;
}

.image_music img{
    width: 100%;
    border-radius: 7px;
}

.infos_music{
    padding: 15px;
}

.infos_music p{
    margin:0;
    font-size: 1.2em;
}

.infos_music .titre{
    font-weight: bold;
    color: black;
    margin-bottom: 5px;
}

.infos_music .artiste{
    color: rgb(36, 36, 36);
}

.barre_music{
    display:flex;
    justify-content: center;
}


#progress {

  -webkit-appearance: none;

  width: 95%;
  height: 4px;

  background: #444;

  border-radius: 10px;

  outline: none;
}


/* Barre remplie */
#progress::-webkit-slider-runnable-track {

  height: 4px;

  background: white;

  border-radius: 10px;
}


/* Le bouton */
#progress::-webkit-slider-thumb {

  -webkit-appearance: none;

  width: 14px;
  height: 14px;

  background: white;

  border-radius: 50%;

  margin-top: -5px;

  cursor: pointer;
}

.barre_temps{
    display:flex;
    justify-content: space-between;
    padding: 5px;
}

.bouttons{
    display:flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
}

.bouttons img{
    width: 40px;
}



/*****************************************************************************
/* PAGE SEARCH *********/

.search_div{
    display:flex;
    justify-content: center;
    padding: 0 20px;
}

.search_div input{
    background-color: #181818;
    border: 1px solid #242424;
    font-size: 1em;
    font-family: "Montserrat", sans-serif;
    color: white;
    padding: 8px 12px;
    width: 100%;
    border-radius: 20px;
}

.search_div input:focus{
    outline: none;
    border: 1px solid #39311F;
}

#resultats .resultat, #filedattente .resultat, .liste_sons .resultat{
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

#resultats .resultat img, #filedattente .resultat img, .liste_sons .resultat img{
    width: 45px;
    border-radius:5px;
}

#resultats .resultat p, #filedattente .resultat p, .liste_sons .resultat p{
    margin:0;
}

.playing_song{
    background: linear-gradient(146deg,rgba(10, 10, 10, 1) 0%, rgba(69, 55, 21, 1) 100%) !important;
    border-radius: 7px;
}

#filedattente{
    background-color: #0A0A0A;
    margin-top: 30px;
    border-radius: 7px;
}

.cover{
    padding: 5px 15px;
}

.cover img{
    width: 100%;
    border-radius: 7px;
}

.bouttons_albums{
    display:flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.sous_bouton_lecture{
    display:flex;
    align-items: center;
    padding: 10px 30px;
    background-color: #D4A843;
    border-radius: 20px;
}

.sous_bouton_lecture img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.sous_bouton_lecture p{
    margin:0;
    color: black;
}

#contenu_index{
    padding-bottom: 150px;
}