﻿@import "font.css";

@charset "utf-8"; 

:root {
	--white		: white;
	--black		: black; 
	--red			: #CC0000;
	--lightGray	: #DDDDDD;
	--gray		: #858585;
	--darkGray	: #43494D;
	--black		: black;
}


* {  
   margin: 0;  
   padding: 0 auto;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
	outline: none;
}
::after, 
::before {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
}

html {
	padding: 0;
	margin: 0;
	z-index: 0; 
	width: 100%; 
	height: auto; 
	min-height: 100vh;
}

body {
	padding: 0px;
	margin: 0px;
	background-color: white; /* Fallback */
	background-color: var(--white);
	color: black;	/* Fallback */
	color: var(--black);
	font: 18px/24px Roboto, Verdana, sans-serif;
	font-weight: 400;
	position: relative;  
	height: 100vh;
	width: 100vw;
}

nav,
section {
	border: 0px solid green;
	margin: 0;
	padding: 0;
	padding-bottom: 1.5rem;
}
nav:after,
section:after {
	content: "";
	display: block;
	clear: both;
	float: none;
}
section + section { 
} 

div.container {
	max-width: 1020px; 
	padding: 1.5rem 0rem;
	padding-top: 0; 
}

.clear_float {
	clear: both;
}

 

h1, h2, h3, h4, h5 {
	padding: 0;
	margin: 0; 
	font-weight: bold;
}
h1 {
	font-size: 36px;
	line-height: 39px;  
	padding-bottom: 7px;
	padding-bottom: 1rem;
}

h2 {
	font-size: 23px; 
	line-height: 39px;
	padding-bottom: 7px;
} 
h2.title,
h2.featured {
	background: url("../images/icon_featured.svg") no-repeat top left;
	background-size: 42px 42px;
	padding-left: 56px;
	line-height: 42px; 
}
h3,
h4 {
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
}
h5 {
	
}
b, strong { 
	font-weight: 700;
}
p {
	padding: 0;
	margin: 0;
	margin-bottom: 1rem;	
}

a,
a:hover { 
	color: #CC0000; 
	color: var(--red);
	text-decoration: none;
}
a:hover {  
	text-decoration: underline;
}

div.footnote,
p.footnote {
	font-size: 14px;
	font-style: italic;
}
 



/******************************************************
	Header 
*******************************************************/
nav.header {
	top: 0;
	position: fixed;
	width: 100%;
	background-color: white;
	z-index: 100; 
	margin: 0; 
	padding: 1rem 0;  
	padding-left: 1rem;
}
nav.header > * { 
	position: relative;
}
nav.header div.container {
	padding: 0 0rem;
	margin: 0 auto; 
	min-height: 44px; 
	z-index: 100;
	position: relative; 
} 
nav.header a#logo {

	margin: 6px 0; 
	z-index: 99;
	position: relative;
	display: inline-block;
	/*
	width: 219px;
	height: 32px;	
	background: url("../images/logo.svg") no-repeat 0 0;
	background-size: 219px 32px; 
	*/
	float: none;
	
	width: 155px;
	height: 58px;
	background: url("../images/logo.png") no-repeat 0 0;
	background-size: 155px 58px;
	margin: 0; 
}   
div.header_links { 
	text-align: right;
	width: 100%; 
	height: auto;
	position: relative;
	margin: 0;
	margin-top: -32px;
	margin-top: -45px;
	padding: 0; 
	padding-top: 30px;
	padding-top: clamp(20px, 30px, 30px);  
}
div.header_links:after {
	content: "";
	clear: both;
	display: block;
	float: none;
}
div.header_links div.links {
	float: right; 
	clear: both;  
	margin: 0;
	margin-top: 1.5rem;  
}
div.header_links div.links:before {
	content: "";
	float: none;
	display: block;
	clear: both;
}
div.header_links div.links a {
	color: #2B2B2B;
	font-size: 16px;
	line-height: 29px;
	margin-left: 2.5vw;
	margin-left: clamp(1.0rem, 2.5vw, 2.5rem);
	font-weight: normal;
	white-space: nowrap; 
}
div.header_links div.links a:first-child {
	margin-left: 0;
}
div.header_links div.links a:hover {
	text-decoration: underline;
}
div.header_links div.links a.active {
	text-decoration: none;
	font-weight: bold;
}
div.header_links div.utility_nav {
	margin-top: 0;
	padding: 0;  
	width: auto; 
	text-align: right; 
	position: absolute;
	top: 0;
	right: 0;
}
div.header_links div.utility_nav a {
	font-size: 14px;
	line-height: 15px;
	color: black; 
	color: var(--black);
	text-align: right;
	padding: 0px 1.25rem;
	margin: 7px 0;
	float: left;
}
div.header_links div.utility_nav a:first-child {
	padding-left: 0;
}
div.header_links div.utility_nav a:last-child {
	padding-right: 0;
}

