/*.user-profile {
    display: grid;
    grid-template-columns: 200px;
    grid-template-areas: "picture name"
    "picture info";
    border: 2px solid black;
    margin: 4px 0px;
    border-radius: 8px;
}
.item-a {
    grid-area: picture;
}
.item-b {
    grid-area: name;
}
.item-c {
    grid-area: info;
}

*/

/*profilo*/
.headProfile{
    width:100%;
}
.name{
    font-weight: bold;
    font-size: larger;
}
.userPhoto{
    border-radius:100%;
}
@media(max-width:768px){
    .userPhoto{
        width:100px;
        height:100px;
    }
}

.userContainer{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    gap:25px;
    margin-bottom:2%;
}
.user{
    border-radius:25px;
    background:var(--bs-secondary-bg);
    padding:2%;
}
.user .head{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content: space-between;
    gap:10px;
    margin-bottom:2%;
}
.user img{
    border-radius:100%;
    width:64px;
    height:auto;
}

.post{
    border-radius:25px;
    background:var(--bs-secondary-bg);
    padding:2%;
}
.post .header{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:2%;
}
.postContainer{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content: flex-start;
    align-items:center;
    gap:25px;
    margin-bottom:2%;
}
@media(max-width:1000px){
    .post{
        width:100%;
    }
}
.testUser {
    background-color: #FFFFCC;
}
p {
    margin-bottom: 0;
}
.exp_container {
    background: #cccccc;
    border-radius: 8px;
    padding: 8px;
    margin: 8px 0px;
}
body{
    display:flex;
}
#add_pos_btn{
    position:fixed;
    bottom:2%;
    right:2%;
}

#filterContainer{
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    height:100dvh;
    width:100dvw;
    display:none;
    background:var(--bs-body-bg);
}
#filterButton{
    position:fixed;
    bottom:2%;
    right:2%;
    background:var(--third-color);
    color:white;
    transition:all 500ms ease-in-out;
    width:60px;
    height:60px;
}
#filterButton:hover{
    background:var(--secondary-color);
}
@media only screen and (hover: none) and (pointer: coarse){
    .mainContainer{
        margin-top:80px;
    }
    #filterButton{
        bottom:70px;
    }
}
#closeFilter{
    position:fixed;
    top:2%;
    right:2%;
    background:none;
    color:var(--bs-secondary-color);
    font-size:24pt;
}
#filterContainer .container{
    margin-top:3%;
    height:calc(100dvh - 3%);
    overflow:auto;
}
.propic {
    width: 80px;
    height: 80px;
    border-radius: 100%;
}
.profileContainer {
    border: 2px solid black;
    border-radius: 8px;
}

.person{
    display:flex;
    flex-direction: column;
    gap:10px;
    padding:2%;
}
#peopleContainer{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.nPers{
    display:flex;
    flex-direction: column;
    gap:5px;
    cursor:pointer;
}
.person img{
    border-radius:100%;
    cursor:pointer;
}
.infoPerson{
    display:flex;
    flex-direction: row;
    gap:10px;
}
.bio{
    font-style: italic;
}
.nomePers{
    font-weight: bold;
}
.follow{
    background:var(--secondary-color);
    color:#171717;
}