﻿@charset "utf-8";

:root {
	/* Theme Colors */
	--color-theme		: #0D2F4F; 
	--color-white		: white;
	--color-black		: black; 
	--color-yellow		: #FFF601;
	--color-gray		: #D9D9D9;
	--color-gray-light	: #EEEEEE;
	--color-gray-dark	: #979797;
	--color-blue		: #005B94;
	--color-blue-light: #87DEFF;
	--color-bg-light	: #EBF3F6; 
	
	/* Font */
	--font-family					: "TradeGothicLT", Verdana, Arial, sans-serif;
	--font-family-BoldTwo			: "TradeGothicLT-BoldTwo", Verdana, Arial, sans-serif;
	--font-family-BoldCondTwenty	: "TradeGothicLT-BoldCondTwenty", Verdana Arial, sans-serif;
	--font-family-Oblique			: "TradeGothicLT-Oblique", Verdana, Arial, sans-serif;
	--font-family-CondEighteen		: "TradeGothicLT-CondEighteen", Verdana, Arial, sans-serif;
	--font-color						: #2B2B2B;
	--font-color-blue					: #0D2F4F;
	
	/* Form */
	--radio-selected-color		: #C1CD23; 
	--radio-border-color		: #97979B;
	--field-border-color		: #0D2F4F;
	--label-color				: #005B94;  
	
	/* View Toggle */
	--toggle-on	: #032D52;
	--toggle-off: white;
	
	/* Home levels */
	--level1: #032D52;
	--level2: #1D78B6;
	--level3: #4FA6C2;
	--row-level1-color: rgba(13, 47, 79, 0.26); 
	--row-level2-color: rgba(57, 120, 177, 0.30); 	
	--row-level3-color: rgba(101, 165, 191, 0.42);
	--row-border-color: #C3C3C3;
}

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

/* iOS */
::-webkit-scrollbar { 
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,1); 
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

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

body {
	padding: 0px;
	margin: 0px;
	background-color: white; /* Fallback */
	background-color: var(--color-white);
	color: #2B2B2B; /* Fallback */
	color: var(--font-color);
	font: 18px/27px var(--font-family);
	font-weight: normal; 
	position: relative;
	height: 100vh;
	width: 100%;
	min-width: 320px; 
}

nav,
section { 
	margin: 0;
	padding: 0;
	padding-bottom: 1.5rem; 
}
nav::after,
section::after {
	position: relative;
	content: "";
	display: block;
	clear: both;
	float: none;
	border: 0;
}
section { 
	padding: 0 0;
} 
div.container {
	max-width: 1066px; 
	width: min(auto, 1066px);
	padding: 2rem 0rem;  
}

.clear_float {
	clear: both; 
}

h1,
h2,
h3,
h4,
h5 {
	padding: 0;
	margin: 0; 
	font-weight: normal;
	color: var(--color-theme);
}
h1 {
	font: 34px/39px var(--font-family);
	font-weight: bold;
	color: var(--color-theme);
	padding-bottom: 7px;
	padding-bottom: 1rem;
}
h2 {
	font: 22px/27px var(--font-family-BoldTwo);
	font-weight: normal;
	padding-bottom: 10px;
}
h2.title,
h2.featured {
	background: url("../images/icon_featured.svg") no-repeat top left;
	background-size: 42px 42px;
	padding-left: 46px;
}
h3 {
	font: 22px/27px var(--font-family);
	font-weight: bold;
	padding-bottom: 10px; 
	color: var(--color-theme);
}
h4 {
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 7px;
}
h5 {
}

i,
em {
}
b,
strong {
	font-family: inherit;
	font-weight: bold;
}
p {
	padding: 0;
	margin: 0;
	margin-bottom: 1rem;
	-webkit-font-smoothing: antialiased; /* Chrome, Safari */
	-moz-osx-font-smoothing: grayscale; /* Firefox */
	text-rendering: optimizeLegibility;
}
p.large-text {
	font: 22px/26px var(--font-family);
	color: var(--font-color);
}
p.small-text {
	font: 18px/21px var(--font-family);
	color: var(--font-color);
}

a,
a:hover {
	color: #0072ba;
	color: var(--color-blue);
	color: inherit;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a.button {
	background-color: var(--color-theme);
	color: white;
	font: 18px/22px var(--font-family-CondEighteen);
	font-weight: bold;
	text-transform: uppercase;
	padding: 10px 32px;  
	display: inline-block;
	width: auto;
	float: none
}
*.text-blue {
	color: var(--font-color-blue);
}

div.footnote,
p.footnote { 
	font: 12px/14px var(--font-family);
	padding: 0;
	padding-bottom: 10px;
	margin: 0;
}

table,
th, 
td {
	vertical-align: top;
}

var { 
	font-style: normal; 
}

/*=====================================================
	Dev Debug
  =====================================================*/
div.debug {
	border: 1px solid var(--color-gray);
	padding: 1rem;
	background-color: #F5F5F5;
	margin-bottom: 0.75rem;
} 
div.debug dl,
div.debug dt,
div.debug dd {
	margin: 0;
	padding: 0;
	font: 15px/1.2em "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: black;
}
div.debug dl {
	padding: 2px 0;
}
div.debug dl > * {
	display: inline-block;
}
div.debug dl dt {
	font-weight: normal;
	width: 200px;
}
div.debug table { 
	caption-side: top; 
	font: 13px/1.1em 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
	background-color: white; 
	margin: 0;
}
div.debug table caption {
	display: table-caption;
	text-align: left;
	font-weight: bold;
	color: black; 
}
div.debug table tr:nth-of-type(even) {
	background-color: #EEEEEE;
}
div.debug table tr th {
	background-color: white;
}
div.debug table tr:hover td {
	background-color: #f7f0c9;
} 
div.debug table.table.limits tr > th:nth-of-type(3n+1) {
	text-transform: capitalize;
}
div.debug table.table.limits tr > td:nth-of-type(3n+2) {
	color: #003366;
	font-weight: 600;
}
div.debug table.table.limits tr > *:nth-of-type(3n+3) {
	border-right: 1px solid var(--color-gray);
}
/*=====================================================
	END OF DEV DEBUG
  =====================================================*/


/******************************************************
	Header 
*******************************************************/
nav.header {
	top: 0; 
	left:0;
	display: block;   
	width: 100%;
	position: fixed;
	border: 0;  
	background-color: white;
	z-index: 100;
	margin: 0 auto;
	padding: 0; 
}
nav.header > * {
	position: relative;
}
nav.header div.container {  
	height: 85px;
	padding: 30px 0;
	margin: 0 auto;
	z-index: 100;   
	border-bottom: 0px solid var(--color-theme); 
}
nav.header a#logo {
	width: 90px;
	height: 25px; 
	z-index: 99;
	position: relative;
	display: inline-block;
	background: url("../images/logo.svg") no-repeat 0 0;
	background-size: 90px 25px;
	float: none;
}
div.header_links {
	display: inline-block;
	float: right;
	text-align: right;
	width: auto;
	height: 25px;
	position: relative;
	margin: 0;  
}
div.header_links::after {
	content: "";
	clear: both;
	display: block;
	float: none;
}
div.header_links div.links {
	float: right;
	clear: both;
}
div.header_links div.links:before {
	content: "";
	float: none;
	display: block;
	clear: both;
}
div.header_links div.links a { 
	color: var(--font-color-blue);
	font: 23px/25px var(--font-family-CondEighteen);
	font-weight: bold; 
	text-transform: uppercase;
	margin-bottom: 10px;
	margin-left: 2.5vw;
	margin-left: clamp(1rem, 2.5vw, 2.5rem);
	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: 600;
}  
div#mobile_burger {
	display: none;
	float: right;
	margin-top: -8px;
	line-height: 40px;
	cursor: pointer;
}
div#mobile_burger div.bar {
	width: 35px;
	height: 5px;
	background-color: var(--color-theme);
	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);
} 
/******************************************************
	END OF HEADER
*******************************************************/


