
body.page-template-tpl-plain {
	overflow-x: hidden;
}

/*
Setting 'overflow-x: hidden' on the body hides the editor!
But we can target the admin side with .edit-post-visual-editor
and unset our hidden.
 */
body.page-template-tpl-plain.edit-post-visual-editor {
	overflow-x: unset;
}


body.page-template-tpl-plain * {
	box-sizing: border-box;
}

body.page-template-tpl-plain .maxwidth-container
{
	box-sizing: border-box;
	max-width: 1250px;
	padding: 25px;
	margin: 0 auto;
	position: relative;
}

body.page-template-tpl-plain .maxwidth-container.no-side-padding {
	padding-left: 0;
	padding-right: 0;
}

body.page-template-tpl-plain .nopadding {
	padding: 0;
}

.has-text-align-center {
	text-align: center;
}
