/* Core styles can be used any where you need a generic HTML block */

body {
	font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

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);
}

h1, h2, h3, h4, h5, h6, p {
    text-rendering: optimizeLegibility;
}

button {
	background-color: #e96059;
	color: var(--white);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a:not(.button-default) {
	padding: 0 2px;
	background-color: transparent;
	color: var(--gray);
	text-decoration: underline var(--citrus);
	-webkit-text-decoration: underline var(--citrus);
	transition: background-color var(--transition-appendix), color var(--transition-appendix);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	font-family: var(--font-display);
	font-weight: var(--font-weight-bold); 
	font-size: 30px; 
	letter-spacing: 1px;
	line-height: 1; 
	margin-bottom: 25px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	font-family: var(--font-body);
	font-weight: var(--font-weight-normal); 
	font-size: 25px; 
	line-height: 1;
	margin-bottom: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	font-family: var(--font-body);
	font-weight: var(--font-weight-bold); 
	font-size: 21px;
	text-transform: uppercase;
	line-height: 1; 
	margin-bottom: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	font-family: var(--font-display-script);
	font-size: 32px; 
	font-weight: normal;
	line-height: 1; 
	margin-bottom: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	font-family: var(--font-display);
	font-weight: var(--font-weight-bold); 
	font-size: 19px; 
	letter-spacing: 1;
	line-height: 1; 
	margin-bottom: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	font-family: var(--font-body);
	font-weight: var(--font-weight-bold); 
	font-size: 19px; 
	line-height: 1; 
	margin-bottom: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	font-family: var(--font-body);
	font-weight: var(--font-weight-normal); 
	font-size: var(--text-base); 
	line-height: 1.7;
	letter-spacing: 1px; 
	margin-bottom: var(--space-5);
}

: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;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
	color: var(--gray);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) td {
	border: 1px solid var(--gray);
    padding: 5px var(--space-2);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background: #f2f2f2;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
	margin-bottom: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol) {
	margin-bottom: var(--space-4);
	padding-left: var(--space-10);
}

: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(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(.core-styles, .contentRender_name_plugins_core_textbox) hr {
	background-color: var(--gray);
	height: 1px;
}

.contentRender_name_plugins_core_textbox img {
	margin-bottom: var(--space-4);
	margin-left: var(--space-6);
	margin-right: var(--space-6);
	display: inline-block;
}

.contentRender_name_plugins_core_textbox a img {
    transition: box-shadow 0s linear 1s;
}

@media (hover: hover) {
	button:hover {
		background-color: #e96059;
	}
	
	:is(.core-styles, .contentRender_name_plugins_core_textbox) a:hover {
		background-color: var(--citrus);
		color: var(--white);
		text-decoration: underline var(--citrus);
		-webkit-text-decoration: underline var(--citrus);
	}

	.contentRender_name_plugins_core_textbox a:hover > img {
        box-shadow: 0 0 0 calc(var(--space-6) + 3px) white;
        transition: box-shadow 0s linear;
	}

	: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;	
		background-color: transparent;
	}
}

@media (min-width: 40em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
        font-size: 43px; 
        }
    
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
        font-size: 28px; 
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
        font-size: 21px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
        font-size: 26px; 
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
        font-size: 21px; 
    }
    
    :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(tr, td) {
		font-size: 18px;
	}
}

@media (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
        font-size: 48px; 
        }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
        font-size: 38px; 
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
        font-size: 30px;
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
        font-size: 38px; 
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
        font-size: 24px; 
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
        font-size: 24px; 
    }
    
    :is(.core-styles, .contentRender_name_plugins_core_textbox) p {
        font-size: 18px;
    }
}

/* FAQ */
section.core-faqs details.faq-item div.answer p {
	font-size: 18px;
	line-height: 1.7;
}

section.core-faqs details.faq-item a {
	padding: 0 2px;
	background-color: transparent;
	color: var(--gray);
	text-decoration: underline var(--citrus);
	-webkit-text-decoration: underline var(--citrus);
	transition: background-color var(--transition-appendix), color var(--transition-appendix);
}

section.core-faqs details.faq-item a:hover {
	background-color: var(--citrus);
    color: var(--white);
    text-decoration: underline var(--citrus);
	-webkit-text-decoration: underline var(--citrus);
}