/******************************************************
	Footer
*******************************************************/
footer {
	font: 12px/15px var(--font-family);
	font-weight: bold;
	color: white;
	padding: 1vh 0;
	background-color: var(--color-theme);
}
footer div.container {
	padding-right: 20%;
	background: url("../images/logo_footer.svg") no-repeat right center;
	background-size: 172px 48px; 
}
footer h3,
footer h4 {
	font: 22px/25px var(--font-family);
	font-weight: bold;
	color: white;
	padding: 0;
	margin: 0;
	margin-top: 1em;
	padding-bottom: 10px;
}
footer div.row {
	padding: 1rem;
}
footer div.row > div {
	padding: 0rem 1.5rem;
}
footer div.row > div + div {
	border-left: 1px solid #979797;
	border-left: 1px solid var(--color-gray-dark);
}
footer p {
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
	font: 12px/15px var(--font-family);
}
footer a,
footer a:hover {
	color: white;
	color: var(--color-white);
	font-weight: normal;
	text-decoration: underline;
}
footer a:hover {
	text-decoration: none;
}
footer ul.links {
	list-style: none;
	margin: 0;
	padding: 0;
	clear: both;
}
footer ul::after {
	display: block;
	content: "";
	clear: both;
}
footer ul.links li {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-right: 0.5em;
	display: inline-block;
	float: left;
	height: 12px;
	font-size: 12px;
	line-height: 12px;
}
footer ul.links li + li {
	padding-left: 0.5em;
	border-left: 1px solid white;
}
footer ul.links li a {
}
/*******************************************************
	END OF FOOTER
********************************************************/



/******************************************************
	Main Content Area
*******************************************************/
.no_wrap {
	white-space: nowrap !important;
	display: inline-block;
}

.desktop_only {
	display: flex;
}

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


div[data-mt-year] {
	border: 0px solid fuchsia;
	display: block;
}
div[data-mt-year="multi"] {
	border: 0px solid #66cdaa;
}
div[data-mt-year]:empty {
	display: none;
}
label div[data-mt-year] {
	color: var(--color-gray-dark);
	font-weight: normal;
}

/*=====================================================
	Home
  =====================================================*/
section {
	padding: 1rem 0;
	margin: 0rem 0;
	background-color: white;
	width: 100%;
	clear: both;
	float: none;  
}
section + section {
	margin: 2rem 0;
}
section.home,
section.intro {
	font: 24px/27px var(--font-family);
	font-weight: normal;
	padding: 0;
	margin: 0; 
	margin-top: 85px; 
	background-color: white;
	width: 100%;
	clear: both;
	float: none; 
}
section.content div.container,
section.intro div.container {
	border: 3px solid var(--color-theme);
	border-width: 3px 0 3px 0; 
	padding: 2rem 0;
	margin-bottom: 2em
}
section.home div.container {
	padding: 0;
	margin-bottom: 0
}

section.home div.intro { 
	padding: 2rem 4rem 2rem 0;
	font: 22px/27px var(--font-family);
	font-weight: bold;
	color: var(--color-theme); 
}
section.home div.highlight {
	font: 18px/22px var(--font-family);
	font-weight: bold;
	background-color: var(--color-theme);
	color: white;
}
section.home div.highlight div#hero {
	width: 100%;
	height: 153px;
	background: url("../images/home_hero.png") no-repeat 0 0;
	background-size: cover;
}
section.home div.highlight div#hero_desc {
	padding: 2rem 1.5rem;
}
section[theme="tabs"] div.container-fluid {
	background-color: var(--color-bg-light);
	border-top: 4px solid var(--color-blue);
}
section[theme="tabs"] div.container.nav { 
	padding-bottom: 0;
	text-align: center;
} 

ul.nav { 
	margin-right: auto; 
	margin-left: auto;
	border-radius: 0;
	position: relative;
}
ul.nav li.nav-item {
	width: 386px;
	margin: 0 2em; 
}
ul.nav li.nav-item + li {
}
ul.nav li.nav-item button {
	border-radius: 0; 
	background-color: var(--color-gray-light);
	color: var(--color-theme);
	font: 23px/28px var(--font-family-CondEighteen);
	font-weight: bold;
	text-transform: uppercase;
	padding-top: 1rem;
	padding-bottom: 1rem;
	height: 100%;
}
ul.nav li.nav-item button.active {
	background-color: var(--color-theme); 
	color: var(--color-white);
}
.tab-content {
}
.tab-content div#pane_1 {   
}
div.tab-content div#pane_1 div.row {  
}
.tab-content > .active { 
}
div.tab-content p { 
	line-height: 21px;
}
/*=====================================================
	Home Levels
  =====================================================*/ 