div#mobile_burger {
	display: none;
	float: right;
	line-height: 40px; 
	cursor: pointer;  
	margin-top: 5px; 
}
div#mobile_burger div.bar {
	width: 35px;
	height: 5px;
	background-color: #43494D;
	margin: 6px 0;
	transition: 0.4s;
}
div#mobile_burger.toggle div.bar:nth-of-type(1) {
	-webkit-transform: rotate(-45deg) translate(-8px, 7px);
	transform: rotate(-45deg) translate(-8px, 7px);
}
div#mobile_burger.toggle div.bar:nth-of-type(2) {
	opacity: 0;
}
div#mobile_burger.toggle div.bar:nth-of-type(3) {
	-webkit-transform: rotate(45deg) translate(-8px, -8px);
	transform: rotate(45deg) translate(-8px, -8px);
}





/*=====================================================
	Hero
  =====================================================*/ 
section.hero {
	padding: 0;
	margin: 0;
	margin-top: 160px;
	margin-bottom: 2rem;
	background-color: white; 
	width: 100%;
	clear: both;
	float: none;
}
section#hero_home {  
	background-color: #43494D;
	background-color: var(--darkGray);
	width: 100%;  
	height: auto;
	position: relative; 
	/*
	background: #43494D url("../images/home/home_hero_wide.jpg") no-repeat right 0;
	background-size: contain;
 	 */
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: stretch;
	justify-content: flex-end; 
}  
section#hero_home div#hero_bg {  
	width: 50%;  
	position: relative;  
	align-self: stretch;
	background: url("../images/home/home_hero_wide.jpg") no-repeat right 0;
	background-position-y: 0;
	background-position-x: left 0rem;
	background-size: cover;    
}
section#hero_home div#hero_gradient {  
 	background: #43494D;
	background: linear-gradient(90deg, rgba(67,73,77,1) 5%, rgba(67,73,77, 0) 45%);
  	box-shadow: inset 0px 0px 0px rgba(0,0,0, 0.15);
	color: #ffffff; 
	width: 80%;
	height: 100%; 
	display: none;
}
section#hero_home div.container {   
	width: 50%;
	padding: 0;
	padding-left: 100px;  
}
section#hero_home div#hero_text { 
 	background-color: #43494D; 
	width: auto;
	height: auto; 
	font-size: 18px;
	line-height: 24px;
	color: white;
	padding: 2rem 2rem 2rem 0;
	margin: 0;  
}
section#hero_home div#hero_text h1 {
	font: bold 36px/39px Roboto, Verdana, sans-serif;
	margin:0;
	margin-bottom: 1rem;
}
section#hero_home div#hero_text p,
section#hero_home div#hero_text div {
	font: normal 18px/24px Roboto, Verdana, sans-serif;
	padding: 0;
	margin: 0;
	margin-bottom: 2rem;
}
 
.white_mask{
	background-color: #ffffff;
	position: relative;
	margin-top: -30px;
}
 
/*
.page_hero_holder{
	height: auto;
	margin-bottom: 2rem;
	clear: both; 
	border: 1px solid red
}
*/
section.hero div.container { 
}
section.hero div.page_hero {
	background-color: #858585;
	width: 100%;
	height: 140px;
	border-radius: 8px;
	clip-path: polygon(100% 0%, 0% 60%, 0% 100%, 100% 100%);
	-webkit-clip-path: polygon(100% 0%, 0% 60%, 0% 100%, 100% 100%);
	margin-top: -20px;  
}
section.hero div.page_hero:before {
/*
    content: url("../images/rounded_piece.png");
*/
	content: "";
    margin-top: 76px;
    position: absolute;
    margin-left: -1px;   
} 

