/* ---------- GENERAL -------- */
:root {
    --Noir: #343434;
}

#all6 p, #all6 h1, #all6 h2 {
    padding: 0;
    margin: 0;
    color: var(--Noir);
}

#all6 {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background: radial-gradient(circle, rgba(246,246,246,1) 70%, rgba(217,217,217,1) 100%);
    padding: 30px 0;
}

#all6 .mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    border-radius: 20px;
    background-color: white;
    padding: 5px 15px 15px 15px;
}

/* ---------- TOP ---------- */
#all6 .header {
    background-image: url(../../img/dailyUi/6/paysageBanniere.jpg), linear-gradient(180deg, rgba(0,0,0,1) 10%, rgba(23,29,143,0) 100%);
    background-size: cover;
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 5px 15px 15px 15px;
    height: 110px;
}

#all6 .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: white;
}

#all6 .top p {
    font-size: 20px;
    font-family: 'Overpass' !important;
    color: white;
}

#all6 .top .icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

/* ---------- BTN BACK ---------- */
#all6 .backMenu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0;
    width: 100%;
    color: white;
}

#all6 .back {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#all6 .back p {
    font-family: 'Overpass' !important;
    color: white;
}

#all6 .back svg {
    width: 18px;
    height: 18px;
}

#all6 .back  {
    font-size: 20px;
    font-weight: 200;
}

/* ---------- PHOTO DE PROFILE --------- */
#all6 .photoProfile {
    position: absolute;
    top: 85px;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 100%;
    border: 6px solid white;
}

/* --------- INFO UTILISATEUR --------- */
#all6 .infoUtilisateur {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 55px;
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 10px;
}

#all6 .infoUtilisateur h1 {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 700;
}

#all6 .infoUtilisateur p {
    font-family: 'Radio Canada';
    text-align: center;
    font-size: 14px;
    font-weight: 200;
}

/* ---------- CONTENT ---------- */
#all6 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#all6 .content .nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

#all6 .content .nav h2 {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Poppins';
}

#all6 .content .nav .active {
    text-decoration: underline;
}

#all6 .content .publications {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

#all6 .content .publications .publication {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 0px 6px 0px #CCCCCC;
    border-radius: 10px;
    padding: 10px;
}


#all6 .content .publications .info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#all6 .content .publications .info .imgInfoUti img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    object-fit: cover;
}

#all6 .content .publications .info .imgInfoUti {
    display: flex;
    flex-direction: row;
    font-family: 'Poppins';
    font-size: 10px;
    font-weight: 200;
    color: var(--Noir);
}

#all6 .content .publications .info .imgInfoUti .pseudo {
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 600;
    color: var(--Noir);
}

#all6 .content .publications .info .infoPublication {
    display: flex;
    flex-direction: column;
    align-items: end;
    font-family: 'Radio Canada';
    font-size: 10px;
    font-weight: 200;
    color: var(--Noir);
}

#all6 .content .publications .content {
    font-family: 'Radio Canada';
    font-size: 14px;
    font-weight: 400;
    color: var(--Noir);
    margin-top: 10px;
}

#all6 .content .publications .images {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

#all6 .content .publications .images img {
    width: 50%;
    object-fit: cover;
}

#all6 .content .publications .images .duo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

#all6 .content .publications .images .duo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}