table.levels {
	width: 100%;
	padding: 0;
	margin: 2rem 0 0 0;
	border-collapse: separate;
	border-spacing: 0 8px;
}
table.levels tr > * {
	text-align: center;
	padding: 0 0; 
}
table.levels tr th {	
	font: 18px/22px var(--font-family);
	font-weight: bold;
	color: var(--color-theme); 
}
table.levels tr td {
	padding: 0;
	line-height: 46px;
	height: 46px; 
	font-family: var(--font-family);
	border: 1px solid var(--color-theme);  
}
table.levels tr td:first-of-type {
	font: 18px/22px var(--font-family);
	line-height: 46px;
	font-weight: bold;
	white-space: nowrap;
	text-align: left; 
	padding-left: 28px;
	position: relative;
}
table.levels tr td:first-of-type aside {
	display: inline-block;
	position: absolute;
	top: 14px;
	left: -15px; 
	width: 50px;
	height: 20px;
	padding: 0;
	margin: 0;
	background-color: var(--color-theme);
	color: white;
	font: 10px/22px var(--font-family); 
	line-height: 20px !important;
	font-weight: bold;
	text-transform: uppercase; 
   transform: rotate(-90deg);
   text-align: center;
}
table.levels tr td span {
	display: inline-block;
	font: 12px/15px var(--font-family);
	line-height: 46px;
}
table.levels tr td:not(:first-of-type) {
	border-left: 0;
	text-align: center;
}
table.levels tr td:not(:last-of-type) {
	border-right: 0;
}
table.levels tr td:last-of-type { 
	padding: 0;
	padding-left: 2px;
	width: 48px;
	text-align: center;
	background-color: var(--color-theme);
}
table.levels tr td:last-of-type a.info {  
	cursor: pointer;
	display: block;
	padding: 0; 
	width: 46px;
	height: 46px; 
	margin: 0px auto;
	background: url("../images/icon_info.svg") no-repeat center center; 
	background-color: var(--color-theme);
	background-size: 22px 22px; 
}

table.levels tr[level="a1"] td { 
	border-color: var(--level1); 
}
table.levels tr[level="a1"] td aside,
table.levels tr[level="a1"] td:last-of-type,
table.levels tr[level="a1"] td:last-of-type a.info { 
	background-color: var(--level1);
}
table.levels tr[level="a2"] td { 
	border-color: var(--level2);
}
table.levels tr[level="a2"] td aside,
table.levels tr[level="a2"] td:last-of-type,
table.levels tr[level="a2"] td:last-of-type a.info { 
	background-color: var(--level2);
}
table.levels tr[level="a4"] td { 
	border-color: var(--level3);
}
table.levels tr[level="a4"] td aside,
table.levels tr[level="a4"] td:last-of-type,
table.levels tr[level="a4"] td:last-of-type a.info { 
	background-color: var(--level3);
} 



div#pane_1 div.row {
}
div#pane_1 div.row > div {
	position: relative;
}
div#pane_1 div.row > div:nth-of-type(1) {
	padding-left: 0;
}
div#pane_1 div.row > div:nth-of-type(2) {
	padding-right: 0;
}

div#level_chart {
	background: url("../images/home_levels_chart.png") no-repeat right center;
	background-size: cover;
	position: absolute; 
	display: block;
	width: 100%;
	height: 338px;
 	right: 0;
 	top: 65px;
}
div#level_chart div[level] {
	font: 13px/15px var(--font-family);
	color: white;
	width: 280px;
	padding: 0;
	margin: 0;
	position: absolute; 
}
div#level_chart div[level] p {
	font: 13px/15px var(--font-family);
}
div#level_chart h3 {
	font: 16px/18px var(--font-family);
	font-weight: bold;
	padding: 0;
	margin: 0;
	margin-bottom: 4px;
	color: white;
}
div#level_chart label {
	background-color: var(--color-yellow);
	color: var(--color-theme);
	padding: 0 2px;
	display: inline-block;
}
div#level_chart div[level="level_1"] {
	bottom: 0rem;
	left: 2rem;
}
div#level_chart div[level="level_2"] {
	top: 9rem;
	left: 12rem;
}
div#level_chart div[level="level_3"] {
	top: 3em;
	right: 2em; 
	width: 260px;
}
div.box {
	border: 1px solid var(--color-theme);
	padding: 1.0em 2.5em; 
	font-size: 22px;
	line-height: 26px;
} 
div.box a.button {
	display: inline-block;
	width: auto;
	margin: 0 auto;
	padding: 0px 20px;
	font: 23px/43px var(--font-family-CondEighteen);
	font-weight: bold;
	text-transform: uppercase;
	color: white;
	background: var(--color-blue);
}
a.button:hover {
	text-decoration: none;
}



div#pane_2 div.row {  
}
div#pane_2 div[class^="col"] {  
}
div#pane_2 div[class^="col"] + div[class^="col"] {
	margin-top: 1em;  
}
div#pane_2 div[class^="col"] > * {
	height: auto; 
}
div#pane_2 div[class^="col"] h3 { 
	font: bold 24px/29px var(--font-family);
	color: var(--color-blue);
	padding: 0;
	margin: 0;
}
div#pane_2 div[class^="col"] h5 {
	margin: 0;
	padding: 0;
	font: 18px/29px var(--font-family);
	font-weight: normal;
	color: var(--color-blue);
}
/*=====================================================
	END OF HOME LEVELS
  =====================================================*/
  
section[step="1"],
section[step="2"] {
	background-color: var(--color-bg-light);
}
section[step] div.container { 
	padding-right: 3em;
	padding-left: 3.0em;
} 

div.strategy,
section[step="2"],
section[step="3"] {
	display: none;
}


h2.step { 
	font: 22px/27px var(--font-family);
	font-weight: bold;
	margin: 0;
	margin-bottom: 1rem;
	margin-left: -2.5em;
	padding: 0;  
	padding-bottom: 10px;
	padding-left: 2.5em; 
	position: relative; 
}
h2.step span { 
	border-radius: 23px;
	width: 46px;
	height: 46px;
	font: 30px/46px var(--font-family-BoldCondTwenty);
	display: inline-block;
	background-color: #87DEFF;	
	background-color: var(--color-blue-light);
	text-align: center; 
	padding: 0; 
	position: absolute;
	top: -10px;
	margin-right: calc(1.8em - 46px); 
	margin-left: -1.8em;
} 



