/*	ITEM 	*/
.pics-wrapper {
	width: 100%;
	display: flex; display: -webkit-flex; 
	flex-flow: row wrap; -webkit-flex-flow: row wrap;
	justify-content: space-around; -webkit-justify-content: space-around;
}
	.pics-wrapper.from-home {
		margin: 0 auto;
		width: 720px;
	}
	.pics-wrapper.from-home .pics-item {
		width: 220px;
		height: 220px;
		border-radius: 7px;
		overflow: hidden;
		margin: 10px auto;
	}


/* ALBUMS PICS */
.pictures-inside {
   width: 100%;
   display: flex; display: -webkit-flex; 
   flex-flow: row wrap; -webkit-flex-flow: row wrap;
   justify-content: space-around; -webkit-justify-content: space-around;
   margin-top:3rem;
}
   .pictures-item {
      display: block;
      width: 225px;
      height: 160px;
      overflow: hidden;
      margin-bottom:1.5rem;
   }
      .pictures-item .picture-wrapper {
         width: 100%;
         height: 160px;
      }
         .pictures-item .picture-wrapper .picture {
            width: 100%;
            height: 160px;
         }