/***
Built-in custom styles.
Version: 05.21.22
Author: Tim Taricco
Author URL: http://www.timtaricco.com
***/

/*** Position Properties ***/
.relative {
	position: relative;
}
.absolute {
	position: absolute;
	top: 0px;
	left: 0px;
}

/*** Margin Auto ***/
.margin-auto{
	margin-left: auto;
	margin-right: auto;
}

/*** Max Widths ***/
.max-width-1024 {
	max-width: 1024px;
}
.max-width-767 {
	max-width: 767px;
}
.max-width-640 {
	max-width: 640px;
}
.max-width-480 {
	max-width: 480px;
}

/*** FPO class ***/
.fpo {
	border: 1px dotted red;
} /* Class for showing unfinished blocks */
.fpo:before {
	content: "Placeholder Only";
	color: #ffffff;
	text-align: center;
	background-color: red;
	border: 1px dotted red;
	padding: 2px 5px;
	font-size: 10px;
	font-weight: 600;
	white-space: nowrap;
} /* Class for showing unfinished blocks */
