/* -------------------------------------------------------------------------- *
 * ========================================================================== *
 * Mohunky Cornerstone v7.0.6
 * Typography Styles
 * ========================================================================== *
 * -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- *
 * Font Weights Cheat Sheet

	Used
	----
	300 - Semi-light
	500 - Medium
	600 - Semi-bold

	Unused
	------
	100 - Thin
	200 - Light
	400 - Normal
	700 - Bold
	800 - Extra-bold
	900 - Heavy

 * -------------------------------------------------------------------------- */

html {
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	color: var(--colorText);
	background: var(--colorViewBg);
}


/* ----- Ensure all fonts are set correctly ----- */
body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote, button, a, span {
	font-family: 'Branding', Helvetica, Arial, sans-serif;
}


/* -------------------------------------------------------------------------- *
 * Headings
 * -------------------------------------------------------------------------- */
h1, .-fauxH1 {
	font-size: 2.9rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
	line-height: 1.125em;
}

/**umb_name:Heading 2*/
h2 {
	font-size: 2.500rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
	line-height: 1.125em;
}
.-fauxH2 {
	font-size: 2.500rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
	line-height: 1.125em;
}

h3, .-fauxH3 {
	font-size: 1.375rem;
	font-weight: 700;
	margin: 0 0 1rem 0;
	line-height: 1.250em;
}

h4, .-fauxH4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
}

h5 {
	font-size: 1.250rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
}

h6 {
	font-size: 1.000rem;
	font-weight: 600;
	margin: 0 0 1rem 0;
}

/* -------------------------------------------------------------------------- *
 * Standard styles
 * -------------------------------------------------------------------------- */
p {
	font-size: 1.250rem;
	font-weight: 300;
	line-height: 1.5em;
	margin: 0 0 1em 0;
}

ol {
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.5em;
}

ul {
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.5em;
}

/**umb_name:Checkmarks List*/
ul.-checkmarks {
	list-style:none;
	padding:0;
}

	ul.-checkmarks li {
		background: url('/_content/MohCornerstone.Web.Ui/images/check_circle-primary.svg') no-repeat left center;
		padding: 0.375rem 0 0.375rem 2rem;
		list-style: none;
		margin: 0;
		background-position: 0px 6px;
	}

strong {
	 font-weight: 600;
}

/* ----- Default links ----- */
a._anchorfix {
	position: relative;
	top: -200px;
}

a, a:visited {
	color: var(--colorText);
	border-bottom: 0.0625em dotted var(--colorText);
	text-decoration: none;
}

	a:hover {
		border-bottom-style: solid;
		cursor: pointer;
	}

	a:active, a:focus {
		outline: none;
	}

	a.-active {
		color: var(--colorText);
		border-bottom-style: solid;
	}

		a.-active:hover {
			cursor: default;
		}

	a.-noBorder, a.-noBorder:visited, a.-noBorder:hover {
		border-bottom: none;
	}

/* ----- Badges ----- */
._txtBadge {
	display: inline-block;
	padding: 0.125rem 0.500rem;
	border-radius: 0.250rem;
	font-size: 0.875rem;
	line-height: 1.250rem;
	font-weight: 500;
	text-transform: uppercase;
}

	._txtBadge.-bgPrimary {
		color: var(--colorWhite-perpetual);
	}

	._txtBadge.-bgGrey {
		color: var(--colorOffBlack-perpetual);
	}

	._txtBadge.-bgSuccess {
		color: var(--colorWhite-perpetual);
	}

	._txtBadge.-bgWarning {
		color: var(--colorBlack-perpetual);
	}

	._txtBadge.-bgDanger {
		color: var(--colorWhite-perpetual);
	}


/* ----- Pull/Blockquote ----- */
blockquote {
	margin: 1em 0;
	padding: 1em;
	border: none;
	border-left: 0.125rem solid var(--colorText);
	font-size: 1.250em;
	line-height: 1.3125em;
	font-style: italic;
}

	blockquote span.author {
		display: block;
		padding-top: 0.500em;
		font-size: 1rem;
		font-style: normal;
	}

/* ----- Horizontal Rules ----- */
hr {
	display: inline-block;
	width: 100%;
	height: 0.0625rem;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background-color: var(--colorTileBdr);
}

/* -------------------------------------------------------------------------- *
 * Code styles
 * -------------------------------------------------------------------------- */
pre {
	display: block;
	margin: 0 0 1rem 0;
	padding: 1em;
	border-radius: 0.25em;
	font-size: 1em;
	text-align: left;
	tab-size: 3;
	color: var(--colorOffWhite);
	background: var(--colorOffBlack);
	overflow: hidden;
	overflow-y: hidden;
	overflow-x: auto;
}

code {
	display: inline-block;
	padding: 0 0.5em;
	border-radius: 0.25em;
	background-color: var(--colorOffBlack);
	color: var(--colorOffWhite);
	font-size: 0.875em;
	line-height: 1.5em;
}

span._inlineCode {
	display: inline-block;
	padding: 0 0.500em;
	border-radius: 0.25em;
	font-size: 0.750em;
	font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace;
	color: var(--colorOffWhite);
	background: var(--colorOffBlack);
}