form {
	border: 0px solid green;
} 
form div.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
  flex-wrap: wrap; 
}
form div.row > div[class*="col-"] {
  display: flex;
  flex-direction: column;
}
fieldset {
	border: 1px solid #0D2F4F;
	border-color: var(--color-theme); 
	width: auto;
	padding: 0.75rem 1rem 0.25rem 1rem; 
	margin: 2rem 0 2em 0;
	position: relative; 
	display: table-cell; 
	height: 100%;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.15em;
}
fieldset::before.
fieldset::after {
	content: "";
	clear: both;
	float: none;
	display: block;
	position: relative; 
}
fieldset legend { 
	position: relative;
	margin: 0;
	margin-top: -38px;
	margin-left: calc(-1 * (1rem + 2px)); 
	height: 18px;
	font: 18px/22px var(--font-family-BoldCondTwenty);
	text-transform: uppercase; 
} 


#form_rates {
	padding-bottom: 0.75em;
}
#form_rates div.rates {
	width: 100%;
	padding: 0; 
	margin: 0;
	position: relative;
	border: 0px solid red
} 
#form_rates div.rates div.rate {
	width: 25%;
	padding: 0.25rem 0;
	white-space: nowrap;
	font: 12px/15px var(--font-family);
	font-weight: normal;	
}
#form_rates div.rates div.rate div.label {
	font: 18px/22px var(--font-family-BoldTwo);
	font-weight: normal;
	padding-bottom: 10px;
	white-space: nowrap;
}
#form_rates div.rates div.rate div.label span {
	font: 12px/15px var(--font-family);
	font-weight: normal;
	padding: 5px 0;
	display: block;
} 
#form_rates label[for],
#form_rates div.rates div label {
	font: 12px/15px var(--font-family);
	font-weight: normal;
	padding: 0;
	display: inline-block;  
}

#form_rates div.rates div.rate { 
	width: 25%;
	padding: 0;
}
#form_rates div.rates div.rate div.field {
	width: 100%;
	display: block;
	white-space: nowrap; 
}
#form_rates div.rates div.rate label {
	font: 12px/33px var(--font-family-Oblique);
	font-weight: normal;
	padding: 0;
	display: inline-block;  
	display: none;
	float: left;
}
#form_rates div.rates div.rate input { 
	display: inline-block;
	float: left;
	clear: none;
}
#form_rates div.rates div.rate:first-of-type {
	width: 50%;  
}
#form_rates div.rates div.rate:first-of-type label {
	width: 50%;
	float: left;
	display: inline-block;
}
#form_rates div.rates div.rate:first-of-type div.label {
	padding-left: 50%;
}
#form_rates label[for] input[type="checkbox"] {
	float: left; 
	height: 15px;
	margin-right: 0.35rem;
}



a.info { 
	width: 30px;
	max-width: 30px;
	display: inline-block;   
}
h3 > a.info {
	cursor: pointer; 
	text-align: center;   
	float: none;
	background: url("../images/icon_info.svg") no-repeat center center; 
	background-color: var(--color-theme);
	background-size: 22px 22px;
	padding: 5px 10px;
	width: 42px;
	height: 32px; 	
	margin-bottom: -5px;
}
div.field {
	border: 0px solid red;
	position: relative;
	width: auto;
	padding: 0;
	margin: 0;
	margin-bottom: 0.8rem;
	display: block;
	clear: both; 
}
div.field::before,
div.field::after {
	display: block;
	clear: both;
	float: none;
	position: relative;
	content: "";
}
div.field[rateType]::before {
	position: relative;
	clear: both;
	content: "";
	display: block;
	width: auto; 
	margin: 0;
	margin-right: 0.5rem;
	padding: 0.2rem;
	font-style: italic;
	font-size: 12px;
	white-space: nowrap;  
}
div.field[rateType="above"]::before { 
	content: "Above SSWB"; 
}
div.field[rateType="below"]::before { 
	content: "Below SSWB"; 
}
div.field > * { 
} 
div.field label {
	display: block;
	font: 18px/22px var(--font-family);
	font-weight: bold;
	padding: 0;
	padding-bottom: 5px; 
	margin: 0; 
}
div.field input {
	clear: both;
	display: inline-block;
	width: 126px;
	font-size: 14px;
	line-height: 32px;
	padding: 0px 4px; 
	float: left;
	border-radius: 0;
	border: 1px solid var(--color-theme);
}
div.field input[disabled] {
	background-color: var(--color-gray);
	border-color: var(--color-gray);
} 
div.field[info] input {
	width: 96px;
}
div.field input + a.info { 
	cursor: pointer;
	color: white;
	text-align: center;
	font-weight: bold;  
	padding: 5px 12px;
	display: inline-block;
	width: 46px;
	height: 34px; 
	float: left;
	background: url("../images/icon_info.svg") no-repeat center center; 
	background-color: var(--color-theme);
	background-size: 22px 22px; 
}
div.field span.help {
	display: block;
	visibility: hidden;
}




/*=====================================================
	Views
  =====================================================*/ 
/* View Toggle */
fieldset#viewToggle {   
	margin-bottom: 2rem;  
	background-color: var(--color-bg-light); 
	border: 0;
}
fieldset#viewToggle dl { 
	width: auto;
	margin: 0 auto;
	display: block;  
} 
fieldset#viewToggle dt {
}
fieldset#viewToggle dd {
	text-align: center;
	padding-top: 0.5rem; 
}
fieldset#viewToggle dd+dd {
	padding-top: 0.5rem;
}
fieldset#viewToggle a {
	font: 14px/17px var(--font-family-BoldTwo);
	font-weight: normal; 
	padding: 10px 10px;
	text-align: center;
	margin: 0;
	display: inline-block; 
	color: var(--toggle-on);
	background-color: var(--toggle-off);
	border-radius: 8px 0 0 8px;
	min-width: 90px;
}
fieldset#viewToggle a:hover {
	cursor: pointer;
	text-decoration: none;
}
fieldset#viewToggle a.on {
	background-color: var(--toggle-on);
	color: var(--toggle-off); 
}
fieldset#viewToggle a.on:hover {
	cursor: default;
}
fieldset#viewToggle a+a {
	border-radius: 0px 8px 8px 0;
}