/* Chart */
.chart {
	margin-top: -80px;
	margin-bottom: 30px;
	padding: 20px !important;
	height: 240px;
	width: 240px;
	background-color: #ffffff;
	border-radius: 50%;
	color: #858585;
	z-index: 50;
	position: absolute;
	right: 0;
	margin-right: 2rem;  
}
.inner_page_chart {
	margin-top: 20px;
	z-index: 10;
	position: relative;
	float: right;
	right: 0; 	 
}
.inner_page_hero{
	position: relative;
}
.inner_page_hero p {
	width: calc(100% - 260px); 
}
.chart_amount,
.chart_label,
.chart_label_multiline {
	color: #858585;
	font-size: 26px; 
	line-height: 39px;
	font-weight: bold; 
}
.chart_label_multiline {
	font-size: 24px; 
	line-height: 32px;
}
.chart_title {
	color: #858585;
	font-size: 14px;
	font-weight: bold;
	text-transform: capitalize; 
}
.chart_date {
	color: #858585;
	font-size: 12px;
	line-height: 17px;
}
.chart_text p {
	width: calc(100% - 250px); 
}

.chart_text p:first-child {
	padding-top: 34px;
}


a.nav_popup {
	clear: both;
	width: auto;
	white-space: normal;
	z-index: 20; 
	font-size: 0.95em;
	position: relative; 
}
div.chart a.nav_popup {
	position: absolute; 
	top: 50%;
	left: 100%;
}
section.hero div.chart a.nav_popup {
	display: none;
}
section.hero div.nav_popup {
	clear: both;
	display: block; 
	text-align: right; 
	margin-top: -10px;
	padding-right: 2rem;
	font-size: 0.95em;
	z-index: 20;
}
section.hero div.nav_popup:before {
	margin: 0;
}
/*=====================================================
	END OF HERO
  =====================================================*/
  
  
/******************************************************
	END OF HEADER
*******************************************************/



/******************************************************
	Footer
*******************************************************/
footer {
	font: 16px/19px Roboto, Verdana, sans-serif; 
}
footer div.container { 
	background-color: #43494D;
	background-color: var(--darkGray);
	padding: 1.5rem 0rem 0 0rem; 
	color: white;
	border-radius: 6px 6px 0 0; 
}
footer h3,
footer h4 {	
	font: 16px/19px Roboto, Verdana, sans-serif; 
	font-weight: bold;
	margin-bottom: 1rem;
}
footer div.row { 
	padding: 1.0rem;
}
footer div.row > div { 
	padding: 0rem 1.5rem; 
}
footer div.row > div + div {
	border-left: 1px solid #979797;
}
footer div.row > div p {
	padding: 0;
	margin: 0;
	margin-bottom: 0.5rem;
	font: 16px/19px Roboto, Verdana, sans-serif; 
}
footer div.row > div ul {
	margin: 0;
	padding: 0 1rem;
}
footer div.row > div li {
	margin-bottom: 0.25rem;
}
footer a,
footer a:hover {
	color: white; 
	text-decoration: underline; 
}
footer a:hover {
	text-decoration: none; 
}
footer div.contact_info {   
} 
footer ul.links {
	clear: both;
	display: block;
	margin: 0;
	padding: 1.5rem 0;
	text-align: center;
}
footer ul.links:after {
	display: block;
	content: "";
	clear: both;
}
footer ul.links li {
	list-style: none;
	display: inline-block;
	margin: 0;
	padding: 0 1.5rem; 
} 
/*******************************************************
	END OF FOOTER
********************************************************/




/******************************************************
	Main Content Area
*******************************************************/
 
.ie_only{
	display: none;
}

.ie_page_hero{
	width: 100%; 
	max-width: 1100px;
	margin-top: -120px; 
}
/*
.no_chart_hero .ie_page_hero{
	margin-top: -20px;
}
*/

/*=====================================================
	Breadcrumb
  =====================================================*/ 
nav.breadcrumb {
	background: white;
	padding: 0; 
}
nav.breadcrumb ol {
	color: #585858;
	color: var(--gray);
	font-weight: normal;
	padding: 0;
	margin: 0; 
}
nav.breadcrumb ol li {
	list-style: none;
	padding: 0;
	padding-right: 1.25rem;
	margin: 0;
	display: inline-block;
}
nav.breadcrumb ol li + li:before {
	padding-right: 1.25rem; 
	content: "|";
	font-weight: normal !important;
}
nav.breadcrumb ol li a {
	color: #585858;
	color: var(--gray);
}
nav.breadcrumb ol li a:hover {
	color: #CC0000;
	color: var(--red);
}
nav.breadcrumb ol li.active  { 
	font-weight: bold;
}
/*=====================================================
	END OF BREADCRUMB
  =====================================================*/ 