/* -------------------------------------------------------------------------- *
 * Text Utilities
 * -------------------------------------------------------------------------- */

/* --- Alignment --- */
.-txtCenter
{
	text-align: center;
}

.-txtRight
{
	text-align: right;
}

.-txtLeft
{
	text-align: left;
}

.-txtJustify
{
	text-align: justify;
}

.-txtVertical {
	writing-mode: sideways-lr;
	text-align: center;
}

.-txtPullout
{
	margin-bottom: 1em;
	padding: 0.5em 0.5em 0.5em 1em;
	border-left: 2px solid var(--colorPrimary);
	background-color: var(--colorOffWhite);
}

.-txtHighlight
{
	color: var(--colorPrimary);
}

/* ----- Drop Shadows ----- */
.-txtDropShadow {
	text-shadow: 0rem 0.25rem var(--colorTileShdw);
}
.-txtDropShadow.-shadowOveColour {
	text-shadow: 0rem 0.25rem var(--colorOffBlack20pc);
}

/* --- Sizes --- */
.-txtSmall, small {
	font-size: 0.875em;
	font-weight: 300;
}

.-txtSmaller {
	font-size: 0.750em;
}

/**umb_name:Text Large*/
.-txtLarge {
	font-size: 1.250em;
}

.-txtLarger {
	font-size: 1.2500em;
}

.-txtUpper {
	text-transform: uppercase;
}

/* ----- Font weights ----- */
/*.-txt100 {
	font-weight: 100;
}*/

/*.-txt200 {
	font-weight: 200;
}*/

.-txt300 {
	font-weight: 300;
}

/*.-txt400 {
	font-weight: 400;
}*/

.-txt500 {
	font-weight: 500;
}

.-txt600 {
	font-weight: 600;
}

/*.-txt700 {
	font-weight: 700;
}*/

/*.-txt800 {
	font-weight: 800;
}*/

/*.-txt900 {
	font-weight: 900;
}*/


@media only screen and (max-width: 1400px) {
	/* ---------------------------------------- *
	 * Laptop Large / .-ll- / 12 columns
	 * ---------------------------------------- */
	.-ll-txtLeft	{   text-align:left;   }
	.-ll-txtCenter	{   text-align:center;   }
	.-ll-txtRight	{   text-align:right;   }

}
@media only screen and (max-width: 1200px) {
	/* ---------------------------------------- *
	 * Laptop Small / .-ls- / 12 columns
	 * ---------------------------------------- */
	.-ls-txtLeft	{   text-align:left;   }
	.-ls-txtCenter	{   text-align:center;   }
	.-ls-txtRight	{   text-align:right;   }
	
}
@media only screen and (max-width: 1000px) {
	/* ---------------------------------------- *
	 * Tablet Large / .-tl- / 8 columns
	 * ---------------------------------------- */
	.-tl-txtLeft	{   text-align:left;   }
	.-tl-txtCenter	{   text-align:center;   }
	.-tl-txtRight	{   text-align:right;   }
	
}
@media only screen and (max-width: 800px) {
	/* ---------------------------------------- *
	 * Tablet Small / .-ts- / 6 columns
	 * ---------------------------------------- */
	.-ts-txtLeft	{   text-align:left;   }
	.-ts-txtCenter	{   text-align:center;   }
	.-ts-txtRight	{   text-align:right;   }

}
@media only screen and (max-width: 600px) {
	/* ---------------------------------------- *
	 * Mobile Large / .-ml- / 4 columns
	 * ---------------------------------------- */
	.-ml-txtLeft	{   text-align:left;   }
	.-ml-txtCenter	{   text-align:center;   }
	.-ml-txtRight	{   text-align:right;   }

}
@media only screen and (max-width: 400px) {
	/* ---------------------------------------- *
	 * Mobile Small / .-ms- / 2 columns
	 * ---------------------------------------- */
	.-ms-txtLeft	{   text-align:left;   }
	.-ms-txtCenter	{   text-align:center;   }
	.-ms-txtRight	{   text-align:right;   }
	/**umb_name:Text Large*/
	.-txtLarge {
		font-size: 1em;
	}

	.-txtLarger {
		font-size: 1em;
	}

}


/* ------------------------------------------- */
/* ============= Font-face calls ============= */
/* ------------------------------------------- */

/* -------- 300 / Semilight -------- */
@font-face {
  font-display: swap;
  font-family: 'Branding';
  font-style: normal;
  font-weight: 300;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/branding_semilight.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Branding';
  font-style: italic;
  font-weight: 300;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/branding_semilight_italic.woff2') format('woff2');
}

/* -------- 500 / Medium -------- */
@font-face {
  font-display: swap;
  font-family: 'Branding';
  font-style: normal;
  font-weight: 500;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/branding_medium.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Branding';
  font-style: italic;
  font-weight: 500;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/branding_medium_italic.woff2') format('woff2');
}

/* -------- 600 / Semibold -------- */
@font-face {
  font-display: swap;
  font-family: 'Branding';
  font-style: normal;
  font-weight: 600;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/branding_semibold.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Branding';
  font-style: italic;
  font-weight: 600;
  src: url('/_content/MohCornerstone.Web.Ui/fonts/branding_semibold_italic.woff2') format('woff2');
}