div.toolbox {
	padding: 1.5rem;
	margin: 0;
	margin-bottom: 1.5em; 
	border: 1px solid var(--color-theme); 
} 
div.toolbox legend {
	font: 18px/22px var(--font-family);
	font-weight: bold; 
}
div.toolbox ul.options {
	padding: 0;
	margin: 0;
}
div.toolbox ul.options li {
	list-style: none;
	padding: 0.5rem 0; 
}
div.toolbox ul.options li a.info {  
	cursor: pointer; 
	text-align: center;  
	display: block; 
	float: right;
	background: url("../images/icon_info.svg") no-repeat center center; 
	background-color: var(--color-theme);
	background-size: 22px 22px;
	padding: 5px 10px;
	width: 42px;
	height: 32px; 	
}
div.toolbox ul.options li label {
	text-align: left;
	padding-left: 36px;
	font-size: 22px;
	line-height: 24px;
	font-weight: bold; 
	color: var(--color-blue);
	width: auto;  
}
div.toolbox ul.options li label span {
	display: block;
	clear: both;
	font-size: 16px;
	line-height: 19px;
	font-weight: normal;
}
div.toolbox ul.options li label span.checkmark {
	margin-top: 5px
} 
  
div.views {
	clear: both;
	float: none;
	padding: 2em 0 0 0;
}
div.views::before {
	content: "";
	display: block;
	margin: 0;
	padding: 0;
	clear: both;
	float: none;
}
div.views > div[class^="col-"] { 
}
div.views > div[class^="col-"]:nth-of-type(2) {
	align-self: flex-end; 
	padding-bottom: 1.75rem;
}
div.views div[view] {
	width: 100%;
	padding: 0;
	margin: 0;
}
div.views div[view="chart_single"] {
	display: block
}
div.views div[view="table"],
div.views div[view="chart_multi"] {
	display: none;
}
figure.highcharts-figure { 
	padding: 0;
}
figure.highcharts-figure > div {
	min-width: 320px;
}
figure.highcharts-figure div#chart_multi { 
}

div.views div[view="table"] table {
	width: calc(100% - 2px);
	padding-left: 0; 
	margin-bottom: 0;
}
div.views div[view="table"] table tr > * {
	padding: 0.5rem 1rem; 
	text-align: center;
	border-right: 1px solid var(--row-border-color);
 	border-bottom: 1px solid var(--color-theme);
 	font: 18px/21px var(--font-family); 
 	color: var(--font-color);
}
div.views div[view="table"] table tr th {
	padding-top: 2em;
	padding-bottom: 10px;
	font: 22px/27px var(--font-family);
	font-weight: bold;
}
div.views div[view="table"] table tr:first-of-type th {
	padding-top: 0
}
div.views div[view="table"] table tr > th:first-of-type {
	padding-left: 0;
	text-align: left;
	color: var(--color-theme);
}
div.views div[view="table"] table tbody tr td { 
	padding: 1rem;
}
div.views div[view="table"] table tbody tr > td:first-of-type {
	text-align: left; 
	width: 260px;
	color: var(--color-theme);
	font: 18px/22px var(font-family); 
	font-weight: bold;
}
div.views div[view="table"] table tbody tr > *:last-of-type {
	border-right: 0;
}

div.views div[view="table"] table tr *.divider {
	padding: 0px !important;  
	width: 20px !important
}
div.views div[view="table"] table tr.level_a1 > *,
div.views div[view="table"] table tr.level_b1 > * {
	background-color: var(--row-level1-color);
}

div.views div[view="table"] table tr.level_a2 > *,
div.views div[view="table"] table tr.level_a3 > * {
	background-color: var(--row-level2-color);
} 
div.views div[view="table"] table tr.level_a4 > * {
	background-color: var(--row-level3-color);
}
div.views div[view="table"] table tbody {
	border: 0 !important;
}
*.level_a1,
tr.level_a1 > *,
tr.level_b1 > * {
	background-color: var(--level1);
	background-color: var(--row-level1-color); 
}
*.level_a2,
tr.level_a2 > *,
tr.level_a3 > * {
	background-color: var(--level2);
	background-color: var(--row-level2-color);
} 
*.level_a4,
tr.level_a4 > * {
	background-color: var(--level3);
	background-color: var(--row-level3-color);
} 




label.checkmark {
	display: inline-block;
	width: auto;
	min-width: 24px;
	min-height: 24px;
	padding: 0 0.5rem 0.2rem 0.5rem;  
	position: relative;
	cursor: pointer;  
}
label.checkmark input[type="radio"] {
	padding: 0;
	margin: 0;
	margin-right: 0px;
	margin-left: -10px;
	width: 10px !important;
	display: inline-block;
	-ms-transform: scale(1.0); 		/* IE 9 */
	-webkit-transform: scale(1.0); 	/* Chrome, Safari, Opera */
	transform: scale(1.0);
	position: relative;
	opacity: 0;
	cursor: pointer; 
	width: 0;
	height: 0;
}
label.checkmark input[type="radio"] ~ span.checkmark { 
	position: absolute;
	left: 0px; 
	top: 0px;
	display: inline-block; 
	content: "";  
	z-index: 2;
	-ms-box-sizing: border-box; 		 
	-khtml-box-sizing: border-box; 	 
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;    
	box-sizing: border-box;  
	outline: 0;
	outline-offset: 0;
	border: 1px solid var(--radio-border-color);
	background-color: white;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	cursor: pointer;  
	text-align: center; 
	transition: all 200ms ease;
}
label.checkmark input[type="radio"]:checked ~ span.checkmark {
	background-color: #C1CD23;
	background-color: var(--radio-selected-color);
	box-shadow: inset 0 0 0 4px white; 
}  
/*=====================================================
	END OF TABLE/CHART
  =====================================================*/ 


div.taxabletimeline {
	width: 100%;
	margin: 4em 0 2em 0; 
	padding: 0;
	padding-top: 0.75rem;
	padding-bottom: 1.25rem;
	border: 3px solid var(--color-blue);
	border-width: 3px 0 0 0; 
	position: relative;
	display: block; 
}
div.taxabletimeline::before,
div.taxabletimeline::after { 
	content: "";
	display: inline-block;
	position: absolute; 
	width: 15px;
	height: 15px;
	top: -9px; 
	background: url("../images/arrow.png") no-repeat 0 0;	
	background-size: 15px 15px;
}
div.taxabletimeline::before { 
  	left: -3px;
}
div.taxabletimeline::after {   
	right: -3px;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg); 
}
div.taxabletimeline span {
	font: 18px/22px var(--font-family);
	font-weight: bold;
	color: var(--color-blue);	
	position: absolute;
}



