@font-face {
    /*police spotify*/
    font-family: "Circular";
    src: url(./Circular/CircularStd-Medium.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Circular", sans-serif;
    cursor: default;

    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Chrome, Safari, Opéra depuis la version 15 */
    -ms-user-select: none; /* Internet explorer depuis la version 10 et Edge */
    user-select: none; /* Propriété standard */
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #010101;
    overflow: hidden;
}

.flouPourMdp {
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0.659);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

#form_loginEtMdp {
    height: 375px;
    width: 270px;

    background-color: #1a1a1a;
    border-radius: 12px;
    color: #ffffff;

    display: flex;
    flex-direction: column;
    box-shadow: #0000009a 0 0 16px;
}

#form_loginEtMdp>label {
    margin-top: 35px;
    font-size: 2.2rem;

    margin-left: 12px;
}

#form_loginEtMdp>input {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;
    background-color: #3b3b3b !important;
    border-radius: 12px;
    font-size: 1.5rem;
    padding-left: 4px;

    color: #ffffff !important;

    border: none;
}

#form_loginEtMdp>input:focus {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;
    background-color: #3b3b3b !important;
    border-radius: 12px;
    font-size: 1.5rem;
    padding-left: 4px;

    color: #ffffff !important;

    border: none;
    outline: none;
}

#form_loginEtMdp>.boutonLogin {
    margin-top: 32px;
    height: 50px;
    width: 240px;
    margin-left: 11px;

    background-color: #17d582;
    border-radius: 12px;
    border: none;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 2rem;
    color: #000000;
    cursor: pointer;

    font-weight: 500;
}

.lienVersSignUp {
    width: 100%;
    height: 30px;
    margin-top: 8px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.5rem;

    text-decoration: underline 1px;
}

.lienVersSignUp>span {
    cursor: pointer;
}

#form_signUp {
    height: 375px;
    width: 270px;

    background-color: #1a1a1a;
    border-radius: 12px;

    display: flex;
    flex-direction: column;

    color: #ffffff;
    box-shadow: #0000009a 0 0 16px;
}

#form_signUp>label {
    margin-top: 35px;
    font-size: 2.2rem;

    margin-left: 12px;
}

#form_signUp>input {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;

    border: none;
    background-color: #3b3b3b;
    border-radius: 12px;
    font-size: 1.5rem;
    padding-left: 4px;

    color: #ffffff !important;
}

#form_signUp>input:focus {
    margin-top: 4px;
    margin-left: 12px;

    width: 230px;
    height: 40px;

    border: none;
    background-color: #3b3b3b;
    border-radius: 12px;
    font-size: 1.5rem;
    padding-left: 4px;

    color: #ffffff !important;
    outline: none;
}

#form_signUp>.boutonSignUp {
    margin-top: 30px;
    height: 50px;
    width: 250px;
    margin-left: 10px;

    background-color: #17d582;
    border-radius: 12px;
    border: none;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 2rem;

    cursor: pointer;
    font-weight: 500;

    color: #000000 !important;
}

.lienVersLogIn {
    width: 100%;
    height: 30px;
    margin-top: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.5rem;

    text-decoration: underline 1px;
}

.lienVersLogIn>span {
    cursor: pointer;
}

#messagePourConexion {
    position: absolute;
    width: 100%;
    height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 10000;
    transition: .3s;
    transform: translateY(-150px);
}

#messagePourConexion>div {
    width: 300px;
    height: 80px;

    border-radius: 12px;
    background-color: #1a1a1a;
    border: solid 1px #3b3b3b;
    font-size: 1.3rem;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding-left: 12px;
    padding-right: 12px;

    color: #ffffff;
}








header {
    height: 64px;
    width: 100%;

    display: flex;
    align-items: center;

    border-bottom: 2px solid #616161;

    justify-content: center;
}

header>div {
    width: 50%;
    height: 100%;

    display: flex;
    align-items: center;

    /* overflow: hidden; */
}

header>div>#logoSite {
    height: 80%;
    aspect-ratio: 1 / 1;

    background-image: url(./image/pierrify.png?v=202);
    background-size: cover;

    margin-left: 7px;
}





header>div>#nomSite {
    display: flex;
    align-items: center;
    color: #ffffff;

    font-size: 2.5rem;
    font-weight: 600;

    margin-left: 16px;
}