div.card { 
	border: 0;
	background-color: #DDDDDD;
	background-color: var(--lightGray);
	height: 100%; 
}
div.card > div {
	border: 0;
	padding: 1.5rem;
	margin: 0; 
}
div.card p {
}

/*=====================================================
	Home news
  =====================================================*/ 
section#news div.card { 
	padding: 0;  
}
section#news div.card > img {
	object-fit: cover;
	display: block;
	border-radius: 0.25rem 0.25rem 0 0;  
}
section#news div.card > div { 
	padding: 1.5rem 2rem;
	margin: 0; 
	font-size: 16px;
	line-height: 19px;
	color: #2B2B2B;
}
section#news div.card > div > h3,
section#news div.card > div > h4 {
	margin-bottom: 0.75rem;
	font-size: 18px;
	line-height: 22px;
}
section#news div.card > div > p {
	padding: 0;
	margin: 0;
}


/*=====================================================
	Take Actions
  =====================================================*/ 
section#take_actions { 
}
section#take_actions div.row {
	justify-content: center;
}
section#take_actions div.row div.card {
	border: 0px;
	border-radius: 4px;
	height: 100%;
	font-size: 18px;
	line-height: 22px;  
}
section#take_actions div.row div.card p {
	margin: 2rem;
	font-size: 18px;
	line-height: 22px; 
}

div.ta_top {
	display: table;
	background-color: #CC0000;
	background-color: var(--red);
	padding: 1rem 2rem;
	color: white;
	border-radius: 6px 6px 0 0; 
	width: 100%; 
}

.ta_top span{
	display: table-row;
	height:100%;
	vertical-align: middle; 
}

.ta_top span .adjuster{
	display: table-cell;
	vertical-align: middle;
	height: auto;
	width: 100%; 
}
 



span.home_icon {
	display: inline-block;
	width: 68px;
	height: 68px; 
	text-align: center;
	vertical-align: middle; 
	position: relative; 
}
span.home_icon img {
	display: inline-block; 
	position: relative; 
	width: 68px;
	height: 68px;
}
#home_navs > div {
	padding: 0 0.5rem 0.15rem 0.5rem !important;
}
div.home_icon_bg { 
	color: #ffffff;
	padding-top: 20px; 
	border-radius: 8px;
	margin: auto;
	margin-top: 10px;
	margin-bottom: 10px;
	transition: 1s;
	background: url("../images/home/icon_dollar.svg") no-repeat 15px center;
	background-size: 70px 70px;
	color: white;
	padding: 20px;
	padding-left: 100px; 
	position: relative; 
	min-height: 102px;
	height: calc(100% - 20px);
	display: flex;
	align-items: center;
	justify-content: left;
} 
div.home_icon_bg a { 
	display: inline-block; 
	font-size: 16px;
	line-height: 20px;
	font-weight: normal;
	color: white;
}
div.home_icon_bg:hover,
div.home_icon_bg a:hover {
	cursor: pointer;
	text-decoration: none;
}
div.home_icon_bg div { 
	font-size: 20px;
	line-height: 20px;
	padding-bottom: 10px;
}
div.home_icon_bg span.currency {
	display: block; 
	margin-top: 5px;
	font-weight: bold;
}




/* popup */
div.popup {
	max-width: 900px;
	width: 90%;
	display: none;
	font-size: 0.9em;
}


.no_wrap{
	white-space: nowrap !important;
	display: inline-block;
}

.desktop_only{
	display: flex;
}

.desktop_only_hero{
	display: block;
}
.mobile_only{
	display: none;
}


/*=====================================================
	Program Accordions
  =====================================================*/  