ul.options {
	padding: 0rem 2rem;
	margin: 2em 0; 
	position: relative; 
}
ul.options li {
	list-style: none;
	margin: 0;
	padding: 0.25rem 0.25em;
	text-align: center;
	position: relative;   
}
ul.options li label {
	position: relative;
	height: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;  	
}
ul.options li label > div {
	text-align: center; 
	font: 14px/17px var(--font-family);
	color: var(--font-color);
}
ul.options li label > div:first-of-type {  
	padding: 0 2rem 0.5rem 2rem;
	font: 22px/27px var(--font-family);
	font-weight: bold;
	color: var(--color-blue);
}
ul.options li label > div:last-of-type { 
	position: relative;
	display: block;
	text-align: center;
	padding: 0;
	padding-top: 0.5rem;
	margin: 0;
	margin-top: auto; 
}
ul.options li label > div:last-of-type label.checkmark {
	display: inline-block;
	width: auto;
	margin: 0 auto;
	padding: 0; 
}

section#summary { 
	border: 0px solid red
}
section#summary div.row > div[class^="col-"] {
	padding: 1rem 1em;
}
section#summary div.row > div[class^="col-"] > div {
	border: 1px sold red !important
}
section#summary div.item {
	width: 100%;
	padding: 0.75rem 1rem;
	margin: 0 auto;
	text-align: center;
	border: 1px solid var(--color-theme);
}
section#summary div.item var {
	display: block; 
	padding: 0.5rem;
} 
section#summary div.item p {
	font: 12px/17px var(--font-family);
	padding: 0 1em;
}
section#summary div.text-blue p.small-text {
	color: var(--font-color-blue);
	padding-right: 220px;
	position: relative; 
}
section#summary p.warning {
	background-color: var(--color-yellow);
	font: 18px/22px var(--font-family);
	font-weight: bold; 
	padding: 0.75rem 2rem;
	margin: 1rem 0;
}
section#summary a {
	color: inherit;
	font-weight: bold;
}
section#summary a.button {
	background-color: var(--color-theme);
	color: white;  
	top: 0;
	right: 0;
	position: absolute; 
}



div.divider {
	margin: 0.75rem 0;
	text-align: center;
	position: relative;
	font: 18px/22px var(--font-family);
	font-weight: bold;
	color: var(--color-blue);
	z-index: 1;  
	transform-style: preserve-3d;
}
div.divider span {
	background-color: white;
	padding: 0.75rem;
	color: var(--color-blue);
}
div.divider::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
	top: calc(50% - 1px);
	z-index: -1;
	transform: translateZ(-1px);
	border-top: 2px solid var(--color-blue);
}


section#resources {
	margin-top: 0;
	margin-bottom: 2em;
	display: block;
}
section#resources > div.container { 
	padding: 2em 3em;
}
section#resources > div.container h2 {
	font: 22px/27px var(--font-family);
	font-weight: bold;
	margin-bottom: 10px;
	color: var(--font-color);
} 
section#resources div.row > div {
	margin-bottom: 1rem; 
}
section#resources div.row div.container {
	background-color: var(--color-theme);
	color: white;
	width: auto; 
	height: 100%;
	padding: 1.5rem;
	padding-bottom: 0;
	color: white;  
} 
section#resources p {
	color: white;
	font: 15px/17px var(--font-family); 
}
section#resources h3 {
	font: 22px/26px var(--font-family-CondEighteen);
	font-weight: bold;
	color: white;
	text-transform: uppercase;
}
section#resources a.button { 
	color: var(--color-theme);
	background-color: var(--color-blue-light);
	width: auto;
	float: none;
}
section#resources ul { 
	margin: 0;
	padding: 0;
	list-style: none;
	clear: both; 
	position: relative;
	display: flex; 
	width: 100%;
}
section#resources ul li {
	list-style: none;
	vertical-align: top;
	margin: 0;
	padding: 0; 
	padding-left: 0.5rem; 
	width: calc(50% - 0.6rem);  
	flex: 1;
	border-left: 2px solid var(--color-blue-light);
	font: 16px/18px var(--font-family);
}
section#resources ul li a {
	font-weight: bold;
	color: white;
}

/*=====================================================
	Modals
  =====================================================*/
div.modal {
	display: none;
}
div.modal-dialog,
div.modal-content {
	outline: hidden !important;
	border: 0; 
	border-image-width: 0 !important;
}
div.modal-content {
	border: 2px solid var(--color-theme);
	border-radius: 0;
}
div.modal *.btn {
	border-radius: 4px;
}
div.modal *.btn:focus,
div.modal *.btn:active {
	outline: hidden !important;
	box-shadow: none;
}
div.modal div.modal-header { 
	background: var(--color-theme);
	color: white; 
	border: 0px solid var(--color-theme) !important;
	border-radius: 0;
}
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: hidden;
}
div.modal-header button.btn-close {
	color: white !important;
}
div.modal-header button.btn-close:hover {
	background-color: white !important;
	background-color: var(--color-white) !important;
}

div.modal-header h5 {
	margin: 0;
	font: 22px/27px var(--font-family);
	font-weight: bold;
	color: white;
}
div.modal-body {
	padding: 2em;  
	max-height: 600px;
}
div.modal-body form#formTerms {
	margin: 0;
	padding: 0;
	padding-bottom: 1rem;
	text-align: right;
}

div.modal-body *.btn {
} 
div.modal div.modal-footer {
	padding: 0; 
	border: 0;
}
div.modal div.modal-footer a {
	padding: 0.75rem;
	margin: 0;
	cursor: pointer;
	font: 22px/26px var(--font-family-CondEighteen);
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	border: 0;
}  
div.modal div.modal-footer a.off {
	display: none;
}
div.modal div.modal-footer a:not(.off) + a,
div.modal div.modal-footer a:last-of-type {
	border: 0px solid white;
	border-left-width: 1px;
}
div.modal div.modal-footer a:hover {
	text-decoration: none;
}

