/*-------------------------------------------------
	6. Blog Page styles
-------------------------------------------------*/
.blogTitleWrapper {
	padding-top: 60px;
}

.blogTitleWrapper h1,
.blogTitleWrapper h2, 
.blogTitleWrapper h3,
.blogTitleWrapper h4,
.blogTitleWrapper h5,
.blogTitleWrapper h6 {
	margin: 0;
}

.blogPageWrapper {
	position: relative;
	text-align: left;
}

.blog-post-box {
	position: relative;
	margin-bottom: 60px;
}

.blog-post-box:last-child {
	margin-bottom: 0;
}

.post-date {
	background: rgb(247, 247, 247);
	padding: 20px;
	text-align: center;
}

.post-date h1,
.post-date h2,
.post-date h3,
.post-date h4,
.post-date h5,
.post-date h6 {
	margin: 0;
}

.post-date span {
	display: block;
	font: 300 10px 'Lato', sans-serif;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.blog-image {
	position: relative;
	margin-bottom: 30px;
}

.blog-image a img {
	-webkit-transition: ease-out 0.2s;
	transition: ease-out 0.2s;
}
.blog-image:hover a img {
	-webkit-transform: scale(1.01);
	transform: scale(1.01);
}

.blog-image a {
	display: block;
	overflow: hidden;
}

.blog-image a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background: rgba(255, 255, 255, 0.1);
	width: 100%;
	height: 100%;
	-webkit-transition: ease-out 0.2s;
	transition: ease-out 0.2s;
}
.blog-image:hover a::after {
	opacity: 1;
}

.blog-content ul {
	margin-bottom: 10px;
}

.blog-content ul li {
	display: inline-block;
	font-size: 14px;
}

.blog-content ul li::after {
	content: '-';
	color: rgb(160, 160, 160);
	margin: 0 3px;
}

.blog-content ul li:last-child::after {
	content: '';
}

.blog-content ul li a {
	color: rgb(160, 160, 160);
}

.blog-content ul li a:hover, 
.blog-content ul li a:focus {
	color: rgb(80, 80, 80);
}

/* Blog Post Slider Image */
.blog-image .owl-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	-webkit-transform: translate(-50%,0);
	transform: translate(-50%,0);
}

.blogPostNavigation {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0,-50%);
	transform: translate(0,-50%);
	z-index: 1;
	width: 100%;
	height: 50px;
}

.blogPostNavigation li {
	position: absolute;
	background: #fff;
	width: 50px;
	height: 50px;
	text-align: center;
	color: rgb(20, 20, 20);
	line-height: 50px;
	cursor: pointer;
	-webkit-transition: ease-out 0.2s;
	transition: ease-out 0.2s;
}

.blogPostNavigation li:first-child {
	left: 0;
}
.blogPostNavigation li:last-child {
	right: 0;
}

.blogPostNavigation li:hover, 
.blogPostNavigation li:focus {
	background: rgba(255, 255, 255, 0.8);
}

/*-------------------------------------------------
	7. Blog Single Post Page
-------------------------------------------------*/
/* Blog Single Post Title */
.blogTitleWrapper ul {
	margin-bottom: 10px;
}

.blogTitleWrapper ul li {
	display: inline-block;
	font-size: 14px;
}

.blogTitleWrapper ul li::after {
	content: '-';
	color: rgb(160, 160, 160);
	margin: 0 3px;
}

.blogTitleWrapper ul li:last-child::after {
	content: '';
	margin: 0;
}

.blogTitleWrapper ul li a {
	color: rgb(160, 160, 160);
}

.blogTitleWrapper ul li a:hover, 
.blogTitleWrapper ul li a:focus {
	color: rgb(80, 80, 80);
}

/* Blog Single Post */
.blog-single-post-box {
	position: relative;
}



/* Share buttons */
.share {
	width: 100%;
	margin: 60px 0;
	text-align: right;
}

.share ul li {
	display: inline-block;
}

.share .button {
	margin: 0;
}

/* Comments */
.comments {
	margin-bottom: 60px;
}

.comments-title {
	margin-bottom: 30px;
	border-bottom: 1px solid rgb(235, 235, 235);
}

.comments-box {
	position: relative;
	margin-bottom: 30px;
	padding-left: 80px;
}

.comments-box:last-child {
	margin-bottom: 0;
}

.user-icon {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	background: rgb(247, 247, 247);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	text-align: center;
}

.user-icon i {
	line-height: 50px;
}

.comments-box span {
	position: absolute;
	top: 0;
	right: 0;
	color: rgb(160, 160, 160);
	font-size: 14px;
}