div.accordion { 
	padding-bottom: 1.5rem;
} 
div.accordion div.accordion-header,
div.accordion div.accordion-footer {
	padding: 0;
}
div.accordion div.accordion-header h3,
div.accordion div.accordion-footer h3 {
	margin: 0;
	padding: 0px 10px 10px 20px; 
}
div.accordion div.accordion-item {
	border: 0;
	padding: 0 0 10px 0;
}
div.accordion div.accordion-item h3 {
	background-color: #DDDDDD;
	background-color: var(--lightGray);
	font: normal 24px/29px Roboto; 
	padding: 13px 10px 13px 20px; 
	border-radius: 0 6px 6px 0;
	position: relative;
	margin: 0;
	margin-left: 10px; 
}
div.accordion div.accordion-item h3:before {
	content: "";
	display: inline-block;
	background-color: #858585;
	background-color: var(--darkGray);
	border-radius: 5px 0 0 5px;
	width: 10px;
	position: absolute; 
	top: 0;
	left: -10px;
	height: 100%;
}
div.accordion h3 dl {  
	padding: 0;
	margin: 0;
	width: calc(100% - 50px); 
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}
div.accordion h3 dl dt,
div.accordion h3 dl dd {
	padding: 0;
	margin: 0;
	display: inline-block;
}
div.accordion h3 dl dt {
	flex-grow: 1;
	font-weight: normal;
}
div.accordion h3 dl dd {
	text-align: right;  
	flex-basis: 25%;
	min-width: 25%;
	position: relative;
	font-weight: bold;
	padding-right: 20px; 
}
div.accordion div.accordion-header h3 dl > * { 
	font: 21px/25px Roboto;
	font-style: italic;
	font-weight: normal; 
}
div.accordion div.accordion-footer h3 dl > * { 
	font: 24px/29px Roboto;
	font-weight: bold;
	color: #858585;
	color: var(--gray); 
}
div.accordion div.accordion-header h3 dl dd {
	padding-right: 0;
}
div.accordion h3 dl dd:before { 
	display: none;
	font-size: 0.7em;
	font-weight: normal;
	font-style: italic;
	color: #858585;
	color: var(--gray);
	position: relative; 
	content: "";
	width: auto;
	white-space: nowrap;
}
div.accordion div.accordion-footer h3 dl dd:before {
	font-style: normal;
}
div.accordion div.accordion-item button.accordion-button { 
	width: 30px;
	height: 30px;
	float: right; 
	line-height: 0;
	padding: 0;
	background-color: #CC0000;
	background-color: var(--red);
	border: 0; 
	border-radius: 15px !important;  
	color: white;
	box-shadow: 0 !important;
}
div.accordion div.accordion-item button.accordion-button::after { 
	color: white;
	background: url("../images/arrow_down.svg") no-repeat 0 0;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
}
div.accordion button.accordion-button:focus {
	outline-width: 0 !important;
	outline: 0 !important;
	box-shadow: 0 0 0 0 rgba(13,110,253, 0.25) !important;
}
div.accordion div.accordion-item div.accordion-body {  
	padding: 1rem 2rem;
	margin: 0;  
	border: 0;
} 
/* IE11 */
div.accordion *[data-toggle="collapse"][aria-expanded="true"] .card-header {
	 -webkit-transform: rotate(180deg);
	 -moz-transform: rotate(180deg);
	 -ms-transform: rotate(180deg);
	 -o-transform: rotate(180deg);
	 transform: rotate(180deg);
}
/*=====================================================
	END OF PROGRAM ACCORDIONS
  =====================================================*/  


  
/*=====================================================
	Balance Chart, Tables
  =====================================================*/   
div.table-wrapper {
	max-width: 100%; 
	width: auto;
	overflow: auto;
	text-align: left; 
	padding: 0;
	margin: 0;  
	position: relative;
}   
div.table-wrapper:after {
	content: "Please scroll to view the full table content \02192"; 
	position: relative;
	width: 100%; 
	display: block;
	font-style: italic;
	font-size: 14px;
	color: #0028A0; 
	padding: 0.2rem;
	padding-bottom: 0.75rem;
	margin: 0.25rem 0;
	display: none;
}


*.mceTmpl {  
} 
*.mceTmpl:before,
*.mceTmpl:after {
	content: "";
	clear: both;
	display: block;
	float: none;  
}

