/* Core styles can be used any where you need a generic HTML block */

body, h1, h2, h3, h4, h5, h6, p, button, input, select {
	font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

button {
	background-color: var(--blue);
	color: var(--white);
}

@media (hover: hover) {
	button:hover {
		background-color: var(--blue);
	}
}

a {
	color: var(--gray-dark);
}

@media (hover: hover) {
	a:hover {
		/* TODO - change to site color */
		color: var(--gray-dark);
		text-decoration: none; /*reboot.css override*/
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1:not(div[class*="contentRender_name_plugins_collections_template_custom"] h1, div[class*="contentRender_name_plugins_common"] h1:not(div[class*="contentRender_name_plugins_core_textbox"] h1)),
.blog-container .post-content h1,
.h1 {
	color:var(--blue);
	font-size:90px;
	font-family: var(--font-heading-railroad);
	font-style: normal;
	font-weight: 400;
	line-height: 85px;
	margin-bottom: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2:not(div[class*="contentRender_name_plugins_collections_template_custom"] h2, 
div[class*="contentRender_name_plugins_common"] h2:not(div[class*="contentRender_name_plugins_core_textbox"] h2)),
div[class*="contentRender_name_plugins_blog"] .post-content h2,
.blog-container .post-content h2,
.h2 {
	color:var(--blue);
	font-size: 46px;
	font-family: var(--font-heading-posterama);
	font-style: normal;
	line-height: 52px;
	margin-bottom: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3:not(div[class*="contentRender_name_plugins_collections_template_custom"] h3, 
div[class*="contentRender_name_plugins_common"] h3:not(div[class*="contentRender_name_plugins_core_textbox"] h3)),
div[class*="contentRender_name_plugins_blog"] .post-content h3,
.blog-container .post-content h3,
.h3 {
	color:var(--blue);
	font-size: 32px;
	font-family: var(--font-heading-posterama);
	font-style: normal;
	line-height: 38px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4:not(div[class*="contentRender_name_plugins_collections_template_custom"] h4, div[class*="contentRender_name_plugins_common"] h4:not(div[class*="contentRender_name_plugins_core_textbox"] h4)),
.h4 {
	color:var(--blue);
	font-size:28px;
	font-family: var(--font-body);
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5:not(div[class*="contentRender_name_plugins_collections_template_custom"] h5, div[class*="contentRender_name_plugins_common"] h5:not(div[class*="contentRender_name_plugins_core_textbox"] h5)),
.h5 {
	color: var(--gray-dark);
	font-size: 20px;
	font-family: var(--font-body);
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: 0.77px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6:not(div[class*="contentRender_name_plugins_collections_template_custom"] h6, div[class*="contentRender_name_plugins_common"] h6:not(div[class*="contentRender_name_plugins_core_textbox"] h6)),
.h6 {
	color:var(--blue);
	font-size: 18px;
	font-family: var(--font-body);
	font-style: normal;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: 0.18px;
	margin-bottom: 10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p:not(div[class*="contentRender_name_plugins_collections_template_custom"] p, div[class*="contentRender_name_plugins_common"] p:not(div[class*="contentRender_name_plugins_core_textbox"] p)) {
    color: var(--gray-dark);
    font-size: 18px;
	font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
	line-height:22px;
	margin-bottom: 30px;
	text-rendering: optimizeLegibility;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a:not(div[class*="contentRender_name_plugins_collections_template_custom"] a, div[class*="contentRender_name_plugins_common"] a:not(div[class*="contentRender_name_plugins_core_textbox"] a), .shared-back-button) {
    color: var(--gray-dark);
	text-decoration: underline;
	font-weight: bold;
	transition: color ease 0.4s;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a:not(div[class*="contentRender_name_plugins_collections_template_custom"] a, div[class*="contentRender_name_plugins_common"] a:not(div[class*="contentRender_name_plugins_core_textbox"] a), .shared-back-button):hover {
	text-decoration: none;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote:not(div[class*="contentRender_name_plugins_collections_template_custom"] blockquote, div[class*="contentRender_name_plugins_common"] blockquote:not(div[class*="contentRender_name_plugins_core_textbox"] blockquote)) {
	margin: var(--space-12) 0;
	padding: var(--space-6) var(--space-8);
	border-left: 4px solid var(--primary-color-500);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) blockquote > p:not(div[class*="contentRender_name_plugins_collections_template_custom"] blockquote > p, div[class*="contentRender_name_plugins_common"] blockquote > p:not(div[class*="contentRender_name_plugins_core_textbox"] blockquote > p)) {
	margin: 0;
	font-size: var(--text-2xl);
	font-style: italic;
	line-height: var(--leading-snug);
	color: var(--gray-600);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(table), div[class*="contentRender_name_plugins_common"] :is(table):not(div[class*="contentRender_name_plugins_core_textbox"] :is(table))) {
	background: #fff;
	margin-bottom: var(--space-5);
	table-layout: auto;
	padding: var(--space-2);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tbody tr td, table tr td):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(table tbody tr td, table tr td), div[class*="contentRender_name_plugins_common"] :is(table tbody tr td, table tr td):not(div[class*="contentRender_name_plugins_core_textbox"] :is(table tbody tr td, table tr td))) {
	display: table-cell;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(td, tr), div[class*="contentRender_name_plugins_common"] :is(td, tr):not(div[class*="contentRender_name_plugins_core_textbox"] :is(td, tr))) {
	color: var(--gray-dark);
	font-size:18px;
	font-family: var(--font-body);
	line-height:26px;
	padding: var(--space-2);
	border: 1px solid #DDDDDD;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(table tr):nth-of-type(even), div[class*="contentRender_name_plugins_common"] :is(table tr):nth-of-type(even):not(div[class*="contentRender_name_plugins_core_textbox"] :is(table tr):nth-of-type(even))){
	background: #F9F9F9;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(ul, ol), div[class*="contentRender_name_plugins_common"] :is(ul, ol):not(div[class*="contentRender_name_plugins_core_textbox"] :is(ul, ol))) {
	margin-bottom: var(--space-4);
	margin-left: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li:not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(ul, ol):not([class*="block-grid-"]) li, div[class*="contentRender_name_plugins_common"] :is(ul, ol):not([class*="block-grid-"]) li:not(div[class*="contentRender_name_plugins_core_textbox"] :is(ul, ol):not([class*="block-grid-"]) li)) {
	color: var(--gray-dark);
	font-size:18px;
	font-family: var(--font-body);
	line-height:26px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(ul), div[class*="contentRender_name_plugins_common"] :is(ul):not(div[class*="contentRender_name_plugins_core_textbox"] :is(ul))) {
	list-style-type: disc;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ol):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(ol), div[class*="contentRender_name_plugins_common"] :is(ol):not(div[class*="contentRender_name_plugins_core_textbox"] :is(ol))) {
	list-style-type: decimal;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul li ul):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(ul li ul), div[class*="contentRender_name_plugins_common"] :is(ul li ul):not(div[class*="contentRender_name_plugins_core_textbox"] :is(ul li ul))) {
	list-style-type: circle;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul ul ul):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(ul ul ul), div[class*="contentRender_name_plugins_common"] :is(ul ul ul):not(div[class*="contentRender_name_plugins_core_textbox"] :is(ul ul ul))) {
	list-style-type: square;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul li ul, ul li ol, ol li ol):not(div[class*="contentRender_name_plugins_collections_template_custom"] :is(ul li ul, ul li ol, ol li ol), div[class*="contentRender_name_plugins_common"] :is(ul li ul, ul li ol, ol li ol):not(div[class*="contentRender_name_plugins_core_textbox"] :is(ul li ul, ul li ol, ol li ol))) {
	margin-left: var(--space-5);
}

:is(h1, h2, h3, h4, h5, h6) > a {
	font: inherit;
	color: inherit;
	text-decoration: none;
}

.contentRender_name_plugins_core_textbox img {
	margin-bottom: var(--space-4);
	margin-left: var(--space-6);
	margin-right: var(--space-6);
	display: inline-block;
}

@media screen and (max-width:640px) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1:not(div[class*="contentRender_name_plugins_collections_template_custom"] h1, div[class*="contentRender_name_plugins_common"] h1:not(div[class*="contentRender_name_plugins_core_textbox"] h1)) {
		font-size: 40px;
		line-height: 45px;
	}
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2:not(div[class*="contentRender_name_plugins_collections_template_custom"] h2, div[class*="contentRender_name_plugins_common"] h2:not(div[class*="contentRender_name_plugins_core_textbox"] h2)) {
		font-size: 30px;
		line-height: 34px;
	}
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3:not(div[class*="contentRender_name_plugins_collections_template_custom"] h3, div[class*="contentRender_name_plugins_common"] h3:not(div[class*="contentRender_name_plugins_core_textbox"] h3)) {
		font-size: 24px;
		line-height: 28px;
	}
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4:not(div[class*="contentRender_name_plugins_collections_template_custom"] h4, div[class*="contentRender_name_plugins_common"] h4:not(div[class*="contentRender_name_plugins_core_textbox"] h4)) {
		font-size: 24px;
		line-height: 28px;
	}
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5:not(div[class*="contentRender_name_plugins_collections_template_custom"] h5, div[class*="contentRender_name_plugins_common"] h5:not(div[class*="contentRender_name_plugins_core_textbox"] h5)) {
		font-size: 20px;
		line-height: 24px;
	}
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6:not(div[class*="contentRender_name_plugins_collections_template_custom"] h6, div[class*="contentRender_name_plugins_common"] h6:not(div[class*="contentRender_name_plugins_core_textbox"] h6)) {
		font-size: 18px;
		line-height: 22px;
	}
}