/* Core styles can be used any where you need a generic HTML block */

body, h1, h2, h3, h4, h5, h6, p, button, input, select {
	/* TODO - change to site paragraph font */
	font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
}

button {
	/* TODO - change to site color */
	background-color: var(--red-bf);
	color: var(--white);
}

@media (hover: hover) {
	button:hover {
		/* TODO - change to site color */
		background-color: var(--red-87);
	}
}

a {
	color: var(--red-bf);
}

@media (hover: hover) {
	a:hover {
		/* TODO - change to site color */
		color: #1e465c;
		text-decoration: none; /*reboot.css override*/
	}
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
	color:var(--black-22);
    font-family: 'Oswald', sans-serif;
    font-style: default; 
    font-weight: 500; 
    font-size: 32px ; 
    line-height: normal ; 
    margin-bottom: 10px ;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
	color: var(--black-22);
    font-family: 'Oswald',sans-serif;
    font-style: default; 
    font-weight: 500; 
    font-size: 28px; 
    line-height: normal; 
    margin-bottom: 10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
	color: var(--black-22);
    font-family:'Oswald',sans-serif ;
    font-style: default; 
    font-weight: 500; 
    font-size: 25px; 
    line-height: normal; 
    margin-bottom: 10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
	font-family:'Oswald',sans-serif ;
    font-style: default; 
    font-weight: 500; 
    font-size: 22px; 
    line-height:normal; 
    margin-bottom: 10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
	font-family:'Oswald',sans-serif ;
    font-style: default; 
    font-weight: 500; 
    font-size: 20px; 
    line-height: normal ; 
    margin-bottom: 10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
	font-family:'Oswald',sans-serif ;
    font-style: default; 
    font-weight: 500; 
    font-size: 18px; 
    line-height: normal; 
    margin-bottom: 10px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
	color:var(--black-22);
    font-family: 'Lato', sans-serif;
    font-style: default; 
    font-weight: 400; 
    font-size: 16px; 
    line-height: 1.444em; 
    margin-bottom: 20px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a {
	color: var(--red-bf);
	text-decoration: none;
	font-weight: 700;
    transition: underline ease 0.4s, color ease 0.4s;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) a:hover {
	color: #112c3b;
    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: #fff;
	margin-bottom: 10px;
	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) {
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	padding: var(--space-2);
	border: 1px solid var(--gray-500);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td) {
	border: 1px solid var(--gray-71);
    padding: 5px 8px;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table tr):nth-of-type(even){
	background: var(--white-ff);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol, dl) {
	margin-bottom: 10px;
	margin-left: var(--space-5);
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(ul, ol):not([class*="block-grid-"]) li {
	color: var(--black-22); /* for uniformity keep same as paragraph font styles, change only if lists should look different from paragraph font styles */
    font-family: 'Lato', sans-serif; /* for uniformity keep same as paragraph font styles, change only if lists should look different from paragraph font styles */
    font-style: default; /* for uniformity keep same as paragraph font styles, change only if lists should look different from paragraph font styles */
    font-weight: 400; /* for uniformity keep same as paragraph font styles, change only if lists should look different from paragraph font styles */
    font-size: 16px; /* for uniformity keep same as paragraph font styles, change only if lists should look different from paragraph font styles */
    line-height:1.444em ; /* for uniformity keep same as paragraph font styles, change only if lists should look different from paragraph font styles */
}

: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;  
}

.contentRender_name_plugins_core_textbox img {
	margin-bottom: var(--space-4);
	margin-left: var(--space-6);
	margin-right: var(--space-6);
	display: inline-block;
}

:is(.core-styles, .contentRender_name_plugins_core_textbox) hr {
	height: 1px;
	background-color: var(--gray-b2);
}

@media screen and (min-width: 64em) {
	:is(.core-styles, .contentRender_name_plugins_core_textbox) h1 {
		font-size: 46px; 
        line-height: normal; 
        margin-bottom: 15px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h2 {
		font-size: 36px; 
        line-height: normal; 
        margin-bottom: 15px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h3 {
		font-size: 32px; 
        line-height: normal; 
        margin-bottom: 15px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h4 {
		font-size: 28px; 
        line-height: normal; 
        margin-bottom: 15px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h5 {
		font-size: 24px; 
        line-height: normal; 
        margin-bottom: 15px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) h6 {
		font-size: 20px; 
        line-height: normal; 
        margin-bottom: 15px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) p {
		font-size: 18px;
		line-height: 1.444em; 
        margin-bottom: 20px;
	}
	
	: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):not([class*="block-grid-"]) li {
		font-size: 18px;
        line-height: 1.444em;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(table) {
		margin-bottom: 20px;
	}

	:is(.core-styles, .contentRender_name_plugins_core_textbox) :is(td, tr) {
		font-size: 18px;
        line-height: 1.444em;
	}
}