table {  
	min-width: 45%;
	position: relative; 
	display: table;
	table-layout: fixed;	
	margin: 0;
	margin-bottom: 1rem;
}
*.mceTmpl + *.mceTmpl, 
table + table {
	margin-top: 1.5rem;
}
table.flexible {
	table-layout: auto;
}
tbody {
	border: 0px solid rgba(0,0,0,.125);
	border-width: 0 1px 1px  0;
	border-style: collapse;
	margin: 0 0 0 0; 
}
table::after {
	content: " ";
	display: block;
	clear: both;
	float: none;
}
table tr {
} 
table th,
table td {
	border: 0px solid rgba(0,0,0,.125);
	border-width: 1px 0 0 1px;
	padding: 0.35em 0.6em; 
	text-align: left;
	min-width: 100px;
	color: black;
	text-overflow: ellipsis;
} 
table th {
	background: #F0F0F2; 
	color: black;
	text-align: center;
	font-weight: normal;
	white-space: nowrap; 
}  
table th:empty {
	visibility: hidden;
	border-top-color: white;
	border-left-color: white;
}
table tr:nth-of-type(2) td { 
}
table tr td {
	text-align: center;
}
table tr td.label,
table.stats tr td:first-child { 
	color: black; 
	text-align: left;  
	background: #F0F0F2;
	white-space: nowrap;
	width: auto;
}  
table tr:nth-of-type(2) td.label { 
}
table p {
	margin: 0;
	padding: 0;
	font-size: inherit; 
}
table p > p {
	padding-top: 1em;
}
div.table-wrapper + p:not(.footnote),
table + p:not(.footnote) {
	clear: both; 
	margin-top: 1.5em;
}
div.table-wrapper + p.footnote,
table + p.footnote {
	margin-top: 0.75rem;
	margin-bottom: 1.5rem;
}
p.footnote + p.footnote { 
	margin-top: -1rem;
}


div.stats {
	border: 1px solid rgba(0,0,0,.125);
	text-align: center; 
	font-weight: normal; 
	margin: 0; 
	margin-bottom: 0.5rem;
	padding: 0;
	padding-bottom: 0.0rem;
	width: auto;
	min-width: 45%;
	display: inline-block;
} 
div.stats + div.stats { 
	margin-right: 0;  
}
div.stats div {
	padding: 0.35rem 0.25rem;
	margin: 0; 
	margin-bottom: 1rem;
	background: #F0F0F2;  
	font-size: 14px;
	line-height: 1.3em;
	font-weight: normal;
	font-style: italic; 
	border-bottom: 1px solid rgba(0,0,0,.125);  
}
div.stats div h3,
div.stats div h4 {
	margin: 0;
	margin-bottom: 0.15em;
	padding: 0;  
	font-size: 18px;
	font-weight: 24px;
	font-style: normal;
	font-weight: normal;
}
div.stats div span {
	display: block;
	font-size: 14px;
	line-height: 1.3em;
	font-weight: normal;
	font-style: italic;
	margin-top: 0.3rem;
}
div.stats p {
	margin: 0;
	padding: 0.10rem 0 0.20rem 0;  
} 
div.stats div p { 
	font-family: inherit;  
	padding-top: 0;
}
/*=====================================================
	END OF TABLES
  =====================================================*/  

  
  
/*=====================================================
	Modals
  =====================================================*/  
div.modal {
	display: node;
}
div.modal *.btn {
	border-radius: 4px;
}
div.modal *.btn:focus,
div.modal *.btn:active {
	outline: none !important;
	box-shadow: none;
}
div.modal div.modal-header {
	background: #CC0000;
	color: white; 
}
div.modal-header button.close {
	opacity: 1;
	margin-bottom: 0 !important; 
}
div.modal-header button.close:focus,
div.modal-header button.close:link,
div.modal-header button.close:active {
	border: 0 !important;
	outline: none;
}
div.modal-header button.btn-close  {
	color: white !important;  
}
div.modal-header button.btn-close:hover {
	background-color: #CC0000 !important;
}
div.modal-header h5 {
	margin: 0;
}
div.modal-body { 
	padding: 1.5rem; 
}
div.modal-body form#formTerms { 
	margin: 0;
	padding: 0;
	padding-bottom: 1rem;
	text-align: right;	
}
div.modal-body a {
	font-size: 1.1em;
	font-weight: bold;
}
div.modal-body *.btn { 
}
div.modal button.* { 
}
div.modal div.modal-footer button { 
} 
/*=====================================================
	END OF MODALS
  =====================================================*/  

/******************************************************
	END OF Main Content Area
*******************************************************/



/******************************************************
	Responsive / Mobile
*******************************************************/
/* Additional disclaimer links */
@media (min-width: 1500px) {
	div.chart a.nav_popup {
		position: absolute;
		white-space: nowrap;
	}
}