header>#compte {
    display: flex;
    align-items: center;
    justify-content: end;
}

header>#compte>#logoCompte {
    height: 80%;
    aspect-ratio: 1 / 1;
    background-color: #3b3b3b;
    border-radius: 50%;

    color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 2rem;
    font-weight: 700;

    padding-top: 3px;
    margin-right: 12px;
}

header>#compte>#nomCompte {
    height: 80%;
    color: #ffffff;

    display: flex;
    align-items: center;

    font-size: 2rem;
    font-weight: 700;

    padding-right: 20px;
}

#pagePrincipale {
    height: calc(100% - 32px - 64px);
}

.page {
    height: 100%;
    width: 100%;

    color: #ffffff;
}

#pageBiblio {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#containerDeTitreParent {
    width: 100%;
    height: calc(100% - 90px);

    display: flex;
    justify-content: center;
    align-items: center;
}

#containerDeTitre {
    height: calc(100% - 24px);
    width: calc(100% - 24px);
    background-color: #1a1a1a;

    border-radius: 12px;

    padding-top: 16px;
    padding-bottom: 32px;

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow-x: hidden;
    overflow-y: scroll;
}

#containerDeTitre::-webkit-scrollbar {
    width: 0px;
}

#containerDeTitre::-webkit-scrollbar-thumb {
    background-color: #616161;
    /* Color of the scrollbar handle */
    border-radius: 8px;
    /* Radius of the scrollbar handle */
    transition: .2s;

    border: solid 4px #1a1a1a;
}

/* Handle on hover */
#containerDeTitre::-webkit-scrollbar-thumb:hover {
    background-color: #b6b6b6;
    /* Change color on hover */
}

#musiqueBiblio {
    width: calc(100% - 32px);
    padding: 12px;

    display: flex;
    align-items: center;

    border-radius: 12px;
}

#musiqueBiblio:hover {
    background-color: #3b3b3b;
}

#musiqueBiblio>#numeroMusiqueBiblio {
    font-size: 1.8rem;
    display: flex;
    justify-content: end;
    align-items: center;
    width: 70px;

    padding-right: 12px;

    text-align: end;
}

#musiqueBiblio>.btnPlayMusiqueBiblio {
    width: 40px;
    height: 40px;

    cursor: pointer;

    background-image: url(./image/logoPlayBiblio.png);
    background-size: 60%;
    background-position: 0%;
    background-repeat: no-repeat;
}

#musiqueBiblio>#artisteEtTitreMusiqueBiblio {
    width: 190px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

#musiqueBiblio>#artisteEtTitreMusiqueBiblio>#titreMusiqueBiblio {
    font-size: 1.3rem;
}

#musiqueBiblio>#artisteEtTitreMusiqueBiblio>#artisteMusiqueBiblio {
    font-size: 1rem;
    color: #b6b6b6;
    margin-top: 6px;
}

#musiqueBiblio>.tempMusiqueBiblio {
    width: 60px;
    font-size: 1.4rem;
    color: #b6b6b6;
}

#musiqueBiblio>#ajouteurMusiqueBiblio {
    height: 55px;
    width: calc(100% - 420px);

    margin-left: 16px;

    display: flex;
    justify-content: start;
    align-items: end;

    overflow: hidden;

    font-size: 1.1rem;
    color: #b6b6b6;
}

#musiqueBiblio>#btnMusiqueBiblioContainer {
    width: 30px;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

#musiqueBiblio>#btnMusiqueBiblioContainer>.btnLikeMusiqueBiblio {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;

    /* background-color: rgb(82, 82, 82); */
    background-image: url(./image/logoLike.png);
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;


    /* background-color: green; */
}

#musiqueBiblio>#btnMusiqueBiblioContainer>.btnDislikeMusiqueBiblio {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;

    /* background-color: rgb(82, 82, 82); */
    background-image: url(./image/logoDislike.png);
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;

    /* background-color: red; */
}

#btnLikeMusiqueBiblio:hover {
    background-color: #ffffff26;
}

#btnDislikeMusiqueBiblio:hover {
    background-color: #ffffff26;
}


#lecteurTitreBiblio {
    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#lecteurTitreBiblio>div {
    width: 28%;
    height: 100%;
}

