/* Stylesheet for pretty callouts plugin */

.pretty-callout {
	width: 70%;
	font-size: 0.9em;
	font-style: italic;
	margin: 2em 15% 1.5em 15%;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: inherit;
}
.pretty-callout.left {
	float: left;
	width: 40%;
	margin-left: 1em;
	margin-right: 2em;
	text-align: left;
	border-right: 5px dotted #a5a5a5;
	padding-right: 15px;
}
.pretty-callout.right {
	float: right;
	width: 40%;
	margin-right: 1.25em;
	margin-left: 1.25em;
	text-align: left;
	border-left: 5px dotted #a5a5a5;
	padding-left: 15px;
}
.pretty-callout.center {
	width: 75%;
	margin: 1.5em auto;
}
.pretty-callout.center-widget {
	width: 75%;
	margin: 0em auto 1em auto;
}


.pretty-callout::before {
	position: relative;
	bottom: 0.25em;
	right: 0.25em;
	font-size: 0.9em;
	font-family: "FontAwesome";
	color: #a5a5a5;
	content: "\f10d";
}
.pretty-callout::after {
	position: relative;
	top: 0.25em;
	left: 0.2em;
	font-size: 0.9em;
	font-family: "FontAwesome";
	color: #a5a5a5;
	content: "\f10e";
}


/* Breakpoint for center callout */
@media (max-width: 768px) {

	.pretty-callout.right, .pretty-callout.left {
		width: 75%;
		margin: 1.5em auto;
		float: none;
	}
}



/* Background color */
.pretty-callout.dark {
	background-color: #e5e5e5;
	padding: 0 10px;
}
.pretty-callout.light {
	background-color: #ffffff;
	padding: 0 10px;
}
.pretty-callout.bgcinherit {
	background-color: inherit;
}
