.main_content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    background-color: whitesmoke;
}

.main_content div {
    height: 300px;
    width: 300px;
    box-shadow: 17px 20px 1px rgba(128, 128, 128, 0.4);
    border-right: 1px solid rgba(34, 32, 32, 0.322);
    transition: all 0.2s ease;
    background-color: white;
    border-radius: 1%;
}

.main_content div img {
    width: 300px;
    height: auto;
    border-radius: 1%;
}

.main_content div:hover {
    transform: scale(1.03);
    cursor: pointer;
}

/* lecteur */

#divInfos {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.player {
    position: sticky;
    background: linear-gradient(to right, #c3903a, #9e96a5);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    bottom: 0px;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    height: 50px;
    gap: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.player img {
    width: 30px;
    height: auto;
}

.player img:last-child, .player img:first-child {
    width: 20px;
}

.player .slider {
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    text-align: center;
    width: 40%;
}

.buttons {
    position: absolute;
    right: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.slider section {
    width: 30%;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 80%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background-color: black;
    border-radius: 50%;
    cursor: pointer;
}

.button-icon {
    background: none;
    border: none;
    padding: 0px;
    cursor: pointer;
    outline: none;
}

#imgPlay, #imgPause {
    min-width: 40px;
    transition: all 0.1s ease;
}

#imgPlay {
    display: block;
}

#imgPause {
    display: none;
}

#imgPlay:hover, #imgPause:hover {
    transform: scale(1.05);
}

#audioPlayer {
    display: none;
}

#sectionTrackName:hover {
    cursor: pointer;
}