/**************************************
Containers
**************************************/
html { scroll-behavior: smooth; } /* Force scrollbar on right side to avoid viewport width change on short pages */
body { margin: 0; font-family: "Inter","Helvetica Neue",Helvetica,Arial,"sans-serif"; font-size: 1.125rem; font-weight: 300; line-height: 1.5; }
main { background: #fff; overflow: hidden; }
.container { margin: 0 auto; max-width: none;}

.bg-hero { background: #14315c; padding: 30px 0 230px 0; border-bottom: 6px solid #f2f2f2; }
.pull-up { margin-top: -240px; }
@media screen and (max-width: 1024px) {
	.bg-hero { padding: 140px 0 230px 0; }
	.pull-up { margin-top: -357px; }
}
@media screen and (max-width: 810px) {
	.bg-hero { padding: 4.5rem 0 8.5rem 0; }
	.pull-up { margin-top: -11.5rem; }
}


/**************************************
Help Icons
**************************************/
.help-icon { display: inline-flex; align-items: center; justify-content: center; padding: 0 6px; border-radius: 50%; cursor: pointer; font-weight: bold; background: white; color: #224b76; font-size: .875rem; position: relative; top: -2px; border: 1px solid #43a5e6; transition: all .1s ease-in-out; }
.help-icon:hover, .help-icon:focus { background: #eee; border-color: #142c68; transition: all .1s ease-in-out; }


/**************************************
Top Two Dropdowns
**************************************/
.dropsWrap { display: flex; margin-bottom: 2rem; padding: 0 1.5rem; }
@media (max-width: 810px) {
	.dropsWrap { margin-bottom: 2.5rem; }
}

/* Cancer Site Dropdown */
.cancerSite { width: 50%; margin-right: 5%; }
.cancerSite label { font-weight: 400; display: block; color: #fff; margin-bottom: .25rem; }
.cancerSite select { width: 100%; font-weight: 300; font-family: "Montserrat", sans-serif; font-size: 1.5rem; padding: .2rem; }
.cancerSubType {
    padding-left: 20px;
}

/* Stats Type Dropdown */
.statType { width: 45%; }
.statType label { font-weight: 400; display: block; color: #fff; margin-bottom: .25rem; }
.statType select { width: 100%; font-weight: 400; font-family: "Montserrat", sans-serif; font-size: 1.5rem; padding: .2rem; }

@media (max-width: 1024px) {
	.dropsWrap { display: block; }
	.cancerSite, .statType { width: 100%; margin: 0 0 1rem 0; }
	.cancerSite { margin-bottom: 2rem; }
}
@media (max-width: 810px) {
	.cancerSite { margin-bottom: 1rem; }
}

/* Select2/Woo Overwrites */
.select2-container { width: auto!important; display: block; }
/* only make the top main selects have shadow */
.dropsWrap .select2-container {box-shadow: 0 0.3px 0.7px rgba(0, 0, 0, 0.053), 0 0.8px 1.7px rgba(0, 0, 0, 0.077), 0 1.5px 3.1px rgba(0, 0, 0, 0.095), 0 2.7px 5.6px rgba(0, 0, 0, 0.113), 0 5px 10.4px rgba(0, 0, 0, 0.137), 0 12px 25px rgba(0, 0, 0, 0.19); }

.select2-container .select2-selection--single { height: auto; }
/* only make the top main selects large */
.dropsWrap .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 2; font-size: 1.6rem; font-weight: 400; padding-left: 13px; padding-right: 40px; }
.dropsWrap .select2-container--default .select2-selection--single .select2-selection__arrow { top: 50%; margin-top: -13px; width: 38px; }
.dropsWrap .select2-container--default .select2-selection--single .select2-selection__arrow b { border-width: 9px 7px 0 7px; margin-left: -7px; border-color: #224b76 transparent transparent transparent; } /* arrow shut */
.dropsWrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-width: 0 7px 9px 7px; border-color: transparent transparent #224b76 transparent; } /* arrow open */

.select2-container--default .select2-results > .select2-results__options { max-height: 300px; } /* dropdown height */
@media (max-width: 810px) {
	.dropsWrap .select2-container--default .select2-selection--single .select2-selection__rendered { font-size: 1rem; }
	.dropsWrap .select2-container--default .select2-selection--single .select2-selection__arrow b { border-width: 6px 5px 0 5px; margin-left: 0; } /* arrow shut */
	.dropsWrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-width: 0 5px 6px 5px; margin-left: 0; } /* arrow open */
}

/* change the arrow color in the left column for the dropdowns */
.colLeft .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: #224b76 transparent transparent transparent; } /* arrow shut */
.colLeft .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #224b76 transparent; } /* arrow open */


/**************************************
Pseudo Tabs for Statistic Type
**************************************/
.subTabs { padding: 0 0 0 1.5rem; margin: 0 4rem 0 0; border: none; position: relative; display: inline-block; vertical-align: bottom; }
.subTabs label { padding: 1rem 1.5em; color: #fff; margin: 0; font-weight: normal; font-size: 1.1rem; cursor: pointer; }
.subTabs label:hover { background: #2f70a8; text-decoration: none; }
.subTabs label:focus-within { outline: 1px dotted white; }
.subTabs label.active, .subTabs label.active:hover { background: #2f70a8;}

.subTabs label+input:focus { outline: 1px solid red; }

.subTabs .help-icon { position: absolute; left: 102%; top: 50%; margin-top: -.5rem; }

.subTabs input { opacity: 0; cursor: pointer; margin-left: -1.2em; /*IE8*/ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
.subTabs input:focus { outline: none; }

.outlined { outline: 1px dotted #ccc; }

@media (max-width: 1000px) {
	#tabResults { background: #fff; }
	#region_2_controls { background: #fff; padding-top: .5rem; }
	.subTabs { display: block; background: #f6f6f6; border: 1px solid #c0c0c0; margin: 0 1.5rem; padding: 0.35em 0.625em 0.75em; }
	.subTabs .d-flex { display: block !important; }
	.subTabs label { color: #333; display: block; padding: 0; background: none; margin-bottom: .2rem; font-size: 15px; }
	.subTabs label:hover, .subTabs label:focus { background: none; cursor: default; }
	.subTabs label:hover span, .subTabs label:focus span { text-decoration: none; }
	.subTabs label:focus-within { outline: none; }
	.subTabs label.active, .subTabs label.active:hover, .subTabs label.active:focus { background: none; border: none; padding: 0; top: 0; }
	.subTabs legend > span.visually-hidden { clip: rect(auto, auto, auto, auto); height: auto; margin: 0; overflow: visible; padding: inherit; position: relative; width: auto; font-weight: bold; font-size: 15px; }
	.subTabs .help-icon { position: relative; right: auto; top: auto; margin-top: 0; left: 0; }
	
	.subTabs input { opacity: 1; margin-left: 0; /*IE8*/ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)"; }
	.subTabs input:focus { outline: 1px dotted #ccc; }
	
	.outlined { outline: none; }
}


/**************************************
Compare By Controls
**************************************/
div#subTabResults {margin-top: -8px;}
.compareWrap { background: #2f70a8; padding: 0 1.5rem; border-bottom: 6px solid #f2f2f2; display: flex;}
.compareWrap fieldset { padding: 1rem 1.1rem 0; margin: 0; border: none; display: inline-flex;}
.compareWrap legend { float: left; margin-right: 1rem; background: #f2f2f2; padding: .5rem 1rem .75rem; font-weight: 600; font-size: 1rem; margin-bottom: 0;}
.compareWrap label { padding: .1rem 1em; font-weight: normal; font-size: 1rem; cursor: pointer; color: #fff; text-align: center; border-radius: 3px; white-space: nowrap; align-self: center;}
.compareWrap label:hover, .compareWrap label:focus, .compareWrap .active { background: #f2f2f2; color: #000; }
.compareWrap label:focus-within { outline: 1px dotted white; }
.compareWrap .active { position: relative; }
.compareWrap .active:after { content: ""; position: absolute; display: block; width: 0; height: 0; border: 8px solid transparent; border-bottom-color: #f2f2f2; top: 86%; left: 50%; margin-left: -8px; }
.compareWrap .active:before { content: ""; position: absolute; display: block; width: 0; height: 0; border: 4px solid transparent; border-bottom-color: #2f70a8; bottom: -1px; left: 50%; margin-left: -4px; }

.compareWrap input { position: absolute; opacity: 0; cursor: pointer; margin-left: -1.15em; /*IE8*/ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; }
.compareWrap input:focus { outline: none; }
@media (max-width: 1000px) {
	.compareWrap { background: #fff; border: none; }
	.compareWrap .d-flex { display: block !important; }
	.compareWrap fieldset { display: block; background: #f6f6f6; border: 1px solid #c0c0c0; margin: 1rem 0; padding: 0.35em 0.625em 0.25em; width: 100%;}
	.compareWrap legend { color: #333; float: none; margin: 0; font-weight: bold; font-size: 15px; background: none; padding: 0; line-height: 1rem; }
	.compareWrap label { color: #333; display: block; padding: 0; background: none; margin: 0 0 .2em 0; text-align: left; font-size: 15px; }
	.compareWrap label:hover, .compareWrap label:focus { background: none!important; cursor: default; }
	.compareWrap label:hover span, .compareWrap label:focus span { text-decoration: none; }
	.compareWrap label:focus-within { outline: none; }
	.compareWrap label.active, .compareWrap label.active:hover, .compareWrap label.active:focus { background: none; border: none; padding: 0; top: 0; }
	
	.compareWrap .visually-hidden { clip: rect(auto, auto, auto, auto); height: auto; margin: 00; overflow: visible; padding: auto; position: relative; width: auto; font-weight: bold; font-size: 15px; }
	
	.compareWrap input { position: relative; opacity: 1; margin-left: 0; /*IE8*/ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)"; }
	.compareWrap input:focus { outline: 1px dotted #ccc; }
	
	.compareWrap .active:after,.compareWrap .active:before { display: none; }
}


/**************************************
Left Column Controls
**************************************/
.varWrap { display: flex; padding: 0 1.5rem 1rem; background: #fff;  }
.colLeft { flex: 0 0 350px; }
.colRight { flex: 1 1 0%; margin-left: 2rem; padding-top: 1rem; }
@media (max-width: 1200px) {
	.varWrap { display: block; border: none; }
	.colRight { margin-left: 0; }
}
@media (max-width: 810px) {
	.varWrap { padding: 0 0 1rem; margin: 0 1.5rem; background: #fff;  }
}

/* Radio Area */
.varBox { margin-bottom: 1em; }
.varBox fieldset { background: #f6f6f6; padding: 0.5em 0.7625em; margin: 0; }
.varBox legend { font-weight: bold; font-size: 15px; border: none; margin: 0; padding: 0; width: auto; }
.varBox legend img { margin: 0 0 -3px 7px; padding-right: 3px; }

.varBox fieldset label { display: block; padding: 0; margin: 0; font-weight: normal; font-size: 15px; }
.varBox fieldset input { margin-right: 4px; }

/* compare by area */
#region_3_multiselects { background: #f2f2f2; margin-bottom: 1rem; padding-bottom: .5rem; }
#region_3_multiselects .varBox { margin-bottom: 0; }

#compareByCheckboxes legend, #seriesCheckboxes legend { clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; line-height: 1rem; }
#compareByCheckboxes fieldset, #seriesCheckboxes fieldset { background: none; border: none; }

#seriesSelect { padding: 0 1rem; }
#seriesSelect label { font-weight: bold; font-size: 15px; display: block; padding-left: 0; }
#seriesSelect select { width: 100%; font-size: 15px; font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,"sans-serif"; }
@media (max-width: 1000px) {
	#region_3_multiselects { background: none; margin-bottom: .5rem; }
	#compareByCheckboxes legend, #seriesCheckboxes legend { clip: rect(auto, auto, auto, auto); height: auto; margin: 0; overflow: visible; padding: auto; position: relative; width: auto; }
	#compareByCheckboxes fieldset, #seriesCheckboxes fieldset { border: 1px solid #c0c0c0; background: #f6f6f6; }
	#seriesCheckboxes fieldset { margin-top: 1rem; }
	
	#seriesSelect { padding: .5rem 1rem 1rem; border: 1px solid #c0c0c0; background: #f6f6f6; margin: 1rem 0 0; }
}

/* Custom Checkboxes */
/* set initial layout */

div.custom-checks label { display: block; position: relative; padding-left: 1.75rem; cursor: pointer; margin-bottom: .2rem; }
.custom-checks label input { position: absolute; z-index: -1; opacity: 0; }
.custom-checks .control_indicator { position: absolute; top: 1px; left: 0; height: 18px; width: 18px; background: #fff; border: 1px solid #bcd3e1; border-radius: 0px; }
/*default hover focus of checks */
.custom-checks label:hover input ~ .control_indicator, .custom-checks label input:focus ~ .control_indicator { background: #eee; }
.custom-checks label input:focus ~ .control_indicator { outline: 1px dotted #333; }
/* hover focus states when checked */
.custom-checks label input:checked ~ .control_indicator { background: #2f70a8; border-color: #2f70a8; }
.custom-checks label:hover input:not([disabled]):checked ~ .control_indicator, .custom-checks label input:checked:focus ~ .control_indicator { background: #2f70a8; border-color: #2f70a8; }
/* disabled */
.custom-checks label input:disabled ~ .control_indicator { background: #e6e6e6; opacity: 0.6; pointer-events: none; }
.custom-checks label input:disabled ~ .control_indicator:after { border-color: #7b7b7b; }
/* set up custom checkmark */
.custom-checks .control_indicator:after { box-sizing: unset; content: ''; position: absolute; display: none; }
/* show the custom check */
.custom-checks label input:checked ~ .control_indicator:after { display: block; }
/* style the custom check */
.custom-checks label .control_indicator:after { left: 6px; top: 2px; width: 3px; height: 8px; border: solid #ffffff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* set up containers and toggles for left filters */
#region_3_controls .varBox fieldset { padding: 0; margin: 0; transition: all .2s ease-in-out; }
#region_3_controls .varBox legend { display: block; width: 100%; position: relative; border: 1px solid #ccc;background: #f6f6f6; transition: all .2s ease-in-out; }
#region_3_controls .varBox legend .legend-flex { padding: .5rem; display: flex; }
#region_3_controls .varBox p { margin: 0; padding: 0; line-height: 1.2; }
#region_3_controls .varBox em { font-weight: normal; font-size: .8rem; }
#region_3_controls .varBox legend button { margin-left: auto; align-self: center; cursor: pointer; height: 25px; width: 25px; border: 1px solid #224b76; position: relative; background: #fff; font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";}
#region_3_controls .varBox legend button:after { display: inline-block; position: absolute; top: 0; left: 0; bottom: 0; right: 0; content:"+"; font-size: 18px; font-weight: bold; color: #224b76; line-height: 21px; }
#region_3_controls .varBox legend button[aria-expanded="true"]:after { content: "-"; }
#region_3_controls .varBox-reveal { padding: 0.5em 0.7625em; display: none; }
#region_3_controls .varBox-static { padding: 0.5em 0.7625em; border: 1px solid #ccc; margin-top: -1px;}

/* rate type, delay-adjusted message */
.hidden-input-info { display: inline-block; padding: .3rem 0 0 1.35rem; font-size: .875rem; position: relative; font-weight: 400; }
.hidden-input-info:before { position: absolute; top: 5px; left: 0; content: "!"; border-radius: 100%; padding: 2px; background: #d6bf11; height: 13px; width: 13px; text-align: center; font-style: normal; font-size: .7rem; font-weight: 800; font-family: Arial; line-height: .8rem; }


/* Custom Radios */
/* set initial layout */
div.custom-radios label { display: block; position: relative; padding-left: 1.75rem; cursor: pointer; margin-bottom: .2rem; }
.custom-radios label input { position: absolute; z-index: -1; opacity: 0; }
.custom-radios .control_indicator { position: absolute; top: 1px; left: 0; height: 16px; width: 16px; background: #fff; border: 2px solid #bcd3e1; border-radius: 100%; }
/*default hover focus of radios */
.custom-radios label:hover input ~ .control_indicator, .custom-radios label input:focus ~ .control_indicator { background: #eee; }
.custom-radios label input:focus ~ .control_indicator { outline: 1px dotted #333; }
/* hover focus states when checked */
.custom-radios label input:checked ~ .control_indicator { background: #fff; border-color: #2f70a8; }
.custom-radios label:hover input:not([disabled]):checked ~ .control_indicator, .custom-radios label input:checked:focus ~ .control_indicator { background: #fff; border-color: #2f70a8; }
/* disabled */
.custom-radios label input:disabled ~ .control_indicator { background: #e6e6e6; opacity: 0.6; pointer-events: none; }
.custom-radios label input:disabled ~ .control_indicator:after { background: #7b7b7b; }
/* set up custom radio */
.custom-radios .control_indicator:after { box-sizing: unset; content: ''; position: absolute; display: none; }
/* show the custom radio */
.custom-radios label input:checked ~ .control_indicator:after { display: block; }
/* style the custom radio */
.custom-radios label .control_indicator { border-radius: 50%; }
.custom-radios label .control_indicator:after { left: 0px; top: 0px; height: 12px; width: 12px; border-radius: 50%; background: #2f70a8; transition: background 250ms; }

/* set dividers/groups for age ranges (radios) */
.custom-radios #set_age_range label:nth-child(2), 
.custom-radios #set_age_range label:nth-child(5), 
.custom-radios #set_age_range label:nth-child(10) { border-top: 1px dashed #aaa; padding-top: .25em; margin-top: .25em; }
	/* adjust custom radios */
	.custom-radios #set_age_range label:nth-child(2) .control_indicator, 
	.custom-radios #set_age_range label:nth-child(5) .control_indicator, 
	.custom-radios #set_age_range label:nth-child(10) .control_indicator { margin-top: .2rem; }
/* set dividers/groups for age ranges (checks) */
.custom-checks #set_age_range label:nth-child(3), 
.custom-checks #set_age_range label:nth-child(6), 
.custom-checks #set_age_range label:nth-child(11) { border-top: 1px dashed #aaa; padding-top: .25em; margin-top: .25em; }
	/* adjust custom checkbox */
	.custom-checks #set_age_range label:nth-child(3) .control_indicator, 
	.custom-checks #set_age_range label:nth-child(6) .control_indicator, 
	.custom-checks #set_age_range label:nth-child(11) .control_indicator { margin-top: .2rem; }
	

/* More Options */
#region_3_adv_opts legend { float: left; }
.optGroup { border-top: 1px dashed #ccc; padding-top: .5em; margin: 0 0 .5em 0; }
fieldset .optGroup:first-of-type { border: none; padding-top: 0; }
.optGroup-title { display: inline-block; font-size: 15px; margin-bottom: .1em; }
.optGroup input[type="radio"] { margin-left: .27em; }
#advopt_precision { margin: 0 0 1em 0; padding: 2px; width: 100%; font-size: 15px; font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,"sans-serif"; }
/* indent labels on checks and rads when they wrap */
fieldset .optGroup .labelWrap { text-indent: -1.3em; padding-left: 1.3em; }

#region_3_adv_opts .select2-container { margin-bottom: 1rem; }

@media (max-width: 810px) {
	#subTabResults { border: none; }
}

/**************************************
Results Area
**************************************/
/* Title*/
.titleWrap { display: flex; }
#dynamicTitle { display: block; margin-top: .25rem; }
#content_title h2 { font-size: 1.2em; margin: 0; line-height: 1.2; }
#dynamicTitle, #filterTitle { font-size: 1rem; margin-bottom: 0; font-weight: 400; }

/* delay-adjusted warning */
#wheresPoochy { display: inline-block; background: #f4eebe; border-radius: 4px; padding: .35rem .5rem .35rem 2rem; font-size: .875rem; font-weight: 300; margin-top: .5rem; position: relative; }
#wheresPoochy:before { position: absolute; top: 5px; left: 10px; content: "!"; border-radius: 100%; padding: 2px; background: #d6bf11; height: 13px; width: 13px; text-align: center; font-style: normal; font-size: .7rem; font-weight: 800; font-family: Arial; line-height: .8rem; }

/* Actions */
.actions { flex-basis: 300px; margin-left: auto; display: flex; justify-content: flex-end; align-items: flex-start; position: relative; }
.actions button { color: #222!important; border: 1px solid #c0c0c0; background: #ececec; transition: all .1s linear; box-shadow: inset 0 -1.2em 10px rgba(0,0,0,.1), 0 1px 0 #c0c0c0, inset 0 1px 0 rgba(255,255,255,.5); position: relative; cursor: pointer; overflow: visible; }
#label_modal_3 { border-radius: 3px 0 0 3px; }
#share-link { border-radius: 0 3px 3px 0; }
.actions button:hover, .actions button:focus { box-shadow: inset 0 -1.75em 17px rgba(0,0,0,.11), 0 1px 0 #c0c0c0, inset 0 1px 0 rgba(255,255,255,.3); transition: all .1s linear; background: #ececec!important; outline: none; }
.actions button img { max-width: 36px; padding: .25rem; }
.actions .icon-button:after { display: none; content: " " attr(aria-label) " ";position: absolute;bottom: 3.5em;left: -50%;padding: 0.5em 0.75em;width: auto;background-color: #444444;color: #ffffff;z-index: 5;line-height: 1em; opacity: 0;}
.actions .icon-button:before { display: none; content: "";position: absolute;bottom: 3.2em;left: 50%;border-top: solid 8px #444444;border-left: solid 8px transparent;border-right: solid 8px transparent;opacity: 0; z-index: 1; margin-left: -8px; }
.actions .icon-button:hover:after, .actions .icon-button:hover:before, .actions .icon-button:focus:after, .actions .icon-button:focus:before { display: inline-block; opacity: 1; }

/* copied url message */
.clipboard-wrap { position: absolute; bottom: 113%; right: 0; z-index: 6; }
.tip { position: relative; display: none; margin: 0; padding: .5rem 1rem; background: #fff; border: 1px solid #224b76; font-weight: bold; border-radius: 3px; font-size: 0.875rem; box-shadow: 0 2px 4px rgba(0,0,0,.3); }
.tip:before { position: absolute; width: 0; height: 0; content:""; border: 8px solid transparent; border-top-color: #224b76; right: 10px; top: 100%; }
.tip:after { position: absolute; width: 0; height: 0; content:""; border: 6px solid transparent; border-top-color: #fff; right: 12px; top: 100%; }

@media (max-width: 768px) {
	.titleWrap { display: block; }
	.actions { justify-content: flex-start; margin-top: 1rem; display: inline-flex; }
}

/* main tabs */
.main-tabs-tabs__list { margin: 2rem 0 2rem 0; padding: 0; border-bottom: 1px solid #ccc; }
.main-tabs-tabs__item { display: inline-block; margin: 0; }
.main-tabs-tabs__link { display: inline-block; padding: .5rem 2.5rem; color: #224b76; cursor: pointer; font-size: 1rem; border: 1px solid #ccc; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.1) 100%); position: relative; top: 1px; box-shadow: inset 0 3px 0 rgba(0,0,0,0); font-weight: 400; }
.main-tabs-tabs__link:hover, .main-tabs-tabs__link:focus { text-decoration: underline; }

[aria-selected="true"].main-tabs-tabs__link { color: #000; background: #fff; border-bottom-color: #fff; box-shadow: inset 0 3px 0 #2f70a8 ; }
[aria-selected="true"].main-tabs-tabs__link:hover, [aria-selected="true"].main-tabs-tabs__link:focus { text-decoration: none; }

.main-tabs-tabs__content { padding: 0; }
.main-tabs-tabs__content h3 { margin: 0; }

[aria-hidden="true"].main-tabs-tabs__content { clip: rect(0 0 0 0);  margin: -1px; overflow: hidden; padding: 0; position: absolute; width:100%; }

/* Graph */
.loadingWrap { position: relative; }
.loading { position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: #fff; background: rgba(255,255,255,.9); border-radius: 3px; color: #fff; padding-top: 3em; text-align: center; font-size: 1.2em; box-shadow: 0 0 10px rgba(255,255,255, .5); letter-spacing: .05em; display: block; }
.loading span { display: inline-block; background: rgb(221,234,242);
background: radial-gradient(circle, rgba(221,234,242,1) 0%, rgba(186,205,217,1) 100%); padding: 2rem 4rem; border-radius: 5px; }
.pulse { box-shadow: 0 0 0 rgba(255,255,255, 0.8); animation: pulse 1.5s infinite; }

.group { position: relative; display: inline-block; line-height: 16px; }
.bigSqr { position: relative; display: inline-block; width: 40px; height: 40px; overflow: hidden; -webkit-transform-origin: bottom left; transform-origin: bottom left;
  -webkit-animation: bigSqrShrink 1s linear infinite;
          animation: bigSqrShrink 1s linear infinite;
}
.square { position: absolute; width: 20px; height: 20px; background: #224b76; }
.first { left: 0px; top: 20px; }
.second { left: 20px; top: 20px; -webkit-animation: drop2 1s linear infinite; animation: drop2 1s linear infinite; }
.third { left: 0px; top: 0px; -webkit-animation: drop3 1s linear infinite; animation: drop3 1s linear infinite; }
.fourth { left: 20px; top: 0px; -webkit-animation: drop4 1s linear infinite; animation: drop4 1s linear infinite; }

.text { font-weight: 500; display: block; margin: 1rem auto 0; padding: .25rem; font-variant: all-small-caps; color: #142c68; }

@-webkit-keyframes bigSqrShrink {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}

@keyframes bigSqrShrink {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}
@-webkit-keyframes drop2 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  25% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes drop2 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  25% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes drop3 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  50% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes drop3 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  50% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes drop4 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  75% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes drop4 {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  75% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(221,234,242, 0.8); }
	70% { box-shadow: 0 0 0 10px rgba(221,234,242, 0); }
	100% { box-shadow: 0 0 0 0 rgba(221,234,242, 0); }
}

.hover-note { font-size: 0.9375rem; text-align: right; margin: 0 1.25rem -1.5rem 0; }
.hover-note span { display: inline-block; padding-left: 1rem; background: url("../i/icn-hover.png") left center no-repeat; }
#graphImage { text-align: center; }

/* Legend */
#graphLegend ul sup { margin: 0 .4em 0 .2em; }
#graphLegend ul { display: flex; flex-wrap: wrap; justify-content: center; margin: 0; padding: 0; list-style: none; }
#graphLegend li { position: relative; padding-left: 1em; vertical-align: middle; margin: 0 1rem .5rem 1rem;  }
#graphLegend img { margin-right: .25rem; }
@media (max-width: 599px) {
	#graphLegend ul { display: block; }
}

/* Legend Footnotes */
/* note about shading for CI */
#graphLegend #legend_entry_cis { margin-top: .23rem; }
#graphLegend #legend_entry_cis img { position: static; margin: 0 6px 0 0; line-height: 0; vertical-align: middle; padding-bottom: 2px; }

.center-notes { display: flex; align-items: center; justify-content: center; }
.table-footnotes { font-size: .875rem; margin-top: 1rem; margin-bottom: .25rem; display: inline-block; }
.table-footnotes p { display: flex; align-items: center; padding: .5rem; border-top: 1px dashed #ccc; margin: 0; }
.table-footnotes p:last-child { border-bottom: 1px dashed #ccc; }
.table-footnotes sup { margin: 0 .25rem 0 0; color: #333; background: #eee; padding: .1rem .5rem; font-weight: bold; border-radius: 3px; }
.table-footnotes img { margin-right: .5rem; margin-top: 1px; }

/* Data Table */
.table-controls { background: #eee; margin-top: 2rem; padding: .5rem 1rem; font-size: 1rem; }
.table-controls > span { font-weight: 400; display: inline-block; margin-right: .5rem; }
.table-controls label { display: inline-block!important; margin-bottom: 0!important; padding-left: 1.1rem; margin-right: .75rem; /*overwrite some custom radio styles*/ }
#tableArea { padding: .5em; border: 1px solid #ddd; background: #fff; }
.respTable { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
table, th, td { border: 1px solid #bbb; font-weight: 300; font-size: 1rem; }
th, td { padding: .5rem; }
thead th, thead td { background: #333; color: #fff; vertical-align: bottom; }
tbody th { background: #f6f6f6; color: #333; }
td { text-align: right; }
.rowBorder { border-top: 3px solid #bbb; }

tbody .ShadeGroup { background-color: #f5f5f5; transition: all .125s ease-in-out; }
tbody tr:hover, tbody tr:hover th { background-color: rgba(129,208,177,.3)!important; }

#tableNoData { font-weight: 800; margin: 1rem 0; }
.table-arrow { font-weight: 800; color: #007fb0; }

@media (max-width: 47.99em) {
	/* responsive tables */
	/* IE needs inline-block to position scrolling shadows otherwise use: display: block; max-width: min-content; */
	.respTable table { display: inline-block; vertical-align: top; max-width: 100%; overflow-x: auto; white-space: nowrap; border-collapse: collapse; border-spacing: 0; }
	.restTable table { -webkit-overflow-scrolling: touch; background: -webkit-radial-gradient(left ellipse, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 75%) 0 center, -webkit-radial-gradient(right ellipse, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 75%) 100% center; background: radial-gradient(ellipse at left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 75%) 0 center, radial-gradient(ellipse at right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 75%) 100% center; background-size: 10px 100%, 10px 100%; background-attachment: scroll, scroll; background-repeat: no-repeat; }
}

/* Datatable Overwrites */
table.dataTable tbody th, table.dataTable tbody td { padding: 5px 10px!important; }
.dataTables_wrapper.no-footer .dataTables_scrollBody { border-bottom: none!important; }

/* Footnotes Tabs */
#footnotes { margin: 2rem 0 5rem 0;  padding: 2rem; display: flex; background: #f6f6f6; }
.invisible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

.foot-tabs-tabs__list { margin: 0; padding: 0; flex: 0 0 16rem; }
.foot-tabs-tabs__item { display: block; margin-bottom: .5rem; }
.foot-tabs-tabs__link { display: block; padding: .5rem 1rem; color: #224b76; cursor: pointer; border-radius: 4px; font-size: 1rem; transition: all linear .2s; transition-property: background-color, box-shadow, border; }
.foot-tabs-tabs__link:hover, .foot-tabs-tabs__link:focus { text-decoration: underline; }

[aria-selected="true"].foot-tabs-tabs__link { color: #000; background: #fff url("../i/tab-arrow.png") right 1rem center no-repeat; box-shadow: 0 2px 2px rgba(0,0,0,.2), 0 4px 4px rgba(0,0,0,.2); transition: all linear .2s; transition-property: background-color, box-shadow, border; }
[aria-selected="true"].foot-tabs-tabs__link:hover, [aria-selected="true"].foot-tabs-tabs__link:focus { text-decoration: none; }

.foot-tabs-tabs__content { padding: 0 0 0 4rem; }
.foot-tabs-tabs__content h3 { margin: 0; }
[aria-hidden="true"].foot-tabs-tabs__content { display: none; }

/* at 768px wide, we move the tabs back to the top */
@media (max-width: 767px) {
	#footnotes { display: block; padding: 1rem; }
	[aria-selected="true"].foot-tabs-tabs__link { padding-left: 2rem; background: #fff url("../i/tab-arrow-down.png") left 1rem center no-repeat; }
	.foot-tabs-tabs__content { padding: .75rem 0 0 0; margin-top: .5rem; border-top: 1px solid #bbb; }
}

/* NV Overwrites */
/* tooltips on graph hover */
.nvtooltip table { margin: 10px!important; width: auto!important; border-bottom: 2px solid #bbb; }
.nvtooltip table thead { border-bottom: 2px solid #bbb; }
.nvtooltip table td { border: none; padding: .2em .35em!important; }

/* simulate this block being outside of the container */
.continue { background: #142c68; color: #fff; position: relative; margin-left: calc((100% - 100vw) / 2); }
.continue::after { position: absolute; top: -2rem; left: 50%; margin-left: -2rem; padding: 2rem; line-height: .5; content:""; color: #333; background: #fff; border-radius: 50%; border: 1px solid #ccc; }

.breakout { padding: 2rem 2rem 4rem; }

.svg-icon { width: 2em; height: 2em; transform: rotate(90deg); position: absolute; left: 50%; top: -1rem; margin-left: -1rem; z-index: 10; }
.svg-icon path, .svg-icon polygon, .svg-icon rect { fill: #224b76; }

.continue h2 { text-align: center; font-weight: 300; font-size: 1.4rem; line-height: 1.2; }
.continue h2 span { font-weight: 800; font-size: 1.65rem; }

.cardWrap { display: flex; justify-content: space-between; margin-top: 3rem; }
.exploreCard { margin: 0 1rem; flex: 1 1 0px; background: #fff; border-top: 8px solid #224b76; padding: 1rem; color: #333; text-decoration: none; box-shadow: 0 2px 2px rgba(0,0,0,.4), 0 4px 4px rgba(0,0,0,.4); position: relative; top: 0; transition: all linear .2s; }
.exploreCard h3 { margin: 0; padding: 0 2rem 0 0; background: url("../i/tab-arrow.png") right 1rem center no-repeat; }
.exploreCard em { display: block; padding-bottom: .5rem; border-bottom: 1px solid #ccc; transition: all linear .2s; }

.exploreCard:hover, .exploreCard:focus { top: -4px; transition: all linear .2s; box-shadow: 0 4px 4px rgba(0,0,0,.2), 0 8px 8px rgba(0,0,0,.2); }
.exploreCard:hover em, .exploreCard:focus em { border-color: #224b76; transition: all linear .2s; }

@media (max-width: 1199px) {
	.cardWrap, .exploreCard { display: block; }	
	.exploreCard { margin: 0 0 2rem 0; }
}


/**************************************
Modal
**************************************/
/* overlay covers everything */
.modal-overlay { position: fixed; overflow-y: auto; top: 0; bottom: 0; right: 0; left: 0; z-index: 666; background: rgba(0,0,0,.5); }

/* modal */
dialog { display: block; }

.modal { position: fixed; left: 50%; top: 4rem; bottom: 0; padding: 1rem; width: 650px; height: fit-content; z-index: 667; margin-left: -345px; background: #fff; border: 1px solid #ccc; border-radius: 6px; box-shadow: 0 3px 3px rgba(0,0,0,.2), 0 6px 6px rgba(0,0,0,.2), 0 10px 10px rgba(0,0,0,.15); overflow-y: auto; display: block; }
.ie-modal { width: 94%; margin-left: -47%; bottom: 4rem; }

.hidden { display: none; }

.modal__wrapper { max-width: 650px; margin: 0 auto; padding: 0 1rem 1rem; }
.ie-modal .modal__wrapper { max-width: none; }

.modal-close { float: right; border-radius: 3px; border: 1px solid #ccc; padding: .25rem 1rem; margin-top: .35rem; cursor: pointer; color: #224b76; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.1) 100%); }
.modal-close:hover, .modal-close:focus { background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.1) 80%);}
.modal-close:focus { outline: 1px dotted #333; }
.modal-title { font-size: 1.625rem; margin: 0 0 1rem 0; border-bottom: 1px solid #ccc; padding-bottom: 1rem;}

#js-modal-content { max-height: 600px; overflow-y: auto; font-size: 1rem; }

#modal-controls { flex: 0 0 220px; }
#modal-controls fieldset { border: 1px solid #ccc; margin-bottom: .75rem; padding: .5rem;}
#modal-controls legend { font-weight: 600; font-size: .9rem; font-variant: all-small-caps; margin-bottom: 0; width: auto;}
#modal-controls label { display: block; font-size: 1rem; }
#img-download { margin-top: 1rem; border-radius: 3px; border: none; background: #2f70a8; color: #fff; font-size: 1rem; font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,"sans-serif"; padding: .75rem 1rem; width: 100%; cursor: pointer; }
#img-download:hover, #img-download:focus { background: #4e0d24; }

.previewWrap { display: flex; }
.previewLabel { font-size: .9rem; font-variant: all-small-caps; font-weight: 600; }
#previewArea { flex-grow: 1; margin-right: 2rem; }

#previewTitle, #previewLegend, #previewFootnotes { background: #eee; border: 1px solid #ccc; margin: 0; padding: .5rem 1rem; display: block; text-align: center; font-weight: 400; }
#previewTitle { margin-bottom: .5rem; }
#previewLegend { margin-left: .5rem; }
#previewFootnotes { margin-top: .5rem; }

#previewGraph { border: 1px solid #ccc; }
#previewGraph img {	max-width: 100%; }
#previewLegend { flex-grow: 1; }
#printGraphImage { height: 550px; }

#setSizeSelect { font-size: 1rem; border: 1px solid #ccc; border-radius: 4px; padding: .2rem; font-weight: 200; font-family: "Inter","Helvetica Neue",Helvetica,Arial,"sans-serif"; width: 100%; }

.modal-definitions { list-style: none; padding: 0; margin: 0 0 .5rem 0; border-bottom: 1px solid #ccc; }
.modal-definitions p { margin-top: 0; margin-bottom: .7rem; }
.modal-definitions strong { font-weight: 600; }

@media (max-width: 767px) {
	.previewWrap { display: block; }
	.modal { width: auto; margin-left: auto; left: 1rem; right:1rem; bottom: 1rem; top: 1rem; }
	#previewArea { margin: 0 0 1rem 0; }
}

/* compare by note */
.compare-note { order: 2; margin-left: auto; align-self: flex-start; flex: 0 1 50%; padding: 1rem; background: #ddeaf2; line-height: 1.3; display: flex; }
.compare-note svg { flex: 0 0 30px; margin-right: 1rem; height: auto;}
.compare-note p { margin: 0; font-size: .9rem;}