@media (max-width: 1250px) {
	div.chart a.nav_popup {
		position: relative;
		left: -20px;
		top: -30px;
		clear: both; 
		white-space: nowrap;
	}
}
@media (max-width: 800px) {
	div.chart a.nav_popup {
		position: relative;
		left: -20px;
		top: -20px;
		clear: both;
		white-space: nowrap;
	}
	section.hero div.chart a.nav_popup {
		display: block;
	}	
	section.hero div.nav_popup {
		display: none;
	}
}
/* END OF ADDITIONAL MODAL LINKS */



@media (min-width: 1200px){
	section#hero_home div#hero_bg {  
		width: 56%;
		width: 50%; 
	} 
	section#hero_home div.container {   
		width: 44%;
		width: 50%; 
	}
	div.container {
	    max-width: 1100px; 
	}
}

@media (max-width: 1200px){
	.home_icon{
		margin-right: 5px;
		margin-left: 5px;
	}
}

@media (min-width: 993px) {
	div.home_hero_image {
		height: 100%;
		width: 100%;
		background: url("../images/home/home_hero_wide.jpg");
		min-height: 300px;
		background-repeat: no-repeat;
		background-position: right top;
		background-size: cover; 
	}
}

@media (max-width: 992px) {
	div.container {
		max-width: 100%;
		width: auto;
		padding-right: 2rem;
		padding-left: 1rem; 
	}
	nav.header {
		padding-right: 1rem;
	}
	footer div.container { 
		padding-right: 1rem;
		padding-left: 1rem;
	}
	.home_icon{
		width: 150px;
	}
 
	.ie_page_hero{
		margin-top: 0px;
	}

	footer div.container { 
		border-radius: 0; 
	}
}


@media (max-width: 935px) {
	.container{
		width: 100%;
		max-width: 100%;
	} 
	
	div.home_hero_image {
		background-size: cover;
	}
}


/* Mobile theme */
@media (max-width: 800px) { 
	nav.header {  
		padding: 0.75rem 1rem;
		margin-bottom: 0;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	}
	div.header_links {
		margin-top: 0;
		padding-top: 0;
		display: none; 
	}
	div.header_links div.links { 
		float: none;
		text-align: left;
		width: 100%;
		overflow: hidden;
		margin: 0;
		padding: 0; 
	}
	div.header_links div.utility_nav { 
	    position: relative; 
	    text-align: left;
	    float: none;
	    padding: 0.75rem 0 0.25rem 0;
	}
	div.header_links div.links a {
		margin: 0;
		padding: 0.15rem 0;
		display: block;
	}
	div.header_links div.utility_nav a + a { 
		border-left: 1px solid var(--gray, #858585);
	} 
	
	section#hero_home { 
		display: block;
	}
	section#hero_home > div {
		 display: block;
		 clear: both;
		 width: 100%;
	}
	section#hero_home div#hero_bg {
		width: 100%;
		min-height: 180px;
		background-size: cover;
	}
	section#hero_home div#hero_bg div#hero_gradient {
		display: none;
	}
	section#hero_home div.container {
		padding: 0 1rem; 
		height: auto;
		min-height: 0;
		width: 100%;
	}
	div.row div.col-12 {
		padding-bottom: 1.5rem;
	}
	section.hero {
		margin-top: 120px;
	} 
	.rounded_corners{
		border-radius: 0px;
	} 

	
	div.accordion div.accordion-item h3 {
		border-radius: 0;
		margin-left: 18px;
	}
	div.accordion div.accordion-item h3:before {
		border-radius: 0;
		left: -18px; 
	}
	div.accordion div.accordion-item div.accordion-body { 
		padding-left: calc(2rem + 8px);
	}
	div.accordion div h3 dl dd:before {
		display: block;
	}
	div.accordion div.accordion-header h3 dl dd {
		display: none
	}
	

	div#mobile_burger {
		display: inline-block;
	}
	.mobile {
		display: block
	}
	 

	/* HERO */

	.hero_text_mobile h1{
		font-size: 28px;
	}

	.hero_text_mobile { 
		background-color: #43494D;
		padding-bottom: 60px;
		min-height: 100px;
		color: #ffffff;
	}

	.hero_text_mobile span{
		width: 100%;
	}

	.home_hero_image_mobile { 
		background: url("../images/home/home_hero_wide.jpg") no-repeat 0 0;
		background-size: cover; 
		object-fit: cover;
		object-position: 0% 0%; 
		width: 100%;
		height: 240px; 
		margin-bottom: 20px
	}

	.hero_text_mobile .container{
		padding-top: 0px;
		padding-bottom: 40px;
	}
	
	.white_mask{
		background-color: transparent;
	}

	div.chart {
		float: none;
		padding-top: 0px !important;
		margin: 0 auto;
		margin-top: -50px;
		margin-bottom: 1.5rem;
		height: 250px;
		position: relative;
		width: 235px;
		padding-left: 20px;
		z-index: 3;  
	}
	
	div.chart_text p {
		width: 100% !important;
	}

	#chart{
		width: 224px; 
	}

	
	#chart svg{
		margin-top: 23px;
    	margin-left: -30px;
    	margin-right: -30px;  
	} 
	div.home_icon_bg {
		margin-top: 0px;
		min-height: 90px;
	}
	div.home_icon_bg span.currency {
		display: inline-block;
		margin-left: 0.5rem;
	}
	
	div.ta_cards div.col-12 {
		margin-bottom: 1rem;
	}
	.ta_cards .card {
		margin-bottom: 15px;
		max-width: 100%;
		top: 0px;
		height: 100% !important;
	}

	.ta_cards .mb-4{
		margin-bottom: 15px !important;
	}
	/*
	.detail_item .col{
		padding-bottom: 10px;
	}
	*/


	
	.inner_page_chart{
		right: 15px;
		margin-bottom: 0px;
		margin-top: -20px;
	}
	.inner_page_hero p{
		width: 100%;
	}

	.hero p{
		margin-bottom: 40px;
	}

	.no_chart_hero p{
		width: 100% !important;
		padding-bottom: 5px;
	}

	.page_hero{
		width: 100%;
	    height: 100px;
	    border-radius: 8px;
	    clip-path: polygon(100% 0%, 0% 60%, 0% 100%, 100% 100%);
	}
	.page_hero:before{
		margin-top: 51px;
	}

	nav.header.pb-lg-4 { 
		padding-bottom: 0 !important;
	}

	p + ul { 
		margin-top: 0.4em
	}
	
	footer div.container div.row { 
		padding: 1rem 0;
	}	
}



