/* Core styles can be used any where you need a generic HTML block */

body {
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    text-rendering: optimizeLegibility;
}

ul, ol, dl {
    margin-bottom: 0;
    text-rendering: optimizeLegibility;
}

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: transparent;
	color: var(--black);
	border: 2px solid var(--black);
	transition:
		background-color var(--transition),
		color var(--transition);
}

a {
	padding: 0 2px;
	background-color: transparent;
	color: var(--black);
	font-weight: bold;
	text-decoration: underline;
	transition:
		background-color var(--transition),
		color var(--transition);
}

: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 {
	font-family: var(--avenir-black-1);
	font-weight: normal;
	color: var(--black);
    font-size: 36px; 
    line-height: 1.1;
    margin-bottom: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	font-family: var(--avenir-med-1);
	font-weight: normal;
	color: var(--gray-dark);
    font-size: 30px; 
    line-height: 1.2;
	margin-bottom: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	font-family: var(--avenir-black-1);
	font-weight: normal;
	color: var(--black);
    font-size: 28px; 
    line-height: 1.2;
    margin-bottom: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	font-family: var(--avenir-med-1);
	font-weight: normal;
	color: var(--gray-dark);
    font-size: 24px; 
    line-height: 1.2;
    margin-bottom: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	font-family: var(--avenir-heavy-1);
	font-weight: normal;
	color: var(--black);
    font-size: 22px; 
    line-height: 1.2; 
    margin-bottom: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	font-family: var(--avenir-black-1);
	font-weight: normal;
	color: var(--black);
    font-size: 18px; 
    line-height: 1.2; 
    margin-bottom: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	font-family: var(--avenir-med-1);
	font-weight: normal;
	color: var(--black);
    font-size: 16px; 
    line-height: 1.3; 
	margin-bottom: 20px;
}

: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 {
	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(--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);
	border-collapse: collapse;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tbody tr td, table tr td) {
	display: table-cell;
	border: 1px solid var(--black);
    padding: 5px 8px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	font-family: var(--avenir-med-1);
	font-weight: normal;
	color: var(--black);
    font-size: 16px; 
    line-height: 1.3; 
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background-color: #f2f2f2;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol) {
	margin-bottom: var(--space-4);
	padding: 0;
	margin-left: var(--space-10);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
	font-family: var(--avenir-med-1);
	font-weight: normal;
	color: var(--black);
    font-size: 16px; 
    line-height: 1.3; 
	margin-bottom: 20px;
}

: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-10);
}

:is(h1, h2, h3, h4, h5, h6) > a,
:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(h1, h2, h3, h4, h5, h6) > a {
	padding: 0;
	font: inherit;
	color: inherit; 
	text-decoration: none;  
}

.contentRender_name_plugins_core_textbox img {
	margin-bottom: var(--space-4);
	display: inline-block;
	max-width: 100%;
}

@media (hover: hover) {
	button:hover {
		background-color: var(--black);
		color: var(--white);
	}

	a:hover {
		background-color: var(--black);
		color: var(--white);
	}

	: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 {
		background: none;
		font: inherit;
		color: inherit; 
		text-decoration: none;
	}
}

@media (min-width: 40em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
		font-size: 60px; 
		line-height: 1.2;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
		font-size: 36px; 
		line-height: 1.2;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
		font-size: 34px;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
		font-size: 30px;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
		font-size: 28px;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		font-size: 20px;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
		font-size: 18px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
		font-size: 18px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
		font-size: 18px;
	}
}

/* begin: crowdriff embed overwrite */
.cr__gallery svg {
	display: inline;
}

/* end: crowdriff embed overwrite */