#lecteurTitreBiblio>#titreEtArtiste {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;

    padding-left: 12px;
}

#lecteurTitreBiblio>#titreEtArtiste>#titre {
    font-size: 1.5rem;
}

#lecteurTitreBiblio>#titreEtArtiste>#artiste {
    color: #b6b6b6;
}

#lecteurTitreBiblio>#infoTemporelleSon {
    width: 44%;

    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

#lecteurTitreBiblio>#infoTemporelleSon>#playPause {
    height: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    border-radius: 50%;

    cursor: pointer;


    transition: .1s;

    background-image: url(./image/logoPause.png);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

#lecteurTitreBiblio>#infoTemporelleSon>#barreDeProgressionEtTemp {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 20px;

    width: 100%;
    height: 30%;
}

#tempEcoute,
#tempRestant {
    font-size: 0.9rem;
    width: 35px;
    color: #b6b6b6;
}

#barreDeSon {
    width: calc(100% - 80px);
    height: 10px;

    background-color: #616161;
    border-radius: 5px;

    transform: translateY(-1px);

    text-align: center;

    display: flex;
    align-items: center;
    justify-content: start;
    transition: .2s;

    cursor: pointer;
}

#barreDeSon:hover {
    height: 15px;
    border-radius: 7.5px;
}

#barreDeSonParcourue {
    position: absolute;
    height: 10px;
    background-color: #ffffff;
    border-radius: 7.5px;

    transition-timing-function: linear;
    transition: .4s;

    height: 100%;

    cursor: pointer;
}

#lecteurTitreBiblio>#volume {
    display: flex;
    justify-content: end;
    align-items: center;

    padding-right: 24px;
}

#lecteurTitreBiblio>#volume>#volumeContainer {
    height: 100%;
    width: 120px;
    min-width: 130px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#lecteurTitreBiblio>#volume>#volumeContainer>#logoVolume {
    height: 20%;
    aspect-ratio: 1 / 1;
    background-image: url(./image/differentVolume/volumeHaut.png);
    background-size: 99%;
    background-repeat: no-repeat;
    background-position: center;

    cursor: pointer;
}

#lecteurTitreBiblio>#volume>#volumeContainer>#volumeSliderParent {
    height: 7px;
    width: 100px;
    min-width: 100px;

    background-color: #616161;
    border-radius: 4px;

    display: flex;
    align-items: center;
    justify-content: start;

    cursor: pointer;
}

#lecteurTitreBiblio>#volume>#volumeContainer>#volumeSliderParent>#volumeSlider {
    height: 7px;
    width: 50px;

    background-color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
}

#volumeSlider:hover {
    background-color: #1ed760 !important;
}






#pageTitreLike>iframe,
#pageAjout>iframe {
    height: 100%;
    width: 100%;

    border: none;
}

footer {
    height: 32px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    border-top: 2px solid #616161;

    color: rgb(255, 255, 255)
}

footer>div {
    cursor: pointer;
    width: 33%;
    text-align: center;
    font-size: 1.1rem;
}



#gifPourSonEnLecture {
    height: 40px;
    width: 40px;

    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-around;

    padding-right: 9px;

    animation: changementOfBackground .1s infinite;

    background-color: transparent !important;
    transform: translateZ(0);
}

.barreGif {
    height: 20px;
    width: 3px;

    background-color: #1ed760;
    transition: .3s;
    transform: translateZ(0);

}

#barre1Gif {
    animation: changementOfHeightFor1 3s infinite;
    animation-timing-function: linear;
}

#barre2Gif {
    animation: changementOfHeightFor2 3s infinite;
    animation-timing-function: linear;
}

#barre3Gif {
    animation: changementOfHeightFor3 3s infinite;
    animation-timing-function: linear;
}

#barre4Gif {
    animation: changementOfHeightFor4 3s infinite;
    animation-timing-function: linear;
}

#barre5Gif {
    animation: changementOfHeightFor5 3s infinite;
    animation-timing-function: linear;
}

