.divPrincipaleCarteEchange {
    padding-top: 90px;
    padding-bottom: 50px;
    margin: auto;
    max-width: 60%;
    background-color: #ffffff;
    padding-left: 10px;
    padding-right: 10px;
}

.listCarteEchange {
    margin-top: 20px;
    list-style-type: none;
    display: flex;
    row-gap: 25px;
    column-gap: 30px;
    flex-wrap: wrap;
    padding: 0;
}

.listCarteEchange > li {
    flex-basis: 48.5%; /* Pour gérer les grands écrans*/
    background: linear-gradient(rgba(0, 0, 255, 0.003) 88%,  rgb(204, 200, 200));
}

@media (max-width: 1700px) { /* Pour gérer les pétits écrans*/
    .listCarteEchange {
        justify-content: center;
    }
    .listCarteEchange > li {
        flex-basis: 600px;
    }
}

.divHeadCarteEchange {
    display: flex;
    align-items: center;
    margin: auto;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
    box-shadow: 2px -3px 13px #00000033;
    width: 96%;
}

.divDetailsCarteEchange {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    border-radius: 10px;
    width: 500px;
    height: max-content;
    max-height: 90vh;
}

.profil-imageImgCarteEchange {
    width: 75px;
    height: 75px;
    border-radius: 1000px;
    object-fit: cover;
    margin: 10px 15px;
}

.profil-imageLogoImgCarteEchange{
    width: 120px;
    max-height: 70px;
    margin-right: 15px;
}

.detailsCarteEchange-infos {
    display: flex;
    margin: 15px;
}

.stand-bandeauNetworkCarteEchange {
    display: flex;
    margin-left: auto;
    margin-right: -7px;
    margin-top: 5px;
}

.logo-qrcode-fav {
    margin-right: 5px;
    margin-left: auto;
    display: flex;
    width: 192px;
    padding-right: 15px;
}

.qrcode_fav {
    display: flex;
    column-gap: 7px;
    padding: 5px;
    margin-right: 5px;
    width: 57px;
}

.qrcode_fav > div {
    width: 20px;
    height: 19px;
    background-size: 100% 19px;
    margin-left: auto;
}

@media (max-width: 650px) {

    .divPrincipaleCarteEchange {
        max-width: 100%;
    }

    .detailsCarteEchange-infos {
        display: block;
    }
}

@media (max-width: 600px) {
    .divDetailsCarteEchange {
        width: 350px;
    }
}

@media (max-width: 400px) {
    .profil-imageLogoImgCarteEchange {
        display: none;
    }

    .divDetailsCarteEchange {
        width: 250px;
    }

    .logo-qrcode-fav {
        width: auto;
    }
}




