/* Core styles can be used any where you need a generic HTML block */

body {
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-family: sans-serif;
    background-color: #fef2e2;
}

body, h1, h2, h3, h4, h5, h6, p, button, input, select {
	font-family: var(--font-body);
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

ul, ol, dl {
    margin-bottom: 0;
    text-rendering: optimizeLegibility;
}

button {
	background-color: var(--primary-color-100);
	color: var(--primary-color-900);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	color: var(--dark-gray);
    font-family: var(--font-display-bold);
	font-weight: normal;
    font-size: 39px; 
    line-height: normal; 
    margin-bottom: 15px;
    letter-spacing: 0.01em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	color: var(--olive);
    font-family: var(--font-body);
    font-size: 25px; 
	font-weight: var(--font-weight-semibold); 
    line-height: 30px; 
    margin-bottom: 15px;
    letter-spacing: 0.03em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	color: var(--navy);
    font-family: var(--font-display-bold);
    font-weight: normal;
    font-size: 25px; 
    line-height: normal; 
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	color: var(--olive);
    font-family: var(--font-body);
    font-style: normal; 
    font-weight: var(--font-weight-semibold); 
    font-size: 22px; 
    line-height: 30px; 
    margin-bottom: 15px;
    letter-spacing: 0.03em;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	color: var(--darker-gray);
    font-family: var(--font-body);
    font-weight: var(--font-weight-bold); 
    font-size: 18px; 
    line-height: 31px; 
    margin-bottom: 15px;
    text-transform: uppercase;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	color: var(--green);
    font-family: var(--font-body);
    font-weight: var(--font-weight-bold); 
    font-size: 18px; 
    line-height: 31px; 
    margin-bottom: 15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	color: var(--gray);
    font-family: var(--font-body);
    font-style: normal; 
    font-weight: var(--font-weight-normal); 
    font-size: 18px; 
    line-height: 31px; 
    margin-bottom: 15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) i {
	display: inline;
}

a,
:is(.core-styles, .contentRender_name_plugins_core_textbox) a:not(.default-button) {
	color: var(--blue);
	text-decoration: none;
	font-weight: bold;
	transition: color ease 0.4s, text-decoration ease 0.4s;
}

: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) {
	margin-bottom: 15px;
	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(--light-gray);
    padding: 5px 8px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	color: var(--gray);
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 31px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background-color: var(--lighter-gray);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
	margin-bottom: 15px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol) {
	padding-left: var(--space-10);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
	color: var(--gray);
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 31px;
}

: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(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 !important;
	color: inherit !important;
	text-decoration: none !important;
}

.contentRender_name_plugins_core_textbox img {
	display: inline-block;
	max-width: 100%;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) hr {
	background-color: var(--lime);
	opacity: 0.3;
	width: 100%;
	height: 4px;
}

@media (hover: hover) {
	button:hover {
		background-color: var(--primary-color-200);
	}

	a:hover,
	:is(.core-styles, .contentRender_name_plugins_core_textbox) a:hover:not(.default-button) {
		color: var(--gray-olive);
		text-decoration: underline;
	}

	: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 {
		color: inherit !important;
		text-decoration: none !important;
	}
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
        font-size: 65px;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
        font-size: 38px;
		line-height: normal;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
        font-size: 33px;
		line-height: 43px;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
        font-size: 27px;
		line-height: 38px;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
        font-size: 21px;
		line-height: normal;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
        font-size: 19px;
		line-height: normal;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
        font-size: 19px;
		line-height: 31px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li { 
        font-size: 19px;
        line-height: 31px;
    }

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
		font-size: 19px;
        line-height: 31px;
	}

	:is(.contentRender_name_plugins_core_textbox) hr {
		width: min(calc(960px + 204 * (100vw - 1024px) / 416 ), 1164px);
		margin-left: max(calc(0px - 102 * (100vw - 1024px) / 416), -102px);
	}
}

select {
	width: 100%;
	background: transparent;
	color: white;
	border-bottom: 4px solid rgba(255,255,255,0.3);
}

select > option { color: black; }