/*
	Plugin: MP Post Navigation - Stylesheet
	Version: 2.0
	Author: Benjamin Oliveira
	Author URI: https://manipovore.com
*/

/* Container
------------------------------------------------------------ */
.mpn-container {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-flex-direction: row;
	flex-direction: row;

}

/* Prev & Next Links Style
------------------------------------------------------------ */
#mpn-nextpost,
#mpn-prevpost {
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	width: 100%;
	margin: 0px;
}
#mpn-nextpost {
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}
#mpn-prevpost {
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}
#mpn-nextpost a{
	font-size: 0.95em;
	width: 240px;
	height: auto;
	text-align: right;
}

#mpn-prevpost a {
	font-size: 0.95em;
	width: 240px;
	height: auto;
	text-align: left;
}

#mpn-nextpost span {
	display: inline-block;
	font-size: 2em;
	line-height:24px;
	background-color:#000;
	width:30px;
	height:30px;
	text-align:center

	}

#mpn-prevpost span {
	display: inline-block;
	font-size: 2em;
	line-height:24px;
	background-color:#000;
	width:30px;
	height:30px;
	text-align:center
	}


#mpn-nextpost a:hover,
#mpn-prevpost a:hover {
	color: rgba(0, 0, 0, 0.38);
	text-decoration: none;
	transition: 1s;
}