/* 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 {
	font-family: var(--font-display);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--black);
}

h2, h3, h4, h5, h6, p {
	line-height: 1.2;
}

hr {
	height: 2px;
	background-color: var(--gray-300);
}

button {
	background-color: var(--sw-button-secondary-bg);
	color: var(--sw-button-secondary-color);
}

a {
	color: var(--sw-link-color);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) > p:not([style="text-align: right;"]) > img,
:is(.core-styles, .contentRender_name_plugins_core_textbox) img[style*="float: left;"] {
	margin-left: 0;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) > p:not([style="text-align: right;"]) > img[style*="float: right"],
:is(.core-styles, .contentRender_name_plugins_core_textbox) img[style*="float: right;"],
:is(.core-styles, .contentRender_name_plugins_core_textbox) > p[style="text-align: right;"] > img {
	margin-right: 0;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	margin-bottom: var(--space-8);
	font-weight: var(--font-weight-medium);
	line-height: var(--leading-none);
	text-transform: uppercase;
	font-family: var(--font-brandon);
	font-size: 40px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	margin-bottom: var(--space-6);
	font-weight: var(--font-weight-bold);
	letter-spacing: .02em;
	font-family: var(--font-roboto);
	font-size: 40px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	margin-bottom: var(--space-6);
	font-weight: var(--font-weight-bold);
	letter-spacing: .02em;
	font-family: var(--font-roboto);
	font-size: 34px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	margin-bottom: var(--space-6);
	font-weight: var(--font-weight-bold);
	letter-spacing: .02em;
	font-family: var(--font-roboto);
	font-size: 30px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	margin-bottom: var(--space-6);
	font-weight: var(--font-weight-bold);
	letter-spacing: .02em;
	font-family: var(--font-roboto);
	font-size: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	margin-bottom: var(--space-6);
	font-weight: var(--font-weight-bold);
	letter-spacing: .02em;
	font-family: var(--font-roboto);
	font-size: 18px;
}

@media screen and (min-width: 40em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
		margin-bottom: var(--space-8);
		font-size: calc(60rem/16);
		font-weight: var(--font-weight-medium);
		line-height: var(--leading-none);
		text-transform: uppercase;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
		margin-bottom: var(--space-6);
		font-size: calc(60rem/16);
		font-weight: var(--font-weight-bold);
		letter-spacing: .02em;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
		margin-bottom: var(--space-6);
		font-size: calc(50rem/16);
		font-weight: var(--font-weight-bold);
		letter-spacing: .02em;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
		margin-bottom: var(--space-6);
		font-size: calc(40rem/16);
		font-weight: var(--font-weight-bold);
		letter-spacing: .02em;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
		margin-bottom: var(--space-6);
		font-size: calc(30rem/16);
		font-weight: var(--font-weight-bold);
		letter-spacing: .02em;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		margin-bottom: var(--space-6);
		font-size: calc(20rem/16);
		font-weight: var(--font-weight-bold);
		letter-spacing: .02em;
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox, .description-outer) p {
	margin-bottom: var(--space-4);
	font-size: 1rem;
	letter-spacing: .02em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) .sv-wrapped-iframe {
	margin-bottom: var(--space-4)
}

:is(.core-styles, .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 {
	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) {
	background: var(--white);
	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) {
	display: table-cell;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: var(--leading-normal);
	letter-spacing: .02em;
	padding: var(--space-2);
	border: 1px solid var(--gray-dark);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background: var(--gray-light);
}

:is(.core-styles, .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 {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: var(--leading-normal);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul) {
	list-style-type: disc;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ol) {
	list-style-type: decimal;
}

:is(.core-styles, .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) {
	list-style-type: square;
}

:is(.core-styles, .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,
:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(h1, h2, h3, h4, h5, h6) > a {
	font: inherit;
	color: inherit; 
	text-decoration: none;  
}

:is(h1, h2, h3, h4, h5, h6).title:empty,
:is(h1, h2, h3, h4, h5, h6).container-title:empty,
:is(h1, h2, h3, h4, h5, h6).slide-title:empty {
	display: none !important;
}

.contentRender_name_plugins_core_textbox section {
	max-width: var(--width-base);
	padding: 0 var(--space-5);
}

@media(min-width: 40em) {
	.contentRender_name_plugins_core_textbox section {
		padding: 0 var(--space-20);
	}
}

.contentRender_name_plugins_core_textbox section p {
	line-height: var(--leading-normal);
}

.contentRender_name_plugins_core_textbox a {
	text-decoration: underline;
}

.contentRender_name_plugins_core_textbox img {
	--margin-sides: var(--space-6);

	margin-bottom: var(--space-4);
	margin-left: var(--margin-sides);
	margin-right: var(--margin-sides);
	display: inline-block;
	max-width: calc(100% - (var(--margin-sides) * 2));
}

.slide .img-cont.img-zoom img {
	transition: scale var(--transition-appendix);
}

.slide:hover .img-cont.img-zoom img {
	scale: 1.1;
}

span.registered {
	position: relative;
	line-height: inherit;
	display: inline-block;
}

span.registered sup.symbol {
	position: absolute;
	top: -0.6em;
	left: 0;
	text-decoration: none;
	font-size: 50%;
	color: inherit;
	line-height: inherit;
}

span.registered span.placeholder {
	color: rgba(0, 0, 0, 0);
	line-height: inherit;
	display: inline-block;
}

a span.registered span.placeholder {
	text-decoration: underline;
	text-decoration-color: var(--primary-highlight-color);
}

a:hover span.registered span.placeholder {
	text-decoration: none;
}

a:hover span.registered {
	text-decoration: none;
}

a.nav-link span.registered .placeholder,
h4 a span.registered .placeholder,
.info-list a span.registered .placeholder,
.locations a span.registered .placeholder,
a.nav-link span.registered .placeholder,
a.nav-link span.registered span.placeholder,
.blog-post .post-content h2 a span.registered .placeholder {
	text-decoration: none;
}

a.nav-link:hover span.registered {
	text-decoration: underline;
}

h1 span.registered sup.symbol,
h2 span.registered sup.symbol {
	top: 0;
}

h3 a span.registered span.placeholder,
h4 a span.registered span.placeholder {
	text-decoration: none;
}

@media (hover: hover) {
	button:hover {
		background-color: var(--sw-button-secondary-bg-hover);
		color: var(--sw-button-secondary-color-hover);
	}

	a:hover {
		color: var(--sw-link-hover-color);
	}

	:is(h1, h2, h3, h4, h5, h6) > a:hover,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(h1, h2, h3, h4, h5, h6) > a:hover {
		font: inherit;
		color: inherit; 
		text-decoration: none;  
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) a:hover {
		text-decoration: none;
	}
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
		font-size: calc(90rem/16);
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
		font-size: 1.25rem;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
		font-size: 1.25rem;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
		font-size: 1.25rem;
	}
}