div.modal-body {
	font: 18px/21px var(--font-family);
	color: var(--font-color);
	padding: 2rem 2rem;
}
div.modal-body div.col {
	width: cacl(50% - 2em);
	margin-right: 0;
	padding-right: 2em; 
}
div.modal-body div.col + div.col {
	border-left: 1px solid var(--color-blue-light);
	padding-right: 0;
	padding-left: 2em; 
} 
div.modal-body h3 {
	font: 18px/22px var(--font-family);	
	font-weight: bold;
	padding: 0;
	padding-bottom: 10px;
	margin: 0;
	color: var(--color-theme);
	-webkit-font-smoothing: antialiased; /* Chrome, Safari */
	-moz-osx-font-smoothing: grayscale; /* Firefox */
	text-rendering: optimizeLegibility;	
}
div.modal-body ul {
	margin: 0 1rem;
	padding: 0;	
}
div.modal-body ul li {
	padding: 0;
	margin: 0;
	margin-bottom: 0.75rem;
}
div.modal-body table {
	margin: 2rem auto; 
}
div.modal-body table tr * {
	border: 1px solid var(--color-blue-light);
	border-width: 0 1px 1px 0;
	text-align: center; 
	padding: 1.25rem;
}
div.modal-body table tr th {
	border-right: 0;
	padding: 0.5rem 2px;
	text-align: left;
	font-weight: bold;
}
div.modal-body table tr > td:nth-of-type(1),
div.modal-body table tr > td:nth-of-type(3) {
	width: 45%;
}
div.modal-body table tr > td.label {
	width: 10%;
	background-color: rgba(135, 222,255, 0.16);
	font-weight: bold;
	vertical-align: middle;
	padding: 10px;
}
div.modal-body table tr > td:last-of-type {
	border-right: 0;
}
div.modal-body table.mobile {
	display: none;
}
div.modal-body table.mobile tr > * {
	text-align: left;
}
/*=====================================================
	END OF MODALS
  =====================================================*/

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




/******************************************************
	Responsive / Mobile
*******************************************************/
@media (min-width: 1200px) {
	div.container {
		max-width: 1100px;
	}	
}

@media (max-width: 1100px) {
	div.container { 
		max-width: calc(100% - 3vw);
		padding-right: 1.5vw;
		padding-left: 1.5vw;
	}
	section[theme="tabs"] div.container-fluid div.container {
		max-width: auto;
		padding-right: 0;
		padding-left: 0;
	}
}


@media (min-width: 991px) {
	div#pane_2 div.row { 
		margin-right: -2rem;
		margin-left: -2rem; 
	}
	div#pane_2 div[class^="col"] { 
		margin: 1rem 2rem;
		padding: 0;
	}
	div#pane_2 div[class^="col"] h3 {
		min-height: 2.8em;
	}	 
	div.taxabletimeline span {
		top: -40px;
	}
	div.taxabletimeline span.start {
		left: 0; 
	}
	div.taxabletimeline span.end {
		right: 0; 
	}
}


@media (max-width: 990px) { 
	section.home div.intro {
		padding: 2rem 0; 
	}
	
	div#pane_1 div.row > div:nth-of-type(2) {
		padding-left: 0;
	}
	div#level_chart {
		top: 0;
		left: 0;
		right: auto; 
		position: relative;
	}
	div.box div[class^="col"] {
		text-align: center
	}
	div.box div[class^="col"] a.button {
		width: auto !important;
		display: inline-block;
		margin-top: 1rem;
	}
		
	
	div.taxabletimeline { 
		border-width: 0 0 0 3px;
		margin: 4em 0em 3em 1vw;
		padding: 0 3vw; 
	}
	div.taxabletimeline::before {
		transform: rotate(90deg);
		-webkit-transform: rotate(90deg); 
		top: -2px;
		left: -9px;
	}
	div.taxabletimeline::after {
		transform: rotate(270deg);
		-webkit-transform: rotate(270deg); 
		top: auto;
		bottom: -2px;
		left: -9px;
	}
	div.taxabletimeline span {
		left: -0.5em;
	}
	div.taxabletimeline span.start {
		top: -34px; 
	}
	div.taxabletimeline span.end {  
		bottom: -34px;
	} 
	div.taxabletimeline div.row {  
		width: auto;
		padding-left: 0.5rem;  
	} 


	ul.row {
		width: 100%;
		padding: 0; 
		margin: 0; 
		display: block; 
	}	
	ul.row li { 
		margin-bottom: 1em;
	}
	ul.row li label {
		padding-right: 60px;
		display: block;
		position: relative; 
	}
	ul.row li label > * { 
	}
	ul.row li label > div {
		text-align: left;
		padding-left: 0 !important;
	}
	ul.row li label > div[data-mt-label] br {
		display: none;
	}
	ul.row li label > div:last-child {
		position: absolute;
		top: 0;
		right: 0;
	}
	/*TO DO */
	.d-flex {
	}
	.d-flex div.col {
		flex: 50%;
		width: calc(50% - 2em);
	}

	
	section#summary div.text-blue p.small-text {
		padding-right: 0;
	}
	section#summary div.text-blue p a.button {
		position: relative;
		margin-top: 10px;
		margin-left: 0;
		left: 0; 
		text-align: center;
		width: 100%;
	}
		
	
	div.modal-dialog,
	div.modal-content { 
		max-width: 90vw; 
	}	
}


/* Mobile theme */
@media (max-width: 800px) { 
	section { 
	}
	div#mobile_burger {
		display: inline-block; 
		margin-top: -8px;
	}
	div#links {
		display: none;
	}
	div.header_links div.links {
		border: 2px solid var(--color-theme);
		float: none;
		text-align: left;
		width: 100%;
		overflow: hidden;
		margin: 0;
		padding: 1em;
		background-color: white;
	}	
	div.header_links div.links a {
		float: none;
		margin: 0;
		padding: 0.15rem 0;
		display: block;
	}	
	div.container { 
		max-width: calc(100% - 2vw);
		padding: 0 1vw; 
	} 
	
	
	div.modal-dialog,
	div.modal-content { 
		max-width: 96vw; 
	}			
}