@keyframes changementOfBackground {
    0% {
        background-color: #1a1a1a;
    }

    20% {
        background-color: #1a1a1a;
    }

    30% {
        background-color: #1a1a1a;
    }

    40% {
        background-color: #1a1a1a;
    }

    50% {
        background-color: #1a1a1a;
    }

    60% {
        background-color: #1a1a1a;
    }

    80% {
        background-color: #1a1a1a;
    }

    80% {
        background-color: #1a1a1a;
    }

    90% {
        background-color: #1a1a1a;
    }

    100% {
        background-color: #1a1a1a;
    }
}

@keyframes changementOfHeightFor1 {
    0% {
        height: 20px;
    }

    20% {
        height: 35px;
    }

    30% {
        height: 30px;
    }

    40% {
        height: 5px;
    }

    50% {
        height: 27px;
    }

    60% {
        height: 12px;
    }

    80% {
        height: 22px;
    }

    80% {
        height: 7px;
    }

    90% {
        height: 19px;
    }

    100% {
        height: 20px;
    }
}

@keyframes changementOfHeightFor2 {
    0% {
        height: 24px;
    }

    20% {
        height: 10px;
    }

    30% {
        height: 24px;
    }

    40% {
        height: 18px;
    }

    50% {
        height: 32px;
    }

    60% {
        height: 12px;
    }

    80% {
        height: 11px;
    }

    80% {
        height: 15px;
    }

    90% {
        height: 8px;
    }

    100% {
        height: 24px;
    }
}

@keyframes changementOfHeightFor3 {
    0% {
        height: 7px;
    }

    20% {
        height: 30px;
    }

    30% {
        height: 8px;
    }

    40% {
        height: 25px;
    }

    50% {
        height: 12px;
    }

    60% {
        height: 31px;
    }

    80% {
        height: 22px;
    }

    80% {
        height: 16px;
    }

    90% {
        height: 29px;
    }

    100% {
        height: 7px;
    }
}

@keyframes changementOfHeightFor4 {
    0% {
        height: 28px;
    }

    20% {
        height: 14px;
    }

    30% {
        height: 33px;
    }

    40% {
        height: 9px;
    }

    50% {
        height: 20px;
    }

    60% {
        height: 31px;
    }

    80% {
        height: 5px;
    }

    80% {
        height: 25px;
    }

    90% {
        height: 18px;
    }

    100% {
        height: 36px;
    }
}

@keyframes changementOfHeightFor5 {
    0% {
        height: 0px;
    }

    20% {
        height: 21px;
    }

    30% {
        height: 31px;
    }

    40% {
        height: 22px;
    }

    50% {
        height: 9px;
    }

    60% {
        height: 26px;
    }

    80% {
        height: 14px;
    }

    80% {
        height: 09px;
    }

    90% {
        height: 32px;
    }

    100% {
        height: 0px;
    }
}







@media screen and (max-width: 650px) {

    #ajouteurMusiqueBiblio,
    #volume {
        visibility: hidden;
    }
}

@media screen and (max-width: 600px) {
    #containerDeTitreParent {
        height: calc(100% - 130px);
    }

    #lecteurTitreBiblio {
        height: 130px;

        flex-direction: column;
        align-items: start;
    }

    #lecteurTitreBiblio>#titreEtArtiste {
        padding-left: 32px;
        width: 100%;
        height: 60px;

    }

    #lecteurTitreBiblio>#infoTemporelleSon {
        width: calc(100% - 64px);

        height: calc(100% - 60px);

        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;

        margin-left: 32px;
    }

    #lecteurTitreBiblio>#volume {
        display: none;
    }

    footer>div {
        font-size: .8rem;
    }
}

@media screen and (max-width: 500px) {
    #musiqueBiblio>#artisteEtTitreMusiqueBiblio {
        width: 250px;
    }

    #musiqueBiblio>.tempMusiqueBiblio {
        display: none;
    }
}

@media screen and (max-width: 400px) {


    header>div>#nomSite {
        font-size: 1.5rem;
    }

    header>#compte>#nomCompte {
        font-size: 1.3rem;
    }

    /*//////////////////////////////////*/


    #containerDeTitreParent {
        height: calc(100% - 120px);
    }

    #lecteurTitreBiblio {
        height: 120px;
    }

    #lecteurTitreBiblio>#titreEtArtiste {
        height: 40px;
    }

    #lecteurTitreBiblio>#infoTemporelleSon {
        height: calc(100% - 40px);
    }
}