@media (max-width: 760px) {
	div.col,
	div.col-12 { 
		padding-bottom: 1rem; 
	}
	section#news div.card > img {
		height: 140px;
		object-fit: cover; 
	}
	div.accordion div h3 dl { 
	}
	div.accordion div h3 dl dt {
		display: block;
		width: 100%;
		margin-bottom: 0.5rem;  
	}
	div.accordion div h3 dl dd { 
		width: calc(50% - 30px);
		flex-basis: 50%;
		text-align: left; 
	}
	div.accordion div h3 dl dd:before {
		font-size: clamp(3vmin, 0.7rem, 2.5vw); 
	}
	div.accordion div h3 dl dd:empty:before {
		display: none;
	}
	div.accordion div.accordion-body div.stats,
	div.accordion div.accordion-body table {
		width: 100%;
		white-space: normal; 
	}
	div.accordion div.accordion-body table th,
	div.accordion div.accordion-body table td {
		width: auto;
		min-width: 0;
		white-space: normal; 
	}
	
	footer div.container {
		margin: 0;
		padding: 1rem 1rem;
	}
	footer div.container div.row {
		margin: 0;
		padding: 0; 
	}
	footer div.row > div.col { 
		flex: 1 0 100%; 
		padding: 0.75rem 0; 
		margin: 0.25rem 0; 
		border: 0;
		border-bottom: 1px solid #858585;
	} 
	footer ul.links { 
		margin: 0;
		padding: 1rem 1rem; 
		text-align: left;
	}
	footer ul.links li {
		margin: 0;
		margin-bottom: 0.25rem;
		padding-left: 0.25rem;
		display: list-item;
		list-style: disc;
	}
	footer ul.links li a {
		margin: 0;
		padding: 0;
	}
}


@media (max-width: 490px) {
	img.home_hero_image_mobile { 
		object-position: 0% 100%;
		object-fit: cover;
    	height: 206px;
    	border: 0
	} 
}
/******************************************************
	END OF Responsive / Mobile
*******************************************************/