/* 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);
}

hr {
	height: 2px;
	background-color: var(--gray-300);
}

button {
	background-color: var(--sw-button-secondary-bg);
	color: var(--sw-button-secondary-color);
}

a,
a:not([href]):not([class]),
.visitorsPluginContainer a {
	font-weight: var(--font-weight-bold);
	text-decoration: underline;
	color: var(--sw-link-color);
	cursor: pointer;
	transition:
		text-decoration-color var(--transition-appendix),
		color var(--transition-appendix);
}

: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,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h2,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h3,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h4,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h5,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	margin-bottom: 0.625rem;
	line-height: 1.2;
	color: var(--sw-text-color);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h3,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h4,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h5,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h6,
:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	font-family: var(--font-raleway);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h3,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h4,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h5,
:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	font-variant-ligatures: no-common-ligatures;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	font-family: var(--font-display);
	font-weight: var(--font-weight-bold);
	font-size: var(--text-4xl);
	letter-spacing: -0.1em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	font-weight: var(--font-weight-bold);
	font-size: var(--text-3xl);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	font-weight: var(--font-weight-extrabold);
	font-size: 1.625rem;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	font-weight: var(--font-weight-bold);
	font-size: var(--text-2xl);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	font-weight: var(--font-weight-extrabold);
	font-size: 1.375rem;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	font-weight: var(--font-weight-bold);
	font-size: var(--text-xl);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	margin-bottom: 0.9375rem;
	font-weight: var(--font-weight-medium);
	font-size: var(--text-base);
	line-height: 1.7;
	color: var(--sw-text-color);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) .sv-wrapped-iframe {
	margin-bottom: var(--space-4)
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a,
:is(.core-styles, .contentRender_name_plugins_core_textbox) a:not([href]):not([class]) {
	text-decoration: underline;
}

: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(--sw-key-color);
}

: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) {
	padding: 17px 18px;
	font-family: var(--font-body);
	font-weight: var(--font-weight-medium);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	border: 1px solid var(--gray-dark);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background: var(--blue-tint);
}

: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: var(--text-base);
	line-height: 1.7;
}

: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(h1, h2, h3, h4, h5, h6) > a:not([href]):not([class]),
:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(h1, h2, h3, h4, h5, h6) > a,
:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(h1, h2, h3, h4, h5, h6) > a:not([href]):not([class]) {
	font: inherit;
	color: inherit; 
	text-decoration: none;  
}

.contentRender_name_plugins_core_textbox img {
	--margin-sides: 0px;

	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));
}

.contentRender_name_plugins_core_textbox:has(.cr__singleEmbedContainer) img{
	max-width: unset;
}


.contentRender_name_plugins_core_textbox table caption {
    padding: var(--space-3) 0;
    text-align: center;
    font-size: var(--text-sm);
    font-style: italic;
    font-weight: var(--font-weight-normal, 400);
    line-height: var(--leading-tight);
    color: var(--gray-600);
}
.contentRender_name_plugins_crm_formbuilder p.hint.formreq,
.contentRender_name_plugins_crm_formbuilder .MsoNormal > span,
.contentRender_name_plugins_crm_formbuilder .MsoNormal{
	font-family: var(--font-body) !important;
}

@media (hover: hover) {
	button:hover {
		background-color: var(--sw-button-secondary-bg-hover);
		color: var(--sw-button-secondary-color-hover);
	}

	a:hover,
	a:not([href]):not([class]):hover,
	.visitorsPluginContainer a:hover {
		text-decoration-color: transparent;
		color: var(--sw-link-hover-color);
	}

	:is(h1, h2, h3, h4, h5, h6) > a:hover,
	:is(h1, h2, h3, h4, h5, h6) > a:not([href]):not([class]):hover,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) :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:not([href]):not([class]):hover {
		font: inherit;
		color: inherit; 
		text-decoration: none;  
	}
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
		margin-bottom: 1.25rem;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		line-height: 1.1;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
		font-size: 3.25rem;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
		font-size: 2.625rem;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
		font-size: var(--text-4xl);
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
		font-size: var(--text-3xl);
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
		font-size: 1.625rem;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		font-size: 1.375rem;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) p,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr),
	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
		font-size: var(--text-lg);
	}

	.contentRender_name_plugins_core_textbox table caption {
        padding: var(--space-4) 0;
        font-size: var(--text-lg);
        line-height: var(--leading-normal);
    }
}