.instagram{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	padding: 0 5px;
}
.instagram .post{
    width: 25%;
    padding: 5px;
    box-sizing: border-box;
}
.instagram .post a{
	text-decoration: none;
}
.instagram .post .head{
	background: #fff;
	display: flex;
	display: -webkit-flex;
	border: 1px solid #999999;
    border-radius: 3px;
    border-bottom: 0;
    position: relative;
}
.instagram .post .head .insta{
	position: absolute;
    top: 15px;
    right: 10px;
}
.instagram .post .head .owner_image{
	width: 40px;
    height: 40px;
    padding: 10px;
}
.instagram .post .head .owner_image img{
	border-radius: 50%;
}
.instagram .post .username{
	color: #262626;
    font-weight: 600;
    margin-top: 20px;
    margin-left: 10px;
}
.instagram .post .image img{
	display: block;
}
.instagram .post .foot{
	background: #fff;
	padding: 10px;
	border: 1px solid #999999;
    border-radius: 3px;
    border-top: 0;
}
.instagram .post .feed{
	color: #262626;
    font-weight: 600;
}
.instagram .post .feed .like{
	margin-bottom: 5px;
}
.instagram .post .feed img{
	margin-right: 5px;
}
.instagram .post .text{
	color: #262626;
	margin-top: 10px;
	overflow: hidden;
}
.pagination{
    color: #262626;
    font-weight: 600;
    margin-top: 20px;
}
.pagination a{
	color: #262626;
	text-decoration: none;
}
.pagination a:hover{
	color: #308cc7;
}
.pagination .next{
	float: right;
}

@media screen and (max-width: 767px) {
	.instagram .post{
		width: 100%;
	}
}