/* Medium screen devices (768px and above) */
@media (max-width: 768px) {
	body {
		width: 100vw; 
	}
	nav.header {  
		padding: 0.5em 0 0 0;
	}
	section {
		padding: 0em 0vw;
		margin: 0em 0; 
	}
	section[step] {
		padding: 1em 0;
	}
	* > div.container {
		padding: 2vh 15px !important;  
		width: cacl(100% - 30px); 
	}
	nav.header div.container {
		padding-top: 0;
		padding-bottom: 0;
		margin: 0 auto;
		min-height: 0;
		height: auto; 
	}
	section[theme="tabs"] > div.container {
		padding: 0 !important;
	}
	section[theme="tabs"] div#pane_2 { 
		margin-right: -15px;
		margin-left: -15px;
		width: cacl(100% + 30px);
	}

	
	
	section[step] div.container {
  		padding-right: 1vw;
  		padding-left: 1vw;  
	}
	section[step] h2 {
		margin-left: -0em;
	}
	section[step] div.container div.row {
		margin-right: -1.5vw;
		margin-left: -1.5vw;
		padding-right: 0;
		padding-left: 0; 
		width: calc(100% + 3vw);  
	}
	section[step] div.row > div[class=^="col-"] {  
		padding-right: 0 !important;
		padding-left: 0 !important;
		width: 100%;
	}	
	
	
	ul.nav li.nav-item {
		max-width: 50%;
		width: cacl(50% - 1em);
		margin: 0 0.5em;   
	}
	ul.nav li.nav-item button {
		font-size: 16px;
		line-height: 20px;
	}
	div.tab-pane div.row {
		display: block; 
	}
	table.levels tr td {
		white-space: nowrap; 
	}
	table.levels tr td:first-of-type {
		line-height: 24px;
		padding-top: 6px;
		padding-bottom: 4px;
	}
	table.levels tr td span {
		display: block;
		line-height: 15px;
	}
	
	section#resources { 
		padding-bottom: 0;
	}
	section#resources > div.container { 
		margin: 0 auto;
		padding: 1em 0;
	}
	section#resources div.row { 
		margin: 0 -4vw;
		padding: 0;
		width: cacl(100% + 8vw) !important;
		display: block; 
	}
	section#resources div.row > div[class^="col-"] {
		width: 100%; 
		margin: 1rem 0;
	}
	section#resources div.row > div[class^="col-"] div.container {
		padding-bottom: 0;
		margin-bottom: 0; 
	}
	section#resources ul { 
		display: block;
	}
	section#resources ul li {
		width: 100%;
		margin-bottom: 0.75rem;
	} 
	footer {
		margin: 0;
		padding: 2vh 2vw;
	}
	footer div.container {
		margin: 0;  
		padding: 0 2vw 40px 2vw !important; 
		background-position: 2vw bottom;
		background-size: auto 25px;  
	}
}

/* For extremely small screen devices (595px and below) */
@media only screen and (max-width: 595px) {  
	div#level_chart div[level="level_1"] {
		bottom: 0rem;
		left: 2rem;
	}
	div#level_chart div[level="level_2"] {
		top: 9rem;
		left: 5rem;
	}
	div#level_chart div[level="level_3"] {
		top: 5.0em;
		right: 1em; 
		width: 260px;
	}	
	ul.nav li.nav-item {
		width: 100%;
	}
	table.levels tr th {
		font-size: 13px;
		line-height: 16px;
	}
	
	
	
	a.button {
		text-align: center;
		display: block;
		width: 100% ;
	}	
	section + section {
		padding: 0;
	} 
	section#summary {
		margin: 0;
		padding: 0;
	}
	section#summary div.row {
		padding-bottom: 0;
	}

	
	div#pane_2 div.row {
		padding-bottom: 0.15rem;
	}
	
	div.toolbox {
		text-align: center;
	}
	div.toolbox ul.options { 
		display: inline-block;
		width: auto;
		margin: 0em auto;
	}
	div.toolbox ul.options li {
		padding: 5px 0;
	}
	div.toolbox ul.options li label {
		font-size: 20px;
		line-height: 22px;
		padding-right: 10px;
	}
	div.toolbox ul.options li label span {
		font-size: 14px;
		line-height: 17px; 
	}
	
	#form_rates div.rates div.rate {
		width: 100% !important;
		display: block;
		float: none; 
		margin-bottom: 15px;
	}
	#form_rates div.rates div.rate label {
		display: inline-block;
		width: 120px !important;
	}
	#form_rates div.rates div.rate div.label {
		padding-left: 0 !important;
	}	
	#form_rates div.rates div.rate div.label span {
		display: inline;
		margin-left: 10px;
	}
	
	div.views div[view^="chart_"] { 
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	} 
	figure.highcharts-figure > div {
		min-width: 320px;
	}
	figure.highcharts-figure div#chart_multi {
		min-width: 600px;
	}
	
	div.table-responsive {
		margin-bottom: 1em;
	}
	div.views div[view="table"] table tr *.divider { 
		display: none;
	}
	div.views div[view="table"] table tbody tr > * {
		white-space: nowrap
	}
	div.views div[view="table"] table tbody tr > *,
	div.views div[view="table"] table tbody tr > td:first-of-type {
		font-size: 14px;
		line-height: 17px;
	}
	div.views div[view="table"] table tbody tr > *:nth-last-of-type(2) {
		border-right: 0;
	}
	
	div.modal-dialog,
	div.modal-content { 
		max-width: 98vw; 
		max-height: 98vh;
	}
	div.modal-footer {
		flex-direction: column;
	}
	div.modal-footer a {
		flex: 1;
		width: 100%;
	}
	div.modal div.modal-footer a:not(.off) + a,
	div.modal div.modal-footer a:last-of-type {
		border-width: 1px 0 0 0;
	}
	div.modal-body {
		padding: 1em;
	}
	div.modal-body div.row {
		display: block;
		padding-right: 2em;
		padding-left: 1em;
	}
	div.modal-body div.col {
		display: block;
		width: auto; 
		padding: 1.5em 0;
		margin-bottom: 0;
	}
	div.modal-body div.col + div.col {
		padding: 1.5em 0; 
		border: 0;
		border-top: 1px solid var(--color-blue-light); 
	}
	div.modal-body table.mobile {
		display: block;
		margin-bottom: 0.5em;
	} 
	div.modal-body table.desktop {
		display: none;
	}
	div.modal-body table.mobile .label {
		width: 30%;
	}
}
/******************************************************
	END OF Responsive / Mobile
*******************************************************/
