/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/wp-content/plugins/everystat/build/layers.350ec81b.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/wp-content/plugins/everystat/build/layers-2x.d8c4f271.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(/wp-content/plugins/everystat/build/marker-icon.b29b8023.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.everystat-content .es-font-color-white {
  color: #ffffff !important;
}
.everystat-content .es-bg-color-white {
  background-color: #ffffff;
}
.everystat-content .es-font-color-red-dark {
  color: #B33027 !important;
}
.everystat-content .es-bg-color-red-dark {
  background-color: #B33027;
}
.everystat-content .es-font-color-red {
  color: #E03C31 !important;
}
.everystat-content .es-bg-color-red {
  background-color: #E03C31;
}
.everystat-content .es-font-color-cinnabar {
  color: #E03C31 !important;
}
.everystat-content .es-bg-color-cinnabar {
  background-color: #E03C31;
}
.everystat-content .es-font-color-blue-dark {
  color: #004073 !important;
}
.everystat-content .es-bg-color-blue-dark {
  background-color: #004073;
}
.everystat-content .es-font-color-blue {
  color: #004B87 !important;
}
.everystat-content .es-bg-color-blue {
  background-color: #004B87;
}
.everystat-content .es-font-color-s400 {
  color: #48525C !important;
}
.everystat-content .es-bg-color-s400 {
  background-color: #48525C;
}
.everystat-content .es-font-color-s200 {
  color: #5A6673 !important;
}
.everystat-content .es-bg-color-s200 {
  background-color: #5A6673;
}
.everystat-content .es-font-color-s100 {
  color: #708090 !important;
}
.everystat-content .es-bg-color-s100 {
  background-color: #708090;
}
.everystat-content .es-font-color-s80 {
  color: #8D99A6 !important;
}
.everystat-content .es-bg-color-s80 {
  background-color: #8D99A6;
}
.everystat-content .es-font-color-s60 {
  color: #A9B3BC !important;
}
.everystat-content .es-bg-color-s60 {
  background-color: #A9B3BC;
}
.everystat-content .es-font-color-s40 {
  color: #C6CCD3 !important;
}
.everystat-content .es-bg-color-s40 {
  background-color: #C6CCD3;
}
.everystat-content .es-font-color-s20 {
  color: #E2E6E9 !important;
}
.everystat-content .es-bg-color-s20 {
  background-color: #E2E6E9;
}
.everystat-content .es-font-color-s10 {
  color: #F1F2F4 !important;
}
.everystat-content .es-bg-color-s10 {
  background-color: #F1F2F4;
}
.everystat-content .es-font-color-m400 {
  color: #88847F !important;
}
.everystat-content .es-bg-color-m400 {
  background-color: #88847F;
}
.everystat-content .es-font-color-m200 {
  color: #AAA59F !important;
}
.everystat-content .es-bg-color-m200 {
  background-color: #AAA59F;
}
.everystat-content .es-font-color-m100 {
  color: #D5CEC7 !important;
}
.everystat-content .es-bg-color-m100 {
  background-color: #D5CEC7;
}
.everystat-content .es-font-color-m80 {
  color: #DDD8D2 !important;
}
.everystat-content .es-bg-color-m80 {
  background-color: #DDD8D2;
}
.everystat-content .es-font-color-m60 {
  color: #E6E2DD !important;
}
.everystat-content .es-bg-color-m60 {
  background-color: #E6E2DD;
}
.everystat-content .es-font-color-m40 {
  color: #EEE6DE !important;
}
.everystat-content .es-bg-color-m40 {
  background-color: #EEE6DE;
}
.everystat-content .es-font-color-m20 {
  color: #FCF5EF !important;
}
.everystat-content .es-bg-color-m20 {
  background-color: #FCF5EF;
}
.everystat-content .es-font-color-m10 {
  color: #FDF8F5 !important;
}
.everystat-content .es-bg-color-m10 {
  background-color: #FDF8F5;
}
.everystat-content .es-font-color-o400 {
  color: #1E252D !important;
}
.everystat-content .es-bg-color-o400 {
  background-color: #1E252D;
}
.everystat-content .es-font-color-o200 {
  color: #5A6673 !important;
}
.everystat-content .es-bg-color-o200 {
  background-color: #5A6673;
}
.everystat-content .es-font-color-o100 {
  color: #8E9296 !important;
}
.everystat-content .es-bg-color-o100 {
  background-color: #8E9296;
}
.everystat-content .es-font-color-o80 {
  color: #A5A8AB !important;
}
.everystat-content .es-bg-color-o80 {
  background-color: #A5A8AB;
}
.everystat-content .es-font-color-o60 {
  color: #BBBEC0 !important;
}
.everystat-content .es-bg-color-o60 {
  background-color: #BBBEC0;
}
.everystat-content .es-font-color-o40 {
  color: #D2D3D5 !important;
}
.everystat-content .es-bg-color-o40 {
  background-color: #D2D3D5;
}
.everystat-content .es-font-color-o20 {
  color: #E8E9EA !important;
}
.everystat-content .es-bg-color-o20 {
  background-color: #E8E9EA;
}
.everystat-content .es-font-color-o10 {
  color: #F4F4F5 !important;
}
.everystat-content .es-bg-color-o10 {
  background-color: #F4F4F5;
}

:root {
  --general-spacing: 55px;
  --header-top-padding: var(--general-spacing);
  --header-burger-height: 28.5px;
  /*--header-content-height: 44px;*/
  --heading-text-padding: 22px;
  --selector-height: 30px;
  --selector-sticky-height: 51px;
}

body {
  --header-height: 100px; /*calc(var(--header-top-padding) * 2 + var(--header-content-height));*/
}
@media screen and (max-width: 768px) {
  body {
    --header-top-padding: 20px;
    --header-height: calc(var(--header-top-padding) * 2 + var(--header-burger-height));
  }
}

.es-typo-header1 {
  --font-size: 48px;
  font-weight: 500;
  font-size: var(--font-size);
  font-family: "GT Super Text";
  color: #48525C;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  .es-typo-header1 {
    --font-size: 24px;
    line-height: 1.3;
  }
}

.es-typo-header2 {
  --font-size: 38px;
  font-weight: 700;
  font-size: var(--font-size);
  font-family: "GT America Extended";
  /* font: $es-typo-header2; */
  color: #5A6673;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .es-typo-header2 {
    --font-size: 28px;
    line-height: 1.2;
  }
}

.es-typo-header3 {
  --font-size: 40px;
  font-weight: 500;
  font-size: var(--font-size);
  font-family: "GT Super Text";
  color: #48525C;
  line-height: 58px;
}
@media screen and (max-width: 768px) {
  .es-typo-header3 {
    --font-size: 24px;
  }
}

.es-typo-subheader1 {
  --font-size: 28px;
  font-weight: 700;
  font-size: var(--font-size);
  font-family: "GT America Extended";
  /* font: $es-typo-subheader1; */
  color: #5A6673;
}
@media screen and (max-width: 768px) {
  .es-typo-subheader1 {
    --font-size: 24px;
  }
}

.es-typo-subheader1-serif {
  --font-size: 28px;
  font-weight: 700;
  font-size: var(--font-size);
  font-family: "GT Super Text";
  /* font: $es-typo-subheader1; */
  color: #5A6673;
}
@media screen and (max-width: 768px) {
  .es-typo-subheader1-serif {
    --font-size: 14px;
  }
}

.es-typo-subheader1-important {
  --font-size: 28px;
  font-weight: 700 !important;
  font-size: var(--font-size) !important;
  font-family: "GT America Extended" !important;
  /* font: $es-typo-subheader1; */
  color: #5A6673 !important;
}
@media screen and (max-width: 768px) {
  .es-typo-subheader1-important {
    --font-size: 24px !important;
  }
}

.es-typo-subheader2 {
  --font-size: 40px;
  font-weight: 500;
  font-size: var(--font-size);
  font-family: "GT Super Text";
  /* font: $es-typo-subheader2; */
  color: #48525C;
  line-height: 1.1;
  margin-top: 10.5px;
}
@media screen and (max-width: 768px) {
  .es-typo-subheader2 {
    --font-size: 32px;
  }
}

.es-typo-body {
  --font-size: 20px;
  font-weight: normal;
  font-size: var(--font-size);
  font-family: "GT America";
  /* font: $es-typo-body; */
  color: #5A6673;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .es-typo-body {
    --font-size: 12px;
    line-height: 1.2;
  }
}

.es-typo-body-serif {
  --font-size: 20px;
  font-weight: normal;
  font-size: var(--font-size);
  font-family: "GT Super Text" !important;
  /* font: $es-typo-body; */
  color: #5A6673;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .es-typo-body-serif {
    --font-size: 14px;
    line-height: 1.5;
  }
}

.es-typo-bodyhighlight {
  --font-size: 24px;
  /* font: $es-typo-bodyhighlight; */
  font-weight: 700;
  font-size: var(--font-size);
  font-family: "GT America Extended";
  color: #5A6673;
}
@media screen and (max-width: 768px) {
  .es-typo-bodyhighlight {
    --font-size: 22px;
  }
}

.es-typo-eyebrow {
  --font-size: 14px;
  font-weight: 500;
  font-size: var(--font-size);
  font-family: "GT America";
  /* font: $es-typo-eyebrow; */
  color: #48525C;
}

.es-typo-chart-label {
  --font-size: 14px;
  font-weight: 500;
  font-size: var(--font-size);
  font-family: "GT America";
  /* font: $es-typo-chart-label; */
  color: #5A6673;
}
@media screen and (max-width: 569px) {
  .es-typo-chart-label {
    --font-size: 12px;
  }
}

.es-typo-navigation {
  /* font: $es-typo-navigation; */
  font-weight: 500;
  font-size: var(--font-size);
  font-family: "GT America";
  color: #5A6673;
  --font-size: 16px;
  text-transform: uppercase;
  line-height: 18px;
}
@media screen and (min-width: 769px) and (max-width: 820px) {
  .es-typo-navigation {
    --font-size: 11px;
  }
}
@media screen and (min-width: 821px) and (max-width: 1000px) {
  .es-typo-navigation {
    --font-size: 13px;
  }
}
@media screen and (min-width: 1001px) and (max-width: 1280px) {
  .es-typo-navigation {
    --font-size: 15px;
  }
}

.es-typo-table-bold {
  /* font: $es-typo-table-bold; */
  font-weight: 700;
  font-size: var(--font-size);
  font-family: "GT America Extended";
  color: #1E252D;
  --font-size: 16px;
  text-transform: uppercase;
  line-height: 18px;
}
@media screen and (max-width: 768px) {
  .es-typo-table-bold {
    --font-size: 12px;
    line-height: 1.2;
  }
}

.es-typo-table-bold-histogram {
  text-transform: none !important;
  justify-content: left !important;
}

.es-typo-table-reg {
  /* font: $es-typo-table-reg; */
  font-weight: 500;
  font-size: var(--font-size);
  font-family: "GT America";
  color: #1E252D;
  --font-size: 16px;
  text-transform: uppercase;
  line-height: 18px;
}
@media screen and (max-width: 768px) {
  .es-typo-table-reg {
    --font-size: 12px;
    line-height: 1.2;
  }
}

.es-typo-italic {
  font-style: italic;
}

.es-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-area: content;
}
@media screen and (max-width: 768px) {
  .es-grid {
    grid-template-columns: repeat(18, 1fr);
  }
}

.es-container {
  display: grid;
  grid-template-columns: 1fr 1440px 1fr;
  grid-template-rows: min-content;
  grid-template-areas: ". content .";
}
@media (max-width: 1440px) {
  .es-container {
    grid-template-columns: 0px 1fr 0px;
  }
}
@media screen and (max-width: 768px) {
  .es-container {
    grid-template-columns: 1fr;
    grid-template-areas: "content";
  }
}

.es-container-intro-illustration {
  display: grid;
  grid-template-columns: 1fr 100% 1fr;
  grid-template-rows: min-content;
  grid-template-areas: ". content .";
}
@media (max-width: 1440px) {
  .es-container-intro-illustration {
    grid-template-columns: 0px 1fr 0px;
  }
}
@media screen and (max-width: 768px) {
  .es-container-intro-illustration {
    grid-template-columns: 1fr;
    grid-template-areas: "content";
  }
}

.img-desktop-landing {
  width: 100%;
}

.es-full {
  grid-column-start: 1;
  grid-column-end: -1;
}

body {
  font-family: "GT America";
}

#everystat-content {
  margin-top: var(--header-height);
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  body.-es-header-small {
    --header-top-padding: 34px;
  }
  body.-es-header-small #everystat-content {
    margin-top: calc(var(--general-spacing) * 2 + var(--header-content-height));
  }
}

.-es-largespacing p {
  margin: 3em 0;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

@media screen and (min-width: 769px) {
  .-es-mobileonly {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .-es-desktoponly {
    display: none !important;
  }
}

.-es-number {
  color: #E03C31;
  font-size: 1em;
  font-weight: 700;
}

.-es-number-color {
  color: #E03C31;
  font-weight: 700;
}

html.es-lockedScroll {
  height: 100%;
}
html.es-lockedScroll body {
  height: 100%;
  position: fixed;
  overflow: hidden;
  top: calc(var(--scroll-position) * -1px);
  width: 100%;
}

.es-loader {
  position: fixed;
  z-index: 1000;
  background: white;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.-es-loaded .es-loader {
  opacity: 0;
  pointer-events: none;
}

.es-loading-indicator {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.es-loading-indicator div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 13px;
  background: #004B87;
  animation: es-loading-indicator 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.es-loading-indicator div:nth-child(1) {
  left: 6px;
  animation-delay: -0.24s;
}

.es-loading-indicator div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}

.es-loading-indicator div:nth-child(3) {
  left: 45px;
  animation-delay: 0;
}

@keyframes es-loading-indicator {
  0% {
    top: 6px;
    height: 51px;
  }
  50%, 100% {
    top: 19px;
    height: 26px;
  }
}
#everystat-styleguide-page {
  height: 350vh;
}

.es-styleguide-colorsgrid {
  grid-column-start: 3;
  grid-column-end: -3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(41, 5vmin);
  grid-template-areas: "c2023 c2023 c2023 c2023 c2023 c2023 " "regalBlue2023 red2023 blue2023 m2002023 o2002023 o602023" "regalBlue2023 red2023 blue2023 m2002023 o2002023 o602023" "tc tc tc tc tc tc" "_white _white _white offWhite offWhite offWhite" "_white _white _white offWhite offWhite offWhite" "cinnabar cinnabar cinnabar regalBlue regalBlue regalBlue" "cinnabar cinnabar cinnabar regalBlue regalBlue regalBlue" "greyBeige greyBeige greyBeige shuttleGrey shuttleGrey shuttleGrey" "greyBeige greyBeige greyBeige shuttleGrey shuttleGrey shuttleGrey" "porcelain porcelain porcelain riverBed riverBed riverBed" "porcelain porcelain porcelain riverBed riverBed riverBed" "red-dark red-dark red-dark blue-dark blue-dark blue-dark" "red-dark red-dark red-dark blue-dark blue-dark blue-dark" "red red red blue blue blue" "red red red blue blue blue" "gr gr gr gr gr gr" "s400 s400 m400 m400 o400 o400" "s200 s200 m200 m200 o200 o200" "s100 s100 m100 m100 o100 o100" "s80 s80 m80 m80 o80 o80" "s60 s60 m60 m60 o60 o60" "s40 s40 m40 m40 o40 o40" "s20 s20 m20 m20 o20 o20" "s10 s10 m10 m10 o10 o10" "cm cm cm cm cm cm" "h01 h01 h01 h01 h01 h01" "h12 h12 h12 h12 h12 h12" "h23 h23 h23 h23 h23 h23" "h34 h34 h34 h34 h34 h34" "h45 h45 h45 h45 h45 h45" "h56 h56 h56 h56 h56 h56" "h67 h67 h67 h67 h67 h67" "h78 h78 h78 h78 h78 h78" "h89 h89 h89 h89 h89 h89" "h910 h910 h910 h910 h910 h910" "hm hm hm hm hm hm" "c1 c1 c1 c1 c1 c1" "c2 c2 c2 c2 c2 c2" "c3 c3 c3 c3 c3 c3" "c4 c4 c4 c4 c4 c4" "c5 c5 c5 c5 c5 c5";
  /* */
}
.es-styleguide-colorsgrid .es-color {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  flex-direction: column;
}
.es-styleguide-colorsgrid .es-color span {
  color: black;
  font-weight: 500;
  font-size: 1.7rem;
}
.es-styleguide-colorsgrid .es-color-c2023 {
  grid-area: c2023;
  background-color: "#ffffff";
}
.es-styleguide-colorsgrid .es-color-gr {
  grid-area: gr;
  background-color: "#ffffff";
}
.es-styleguide-colorsgrid .es-color-cm {
  grid-area: cm;
  background-color: "#ffffff";
}
.es-styleguide-colorsgrid .es-color-hm {
  grid-area: hm;
  background-color: "#ffffff";
}
.es-styleguide-colorsgrid .es-color-tc {
  grid-area: tc;
  background-color: "#ffffff";
}
.es-styleguide-colorsgrid .es-color-grey-beige {
  grid-area: greyBeige;
  background-color: #AAA59F;
}
.es-styleguide-colorsgrid .es-color-red2023 {
  grid-area: red2023;
  background-color: #FF352E;
}
.es-styleguide-colorsgrid .es-color-blue2023 {
  grid-area: blue2023;
  background-color: #0D3DD9;
}
.es-styleguide-colorsgrid .es-color-m2002023 {
  grid-area: m2002023;
  background-color: #1EC3F0;
}
.es-styleguide-colorsgrid .es-color-o2002023 {
  grid-area: o2002023;
  background-color: #ffffff;
}
.es-styleguide-colorsgrid .es-color-o602023 {
  grid-area: o602023;
  background-color: #BCCBEF;
}
.es-styleguide-colorsgrid .es-color-white {
  grid-area: _white;
  background-color: #ffffff;
}
.es-styleguide-colorsgrid .es-color-offWhite {
  grid-area: offWhite;
  background-color: #f4f4f5;
}
.es-styleguide-colorsgrid .es-color-cinnabar {
  grid-area: cinnabar;
  background-color: #E03C31;
}
.es-styleguide-colorsgrid .es-color-regalBlue {
  grid-area: regalBlue;
  background-color: #004073;
}
.es-styleguide-colorsgrid .es-color-regalBlue2023 {
  grid-area: regalBlue2023;
  background-color: #1D426B;
}
.es-styleguide-colorsgrid .es-color-shuttleGrey {
  grid-area: shuttleGrey;
  background-color: #5a6673;
}
.es-styleguide-colorsgrid .es-color-porcelain {
  grid-area: porcelain;
  background-color: #e8e9ea;
}
.es-styleguide-colorsgrid .es-color-riverBed {
  grid-area: riverBed;
  background-color: #48525c;
}
.es-styleguide-colorsgrid .es-color-red-dark {
  grid-area: red-dark;
  background-color: #B33027;
}
.es-styleguide-colorsgrid .es-color-red {
  grid-area: red;
  background-color: #E03C31;
}
.es-styleguide-colorsgrid .es-color-blue-dark {
  grid-area: blue-dark;
  background-color: #004073;
}
.es-styleguide-colorsgrid .es-color-blue {
  grid-area: blue;
  background-color: #004B87;
}
.es-styleguide-colorsgrid .es-color-s400 {
  grid-area: s400;
  background-color: #48525C;
}
.es-styleguide-colorsgrid .es-color-s200 {
  grid-area: s200;
  background-color: #5A6673;
}
.es-styleguide-colorsgrid .es-color-s100 {
  grid-area: s100;
  background-color: #708090;
}
.es-styleguide-colorsgrid .es-color-s80 {
  grid-area: s80;
  background-color: #8D99A6;
}
.es-styleguide-colorsgrid .es-color-s60 {
  grid-area: s60;
  background-color: #A9B3BC;
}
.es-styleguide-colorsgrid .es-color-s40 {
  grid-area: s40;
  background-color: #C6CCD3;
}
.es-styleguide-colorsgrid .es-color-s20 {
  grid-area: s20;
  background-color: #E2E6E9;
}
.es-styleguide-colorsgrid .es-color-s10 {
  grid-area: s10;
  background-color: #F1F2F4;
}
.es-styleguide-colorsgrid .es-color-m400 {
  grid-area: m400;
  background-color: #88847F;
}
.es-styleguide-colorsgrid .es-color-m200 {
  grid-area: m200;
  background-color: #AAA59F;
}
.es-styleguide-colorsgrid .es-color-m100 {
  grid-area: m100;
  background-color: #D5CEC7;
}
.es-styleguide-colorsgrid .es-color-m80 {
  grid-area: m80;
  background-color: #DDD8D2;
}
.es-styleguide-colorsgrid .es-color-m60 {
  grid-area: m60;
  background-color: #E6E2DD;
}
.es-styleguide-colorsgrid .es-color-m40 {
  grid-area: m40;
  background-color: #EEE6DE;
}
.es-styleguide-colorsgrid .es-color-m20 {
  grid-area: m20;
  background-color: #FCF5EF;
}
.es-styleguide-colorsgrid .es-color-m10 {
  grid-area: m10;
  background-color: #FDF8F5;
}
.es-styleguide-colorsgrid .es-color-o400 {
  grid-area: o400;
  background-color: #1E252D;
}
.es-styleguide-colorsgrid .es-color-o200 {
  grid-area: o200;
  background-color: #5A6673;
}
.es-styleguide-colorsgrid .es-color-o100 {
  grid-area: o100;
  background-color: #8E9296;
}
.es-styleguide-colorsgrid .es-color-o80 {
  grid-area: o80;
  background-color: #A5A8AB;
}
.es-styleguide-colorsgrid .es-color-o60 {
  grid-area: o60;
  background-color: #BBBEC0;
}
.es-styleguide-colorsgrid .es-color-o40 {
  grid-area: o40;
  background-color: #D2D3D5;
}
.es-styleguide-colorsgrid .es-color-o20 {
  grid-area: o20;
  background-color: #E8E9EA;
}
.es-styleguide-colorsgrid .es-color-o10 {
  grid-area: o10;
  background-color: #F4F4F5;
}
.es-styleguide-colorsgrid .es-color-heatmap_0-1 {
  grid-area: h01;
  background-color: #f6c4c1;
}
.es-styleguide-colorsgrid .es-color-heatmap_1-2 {
  grid-area: h12;
  background-color: #f1a39e;
}
.es-styleguide-colorsgrid .es-color-heatmap_2-3 {
  grid-area: h23;
  background-color: #ed8e88;
}
.es-styleguide-colorsgrid .es-color-heatmap_3-4 {
  grid-area: h34;
  background-color: #ea7971;
}
.es-styleguide-colorsgrid .es-color-heatmap_4-5 {
  grid-area: h45;
  background-color: #e76860;
}
.es-styleguide-colorsgrid .es-color-heatmap_5-6 {
  grid-area: h56;
  background-color: #e4564d;
}
.es-styleguide-colorsgrid .es-color-heatmap_6-7 {
  grid-area: h67;
  background-color: #e14338;
}
.es-styleguide-colorsgrid .es-color-heatmap_7-8 {
  grid-area: h78;
  background-color: #d2382e;
}
.es-styleguide-colorsgrid .es-color-heatmap_8-9 {
  grid-area: h89;
  background-color: #ba3128;
}
.es-styleguide-colorsgrid .es-color-heatmap_9-10 {
  grid-area: h910;
  background-color: #94271f;
}
.es-styleguide-colorsgrid .es-color-map-class-1 {
  grid-area: c1;
  background-color: #ffffff;
}
.es-styleguide-colorsgrid .es-color-map-class-2 {
  grid-area: c2;
  background-color: #ffcccb;
}
.es-styleguide-colorsgrid .es-color-map-class-3 {
  grid-area: c3;
  background-color: #ff9a97;
}
.es-styleguide-colorsgrid .es-color-map-class-4 {
  grid-area: c4;
  background-color: #ff6862;
}
.es-styleguide-colorsgrid .es-color-map-class-5 {
  grid-area: c5;
  background-color: #ff352e;
}

.es-styleguide-typographylist .es-typo {
  margin: 1rem 0;
}

.es-styleguide-colors h2, .es-styleguide-typography h2 {
  margin: 5rem 0;
}

.es-styleguide-colors {
  grid-column-start: 3;
  grid-column-end: -3;
}

.es-styleguide-typography {
  grid-column-start: 3;
  grid-column-end: -3;
}

.es-methodology-illustration {
  height: 80vh;
  position: relative;
}
.es-methodology-illustration:before {
  background-color: #708090;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: calc(-1 * var(--header-height));
}

.es-methods-page-title {
  margin: 0;
}

.es-methodology-section {
  background-color: white;
  padding: var(--general-spacing) 0;
}
.es-methodology-section:nth-child(2n) {
  background-color: #F1F2F4;
}

@media screen and (min-width: 1280px) {
  .es-margin-adjust {
    margin-left: 138px;
  }
}

.es-methodology-section-content {
  grid-area: 1/2/1/-4;
}
@media screen and (max-width: 768px) {
  .es-methodology-section-content {
    grid-area: 1/2/1/-2;
  }
}

.es-methodology-section-content p {
  margin-bottom: 32px;
}

.es-methodology-section-title {
  margin: 40px 0;
}

.es-methodology-footer-grid {
  grid-area: content;
}

.es-methodology-section-footnotes {
  font-size: 16px;
}

.es-methodology-footer-wrapper {
  grid-area: 1/4/1/-4;
  position: relative;
  margin: var(--general-spacing) 0 0;
  padding: var(--general-spacing) 0;
}
.es-methodology-footer-wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #8E9296;
  position: absolute;
  bottom: 100%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .es-methodology-footer-wrapper {
    grid-area: 1/2/1/-2;
  }
}

.es-methodology-lastupdate span {
  margin-left: 32px;
}

.es-methodology-links {
  padding: 10px 0 30px; /*calc(var(--general-spacing) * 3) 0;*/
  display: block;
  width: 100%;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .es-methodology-links {
    flex-direction: column;
    align-items: center;
    /*padding-top: var(--general-spacing);*/
    padding-top: 10px;
  }
}

.es-methodology-link {
  /*text-align: center;*/
  width: 100%;
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  .es-methodology-link {
    /*margin: var(--general-spacing) 0 0;*/
    margin: 5px 0 0;
  }
}

.es-methodology-link-title, .es-methodology-link-description {
  display: block;
}

.es-methodology-link-title {
  font: 20px "GT America";
  padding-bottom: var(--font-size);
  text-decoration: underline;
}

.es-methodology-links-title {
  font: 500 22px "GT America";
  padding-bottom: 20px;
}

.es-methodology-link-description {
  text-transform: uppercase;
  margin-top: 10px;
}

.es-methodology-link-icon {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: 2.25px;
  margin-bottom: 20px;
}

.es-methodology-section-h2-special {
  padding-bottom: 20px;
}

.es-faqs .es-faqs-drawer {
  --accordion-tab-selected: 0;
  background-color: white;
  padding: var(--general-spacing) 0;
}
.es-faqs .es-faqs-drawer:nth-child(2n+1) {
  background-color: #F1F2F4;
}
.es-faqs .es-faqs-drawer.-selected {
  --accordion-tab-selected: 1;
}
.es-faqs .es-faqs-drawer.-selected .es-faqs-drawer-button {
  transform: rotate(-90deg);
}
.es-faqs .es-faqs-drawer.-selected .es-faqs-drawer-button:before {
  transform: translate(-50%, -50%) scale(0);
}
.es-faqs .es-faqs-maintitle {
  grid-area: 1/2/1/-4;
  margin: var(--general-spacing) 0;
  margin-left: 138px;
}
@media screen and (max-width: 768px) {
  .es-faqs .es-faqs-maintitle {
    grid-area: 1/2/1/-2;
    text-align: center;
  }
}
.es-faqs .es-faqs-drawer-toggle {
  padding: 0;
  border: none;
  background: none;
  grid-area: 1/2/1/-4;
}
@media screen and (min-width: 1280px) {
  .es-faqs .es-faqs-drawer-toggle {
    margin-left: 138px;
  }
}
@media screen and (max-width: 768px) {
  .es-faqs .es-faqs-drawer-toggle {
    grid-area: 1/2/1/-2;
  }
}
.es-faqs .es-faqs-drawer-toggle .es-faqs-drawer-buttonwrapper {
  grid-area: 1/-2/2/-1;
}
@media screen and (max-width: 768px) {
  .es-faqs .es-faqs-drawer-toggle .es-faqs-drawer-buttonwrapper {
    display: none;
  }
}
.es-faqs .es-faqs-drawer-togglegrid {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: auto;
}
@media screen and (max-width: 768px) {
  .es-faqs .es-faqs-drawer-togglegrid {
    grid-template-columns: repeat(10, 1fr);
    justify-content: flex-start;
    grid-area: 4/1/4/-1;
  }
}
.es-faqs .es-faqs-drawer-number {
  grid-area: 1/1/1/1;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .es-faqs .es-faqs-drawer-number {
    grid-area: 1/1/1/-1;
    text-align-last: left;
  }
}
.es-faqs .es-faqs-drawer-title {
  grid-area: 2/1/2/-4;
  margin: 0px 0 22px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .es-faqs .es-faqs-drawer-title {
    grid-area: 2/1/2/-1;
  }
}
.es-faqs .es-faqs-drawer-textwrapper {
  grid-area: 3/4/3/-7;
  animation: height 0.2s;
  height: calc(var(--tab-height) * var(--accordion-tab-selected) * 1px);
  transition: height 0.2s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .es-faqs .es-faqs-drawer-textwrapper {
    grid-area: 2/2/2/-2;
    margin-bottom: 22px;
  }
}
.es-faqs .es-faqs-drawer-buttonwrapper.-es-mobileonly {
  grid-area: 3/2/3/-2;
}
@media screen and (min-width: 769px) {
  .es-faqs .es-faqs-drawer-buttonwrapper.-es-mobileonly {
    display: none;
  }
}
.es-faqs .es-faqs-drawer-button {
  display: block;
  position: relative;
  height: 45px;
  width: 45px;
  transition: transform 0.2s;
}
.es-faqs .es-faqs-drawer-button:after, .es-faqs .es-faqs-drawer-button:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #48525C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.es-faqs .es-faqs-drawer-button:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.es-faqs .es-faqs-drawer-button:before {
  transition: transform 0.2s;
}

.ct-label {
  fill: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.75rem;
  line-height: 1;
}

.ct-chart-line .ct-label,
.ct-chart-bar .ct-label {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.ct-chart-pie .ct-label,
.ct-chart-donut .ct-label {
  dominant-baseline: central;
}

.ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-label.ct-vertical.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}

.ct-label.ct-vertical.ct-end {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-chart-bar .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}

.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: end;
}

.ct-grid {
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1px;
  stroke-dasharray: 2px;
}

.ct-grid-background {
  fill: none;
}

.ct-point {
  stroke-width: 10px;
  stroke-linecap: round;
}

.ct-line {
  fill: none;
  stroke-width: 4px;
}

.ct-area {
  stroke: none;
  fill-opacity: 0.1;
}

.ct-bar {
  fill: none;
  stroke-width: 10px;
}

.ct-slice-donut {
  fill: none;
  stroke-width: 60px;
}

.ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
  stroke: #d70206;
}
.ct-series-a .ct-slice-pie, .ct-series-a .ct-slice-donut-solid, .ct-series-a .ct-area {
  fill: #d70206;
}

.ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
  stroke: #f05b4f;
}
.ct-series-b .ct-slice-pie, .ct-series-b .ct-slice-donut-solid, .ct-series-b .ct-area {
  fill: #f05b4f;
}

.ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
  stroke: #f4c63d;
}
.ct-series-c .ct-slice-pie, .ct-series-c .ct-slice-donut-solid, .ct-series-c .ct-area {
  fill: #f4c63d;
}

.ct-series-d .ct-point, .ct-series-d .ct-line, .ct-series-d .ct-bar, .ct-series-d .ct-slice-donut {
  stroke: #d17905;
}
.ct-series-d .ct-slice-pie, .ct-series-d .ct-slice-donut-solid, .ct-series-d .ct-area {
  fill: #d17905;
}

.ct-series-e .ct-point, .ct-series-e .ct-line, .ct-series-e .ct-bar, .ct-series-e .ct-slice-donut {
  stroke: #453d3f;
}
.ct-series-e .ct-slice-pie, .ct-series-e .ct-slice-donut-solid, .ct-series-e .ct-area {
  fill: #453d3f;
}

.ct-series-f .ct-point, .ct-series-f .ct-line, .ct-series-f .ct-bar, .ct-series-f .ct-slice-donut {
  stroke: #59922b;
}
.ct-series-f .ct-slice-pie, .ct-series-f .ct-slice-donut-solid, .ct-series-f .ct-area {
  fill: #59922b;
}

.ct-series-g .ct-point, .ct-series-g .ct-line, .ct-series-g .ct-bar, .ct-series-g .ct-slice-donut {
  stroke: #0544d3;
}
.ct-series-g .ct-slice-pie, .ct-series-g .ct-slice-donut-solid, .ct-series-g .ct-area {
  fill: #0544d3;
}

.ct-series-h .ct-point, .ct-series-h .ct-line, .ct-series-h .ct-bar, .ct-series-h .ct-slice-donut {
  stroke: #6b0392;
}
.ct-series-h .ct-slice-pie, .ct-series-h .ct-slice-donut-solid, .ct-series-h .ct-area {
  fill: #6b0392;
}

.ct-series-i .ct-point, .ct-series-i .ct-line, .ct-series-i .ct-bar, .ct-series-i .ct-slice-donut {
  stroke: #f05b4f;
}
.ct-series-i .ct-slice-pie, .ct-series-i .ct-slice-donut-solid, .ct-series-i .ct-area {
  fill: #f05b4f;
}

.ct-series-j .ct-point, .ct-series-j .ct-line, .ct-series-j .ct-bar, .ct-series-j .ct-slice-donut {
  stroke: #dda458;
}
.ct-series-j .ct-slice-pie, .ct-series-j .ct-slice-donut-solid, .ct-series-j .ct-area {
  fill: #dda458;
}

.ct-series-k .ct-point, .ct-series-k .ct-line, .ct-series-k .ct-bar, .ct-series-k .ct-slice-donut {
  stroke: #eacf7d;
}
.ct-series-k .ct-slice-pie, .ct-series-k .ct-slice-donut-solid, .ct-series-k .ct-area {
  fill: #eacf7d;
}

.ct-series-l .ct-point, .ct-series-l .ct-line, .ct-series-l .ct-bar, .ct-series-l .ct-slice-donut {
  stroke: #86797d;
}
.ct-series-l .ct-slice-pie, .ct-series-l .ct-slice-donut-solid, .ct-series-l .ct-area {
  fill: #86797d;
}

.ct-series-m .ct-point, .ct-series-m .ct-line, .ct-series-m .ct-bar, .ct-series-m .ct-slice-donut {
  stroke: #b2c326;
}
.ct-series-m .ct-slice-pie, .ct-series-m .ct-slice-donut-solid, .ct-series-m .ct-area {
  fill: #b2c326;
}

.ct-series-n .ct-point, .ct-series-n .ct-line, .ct-series-n .ct-bar, .ct-series-n .ct-slice-donut {
  stroke: #6188e2;
}
.ct-series-n .ct-slice-pie, .ct-series-n .ct-slice-donut-solid, .ct-series-n .ct-area {
  fill: #6188e2;
}

.ct-series-o .ct-point, .ct-series-o .ct-line, .ct-series-o .ct-bar, .ct-series-o .ct-slice-donut {
  stroke: #a748ca;
}
.ct-series-o .ct-slice-pie, .ct-series-o .ct-slice-donut-solid, .ct-series-o .ct-area {
  fill: #a748ca;
}

.ct-square {
  display: block;
  position: relative;
  width: 100%;
}
.ct-square:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 100%;
}
.ct-square:after {
  content: "";
  display: table;
  clear: both;
}
.ct-square > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-minor-second {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 93.75%;
}
.ct-minor-second:after {
  content: "";
  display: table;
  clear: both;
}
.ct-minor-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-second {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 88.8888888889%;
}
.ct-major-second:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-minor-third {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 83.3333333333%;
}
.ct-minor-third:after {
  content: "";
  display: table;
  clear: both;
}
.ct-minor-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-third {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 80%;
}
.ct-major-third:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-perfect-fourth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-perfect-fourth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 75%;
}
.ct-perfect-fourth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-perfect-fourth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-perfect-fifth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-perfect-fifth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 66.6666666667%;
}
.ct-perfect-fifth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-perfect-fifth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-minor-sixth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 62.5%;
}
.ct-minor-sixth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-minor-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-golden-section {
  display: block;
  position: relative;
  width: 100%;
}
.ct-golden-section:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 61.804697157%;
}
.ct-golden-section:after {
  content: "";
  display: table;
  clear: both;
}
.ct-golden-section > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-sixth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 60%;
}
.ct-major-sixth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-minor-seventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 56.25%;
}
.ct-minor-seventh:after {
  content: "";
  display: table;
  clear: both;
}
.ct-minor-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-seventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 53.3333333333%;
}
.ct-major-seventh:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-octave {
  display: block;
  position: relative;
  width: 100%;
}
.ct-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 50%;
}
.ct-octave:after {
  content: "";
  display: table;
  clear: both;
}
.ct-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-tenth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-tenth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 40%;
}
.ct-major-tenth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-tenth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-eleventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-eleventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 37.5%;
}
.ct-major-eleventh:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-eleventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-twelfth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-twelfth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 33.3333333333%;
}
.ct-major-twelfth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-twelfth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-double-octave {
  display: block;
  position: relative;
  width: 100%;
}
.ct-double-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 25%;
}
.ct-double-octave:after {
  content: "";
  display: table;
  clear: both;
}
.ct-double-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.es-landing-page {
  /*.es-congress-dist-callout{
      font-size:28px !important;
  }*/
  /* -------- INTRO --------- */
  /*.es-overview-dl-container-homicide {
      //display: block;
      background-color: inherit; //#f4f4f5;
      &.es-overview-dl-hide {
          display: none;
      }
  }*/
  /* -------- DONUT --------- */
  /* -------- BUCKET -------- */
  /* ----- BUCKET TOPLINE STATS ----- */
  /*.es-topline-stats-section-title{
      @media screen and (max-width: $bp-mobile) {
          min-height: 93px;
      }
  }*/
  /* ---- CHART TITLES ---- */
  /* ---- BAR GRAPHS ---- */
  /* ---- DOWNLOADS AND LINKS ---- */
  /* ------ custom dropdowns.... ----- */
}
.es-landing-page .es-landing-heatmap-captionwrapper {
  padding-top: 30px;
}
.es-landing-page .ap-footer {
  display: none;
}
.es-landing-page #searchTextField {
  width: 100%;
}
.es-landing-page #mapStateContainer {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .es-landing-page #mapStateContainer {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: row;
    height: calc(100vh - 200px);
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page #mapStateContainer .es-landing-heatmap-legend {
    /*background-color: rgb(127 255 212 / 46%);*/
    height: calc(50vh - 100px);
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page #mapStateContainer .es-landing-heatmap-chartwrapper {
    /*background-color: rgb(255 127 234 / 46%);*/
    height: calc(100vh - 400px);
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page #mapStateContainer .es-landing-heatmap-chartwrapper-national {
    /*background-color: rgb(255 127 234 / 46%);*/
    height: calc(50vh - 100px);
  }
}
.es-landing-page #mapNationalContainer {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .es-landing-page #mapNationalContainer {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: row;
    height: 100%;
    max-height: 100vh;
    width: 100%;
    /*background-color:red;*/
  }
}
@media screen and (min-width: 768px) {
  .es-landing-page #mapNationalContainer {
    height: calc(100vh - 310px);
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page #mapNationalContainer .es-landing-heatmap-legend {
    /*background-color: rgb(127 255 212 / 46%);*/
    height: calc(50vh - 100px);
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page #mapNationalContainer .es-landing-heatmap-chartwrapper {
    /*background-color: rgb(255 127 234 / 46%);*/
    height: calc(50vh - 100px);
  }
}
.es-landing-page .tab-gun-injuries, .es-landing-page .tab-economic-cost {
  margin-left: 10px;
}
.es-landing-page .es-map-tab-wrapper {
  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 2;
  grid-row-end: 2;
  width: 100%;
  height: 55px;
  position: relative;
  top: 2px;
  display: flex;
}
.es-landing-page .es-state-img {
  position: relative;
  bottom: 0%;
  left: 0%;
}
@media (max-width: 768px) {
  .es-landing-page .es-state-img {
    top: 100%;
  }
}
.es-landing-page .es-landscape-map-tab-wrapper {
  grid-column-start: 1;
  grid-column-end: -1;
  width: 100%;
  display: flex;
  border-bottom: 2px #6D7986 solid;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .es-landing-page .es-landscape-map-tab-wrapper {
    margin-bottom: 0px;
    /*display: block;
    border-bottom: 0px #6D7986 solid;
    height: 33%;
    margin-bottom: 0px;
    position: relative;
    top: -40px;*/
    border-bottom: 0px #6D7986 solid;
    /*margin-bottom: 0px;*/
  }
}
.es-landing-page .es-congress-dist-map-legend-callout {
  text-align: center;
  width: 100%;
}
.es-landing-page .es-congress-dist-map-legend {
  width: 100%;
  display: inline-flex;
  padding-top: 30px;
}
.es-landing-page .es-congress-dist-map-legend-box {
  position: relative;
  width: 5%;
  height: 0;
  padding-bottom: 4%;
}
.es-landing-page .map-class-legend-label {
  text-align: left;
  font-size: 10pt !important;
  width: 15%;
  height: 100%;
  padding-left: 2px;
  margin-top: 1%;
}
.es-landing-page .map-class-1 {
  background-color: #ffffff;
  border: 2px #47555e solid;
}
.es-landing-page .map-class-2 {
  background-color: #ffcccb;
  border: 2px #47555e solid;
}
.es-landing-page .map-class-3 {
  background-color: #ff9a97;
  border: 2px #47555e solid;
}
.es-landing-page .map-class-4 {
  background-color: #ff6862;
  border: 2px #47555e solid;
}
.es-landing-page .map-class-5 {
  background-color: #ff352e;
  border: 2px #47555e solid;
}
.es-landing-page .es-congress-dist-map-legend-container {
  grid-column-start: 5;
  grid-column-end: -5;
  grid-row-start: 4 !important;
  grid-row-end: 4 !important;
  width: 100%;
  height: 150px;
  position: relative;
  top: 2px;
  display: flex;
  margin-top: 50px;
}
.es-landing-page .es-congress-dist-map-legend-container-mobile {
  grid-column: 1/-1;
  grid-template-columns: repeat(10, 1fr);
  width: 100%;
  height: 150px;
  position: relative;
  top: 2px;
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 569px) {
  .es-landing-page .es-congress-dist-map-legend-container-mobile {
    margin-top: 0px;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-page .es-congress-dist-map-legend-container-mobile {
    margin-top: 0px !important;
  }
}
.es-landing-page .es-map-tab-state-off {
  display: none;
}
.es-landing-page .es-map-tab-state, .es-landing-page .es-map-tab-nation {
  border: 0px #48525c solid;
  height: 100%;
  width: 30%;
  max-width: 175px;
  cursor: pointer;
  padding-bottom: 10px;
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-map-tab-state, .es-landing-page .es-map-tab-nation {
    font-size: 12px;
    min-width: 130px;
    font-size: 15px;
    vertical-align: middle;
    text-align: center;
  }
}
.es-landing-page .es-landscape-map-tab {
  border: 0px #48525c solid;
  height: calc(100% - 2px);
  width: 30%;
  max-width: 175px;
  cursor: pointer;
  position: relative;
  top: -7px;
  padding: 7.5px;
  left: 20px;
  /*margin-left: 11px;*/
  background-color: #E2E6E9;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landscape-map-tab {
    font-size: 2.2vw;
    width: 33.333%;
    /*min-width: 33%;
    max-width: 33%;*/
    /*left: 0px;
    margin-left: 0px;
    margin-bottom: 15px;
    padding: 10px;
    top:0px;*/
    position: unset;
    height: 100%;
    border: 2px #E2E6E9 solid;
  }
}
.es-landing-page .es-landscape-map-tab:hover {
  background-color: #C0C6CC;
}
.es-landing-page .nation-tab {
  position: relative;
  left: 0px;
  border-top: 2px #fdf8f5 solid;
}
.es-landing-page .map-tab-selected {
  border: 2px #6D7986 solid;
  border-bottom: 2px #FDF8F5 solid;
}
.es-landing-page .landscape-map-tab-selected {
  border: 2px #6D7986 solid;
  border-bottom: 2px #ffffff solid;
  height: calc(100% + 9px);
  background-color: #ffffff !important;
}
@media (max-width: 768px) {
  .es-landing-page .landscape-map-tab-selected {
    border-bottom: 2px #6D7986 solid;
    height: 100%;
  }
}
.es-landing-page .map-tab-selected-child {
  background-color: #FDF8F5 !important;
}
.es-landing-page .es-map-off {
  display: none !important;
}
.es-landing-page .et-source-off {
  display: none;
}
.es-landing-page .landing-map-filters-off {
  display: none;
}
.es-landing-page .es-landscape-map-tab-name {
  /*background-color:$s20;*/
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
  text-transform: uppercase;
  /*font-weight: bold;*/
  font-family: "GT America";
  /*font-weight: 500;*/
}
@media (max-width: 569px) {
  .es-landing-page .es-landscape-map-tab-name {
    /*font-weight: normal;*/
    /*height: 5px;
    line-height: unset;*/
    /*height: 100%;
    font-size: 2.6vw;
    line-height: 300%;*/
    font-size: 2.2vw;
  }
}
.es-landing-page .es-map-tab-name {
  background-color: #eee6de;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  line-height: 46px;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 569px) and (orientation: portrait) {
  .es-landing-page .es-national-name {
    line-height: 1.5;
  }
}
.es-landing-page .places-autocomplete {
  width: 100%;
  Height: 60px;
  margin-bottom: 30px;
}
.es-landing-page .sourcing-left {
  text-align: left !important;
}
.es-landing-page .es-congress-table-callout {
  grid-column-start: 4;
  grid-column-end: -4;
  text-align: center;
  height: 100%;
  margin-top: 30px !important;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-congress-table-callout {
    grid-row-start: 17;
    grid-row-end: 17;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landing-congress-sidebar {
    grid-row-start: 17;
    grid-row-end: 17;
  }
}
.es-landing-page .es-map-wrapper {
  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 3;
  grid-row-end: 3;
  width: 100%;
  height: 100%; /*400px;*/
  /*height: calc(100vh - 300px); 400px;*/
  border-top: 2px #6D7986 solid;
  padding-top: 20px;
  /*@import '../../node_modules/leaflet/dist/leaflet.css';*/
  /*.leaflet-tooltip-top, .leaflet-tooltip-bottom, .leaflet-tooltip-left, .leaflet-tooltip-right {
      margin-top: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      margin-right: 0px;
  }*/
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-page .es-map-wrapper {
    height: calc(100vh - 0px);
  }
}
.es-landing-page .es-map-wrapper .leaflet-container {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0);
  z-index: 0;
}
.es-landing-page .es-map-wrapper .es-map {
  font: 8px/1 Arial;
}
.es-landing-page .es-map-wrapper .es-map .leaflet-tooltip-center {
  /*left: -2.5px;
  top: -2.5px;*/
  left: -0.5px;
  top: -0.5px;
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-page .es-map-wrapper .es-map {
    font-size: 0;
  }
}
.es-landing-page .es-map-wrapper .es-map-state {
  font-family: Arial;
  font-size: 200%;
}
.es-landing-page .es-map-wrapper .f-california {
  font-size: 60% !important;
}
.es-landing-page .es-map-wrapper .leaflet-tooltip {
  position: absolute;
  padding: 0px;
  background-color: rgba(255, 255, 255, 0);
  border: 0px solid #fff;
  border-radius: 0px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: none;
}
.es-landing-page .es-map-wrapper .leaflet-tooltip-top:before, .es-landing-page .es-map-wrapper .leaflet-tooltip-bottom:before, .es-landing-page .es-map-wrapper .leaflet-tooltip-left:before, .es-landing-page .es-map-wrapper .leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: none;
  background: transparent;
  content: "";
}
.es-landing-page .es-landing-centered-deeper-dive {
  grid-area: 20/2/20/-2;
  height: 100%;
  padding-bottom: 10vh;
  padding-top: 10vh;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landing-centered-deeper-dive {
    grid-area: 20/3/20/-3;
    padding-bottom: 6vh;
    padding-top: 10vh;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-page .es-landing-centered-deeper-dive {
    padding-top: 20vh;
  }
}
.es-landing-page .es-landing-centered-deeper-dive-v-svg {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8' standalone='no'?%3e%3c!-- Created with Inkscape (http://www.inkscape.org/) --%3e%3csvg version='1.1' id='svg824' width='53.69804' height='31.115465' viewBox='0 0 53.69804 31.115465' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3e%3cdefs id='defs828' /%3e%3cg id='layer1' transform='translate(-10.610438,-16.655304)'%3e%3cpath style='fill:%23004B87;fill-opacity:1;stroke:%233737a9;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='M 37.381655,37.785914 59.206774,16.800222 c 0,0 6.195547,-1.514184 4.931638,5.246423 L 39.585153,46.91469 c 0,0 -2.15477,1.854196 -3.882353,0.104928 L 10.624899,21.626931 c 0,0 -0.56392,-6.374272 5.351351,-4.511923 z' id='path966' /%3e%3c/g%3e%3c/svg%3e ");
  width: 34.903726px;
  height: 20.22505225px;
  background-repeat: no-repeat;
  margin-left: calc(50% - 17.225px);
  background-size: contain;
}
.es-landing-page .es-landing-centered-deeper-dive-v {
  /*width: 54px;
  height: 24px;
  */
  width: 100%;
  height: 100%;
  /*margin-left: calc(50% - 27px);*/
  margin-top: 20px;
  /*background-image: url("data:image/svg+xml,%3Csvg width='54' height='23' viewBox='0 0 54 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3L28 20L52 3' stroke='%23004B87' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  */
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landing-centered-deeper-dive-v {
    /*width: 27px;
    height: 12px;*/
    /*margin-left: calc(50% - 17px);*/
    margin-top: 10px;
    /*background-repeat: no-repeat;*/
    /*background-image: url("data:image/svg+xml,%3Csvg width='27' height='12' viewBox='0 0 54 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3L28 20L52 3' stroke='%23004B87' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    */
  }
}
.es-landing-page .es-landing-margin-top {
  margin-top: var(--general-spacing);
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landing-margin-top {
    margin-top: 20px;
  }
}
.es-landing-page .es-landing-centered-title {
  grid-area: 1/4/1/-4;
  text-align: center;
  /*margin-bottom: var(--general-spacing);*/
  padding: var(--general-spacing) 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landing-centered-title {
    grid-area: 1/3/1/-3;
    margin-bottom: 0px;
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .et-br-desktop {
    display: none;
  }
}
.es-landing-page .es-landing-intro-content-title {
  grid-area: 1/2/1/-2;
  margin-top: calc(var(--general-spacing) + 5px);
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .es-landing-page .es-landing-intro-content-title {
    margin-left: 0px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landing-intro-content-title {
    grid-area: 1/2/1/-2;
    margin-top: 0;
  }
}
.es-landing-page .es-landing-intro-content-title strong {
  font-weight: inherit;
  color: #E03C31;
}
.es-landing-page .es-landing-intro-content-title .es-typo-header1 {
  font-size: 52px;
  line-height: 54px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landing-intro-content-title .es-typo-header1 {
    font-size: 24px;
    line-height: 26px;
  }
}
.es-landing-page .es-landing-intro-content-copy {
  grid-area: 2/2/2/-2;
  font-size: 36px;
  /*margin: var(--general-spacing) 0;*/
  width: 100%;
  text-align: center;
  line-height: 48px;
}
@media screen and (min-width: 1280px) {
  .es-landing-page .es-landing-intro-content-copy {
    /*margin-left: 138px;*/
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landing-intro-content-copy {
    grid-area: 2/2/2/-2;
  }
}
.es-landing-page .es-landing-intro-illustration.-es-mobileonly {
  grid-area: 2/1/2/-1;
  /*height: 541px;*/
  width: 100%;
  /*background-size: cover;
  background-repeat: no-repeat;
  background-position: right;*/
}
.es-landing-page .es-landing-intro-illustration.-es-desktoponly {
  grid-area: 2/2/2/-1;
  /*height: 541px;*/
  height: auto;
  width: 100%;
  max-height: 45vh;
  /*background-size: cover;
  background-repeat: no-repeat;
  background-position: right;*/
}
.es-landing-page .img-desktop-landing {
  height: auto;
  width: 100%;
  max-height: 45vh;
}
.es-landing-page .es-overview-dl-container {
  display: block;
  background-color: #f4f4f5;
}
.es-landing-page .es-overview-dl-container.es-overview-dl-hide {
  display: none;
}
.es-landing-page .es-further-research-special {
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .es-landing-page .es-further-research-special {
    margin-top: 0px !important;
  }
}
.es-landing-page .es-further-research-landing {
  background-color: #ffffff !important;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-pdf-intro-title {
    font-size: 16px;
  }
}
.es-landing-page .es-pdf-intro-title-special {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-pdf-intro-title-special {
    margin-bottom: 20px;
  }
}
.es-landing-page .es-intro-pdf-wrapper {
  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 1;
  grid-row-end: 1;
  text-align: center;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-intro-pdf-wrapper {
    grid-column-start: 2;
    grid-column-end: -2;
    margin-top: 40px;
  }
}
.es-landing-page .es-intro-pdf-wrapper .es-pdf-intro-title {
  text-align: center;
  margin-bottom: 30px;
}
.es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module {
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  opacity: 1;
  border-top: 2px solid #88847F;
  border-bottom: 2px solid #88847F;
  padding: 25px 0 20px;
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module:hover {
  opacity: 0.8;
}
.es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module .es-overview-file-dl-logo-top {
  display: none;
}
.es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module .es-overview-pdf-stats-wrapper {
  display: flex;
}
.es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module .es-overview-pdf-stats-wrapper .es-download-link-icon {
  margin-bottom: 0;
}
.es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module .es-overview-file-size,
.es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module .es-overview-file-type {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module {
    flex-direction: column;
    align-items: center;
  }
  .es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module .es-overview-file-dl-logo {
    display: none;
  }
  .es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module .es-overview-file-dl-logo-top {
    display: block;
    margin-bottom: 0px;
  }
  .es-landing-page .es-intro-pdf-wrapper .es-pdf-download-module .es-overview-file-dl-logo-top .es-download-link-icon {
    margin-bottom: 0;
  }
}
.es-landing-page .es-donut-legend-explain {
  font-size: 20px;
  line-height: 25px;
  font-family: "GT Super Text" !important;
}
.es-landing-page .es-landing-donut-container .es-landing-donut {
  grid-area: 2/2/2/-2;
  text-align: center;
  /*@media (orientation: landscape) {
      @media screen and (max-height: 1049px) {*/
  /*background-color:#2e2eff77; */
  height: calc(100vh - var(--header-height) - 300px);
  /*}
  }*/
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-landing-donut-container .es-landing-donut {
    height: 100%;
    max-height: calc(100vh - 200px);
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-page .es-landing-donut-container .es-landing-donut {
    grid-auto-rows: auto;
    max-height: 100%;
  }
}
.es-landing-page .ct-series, .es-landing-page .LineChart-dot, .es-landing-page .LineChart-square, .es-landing-page .es-source-description {
  cursor: pointer;
}
.es-landing-page .es-landing-bucket-container {
  --accordion-tab-selected: 0;
  --tab-height: 0;
}
.es-landing-page .es-landing-bucket-container.-selected {
  --accordion-tab-selected: 1;
}
.es-landing-page .es-landing-bucket-container.-selected .es-bucket-title-button-wrap button {
  transform: rotate(-45deg);
}
.es-landing-page .es-bucket-category-wrapper {
  text-align: center;
}
.es-landing-page .es-bucket-category-wrapper .es-category-grid {
  padding: 20px 0;
  border-bottom: 0px solid rgba(0, 0, 0, 0.4);
}
.es-landing-page .es-bucket-category-wrapper h3 {
  grid-area: 1/4/1/-4;
  color: white;
}
.es-landing-page .es-bucket-title {
  color: white;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-title {
    text-align: left;
    max-width: calc(100% - 50px);
  }
}
.es-landing-page .es-bucket-title-histogram {
  color: white;
  text-align: left;
}
.es-landing-page .es-bucket-demo .es-bucket-label {
  background: #5A6673;
}
.es-landing-page .es-bucket-intent .es-bucket-label {
  background: #004073;
}
.es-landing-page .es-bucket-geo-congress {
  height: 0px !important; /* Congress removed 050624 (delete this to reinstate)*/
}
.es-landing-page .es-bucket-geo-congress div > div.es-bucket-label.-accordion-toggle > div > div > div.es-bucket-title-button-wrap > button {
  display: none; /* Congress removed 050624 (delete this to reinstate)*/
}
.es-landing-page .es-bucket-geo-congress .es-bucket-label {
  background: #88847F;
}
.es-landing-page .es-bucket-geo-congress .es-wrapper-for-accordion {
  background: #FDF8F5;
}
.es-landing-page .es-bucket-geo-congress .es-wrapper-for-accordion-child {
  background: #FDF8F5;
}
.es-landing-page .es-bucket-geo-congress .es-custom-intent-dd .es-available-items {
  min-width: 200px !important;
  top: 85px !important;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .margin-top-selector {
    margin-top: 80px !important;
  }
}
.es-landing-page .es-bucket-geo-congress .es-congress-callout {
  grid-row-start: 1;
  grid-row-end: 1;
}
.es-landing-page .es-bucket-geo-congress .es-congress-intent-selector {
  grid-column-start: 6;
  grid-column-end: -6;
  grid-row-start: 5;
  grid-row-end: 5;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  /*&:before {
      content: '';
      position: absolute;
      background: $blue-dark;
      border-radius: 100%;
      height: 13px;
      width: 13px;
      top: 50%;
      transform: translate(0, calc(-50% - 9px));
      @media screen and (max-width: $bp-mobile) {
          height: 7px;
          width: 7px;
      }
  }*/
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector {
    grid-column-start: 3;
    grid-column-end: -3;
    margin-right: 0px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector {
    /*width: 420px; */ /* to match that of .es-landing-selector-select */
    /*width: 100%;  to match that of .es-landing-selector-select */
    width: 380px; /*to match that of county drawer */
  }
}
.es-landing-page .es-bucket-geo-congress .es-congress-intent-selector .es-selected-item, .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector select:focus {
  color: #004073;
  padding-left: 0px;
  position: relative;
  line-height: 64px;
  border: none;
  background: none;
  width: 100%;
  font-size: 64px;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-bottom: 2px solid #004073;
  border-radius: 0;
  position: relative;
  /*background-image: url("data:image/svg+xml,%3Csvg width='54' height='23' viewBox='0 0 54 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3L28 20L52 3' stroke='%23004B87' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8' standalone='no'?%3e%3c!-- Created with Inkscape (http://www.inkscape.org/) --%3e%3csvg version='1.1' id='svg824' width='53.69804' height='31.115465' viewBox='0 0 53.69804 31.115465' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3e%3cdefs id='defs828' /%3e%3cg id='layer1' transform='translate(-10.610438,-16.655304)'%3e%3cpath style='fill:%23004B87;fill-opacity:1;stroke:%233737a9;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='M 37.381655,37.785914 59.206774,16.800222 c 0,0 6.195547,-1.514184 4.931638,5.246423 L 39.585153,46.91469 c 0,0 -2.15477,1.854196 -3.882353,0.104928 L 10.624899,21.626931 c 0,0 -0.56392,-6.374272 5.351351,-4.511923 z' id='path966' /%3e%3c/g%3e%3c/svg%3e ");
  background-repeat: no-repeat;
  /* background-position: right; */
  background-size: 35px 20px;
  background-position-x: 337px !important;
  background-position-y: 25px !important;
  /* line-height: 12vw; */
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector .es-selected-item, .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector select:focus {
    background-position: 100%;
    background-position-y: 23px !important;
  }
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector .es-selected-item, .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector select:focus {
    background-position: 385px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector .es-selected-item, .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector .es-selected-item:focus, .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector select:focus, .es-landing-page .es-bucket-geo-congress .es-congress-intent-selector select:focus:focus {
    font-size: 5.6vw;
    padding-left: 0px;
    /*background-size: 25px 12px;
     line-height: 12vw;*/
  }
}
.es-landing-page .es-bucket-geo-congress .es-off-now {
  display: none;
}
.es-landing-page .es-bucket-geo-congress .es-congresss-intent-selector {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-congresss-intent-selector {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  .es-landing-page .es-bucket-geo-congress .es-congresss-intent-selector {
    font-size: 40px;
    /*width: 100%;*/
  }
}
@media screen and (min-width: 901px) and (max-width: 1050px) {
  .es-landing-page .es-bucket-geo-congress .es-congresss-intent-selector {
    font-size: 50px;
    /*width: 100%;*/
  }
}
.es-landing-page .es-bucket-geo-congress .es-topline-table-wrapper {
  grid-column-start: 2;
  grid-column-end: -2;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table,
.es-landing-page .es-bucket-geo-congress .es-congress-table {
  margin-bottom: 70px;
  border: none;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-topline-table,
  .es-landing-page .es-bucket-geo-congress .es-congress-table {
    grid-column-start: 3;
    grid-column-end: -3;
  }
}
.es-landing-page .es-bucket-geo-congress .es-topline-table tbody,
.es-landing-page .es-bucket-geo-congress .es-topline-table thead,
.es-landing-page .es-bucket-geo-congress .es-congress-table tbody,
.es-landing-page .es-bucket-geo-congress .es-congress-table thead {
  background: none;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table tbody.highlightColumn-0,
.es-landing-page .es-bucket-geo-congress .es-congress-table tbody.highlightColumn-0 {
  display: none;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table .es-table-header,
.es-landing-page .es-bucket-geo-congress .es-congress-table .es-table-header {
  text-align: center;
  text-transform: uppercase;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table tr,
.es-landing-page .es-bucket-geo-congress .es-congress-table tr {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  background: none;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table th,
.es-landing-page .es-bucket-geo-congress .es-topline-table td,
.es-landing-page .es-bucket-geo-congress .es-congress-table th,
.es-landing-page .es-bucket-geo-congress .es-congress-table td {
  white-space: normal;
  background: #FDF8F5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table th.es-table-col-1,
.es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-1,
.es-landing-page .es-bucket-geo-congress .es-congress-table th.es-table-col-1,
.es-landing-page .es-bucket-geo-congress .es-congress-table td.es-table-col-1 {
  grid-column-start: 1;
  grid-column-end: 7;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table th.es-table-col-2,
.es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-2,
.es-landing-page .es-bucket-geo-congress .es-congress-table th.es-table-col-2,
.es-landing-page .es-bucket-geo-congress .es-congress-table td.es-table-col-2 {
  grid-column-start: 7;
  grid-column-end: 11;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table th.es-table-col-3,
.es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-3,
.es-landing-page .es-bucket-geo-congress .es-congress-table th.es-table-col-3,
.es-landing-page .es-bucket-geo-congress .es-congress-table td.es-table-col-3 {
  grid-column-start: 11;
  grid-column-end: 15;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table th.es-table-col-4,
.es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-4,
.es-landing-page .es-bucket-geo-congress .es-congress-table th.es-table-col-4,
.es-landing-page .es-bucket-geo-congress .es-congress-table td.es-table-col-4 {
  grid-column-start: 15;
  grid-column-end: 19;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table th,
.es-landing-page .es-bucket-geo-congress .es-congress-table th {
  padding: 15px 0;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table td,
.es-landing-page .es-bucket-geo-congress .es-congress-table td {
  padding: 20px 0;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table.col-highlight-0 tr td:nth-child(1),
.es-landing-page .es-bucket-geo-congress .es-topline-table.col-highlight-0 tr th:nth-child(1),
.es-landing-page .es-bucket-geo-congress .es-congress-table.col-highlight-0 tr td:nth-child(1),
.es-landing-page .es-bucket-geo-congress .es-congress-table.col-highlight-0 tr th:nth-child(1) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table.col-highlight-1 tr td:nth-child(2),
.es-landing-page .es-bucket-geo-congress .es-topline-table.col-highlight-1 tr th:nth-child(2),
.es-landing-page .es-bucket-geo-congress .es-congress-table.col-highlight-1 tr td:nth-child(2),
.es-landing-page .es-bucket-geo-congress .es-congress-table.col-highlight-1 tr th:nth-child(2) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table.col-highlight-2 tr td:nth-child(3),
.es-landing-page .es-bucket-geo-congress .es-topline-table.col-highlight-2 tr th:nth-child(3),
.es-landing-page .es-bucket-geo-congress .es-congress-table.col-highlight-2 tr td:nth-child(3),
.es-landing-page .es-bucket-geo-congress .es-congress-table.col-highlight-2 tr th:nth-child(3) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-geo-congress .es-topline-table.col-highlight-3 tr td:nth-child(4),
.es-landing-page .es-bucket-geo-congress .es-topline-table.col-highlight-3 tr th:nth-child(4),
.es-landing-page .es-bucket-geo-congress .es-congress-table.col-highlight-3 tr td:nth-child(4),
.es-landing-page .es-bucket-geo-congress .es-congress-table.col-highlight-3 tr th:nth-child(4) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-geo-congress .es-congress-table {
  margin-bottom: 40px;
  width: 100%;
}
.es-landing-page .es-bucket-geo-congress .es-congress-table .es-congress-sourcing {
  text-align: right;
  margin-bottom: 40px;
}
.es-landing-page .es-bucket-geo-congress .es-congress-sourcing {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-topline-table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-topline-table tr {
    display: table-row;
    width: 100%;
  }
  .es-landing-page .es-bucket-geo-congress .es-topline-table tr td:first-child, .es-landing-page .es-bucket-geo-congress .es-topline-table tr th:first-child {
    width: 25vw;
  }
}
.es-landing-page .es-bucket-geo-congress .es-topline-table td {
  border: 2px solid #1E252D;
}
@media screen and (min-width: 769px) {
  .es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-1, .es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-2, .es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-3 {
    border-left: none;
  }
  .es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-4 {
    border-right: none;
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-topline-table td {
    display: table-cell;
    background: none;
  }
  .es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-1, .es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-2, .es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-3, .es-landing-page .es-bucket-geo-congress .es-topline-table td.es-table-col-4 {
    border-right: none;
    border-left: none;
  }
}
.es-landing-page .es-bucket-geo-congress .es-topline-table th {
  border: none;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-topline-table th {
    height: 40vw;
    position: relative;
    display: table-cell;
    background: none;
  }
  .es-landing-page .es-bucket-geo-congress .es-topline-table th span {
    position: absolute;
    display: block;
    transform: rotate(-90deg) translate(-35%, -50%);
    width: 40vw;
    text-align: left;
    top: 50%;
    left: 50%;
    transform-origin: top left;
  }
}
.es-landing-page .es-bucket-geo-congress .es-congress-table th,
.es-landing-page .es-bucket-geo-congress .es-congress-table td {
  border: none;
}
.es-landing-page .es-bucket-geo-congress .es-congress-table th {
  cursor: pointer;
  border-bottom: 2px solid #AAA59F;
}
.es-landing-page .es-bucket-geo-congress .es-congress-table th p {
  margin: 0;
}
.es-landing-page .es-bucket-geo-congress .es-congress-table th.asc svg {
  transform: rotate(180deg);
}
.es-landing-page .es-bucket-geo-congress .es-congress-table th svg {
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-congress-table th {
    position: relative;
    display: table-cell;
    background: none;
  }
  .es-landing-page .es-bucket-geo-congress .es-congress-table th.es-table-counties-header {
    height: 40vw;
    display: flex;
    align-items: flex-end;
  }
  .es-landing-page .es-bucket-geo-congress .es-congress-table th.es-table-counties-header p {
    width: 121px;
    word-break: break-word;
    position: absolute;
    display: block;
    text-align: left;
    top: 50%;
    left: 50%;
    transform-origin: top left;
    transform: rotate(-90deg) translate(-35%, -50%);
  }
}
.es-landing-page .es-bucket-geo-congress .es-congress-table td {
  transition: all 300ms ease-in-out;
  border-bottom: 2px solid #FCF5EF;
}
.es-landing-page .es-bucket-geo-congress .es-congress-table td.es-table-col-2, .es-landing-page .es-bucket-geo-congress .es-congress-table td.es-table-col-3, .es-landing-page .es-bucket-geo-congress .es-congress-table td.es-table-col-4 {
  border-left: 2px solid #D5CEC7;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo-congress .es-congress-table td.es-table-col-1 {
    padding-right: 5px;
  }
}
.es-landing-page .es-bucket-geo-congress .es-congress-table tr:hover td:nth-child(1),
.es-landing-page .es-bucket-geo-congress .es-congress-table tr:hover td:nth-child(2),
.es-landing-page .es-bucket-geo-congress .es-congress-table tr:hover td:nth-child(3),
.es-landing-page .es-bucket-geo-congress .es-congress-table tr:hover td:nth-child(4) {
  cursor: pointer;
  background: #004073;
  border-left: none;
  border-right: none;
  color: white;
}
.es-landing-page .es-bucket-geo-congress .es-county-counties-and-disclaimer {
  grid-column-start: 4;
  grid-column-end: -4;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0px;
}
.es-landing-page .es-bucket-geo-congress .es-county-counties-and-disclaimer .es-counties-callout {
  margin-bottom: 20px;
}
.es-landing-page .es-bucket-geo-congress .es-county-counties-and-disclaimer .es-counties-disclaimer {
  margin-bottom: 80px;
  text-transform: uppercase;
}
.es-landing-page .es-bucket-geo-congress .intent-off {
  display: none;
}
.es-landing-page .es-bucket-geo-congress .es-dlw-counties {
  margin-top: 80px;
  /*@media screen and (max-width: $bp-mobile) {
      margin-top: 20px;
  }*/
}
.es-landing-page .es-bucket-geo .es-bucket-label {
  background: #88847F;
}
.es-landing-page .es-bucket-geo .es-wrapper-for-accordion {
  background: #FDF8F5;
}
.es-landing-page .es-bucket-geo .es-wrapper-for-accordion-child {
  background: #FDF8F5;
}
.es-landing-page .es-bucket-geo .es-custom-intent-dd .es-available-items {
  min-width: 200px !important;
  top: 85px !important;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-custom-intent-dd .es-available-items {
    top: 67px !important;
  }
}
.es-landing-page .es-bucket-geo .es-county-intent-selector {
  grid-column-start: 4;
  grid-column-end: -11;
  grid-row-start: 1;
  grid-row-end: 1;
  margin-top: 80px;
  margin-bottom: 80px;
  margin-right: 20px;
  position: relative;
  /*&:before {
      content: '';
      position: absolute;
      left: 0;
      background: $blue-dark;
      border-radius: 100%;
      height: 13px;
      width: 13px;
      top: 50%;
      transform: translate(0, calc(-50% - 9px));
      @media screen and (max-width: $bp-mobile) {
          height: 7px;
          width: 7px;
      }
  }*/
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-county-intent-selector {
    grid-column-start: 3;
    grid-column-end: -3;
    margin-right: 0px;
  }
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-bucket-geo .es-county-intent-selector {
    width: 380px; /* to match that of .es-landing-selector-select */
  }
}
.es-landing-page .es-bucket-geo .es-county-intent-selector .es-selected-item, .es-landing-page .es-bucket-geo .es-county-intent-selector select:focus {
  color: #004073;
  padding-left: 0px;
  position: relative;
  line-height: 64px;
  border: none;
  background: none;
  width: 100%;
  font-size: 64px;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-bottom: 2px solid #004073;
  border-radius: 0;
  position: relative;
  /*background-image: url("data:image/svg+xml,%3Csvg width='54' height='23' viewBox='0 0 54 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3L28 20L52 3' stroke='%23004B87' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8' standalone='no'?%3e%3c!-- Created with Inkscape (http://www.inkscape.org/) --%3e%3csvg version='1.1' id='svg824' width='53.69804' height='31.115465' viewBox='0 0 53.69804 31.115465' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3e%3cdefs id='defs828' /%3e%3cg id='layer1' transform='translate(-10.610438,-16.655304)'%3e%3cpath style='fill:%23004B87;fill-opacity:1;stroke:%233737a9;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='M 37.381655,37.785914 59.206774,16.800222 c 0,0 6.195547,-1.514184 4.931638,5.246423 L 39.585153,46.91469 c 0,0 -2.15477,1.854196 -3.882353,0.104928 L 10.624899,21.626931 c 0,0 -0.56392,-6.374272 5.351351,-4.511923 z' id='path966' /%3e%3c/g%3e%3c/svg%3e ");
  background-repeat: no-repeat;
  /* background-position: right; */
  background-size: 35px 20px;
  background-position-x: 337px !important;
  background-position-y: 25px !important;
  /* line-height: 12vw; */
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-county-intent-selector .es-selected-item, .es-landing-page .es-bucket-geo .es-county-intent-selector select:focus {
    background-position: 100%;
    line-height: 50px;
    background-position-y: 18px !important;
  }
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-bucket-geo .es-county-intent-selector .es-selected-item, .es-landing-page .es-bucket-geo .es-county-intent-selector select:focus {
    background-position: 345px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-county-intent-selector .es-selected-item, .es-landing-page .es-bucket-geo .es-county-intent-selector .es-selected-item:focus, .es-landing-page .es-bucket-geo .es-county-intent-selector select:focus, .es-landing-page .es-bucket-geo .es-county-intent-selector select:focus:focus {
    font-size: 5.6vw;
    padding-left: 0px;
    /* background-size: 25px 12px;
    line-height: 12vw;*/
  }
}
.es-landing-page .es-bucket-geo .es-counties-intent-selector {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-counties-intent-selector {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  .es-landing-page .es-bucket-geo .es-counties-intent-selector {
    font-size: 40px;
    width: 100%;
  }
}
@media screen and (min-width: 901px) and (max-width: 1050px) {
  .es-landing-page .es-bucket-geo .es-counties-intent-selector {
    font-size: 50px;
    width: 100%;
  }
}
.es-landing-page .es-bucket-geo .es-topline-table-wrapper {
  grid-column-start: 4;
  grid-column-end: -4;
}
.es-landing-page .es-bucket-geo .es-data-table-nodata {
  text-align: center;
  width: 100%;
  margin: 30px;
  font-style: italic;
  font-size: 2vh;
  line-height: 2vh;
}
.es-landing-page .es-bucket-geo .es-topline-table,
.es-landing-page .es-bucket-geo .es-counties-table {
  margin-bottom: 70px;
  border: none;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-topline-table,
  .es-landing-page .es-bucket-geo .es-counties-table {
    grid-column-start: 3;
    grid-column-end: -3;
  }
}
.es-landing-page .es-bucket-geo .es-topline-table tbody,
.es-landing-page .es-bucket-geo .es-topline-table thead,
.es-landing-page .es-bucket-geo .es-counties-table tbody,
.es-landing-page .es-bucket-geo .es-counties-table thead {
  background: none;
}
.es-landing-page .es-bucket-geo .es-topline-table tbody.highlightColumn-0,
.es-landing-page .es-bucket-geo .es-counties-table tbody.highlightColumn-0 {
  display: none;
}
.es-landing-page .es-bucket-geo .es-topline-table .es-table-header,
.es-landing-page .es-bucket-geo .es-counties-table .es-table-header {
  text-align: center;
  text-transform: uppercase;
}
.es-landing-page .es-bucket-geo .es-topline-table tr,
.es-landing-page .es-bucket-geo .es-counties-table tr {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  background: none;
}
.es-landing-page .es-bucket-geo .es-topline-table th,
.es-landing-page .es-bucket-geo .es-topline-table td,
.es-landing-page .es-bucket-geo .es-counties-table th,
.es-landing-page .es-bucket-geo .es-counties-table td {
  white-space: normal;
  background: #FDF8F5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.es-landing-page .es-bucket-geo .es-topline-table th.es-table-col-1,
.es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-1,
.es-landing-page .es-bucket-geo .es-counties-table th.es-table-col-1,
.es-landing-page .es-bucket-geo .es-counties-table td.es-table-col-1 {
  grid-column-start: 1;
  grid-column-end: 7;
}
.es-landing-page .es-bucket-geo .es-topline-table th.es-table-col-2,
.es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-2,
.es-landing-page .es-bucket-geo .es-counties-table th.es-table-col-2,
.es-landing-page .es-bucket-geo .es-counties-table td.es-table-col-2 {
  grid-column-start: 7;
  grid-column-end: 11;
}
.es-landing-page .es-bucket-geo .es-topline-table th.es-table-col-3,
.es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-3,
.es-landing-page .es-bucket-geo .es-counties-table th.es-table-col-3,
.es-landing-page .es-bucket-geo .es-counties-table td.es-table-col-3 {
  grid-column-start: 11;
  grid-column-end: 15;
}
.es-landing-page .es-bucket-geo .es-topline-table th.es-table-col-4,
.es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-4,
.es-landing-page .es-bucket-geo .es-counties-table th.es-table-col-4,
.es-landing-page .es-bucket-geo .es-counties-table td.es-table-col-4 {
  grid-column-start: 15;
  grid-column-end: 19;
}
.es-landing-page .es-bucket-geo .es-topline-table th,
.es-landing-page .es-bucket-geo .es-counties-table th {
  padding: 15px 0;
}
.es-landing-page .es-bucket-geo .es-topline-table td,
.es-landing-page .es-bucket-geo .es-counties-table td {
  padding: 20px 0;
}
.es-landing-page .es-bucket-geo .es-topline-table.col-highlight-0 tr td:nth-child(1),
.es-landing-page .es-bucket-geo .es-topline-table.col-highlight-0 tr th:nth-child(1),
.es-landing-page .es-bucket-geo .es-counties-table.col-highlight-0 tr td:nth-child(1),
.es-landing-page .es-bucket-geo .es-counties-table.col-highlight-0 tr th:nth-child(1) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-geo .es-topline-table.col-highlight-1 tr td:nth-child(2),
.es-landing-page .es-bucket-geo .es-topline-table.col-highlight-1 tr th:nth-child(2),
.es-landing-page .es-bucket-geo .es-counties-table.col-highlight-1 tr td:nth-child(2),
.es-landing-page .es-bucket-geo .es-counties-table.col-highlight-1 tr th:nth-child(2) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-geo .es-topline-table.col-highlight-2 tr td:nth-child(3),
.es-landing-page .es-bucket-geo .es-topline-table.col-highlight-2 tr th:nth-child(3),
.es-landing-page .es-bucket-geo .es-counties-table.col-highlight-2 tr td:nth-child(3),
.es-landing-page .es-bucket-geo .es-counties-table.col-highlight-2 tr th:nth-child(3) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-geo .es-topline-table.col-highlight-3 tr td:nth-child(4),
.es-landing-page .es-bucket-geo .es-topline-table.col-highlight-3 tr th:nth-child(4),
.es-landing-page .es-bucket-geo .es-counties-table.col-highlight-3 tr td:nth-child(4),
.es-landing-page .es-bucket-geo .es-counties-table.col-highlight-3 tr th:nth-child(4) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-geo .es-counties-table {
  margin-bottom: 40px;
  width: 100%;
}
.es-landing-page .es-bucket-geo .es-counties-table .es-county-sourcing {
  text-align: right;
  margin-bottom: 40px;
}
.es-landing-page .es-bucket-geo .es-county-sourcing {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-topline-table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-topline-table tr {
    display: table-row;
    width: 100%;
  }
  .es-landing-page .es-bucket-geo .es-topline-table tr td:first-child, .es-landing-page .es-bucket-geo .es-topline-table tr th:first-child {
    width: 25vw;
  }
}
.es-landing-page .es-bucket-geo .es-topline-table td {
  border: 2px solid #1E252D;
}
@media screen and (min-width: 769px) {
  .es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-1, .es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-2, .es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-3 {
    border-left: none;
  }
  .es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-4 {
    border-right: none;
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-topline-table td {
    display: table-cell;
    background: none;
  }
  .es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-1, .es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-2, .es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-3, .es-landing-page .es-bucket-geo .es-topline-table td.es-table-col-4 {
    border-right: none;
    border-left: none;
  }
}
.es-landing-page .es-bucket-geo .es-topline-table th {
  border: none;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-topline-table th {
    height: 50vw;
    position: relative;
    display: table-cell;
    background: none;
  }
  .es-landing-page .es-bucket-geo .es-topline-table th span {
    position: absolute;
    display: block;
    transform: rotate(-90deg) translate(-35%, -50%);
    width: 60vw;
    text-align: left;
    top: 50%;
    left: 50%;
    transform-origin: top left;
  }
}
.es-landing-page .es-bucket-geo .es-counties-table th,
.es-landing-page .es-bucket-geo .es-counties-table td {
  border: none;
}
.es-landing-page .es-bucket-geo .es-counties-table th {
  cursor: pointer;
  border-bottom: 2px solid #AAA59F;
}
.es-landing-page .es-bucket-geo .es-counties-table th p {
  margin: 0;
}
.es-landing-page .es-bucket-geo .es-counties-table th.asc svg {
  transform: rotate(180deg);
}
.es-landing-page .es-bucket-geo .es-counties-table th svg {
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-counties-table th {
    position: relative;
    display: table-cell;
    background: none;
  }
  .es-landing-page .es-bucket-geo .es-counties-table th.es-table-counties-header {
    height: 40vw;
    display: flex;
    align-items: flex-end;
  }
  .es-landing-page .es-bucket-geo .es-counties-table th.es-table-counties-header p {
    width: 40vw;
    position: absolute;
    display: block;
    text-align: left;
    top: 50%;
    left: 50%;
    transform-origin: top left;
    transform: rotate(-90deg) translate(-25%, -50%);
  }
}
.es-landing-page .es-bucket-geo .es-counties-table td {
  transition: all 300ms ease-in-out;
  border-bottom: 2px solid #FCF5EF;
}
.es-landing-page .es-bucket-geo .es-counties-table td.es-table-col-2, .es-landing-page .es-bucket-geo .es-counties-table td.es-table-col-3, .es-landing-page .es-bucket-geo .es-counties-table td.es-table-col-4 {
  border-left: 2px solid #D5CEC7;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-geo .es-counties-table td.es-table-col-1 {
    padding-right: 5px;
  }
}
.es-landing-page .es-bucket-geo .es-counties-table tr:hover td:nth-child(1),
.es-landing-page .es-bucket-geo .es-counties-table tr:hover td:nth-child(2),
.es-landing-page .es-bucket-geo .es-counties-table tr:hover td:nth-child(3),
.es-landing-page .es-bucket-geo .es-counties-table tr:hover td:nth-child(4) {
  cursor: pointer;
  background: #004073;
  border-left: none;
  border-right: none;
  color: white;
}
.es-landing-page .es-bucket-geo .es-county-counties-and-disclaimer {
  grid-column-start: 4;
  grid-column-end: -4;
  text-align: center;
}
.es-landing-page .es-bucket-geo .es-county-counties-and-disclaimer .es-counties-callout {
  margin-bottom: 20px;
}
.es-landing-page .es-bucket-geo .es-county-counties-and-disclaimer .es-counties-disclaimer {
  margin-bottom: 80px;
  text-transform: uppercase;
}
.es-landing-page .es-bucket-geo .es-dlw-counties {
  margin-top: 80px;
  /*@media screen and (max-width: $bp-mobile) {
      margin-top: 20px;
  }*/
}
.es-landing-page .es-bucket-histogram {
  background: rgba(253, 248, 245, 0) !important;
}
.es-landing-page .es-bucket-histogram .es-bucket-label {
  background: #88847F;
}
.es-landing-page .es-bucket-histogram .es-wrapper-for-accordion {
  background: rgba(253, 248, 245, 0);
}
.es-landing-page .es-bucket-histogram .es-wrapper-for-accordion-child {
  background: rgba(253, 248, 245, 0);
}
.es-landing-page .es-bucket-histogram .es-county-intent-selector {
  grid-column-start: 5;
  grid-column-end: -11;
  grid-row-start: 1;
  grid-row-end: 1;
  margin-top: 80px;
  margin-bottom: 80px;
  margin-right: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-county-intent-selector {
    grid-column-start: 3;
    grid-column-end: -3;
    margin-right: 0px;
  }
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-county-intent-selector {
    width: 420px; /* to match that of .es-landing-selector-select */
  }
}
.es-landing-page .es-bucket-histogram .es-county-intent-selector:before {
  content: "";
  position: absolute;
  left: 0;
  background: #004073;
  border-radius: 100%;
  height: 13px;
  width: 13px;
  top: 50%;
  transform: translate(0, calc(-50% - 9px));
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-county-intent-selector:before {
    height: 7px;
    width: 7px;
  }
}
.es-landing-page .es-bucket-histogram .es-county-intent-selector .es-selected-item, .es-landing-page .es-bucket-histogram .es-county-intent-selector select:focus {
  color: #004073;
  padding-left: 21px;
  position: relative;
  line-height: 64px;
  border: none;
  background: none;
  width: 100%;
  font-size: 64px;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-bottom: 2px solid #004073;
  border-radius: 0;
  position: relative;
  /*background-image: url("data:image/svg+xml,%3Csvg width='54' height='23' viewBox='0 0 54 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3L28 20L52 3' stroke='%23004B87' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8' standalone='no'?%3e%3c!-- Created with Inkscape (http://www.inkscape.org/) --%3e%3csvg version='1.1' id='svg824' width='53.69804' height='31.115465' viewBox='0 0 53.69804 31.115465' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3e%3cdefs id='defs828' /%3e%3cg id='layer1' transform='translate(-10.610438,-16.655304)'%3e%3cpath style='fill:%23004B87;fill-opacity:1;stroke:%233737a9;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='M 37.381655,37.785914 59.206774,16.800222 c 0,0 6.195547,-1.514184 4.931638,5.246423 L 39.585153,46.91469 c 0,0 -2.15477,1.854196 -3.882353,0.104928 L 10.624899,21.626931 c 0,0 -0.56392,-6.374272 5.351351,-4.511923 z' id='path966' /%3e%3c/g%3e%3c/svg%3e ");
  background-repeat: no-repeat;
  /* background-position: right; */
  background-size: 25px 12px;
  /* line-height: 12vw; */
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-county-intent-selector .es-selected-item, .es-landing-page .es-bucket-histogram .es-county-intent-selector select:focus {
    background-position: 100%;
  }
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-county-intent-selector .es-selected-item, .es-landing-page .es-bucket-histogram .es-county-intent-selector select:focus {
    background-position: 385px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-county-intent-selector .es-selected-item, .es-landing-page .es-bucket-histogram .es-county-intent-selector .es-selected-item:focus, .es-landing-page .es-bucket-histogram .es-county-intent-selector select:focus, .es-landing-page .es-bucket-histogram .es-county-intent-selector select:focus:focus {
    font-size: 5.6vw;
    padding-left: 20px;
    background-size: 25px 12px;
    /* line-height: 12vw;*/
  }
}
.es-landing-page .es-bucket-histogram .es-counties-intent-selector {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-counties-intent-selector {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
  .es-landing-page .es-bucket-histogram .es-counties-intent-selector {
    font-size: 40px;
    width: 100%;
  }
}
@media screen and (min-width: 901px) and (max-width: 1050px) {
  .es-landing-page .es-bucket-histogram .es-counties-intent-selector {
    font-size: 50px;
    width: 100%;
  }
}
.es-landing-page .es-bucket-histogram .es-topline-table-wrapper-hist {
  grid-column-start: 2;
  grid-column-end: -2;
  /*
  grid-column-start: 4;
  grid-column-end: -4;
  */
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-typo-table-mobileonly {
    visibility: visible;
  }
  .es-landing-page .es-bucket-histogram .es-typo-table-desktoponly {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .es-landing-page .es-bucket-histogram .es-typo-table-desktopeonly {
    visibility: visible;
  }
  .es-landing-page .es-bucket-histogram .es-typo-table-mobileonly {
    display: none !important;
  }
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td {
  padding: 2.5vh 0 !important;
}
.es-landing-page .es-bucket-histogram .es-topline-table,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide {
  margin-bottom: 70px;
  border: none;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-topline-table,
  .es-landing-page .es-bucket-histogram .es-histogram-table-homicide,
  .es-landing-page .es-bucket-histogram .es-histogram-table-suicide {
    grid-column-start: 3;
    grid-column-end: -3;
  }
}
.es-landing-page .es-bucket-histogram .es-topline-table tbody,
.es-landing-page .es-bucket-histogram .es-topline-table thead,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide tbody,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide thead,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide tbody,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide thead {
  background: none;
  grid-column-start: 1;
  grid-column-end: 19;
}
.es-landing-page .es-bucket-histogram .es-topline-table tbody.highlightColumn-0,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide tbody.highlightColumn-0,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide tbody.highlightColumn-0 {
  display: none;
}
.es-landing-page .es-bucket-histogram .es-topline-table .es-table-header,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide .es-table-header,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide .es-table-header {
  text-align: center;
  text-transform: uppercase;
}
.es-landing-page .es-bucket-histogram .es-topline-table tr,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide tr,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide tr {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  background: none;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-topline-table tr,
  .es-landing-page .es-bucket-histogram .es-histogram-table-homicide tr,
  .es-landing-page .es-bucket-histogram .es-histogram-table-suicide tr {
    grid-template-columns: repeat(12, 1fr);
  }
}
.es-landing-page .es-bucket-histogram .es-topline-table th,
.es-landing-page .es-bucket-histogram .es-topline-table td,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td {
  white-space: normal;
  background: #ffffff;
  display: flex;
  justify-content: left;
  align-items: left;
}
.es-landing-page .es-bucket-histogram .es-topline-table th.es-table-col-1,
.es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-1,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th.es-table-col-1,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td.es-table-col-1,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th.es-table-col-1,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td.es-table-col-1 {
  grid-column-start: 1;
  grid-column-end: 2;
}
.es-landing-page .es-bucket-histogram .es-topline-table th.es-table-col-2,
.es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-2,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th.es-table-col-2,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td.es-table-col-2,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th.es-table-col-2,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td.es-table-col-2 {
  grid-column-start: 2;
  grid-column-end: 5;
  padding-left: 8px;
}
.es-landing-page .es-bucket-histogram .es-topline-table th.es-table-col-3,
.es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-3,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th.es-table-col-3,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td.es-table-col-3,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th.es-table-col-3,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td.es-table-col-3 {
  grid-column-start: 5;
  grid-column-end: 7;
}
.es-landing-page .es-bucket-histogram .es-topline-table th.es-table-col-4,
.es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-4,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th.es-table-col-4,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td.es-table-col-4,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th.es-table-col-4,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td.es-table-col-4 {
  grid-column-start: 7;
  grid-column-end: 19;
  z-index: 0;
}
.es-landing-page .es-bucket-histogram .es-topline-table th,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th {
  padding: 15px 0;
}
.es-landing-page .es-bucket-histogram .es-topline-table th.es-table-col-3-histogram,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th.es-table-col-3-histogram,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th.es-table-col-3-histogram {
  grid-column-start: 5 !important;
  grid-column-end: 19 !important;
}
.es-landing-page .es-bucket-histogram .es-topline-table th.es-table-col-4-histogram,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th.es-table-col-4-histogram,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th.es-table-col-4-histogram {
  grid-column-start: 19 !important;
  grid-column-end: 19 !important;
}
.es-landing-page .es-bucket-histogram .es-topline-table td,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td {
  /*padding: 20px 0;*/
  padding: 3vh 0;
}
.es-landing-page .es-bucket-histogram .es-topline-table.col-highlight-0 tr td:nth-child(1),
.es-landing-page .es-bucket-histogram .es-topline-table.col-highlight-0 tr th:nth-child(1),
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide.col-highlight-0 tr td:nth-child(1),
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide.col-highlight-0 tr th:nth-child(1),
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide.col-highlight-0 tr td:nth-child(1),
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide.col-highlight-0 tr th:nth-child(1) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-histogram .es-topline-table.col-highlight-1 tr td:nth-child(2),
.es-landing-page .es-bucket-histogram .es-topline-table.col-highlight-1 tr th:nth-child(2),
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide.col-highlight-1 tr td:nth-child(2),
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide.col-highlight-1 tr th:nth-child(2),
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide.col-highlight-1 tr td:nth-child(2),
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide.col-highlight-1 tr th:nth-child(2) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-histogram .es-topline-table.col-highlight-2 tr td:nth-child(3),
.es-landing-page .es-bucket-histogram .es-topline-table.col-highlight-2 tr th:nth-child(3),
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide.col-highlight-2 tr td:nth-child(3),
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide.col-highlight-2 tr th:nth-child(3),
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide.col-highlight-2 tr td:nth-child(3),
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide.col-highlight-2 tr th:nth-child(3) {
  background: #EEE6DE;
}
.es-landing-page .es-bucket-histogram .es-topline-table.col-highlight-3 tr td:nth-child(4),
.es-landing-page .es-bucket-histogram .es-topline-table.col-highlight-3 tr th:nth-child(4),
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide.col-highlight-3 tr td:nth-child(4),
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide.col-highlight-3 tr th:nth-child(4),
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide.col-highlight-3 tr td:nth-child(4),
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide.col-highlight-3 tr th:nth-child(4) {
  background: rgba(253, 248, 245, 0);
}
.es-landing-page .es-bucket-histogram .es-scroll-to-div {
  width: 100%;
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide .es-county-sourcing,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide .es-county-sourcing {
  text-align: right;
  margin-bottom: 40px;
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide .es-typo-table-reg,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide .es-typo-table-reg {
  color: #48525c;
  text-transform: none;
  text-align: left !important;
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide .es-typo-table-center,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide .es-typo-table-center {
  color: #48525c;
  text-transform: none;
  text-align: center !important;
  justify-content: center;
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide .es-typo-table-bold,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide .es-typo-table-bold {
  width: 100%;
  color: #48525c !important;
  text-transform: none;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-topline-table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-topline-table tr {
    display: table-row;
    width: 100%;
  }
  .es-landing-page .es-bucket-histogram .es-topline-table tr td:first-child, .es-landing-page .es-bucket-histogram .es-topline-table tr th:first-child {
    width: 25vw;
  }
}
.es-landing-page .es-bucket-histogram .es-topline-table td {
  border: 2px solid #1E252D;
}
@media screen and (min-width: 769px) {
  .es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-1, .es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-2, .es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-3 {
    border-left: none;
  }
  .es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-4 {
    border-right: none;
    border-left: none;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-topline-table td {
    display: table-cell;
    background: none;
  }
  .es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-1, .es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-2, .es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-3, .es-landing-page .es-bucket-histogram .es-topline-table td.es-table-col-4 {
    border-right: none;
    border-left: none;
  }
}
.es-landing-page .es-bucket-histogram .es-topline-table th {
  border: none;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-topline-table th {
    height: 50vw;
    position: relative;
    display: table-cell;
    background: none;
  }
  .es-landing-page .es-bucket-histogram .es-topline-table th span {
    position: absolute;
    display: block;
    transform: rotate(-90deg) translate(-35%, -50%);
    width: 60vw;
    text-align: left;
    top: 50%;
    left: 50%;
    transform-origin: top left;
  }
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide {
  /*tr:hover td:nth-child(1),
  tr:hover td:nth-child(2),
  tr:hover td:nth-child(3),
  tr:hover td:nth-child(4),
  tr:hover td:nth-child(5) {
          cursor: pointer;
          background: $blue-dark; 
          border-left: none;
          border-right: none;
          color: white; to make table highlight on hover
  }*/
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th,
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td {
  border: none;
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th {
  cursor: pointer;
  border-bottom: 2px solid #AAA59F;
  border-top: 8px solid #AAA59F;
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th p,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th p {
  margin: 0;
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th.asc svg,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th.asc svg {
  transform: rotate(180deg);
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide th svg,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide th svg {
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-histogram-table-homicide th,
  .es-landing-page .es-bucket-histogram .es-histogram-table-suicide th {
    position: relative;
    display: table-cell;
    background: none;
  }
  .es-landing-page .es-bucket-histogram .es-histogram-table-homicide th.es-table-counties-header,
  .es-landing-page .es-bucket-histogram .es-histogram-table-suicide th.es-table-counties-header {
    height: 0px;
    /*
    display: flex;
    align-items: flex-end;
    */
  }
  .es-landing-page .es-bucket-histogram .es-histogram-table-homicide th.es-table-counties-header p,
  .es-landing-page .es-bucket-histogram .es-histogram-table-suicide th.es-table-counties-header p {
    /*
    width: 60vw;
    position: absolute;
    display: block;
    text-align: left;
    top: 50%;
    left: 50%;
    transform-origin: top left;
    transform: rotate(-90deg) translate(-35%, -50%);
    */
    text-align: center;
    top: 50%;
    left: 5px;
  }
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td {
  transition: all 300ms ease-in-out;
  border-bottom: 2px solid #A9B3BC;
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td.es-table-col-2, .es-landing-page .es-bucket-histogram .es-histogram-table-homicide td.es-table-col-3, .es-landing-page .es-bucket-histogram .es-histogram-table-homicide td.es-table-col-4,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td.es-table-col-2,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td.es-table-col-3,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td.es-table-col-4 {
  border-left: 0px solid #A9B3BC;
}
.es-landing-page .es-bucket-histogram .es-histogram-table-homicide td.es-table-col-1,
.es-landing-page .es-bucket-histogram .es-histogram-table-suicide td.es-table-col-1 {
  padding-left: 5px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-histogram-table-homicide td.es-table-col-1,
  .es-landing-page .es-bucket-histogram .es-histogram-table-suicide td.es-table-col-1 {
    padding-right: 5px;
  }
}
.es-landing-page .es-bucket-histogram .es-typo-table-bold-special {
  color: #48525c !important;
  text-transform: none !important;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-typo-table-bold-special {
    margin-bottom: 15px;
  }
}
.es-landing-page .es-bucket-histogram .es-hist-scroll-to-state-homicide {
  text-align: center;
  margin-top: 0px;
  cursor: pointer;
  font-weight: bold;
  /*border-bottom: 1pt solid #E03C31;*/
  text-transform: uppercase;
  text-decoration: underline;
}
.es-landing-page .es-bucket-histogram .es-hist-scroll-to-state-suicide {
  text-align: center;
  margin-top: 0px;
  cursor: pointer;
  font-weight: bold;
  /*border-bottom: 1pt solid #E03C31;*/
  text-transform: uppercase;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-histogram .es-hist-scroll-to-state-suicide {
    font-size: 10px;
  }
}
.es-landing-page .es-bucket-histogram .st_USA {
  /*.selected_bar_color{
      background-color: $o200 !important;
  }*/
}
.es-landing-page .es-bucket-histogram .st_USA .selected_td_text {
  /*color: $o400 !important;*/
  font-weight: bold;
}
.es-landing-page .es-bucket-histogram .selected_td_text {
  color: #E03C31 !important;
}
.es-landing-page .es-bucket-histogram .selected_bar_color {
  background-color: #E03C31 !important;
}
.es-landing-page .es-bucket-histogram .es-county-counties-and-disclaimer {
  grid-column-start: 4;
  grid-column-end: -4;
  text-align: center;
}
.es-landing-page .es-bucket-histogram .es-county-counties-and-disclaimer .es-counties-callout {
  margin-bottom: 20px;
}
.es-landing-page .es-bucket-histogram .es-county-counties-and-disclaimer .es-counties-disclaimer {
  margin-bottom: 80px;
  text-transform: uppercase;
}
.es-landing-page .es-bucket-histogram .es-dlw-counties {
  margin-top: 80px;
  /*@media screen and (max-width: $bp-mobile) {
      margin-top: 20px;
  }*/
}
.es-landing-page .es-bucket-histogram .costing-histogram-bar {
  background-color: #5a6673;
}
.es-landing-page .es-bucket-histogram .costing-histogram-bar-background {
  /*width: 100%;*/
  height: 100%;
  position: relative;
  background-color: #E2E6E9;
  left: 0px;
}
.es-landing-page .es-bucket-histogram .es-bucket-child-grid, .es-landing-page .es-bucket-histogram .es-bucket-label-copy {
  grid-area: 1/2/1/-2;
}
.es-landing-page .es-bucket-histogram .es-grid-costing-histogram {
  grid-template-columns: repeat(18, 1fr);
}
.es-landing-page .es-bucket-label {
  grid-area: 1/1/1/-1;
  border-top: 2px solid #ffffff;
  /* padding: 48px 0;
  color: white; */
}
.es-landing-page .es-bucket-label-copy {
  grid-area: 1/3/1/-3;
  padding: 15px 0;
  color: white;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-label-copy {
    grid-area: 1/2/1/-2;
  }
}
.es-landing-page .es-bucket-eyebrow {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-eyebrow {
    text-align: left;
  }
}
.es-landing-page .es-bucket-title-button-wrap {
  display: flex;
  justify-content: space-between;
}
.es-landing-page .es-bucket-title-button-wrap button {
  display: block;
  position: relative;
  height: 45px;
  width: 45px;
  transition: transform 0.2s;
  background: rgba(0, 0, 0, 0);
  border: none;
}
.es-landing-page .es-bucket-title-button-wrap button:after, .es-landing-page .es-bucket-title-button-wrap button:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.es-landing-page .es-bucket-title-button-wrap button:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.es-landing-page .es-bucket-title-button-wrap button:before {
  transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-title-button-wrap {
    display: flex;
  }
  .es-landing-page .es-bucket-title-button-wrap button {
    margin-top: -10px;
  }
}
.es-landing-page .es-wrapper-for-accordion {
  overflow: hidden;
  grid-area: 2/-1/2/1;
  grid-template-columns: repeat(24, 1fr);
  height: calc(var(--tab-height) * var(--accordion-tab-selected) * 1px);
  transition: height 0.6s;
}
.es-landing-page .es-wrapper-for-accordion-child {
  overflow: hidden;
  grid-area: 2/-1/2/1;
  grid-template-columns: repeat(24, 1fr);
  height: calc(var(--tab-height) * var(--accordion-tab-selected) * 1px + var(--histogram-unselected) * 1px);
  transition: height 0.6s;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-wrapper-for-accordion-child {
    height: calc(var(--tab-height) * var(--accordion-tab-selected) * 1px + var(--histogram-unselected-mobile) * 1px);
  }
}
.es-landing-page .congress-special {
  grid-column-start: 3;
  grid-column-end: -3;
}
@media screen and (max-width: 768px) {
  .es-landing-page .congress-special {
    grid-row-start: 18;
    grid-row-end: 18;
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp-STACK {
    display: block !important;
  }
  .es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp-STACK .es-bucket-state-data {
    height: 30vh;
    padding: 5%;
  }
}
.es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(18, 1fr);
  grid-column-start: 1;
  grid-column-end: -1;
  padding-bottom: 5vh;
  /*grid-template-rows: auto;*/
}
.es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-data-topline-item {
  padding: 1vh 0 2vh;
  border-top: 2px solid #A9B3BC;
}
.es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-typo-header1 {
  font-size: 4vh;
  line-height: 4vh;
}
.es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-topline-stats-section-title {
  margin-bottom: 1.5vh;
  font-weight: bold;
}
.es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-topline-stats-copy {
  margin-top: 5vh;
}
.es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-typo-body {
  font-size: 2vh;
  line-height: 2vh;
}
.es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-landing-page .es-topline-stats-copy h2 {
  margin-bottom: 1vh;
}
.es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-bucket-state-data, .es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-bucket-national-data {
  padding-bottom: 5vh;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-bucket-state-data, .es-landing-page .es-bucket-drawer-wrapper-fit-vertical-vp .es-bucket-national-data {
    margin-bottom: 0;
  }
}
.es-landing-page .es-bucket-drawer-wrapper {
  /* overflow: hidden; */
  display: grid;
  width: 100%;
  /* grid-area: 2 / -1 / 2 / 1; */
  grid-template-columns: repeat(18, 1fr);
  grid-template-rows: auto;
  /*&.es-bucket-drawer-wrapper-county {}*/
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-suicide-graph-title {
  grid-row-start: 6;
  grid-row-end: 6;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-suicide-graph {
  grid-row-start: 7;
  grid-row-end: 7;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-suicide-billboard {
  grid-row-start: 5;
  grid-row-end: 5;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-economic-suicide-bar-graph-title {
  grid-row-start: 10;
  grid-row-end: 10;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-economic-suicide-bar-graph-title {
    padding-top: 60px;
  }
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide {
  grid-template-rows: auto;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-cost-homicide-bar-graph-title {
  grid-row-start: 11;
  grid-row-end: 11;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-homicide-bar-graph {
  grid-row-start: 6;
  grid-row-end: 6;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-trans-billboard {
  grid-row-start: 8;
  grid-row-end: 8;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-trans-billboard {
    margin-top: 0px;
  }
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-trans-area-chartwrapper {
  grid-row-start: 9;
  grid-row-end: 9;
  grid-column-start: 2;
  grid-column-end: -2;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-children-graph-title {
  grid-row-start: 4;
  grid-row-end: 4;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-children-graph-title.es-no-data {
  display: none;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-children-graph {
  grid-row-start: 5;
  grid-row-end: 5;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-ct-billboard {
  grid-row-start: 6;
  grid-row-end: 6;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-iph-billboard {
  grid-row-start: 8;
  grid-row-end: 8;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-iph-graph-title {
  grid-row-start: 6;
  grid-row-end: 6;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-iph-area-chartwrapper {
  grid-row-start: 7;
  grid-row-end: 7;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-race-donut-chartwrapper {
  grid-row-start: 5;
  grid-row-end: 5;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-race-bar-graph {
  grid-row-start: 6;
  grid-row-end: 6;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-county, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race {
  /*@media screen and (max-width: $bp-mobile) {
      .es-bucket-national-data {
          grid-column-start: 1;
          grid-column-end: -1;
          grid-template-columns: repeat(24, 1fr);
      }
      .es-bucket-state-data {
          grid-column-start: 1;
          grid-column-end: -1;
          grid-template-columns: repeat(24, 1fr);
      }
  }*/
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-iph-bar-graph, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-iph-bar-graph, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-county .es-iph-bar-graph, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-iph-bar-graph, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-iph-bar-graph, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-iph-bar-graph {
  grid-row-start: 11;
  grid-row-end: 11;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-iph-bar-selector-off, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-iph-bar-selector-off, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-county .es-iph-bar-selector-off, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-iph-bar-selector-off, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-iph-bar-selector-off, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-iph-bar-selector-off {
  display: none;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-iph-bar-selector, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-iph-bar-selector, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-county .es-iph-bar-selector, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-iph-bar-selector, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-iph-bar-selector, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-iph-bar-selector {
  font-style: italic;
  position: absolute;
  top: 50%;
  text-align: center;
  width: 50%;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-bucket-state-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-bucket-state-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-county .es-bucket-state-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-bucket-state-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-bucket-state-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-bucket-state-data {
  grid-column-start: 1;
  grid-column-end: 10;
  grid-template-columns: repeat(15, 1fr);
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-bucket-national-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-bucket-national-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-county .es-bucket-national-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-bucket-national-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-bucket-national-data, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-bucket-national-data {
  grid-column-start: 10;
  grid-column-end: -1;
  grid-template-columns: repeat(15, 1fr);
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-cost-iph-bar-graph-title, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-cost-iph-bar-graph-title, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-county .es-cost-iph-bar-graph-title, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-cost-iph-bar-graph-title, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-cost-iph-bar-graph-title, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-cost-iph-bar-graph-title {
  grid-row-start: 10;
  grid-row-end: 10;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-bucket-table-citation, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-bucket-table-citation, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-county .es-bucket-table-citation, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-bucket-table-citation, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-bucket-table-citation, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-bucket-table-citation {
  min-height: 50px;
  background-color: #F4F4F5;
  display: grid;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 30px;
  grid-column-start: 1;
  grid-column-end: -1;
}
.es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-suicide .es-bucket-table-citation .es-source-wrapper, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-homicide .es-bucket-table-citation .es-source-wrapper, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-county .es-bucket-table-citation .es-source-wrapper, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-children .es-bucket-table-citation .es-source-wrapper, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-iph .es-bucket-table-citation .es-source-wrapper, .es-landing-page .es-bucket-drawer-wrapper.es-bucket-drawer-wrapper-race .es-bucket-table-citation .es-source-wrapper {
  padding-left: 5vw;
  padding-right: 5vw;
}
.es-landing-page .es-bucket-national-data,
.es-landing-page .es-bucket-state-data {
  display: grid;
  padding-bottom: 90px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-national-data,
  .es-landing-page .es-bucket-state-data {
    margin-bottom: 0;
  }
}
.es-landing-page .es-bucket-state-data {
  position: relative;
}
.es-landing-page .es-bucket-state-data .es-bucket-state-data-bg-img {
  position: absolute;
  top: 5%;
  bottom: 5%;
  left: 5%;
  right: 5%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-bucket-state-data .es-bucket-state-data-bg-img-us {
    top: 0% !important;
    bottom: 0% !important;
    left: 0% !important;
    right: 5% !important;
  }
}
.es-landing-page .es-no-data-important {
  display: none !important;
}
.es-landing-page .es-topline-stats-copy-off {
  display: none !important;
}
.es-landing-page .es-topline-stats-copy {
  position: relative;
  grid-area: 1/3/1/-3;
  margin-top: 90px;
  /*padding-top: 36px;
  border-top: 2px solid $s60;*/
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-topline-stats-copy {
    margin-top: 60px;
  }
}
.es-landing-page .es-topline-stats-copy.es-no-data .es-data-topline-item {
  display: none;
}
.es-landing-page .es-topline-stats-copy.es-no-data .es-data-topline-nodata {
  display: block;
}
.es-landing-page .es-topline-stats-copy.es-no-data .es-data-topline-nodata-second-two-stats {
  display: block;
}
.es-landing-page .es-topline-stats-copy .es-data-topline-nodata {
  display: none;
  font-style: italic;
}
.es-landing-page .es-topline-stats-copy .es-data-topline-nodata-second-two-stats {
  display: none;
  font-style: italic;
}
.es-landing-page .es-topline-stats-copy .es-force-display {
  display: block !important;
}
.es-landing-page .es-topline-stats-copy .special-no-data {
  display: none;
}
.es-landing-page .es-data-topline-item {
  padding: 16px 0 24px;
  border-top: 2px solid #A9B3BC;
  /*min-height: 161px;*/
  /* &:last-child {
      border-bottom: 2px solid $s60;
  } */
}
.es-landing-page .es-topline-stats-section-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-topline-stats-section-title {
    margin-bottom: 20px;
  }
}
.es-landing-page .es-topline-stats-copy h2 {
  margin-top: 0;
}
.es-landing-page .es-bucket-state-data .es-topline-stat-label {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-state-data .es-topline-stat-label {
    width: 100%;
  }
}
.es-landing-page .es-trans-homicide-bar-graph-title {
  grid-row-start: 7;
  grid-row-end: 7;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-trans-homicide-bar-graph-title {
    margin-bottom: 0px !important;
    margin-top: 80px !important;
  }
}
.es-landing-page .es-bucket-chart-title {
  grid-column-start: 5;
  grid-column-end: -5;
  text-align: center;
  margin-bottom: 80px;
  margin-top: 20px;
}
@media screen and (orientation: landscape) and (max-height: 800px) {
  .es-landing-page .es-bucket-chart-title {
    margin-bottom: 30px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-chart-title {
    grid-column-start: 2;
    grid-column-end: -2;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-page .es-bucket-chart-title {
    grid-column-start: 3;
    grid-column-end: -3;
  }
}
.es-landing-page .es-bucket-chart-title-histogram-homicide {
  grid-column-start: 5;
  grid-column-end: -5;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-chart-title-histogram-homicide {
    grid-column-start: 2;
    grid-column-end: -2;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.es-landing-page .es-bucket-chart-title-histogram-suicide {
  grid-column-start: 5;
  grid-column-end: -5;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bucket-chart-title-histogram-suicide {
    grid-column-start: 2;
    grid-column-end: -2;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.es-landing-page .es-bar-graph-inner {
  position: relative;
}
.es-landing-page .es-bar-graph {
  margin-bottom: 120px;
  position: relative;
  grid-column-start: 2;
  grid-column-end: -2;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bar-graph {
    grid-column-start: 3;
    grid-column-end: -3;
    margin-bottom: 0;
  }
}
.es-landing-page .es-bar-graph .es-bar-graph-inner-wrapper {
  height: calc(100vh - 360px);
  max-height: 350px;
  border-left: 3px solid #E8E9EA;
  border-bottom: 3px solid #E8E9EA;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .es-landing-page .es-bar-graph .es-bar-graph-inner-wrapper {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-page .es-bar-graph .es-bar-graph-inner-wrapper {
    height: calc(100vh - 275px);
  }
}
.es-landing-page .es-bar-graph .es-v-bar-y-label {
  position: absolute;
  transform: rotate(-90deg);
  left: -15px;
  bottom: 80px;
  transform-origin: left;
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-page .es-bar-graph .es-v-bar-y-label {
    bottom: -65px;
  }
}
.es-landing-page .es-bar-graph .es-bar {
  width: 80px;
  height: 0%;
  transition: all 300ms ease-in-out;
  position: relative;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bar-graph .es-bar {
    width: 20%;
  }
}
.es-landing-page .es-bar-graph .es-bar.es-white-bar {
  background: #001C60;
}
.es-landing-page .es-bar-graph .es-bar.es-black-bar {
  background: #596EA1;
}
.es-landing-page .es-bar-graph .es-bar.es-hispanic-bar {
  background: #FF352E;
}
.es-landing-page .es-bar-graph .es-bar.es-asian-bar {
  background: #0D3DD9;
  /*.es-bar-label{
      width:125%;
  }*/
}
.es-landing-page .es-bar-graph .es-bar.es-morethanone-bar {
  background: #BCCBEF;
}
.es-landing-page .es-bar-graph .es-bar.es-na-bar { /* American Indian/Alaska Native */
  background: #ffffff;
  border: 1px solid #808285; /* #Image Export use 2px for image export, 1px for regular use */
  border-bottom: 0px solid #808285;
}
.es-landing-page .es-bar-graph .es-bar .es-bar-label {
  width: calc(100% + 30px);
  left: -15px;
  position: absolute;
  top: calc(100% + 15px);
  text-align: center;
}
.es-landing-page .es-bar-graph .es-bar .es-bar-stat {
  width: 100%;
  position: absolute;
  top: -25px;
  text-align: center;
}
.es-landing-page .es-bar-graph .es-select-text-wrapper {
  padding: 10px;
  text-align: center;
  margin-bottom: 40px;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bar-graph .es-select-text-wrapper {
    text-align: left;
    padding: 0;
    padding-top: 30px;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .es-landing-page .es-bar-graph .es-select-text-wrapper {
    line-height: 1.25;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1024px) and (orientation: landscape) {
  .es-landing-page .es-bar-graph .es-select-text-wrapper {
    font-size: 28px;
  }
}
.es-landing-page .es-bar-graph .es-bar-graph-chart-selector-special {
  margin-right: 5px !important;
  margin-left: 0px !important;
  padding-left: 40px !important;
}
.es-landing-page .es-bar-graph .es-race-bar-graph-selector, .es-landing-page .es-bar-graph .es-race-donut-chartwrapper-selector {
  color: #004073;
  padding-left: 21px;
  position: relative;
  line-height: 40px;
  width: 301px;
  text-align: left;
  border: none;
  background: none;
  font-size: 36px;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-bottom: 2px solid #004073;
  border-radius: 0;
  position: relative;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8' standalone='no'?%3e%3c!-- Created with Inkscape (http://www.inkscape.org/) --%3e%3csvg version='1.1' id='svg824' width='53.69804' height='31.115465' viewBox='0 0 53.69804 31.115465' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3e%3cdefs id='defs828' /%3e%3cg id='layer1' transform='translate(-10.610438,-16.655304)'%3e%3cpath style='fill:%23004B87;fill-opacity:1;stroke:%233737a9;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='M 37.381655,37.785914 59.206774,16.800222 c 0,0 6.195547,-1.514184 4.931638,5.246423 L 39.585153,46.91469 c 0,0 -2.15477,1.854196 -3.882353,0.104928 L 10.624899,21.626931 c 0,0 -0.56392,-6.374272 5.351351,-4.511923 z' id='path966' /%3e%3c/g%3e%3c/svg%3e ");
  background-repeat: no-repeat;
  /* background-position: right; */
  background-size: 35px 20px;
  background-position-x: 266px !important;
  background-position-y: 22px !important;
  /* line-height: 12vw; */
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bar-graph .es-race-bar-graph-selector, .es-landing-page .es-bar-graph .es-race-donut-chartwrapper-selector {
    background-position: 100%;
    background-position-y: 19px !important;
    background-position-x: 243px !important;
    background-size: 40px 20px !important;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-bar-graph .es-race-bar-graph-selector, .es-landing-page .es-bar-graph .es-race-donut-chartwrapper-selector {
    background-position: 345px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bar-graph .es-race-bar-graph-selector, .es-landing-page .es-bar-graph .es-race-bar-graph-selector:focus, .es-landing-page .es-bar-graph .es-race-donut-chartwrapper-selector, .es-landing-page .es-bar-graph .es-race-donut-chartwrapper-selector:focus {
    font-size: 32px;
    padding-left: 20px;
    background-size: 25px 12px;
    /* line-height: 12vw;*/
  }
}
.es-landing-page .es-bar-graph .es-race-donut-chartwrapper-selector {
  /* width: 500px; */
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-bar-graph .es-race-donut-chartwrapper-selector {
    margin: 0;
    /*margin-bottom: 0.9em;*/
    width: 100%;
  }
}
.es-landing-page .es-overview-dl-container-children, .es-landing-page .es-overview-dl-container-suicide, .es-landing-page .es-overview-dl-container-race, .es-landing-page .es-overview-dl-container-iph, .es-landing-page .es-overview-dl-container-homicide, .es-landing-page .es-overview-dl-container-intro {
  grid-template-columns: 1fr 1440px 1fr;
}
.es-landing-page .es-single-download-link-wrapper {
  grid-column-start: 1;
  grid-column-end: -1;
  grid-row-start: 19;
  grid-row-end: 19;
  padding-bottom: 20px;
  background-color: inherit;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-single-download-link-wrapper {
    padding-top: 20px;
  }
}
.es-landing-page .es-ext {
  text-transform: uppercase;
}
.es-landing-page .es-download-link-wrapper {
  grid-column-start: 1;
  grid-column-end: -1;
  grid-row-start: 20;
  grid-row-end: 20;
  padding-top: 40px;
  background-color: #f4f4f4;
}
.es-landing-page .es-suicide-costing-blurb-wrapper {
  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 11;
  grid-row-end: 11;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.es-landing-page .es-homicide-table {
  grid-row-start: 13;
  grid-row-end: 13;
}
.es-landing-page .es-homicide-costing-blurb-wrapper {
  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 12;
  grid-row-end: 12;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-homicide-costing-blurb-wrapper {
    margin-top: 30px;
  }
}
.es-landing-page .es-homicide-costing-histogram-wrapper {
  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 14;
  grid-row-end: 14;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  /* background-color:blue; */
  height: 100%;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-homicide-costing-histogram-wrapper {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.es-landing-page .es-suicide-costing-histogram-wrapper {
  grid-column-start: 2;
  grid-column-end: -2;
  grid-row-start: 12;
  grid-row-end: 12;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  /* background-color:blue; */
  height: 100%;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-suicide-costing-histogram-wrapper {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.es-landing-page .es-downloads-and-links {
  /*margin-bottom: 60px;*/
  margin-top: 40px;
  display: flex;
  /* flex-wrap: wrap; */
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-downloads-and-links {
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
  }
}
.es-landing-page .es-download-link-single {
  width: 80%;
  /*margin-bottom: 40px;*/
  text-align: center;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-download-link-single {
    margin: var(--general-spacing) 0 0;
  }
}
.es-landing-page .es-download-link {
  width: 33%;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-download-link {
    margin: var(--general-spacing) 0 0;
    width: 43%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.es-landing-page .es-download-link-title, .es-landing-page .es-download-link-description {
  display: block;
  max-width: 250px;
  margin: 0 auto;
}
.es-landing-page .es-download-link-title-single, .es-landing-page .es-download-link-description-single {
  display: block;
  max-width: 500px;
  margin: 0 auto;
}
.es-landing-page .es-download-link-title {
  font: 500 22px "GT America";
}
.es-landing-page .es-download-link-description {
  text-transform: uppercase;
  margin-top: 10px;
}
.es-landing-page .es-download-link-icon {
  height: 35px;
  width: 35px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-available-items-special {
    left: -10px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-available-items-special {
    left: 0px;
  }
}
.es-landing-page .es-download-link-icon-v2 {
  height: 20px;
  width: 20px;
  position: relative;
  top: 7px;
  color: #ec7065;
}
.es-landing-page .es-download-link-description-v2 {
  margin-top: 0px;
  color: #ec7065 !important;
}
.es-landing-page .es-download-link-description-v2-parent {
  border-bottom: 2px solid #ec7065 !important;
  padding-bottom: 0px;
  /* line-height: 1; */
  margin-top: 2px;
  color: #ec7065 !important;
}
.es-landing-page .es-custom-intent-dd {
  display: inline-block;
  width: auto;
  position: relative;
}
.es-landing-page .es-custom-intent-dd .es-available-items {
  box-shadow: 1px 2px 4px rgba(112, 112, 112, 0.2509803922), -1px 2px 4px rgba(112, 112, 112, 0.2509803922);
  width: 100%;
  display: none;
  position: absolute;
  top: 55px;
  /* display: flex; */
  background: white;
  flex-direction: column;
  z-index: 4;
  border: 2px solid #E8E9EA;
  padding: 20px;
  white-space: nowrap;
  min-width: 380px;
}
.es-landing-page .es-custom-intent-dd .es-available-items > div:hover {
  background-color: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-custom-intent-dd .es-available-items {
    min-width: 200px;
  }
  .es-landing-page .es-custom-intent-dd .es-available-items div {
    white-space: pre-wrap;
  }
}
.es-landing-page .es-custom-intent-dd .es-available-items div {
  width: calc(100% - 30px);
  line-height: 45px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-custom-intent-dd .es-available-items div {
    width: 100%;
  }
}
.es-landing-page .es-custom-intent-dd .es-available-items label {
  color: #5A6673;
  cursor: pointer;
  display: -webkit-inline-box;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  font-family: "GT America";
  font-size: 24px;
  font-weight: normal;
  margin-top: 5px;
  padding-left: 15px;
  padding-right: 15px;
}
.es-landing-page .es-custom-intent-dd .es-available-items label div {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-custom-intent-dd .es-available-items label div {
    font-size: 20px;
  }
}
.es-landing-page .es-custom-intent-dd .es-available-items label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  background-color: #f4f4f4;
  height: 20px;
  width: 20px;
  border: 0;
  border-radius: 100%;
  cursor: pointer;
  outline: 1px solid;
  outline-color: #707070;
  outline-offset: -1px;
  margin: 0;
}
.es-landing-page .es-custom-intent-dd .es-available-items label input:checked {
  background-color: #5A6673 !important;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-custom-intent-dd .es-available-items label input {
    width: 20px;
    height: 20px;
  }
}
.es-landing-page .es-custom-intent-dd .es-available-items label input[type=radio]:focus, .es-landing-page .es-custom-intent-dd .es-available-items label input[type=checkbox]:focus {
  /*outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;*/
  outline-offset: -1px;
}
.es-landing-page .es-custom-intent-dd .es-available-items.es-show {
  display: flex;
}
.es-landing-page .es-custom-intent-dd .es-available-items .es-close-button {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 20px;
  height: 20px;
  background-color: transparent !important;
  cursor: pointer;
}
.es-landing-page .es-custom-intent-dd .es-available-items .es-close-button div {
  position: absolute;
  background: #707070;
  height: 25px;
  width: 2px;
  right: calc(50% - 2px);
  transform-origin: center;
}
.es-landing-page .es-custom-intent-dd .es-available-items .es-close-button div:first-child {
  transform: rotate(45deg);
  display: inline-block;
}
.es-landing-page .es-custom-intent-dd .es-available-items .es-close-button div:last-child {
  transform: rotate(-45deg);
  display: inline-block;
}
.es-landing-page .es-custom-intent-dd .es-available-items :nth-child(3),
.es-landing-page .es-custom-intent-dd .es-available-items :nth-child(4) {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-custom-intent-dd .es-available-items :nth-child(3),
  .es-landing-page .es-custom-intent-dd .es-available-items :nth-child(4) {
    padding-left: 40px;
  }
}
.es-landing-page .es-custom-intent-dd .es-selected-item-special {
  position: relative;
  left: -35px;
  top: 9px;
}
@media (orientation: portrait) {
  .es-landing-page .es-custom-intent-dd .es-selected-item-special {
    top: 7px;
  }
}
.es-landing-page .es-custom-intent-dd .es-selected-item {
  display: inline-block;
  cursor: pointer;
  /*padding-right: 45px;*/
  /*max-width: 400px;*/
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-family: "GT America Extended";
  font-weight: bold;
  font-size: 28px;
}
.es-landing-page .es-custom-intent-dd .es-selected-item.es-cb {
  max-width: none;
}
@media screen and (max-width: 768px) {
  .es-landing-page .es-custom-intent-dd .es-selected-item.es-cb {
    font-size: 28px !important;
    /*line-height:28px !important;
    background-position-x: 100% !important;*/
    background-position-x: calc(100% - 7px) !important;
    background-position-y: 18px;
    /*font-family: GT America Extended !important;*/
  }
}
@media screen and (min-width: 768px) {
  .es-landing-page .es-custom-intent-dd .es-selected-item.es-cb {
    font-size: 32px !important;
    text-align: left;
  }
}
.es-landing-page .es-custom-intent-dd .es-menu-closer {
  position: fixed;
  background: rgba(0, 0, 0, 0);
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}
.es-landing-page .es-custom-intent-dd .es-menu-closer.es-show {
  display: block;
}

.es-selected-item-chevron {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 3;
  cursor: pointer;
}

.es-source-wrapper {
  text-align: center;
  line-height: 1 !important;
}
@media screen and (max-width: 768px) {
  .es-source-wrapper {
    --font-size:10px;
    line-height: 1 !important;
  }
}

.es-landscape-cost-source {
  line-height: 1 !important;
}
@media screen and (max-width: 768px) {
  .es-landscape-cost-source {
    font-size: 10px;
    --font-size:10px;
    line-height: 1 !important;
  }
}

.es-bucket-child {
  justify-content: center !important;
  background-color: #E2E6E9 !important;
}

.es-typo-subheader3 {
  font: 500 16px "GT America";
  color: #48525C !important;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}

.es-grid-costing-histogram {
  background-color: #ffffff;
  color: #48525C;
}

.es-grid-congress-show-more {
  background-color: #FDF8F5;
  color: #48525C;
}

.es-histogram-expand-selector {
  z-index: 100;
  border: none;
  width: 30px;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='xMaxYMid meet' viewBox='0 0 54 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3L28 20L52 3' stroke='%2348525C' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 30px 30px;
  margin-left: 10px;
  transition: transform 1s ease;
}
.es-histogram-expand-selector:focus {
  font-size: 36px;
}
.es-histogram-expand-selector option {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .es-histogram-expand-selector {
    font-size: 6vw;
    /*margin-bottom: 0.9em;*/
  }
  .es-histogram-expand-selector:focus {
    font-size: 6vw;
  }
}

.es-histogram-expand-selector-open {
  transform: rotate(180deg);
}

.es-bucket-label-histogram {
  /*
  grid-column-start: 3;
  grid-column-end: -3;
  grid-row-start: 1;
  grid-row-end: -1;
  */
  z-index: 1;
  position: relative;
  width: 100%;
  top: calc(100% - 65px);
}
@media screen and (max-width: 768px) {
  .es-bucket-label-histogram {
    height: 0px;
    /*top: calc(100% - 131px); */
  }
}

.es-race-ethnicity-state-total-comparison,
.es-race-ethnicity-state-suicide-comparison,
.es-race-ethnicity-state-homicide-comparison,
.es-race-ethnicity-national-total-comparison,
.es-race-ethnicity-national-suicide-comparison,
.es-race-ethnicity-national-homicide-comparison,
.es-iph-state-total,
.es-iph-state-rate,
.es-iph-state-perc,
.es-iph-state-rank,
.es-iph-national-total,
.es-iph-national-rate,
.es-iph-national-perc,
.es-iph-national-rank,
.es-children-teen-state-total,
.es-children-teen-state-rate,
.es-children-teen-state-perc-suicide,
.es-children-teen-state-perc-homicide,
.es-children-teen-state-rank,
.es-children-teen-national-total,
.es-children-teen-national-rate,
.es-children-teen-national-perc-homicide,
.es-children-teen-national-perc-suicide,
.es-children-teen-national-rank,
.es-homicide-black-women-perc,
.es-homicide-state-total,
.es-homicide-state-rate,
.es-homicide-state-perc,
.es-homicide-state-rank,
.es-homicide-national-total,
.es-homicide-national-rate,
.es-homicide-national-perc,
.es-homicide-national-rank,
.es-suicide-state-total,
.es-suicide-state-rate,
.es-suicide-state-perc,
.es-suicide-state-rank,
.es-suicide-national-total,
.es-suicide-national-rate,
.es-suicide-national-perc,
.es-suicide-national-rank {
  font-weight: bold;
}

.es-dyk-billboard {
  font-family: "GT Super Text" !important;
}

.es-landing-dyk {
  display: none;
}

/* #Image Export ==> uncomment this css for image export (see below for END .css for image export)
.es-homicide-bar-graph, .es-suicide-graph, .es-iph-bar-graph{
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom:0px !important;
    height: 440px;
    width: 770px;
}
.es-homicide-bar-graph > .es-bar-graph-inner,
.es-suicide-graph > .es-bar-graph-inner,
.es-iph-bar-graph > .es-bar-graph-inner{
    height: calc(440px - 40px - 20px);
    max-height: calc(440px - 40px - 20px);
    width: calc(770px - 30px - 30px);
    .es-bar {
        width: 100px;
    }
    .es-bar-graph-inner-wrapper {
        height: 100%;
        max-height: calc(100% - 60px);
    }
}
.es-landing-linechart-axislegend {
    left:30px !important;
}
.LineChart-wrapper{
    padding-left: 30px; 
}
.es-landing-linechart-chartwrapper {
    margin-top: 25px;
    padding-top: 25px;
    padding-bottom: 26px;
    .es-source-wrapper{
        display:none !important;
        height:0px !important;
    }
    .es-landing-linechart-captionwrapper{
        margin-top:35px !important;
    }
}
.es-landng-linechart-disambiguated {
    display: none !important;
}
.es-landing-linechart-captionwrapper .es-current-state-name {
    display: none;
}
.es-linechart-caption-item {
    margin-right: 60px !important;
    margin-left: 0px !important;
}
.-es-all{
    margin-left: 0px !important;
}
.es-donut .es-donut-chart .ct-chart-donut {
    top: 0px !important;
}
.es-linechart-caption-item {
    text-transform: capitalize !important;
}
.es-typo-chart-label {
    font-size: 16px;
    line-height: 16px;
}*/
/* END .css for image export */
@media screen and (min-width: 768px) {
  #everystat-database-page {
    padding-top: 50px;
  }
}

.es-database-intro-grid {
  background: #004073;
  color: white;
  padding-bottom: 30px;
}
.es-database-intro-grid .es-typo-header1 {
  line-height: 68px;
}
.es-database-intro-grid .es-db-intro-multi-select {
  display: inline-block;
  position: relative;
  vertical-align: top;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox-states {
  overflow-y: scroll;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox {
  width: 100%;
  border: 1px solid #D5CEC7;
  background: white;
  cursor: default;
  display: none;
  flex-direction: column;
  padding: 20px;
  position: absolute;
  top: 60px;
  z-index: 4;
  max-height: calc(100vh - 250px);
  min-width: 320px;
}
@media screen and (max-width: 768px) {
  .es-database-intro-grid .es-db-intro-multi-select .es-selectbox {
    top: 100%;
    max-height: 40vh;
  }
}
@media (max-height: 675px) {
  .es-database-intro-grid .es-db-intro-multi-select .es-selectbox {
    overflow-y: scroll;
  }
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox.es-show {
  display: flex;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-eyebrow {
  text-transform: uppercase;
  padding-left: 5px;
  margin-top: 5px;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-label-special {
  padding-left: 50px !important;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-options {
  display: flex;
  flex-direction: column;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-options label {
  color: #5A6673;
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-start;
  font-family: "GT America";
  font-size: 16px;
  font-weight: normal;
  margin-top: 5px;
  padding-left: 15px;
  padding-right: 15px;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-options label div {
  margin-left: 20px;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-options label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  position: relative;
  background-color: #f4f4f4;
  height: 16px;
  width: 16px;
  border: 0;
  border-radius: 100%;
  cursor: pointer;
  outline: 1px solid;
  outline-color: #707070;
  outline-offset: -1px;
  margin: 0;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-options label input:checked {
  background-color: #5A6673 !important;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-options input[type=radio]:focus, .es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-options input[type=checkbox]:focus {
  /*outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;*/
  outline-offset: -1px;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-options.es-db-gender-options {
  flex: 0 0 auto;
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-close-button {
  position: absolute;
  cursor: pointer;
  transform-origin: center;
  transition: all 300ms ease-in-out;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  /*&:hover {
      transform: scale(1.1);
     background-color: #f4f4f4; 
  }*/
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-close-button div {
  width: 2px;
  height: 25px;
  background: #707070;
  position: absolute;
  top: 0;
  transform-origin: center;
  right: calc(50% - 1px);
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-close-button div:first-child {
  transform: rotate(45deg);
}
.es-database-intro-grid .es-db-intro-multi-select .es-selectbox .es-selectbox-close-button div:last-child {
  transform: rotate(-45deg);
}
.es-database-intro-grid .es-db-intro-multi-select .es-db-states-selected div {
  display: inline-block;
  color: #A5A8AB;
  position: relative;
  margin-left: 15px;
  line-height: 16px;
  cursor: pointer;
}
.es-database-intro-grid .es-db-intro-multi-select .es-db-states-selected div.es-hide {
  width: 0;
  overflow: hidden;
}
.es-database-intro-grid .es-db-intro-multi-select .es-db-states-selected div.es-hide:before, .es-database-intro-grid .es-db-intro-multi-select .es-db-states-selected div.es-hide:after {
  display: none;
}
.es-database-intro-grid .es-db-intro-multi-select .es-db-states-selected div:before, .es-database-intro-grid .es-db-intro-multi-select .es-db-states-selected div:after {
  content: "";
  position: absolute;
  border-right: 1px solid #A5A8AB;
  height: 10px;
  width: 10px;
  transform-box: center;
}
.es-database-intro-grid .es-db-intro-multi-select .es-db-states-selected div:before {
  transform: rotate(45deg);
  left: -13px;
  top: -1px;
}
.es-database-intro-grid .es-db-intro-multi-select .es-db-states-selected div:after {
  transform: rotate(-45deg);
  left: -13px;
  top: 5px;
}
.es-database-intro-grid .es-selectbox-close {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}
.es-database-intro-grid .es-selectbox-close.es-show {
  display: block;
}

.es-database-intro-content-title {
  padding-top: 30px;
  grid-column-start: 3;
  grid-column-end: -3;
}
@media screen and (max-width: 768px) {
  .es-database-intro-content-title {
    grid-column-start: 2;
    grid-column-end: -2;
  }
}

.es-database-blurb-wrapper {
  grid-column-start: 1;
  grid-column-end: -1;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  /* border-top: 2px solid $blue-dark;
  border-bottom: 2px solid $blue-dark; */
  margin: 32px 0 40px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .es-database-blurb-wrapper {
    grid-column-start: 2;
    grid-column-end: -2;
  }
}
.es-database-blurb-wrapper .es-database-blurb {
  font-size: 30px;
  grid-column-start: 4;
  grid-column-end: -4;
  grid-row-start: 1;
  grid-row-end: 1;
  opacity: 0;
  transition: all 300ms ease-out;
}
.es-database-blurb-wrapper .es-database-blurb.es-show {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .es-database-blurb-wrapper .es-database-blurb {
    grid-column-start: 1;
    grid-column-end: -1;
  }
  .es-database-blurb-wrapper .es-database-blurb.es-typo-header3 {
    line-height: 40px;
  }
}

.es-database-legend-wrapper {
  grid-column-start: 4;
  grid-column-end: -4;
  display: flex;
  margin-bottom: 20px;
}
.es-database-legend-wrapper .es-database-legend {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.es-database-legend-wrapper .es-db-bubbles {
  display: flex;
}
.es-database-legend-wrapper .es-db-bubbles .es-db-bubble {
  position: relative;
  padding-left: 30px;
  margin-left: 20px;
}
.es-database-legend-wrapper .es-db-bubbles .es-db-bubble:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: -1px;
  height: 18px;
  width: 18px;
  border-radius: 100%;
}
.es-database-legend-wrapper .es-db-bubbles .es-db-bubble:first-child {
  margin-left: 0;
}
.es-database-legend-wrapper .es-db-bubbles .es-db-bubble:first-child:before {
  background: #001C60;
}
.es-database-legend-wrapper .es-db-bubbles .es-db-bubble:nth-child(2):before {
  background: #FF352E;
}
.es-database-legend-wrapper .es-db-bubbles .es-db-bubble:last-child:before {
  background: #ffffff;
  border: 1px solid #808285;
}
.es-database-legend-wrapper .es-db-instructions {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.es-database-legend-wrapper .es-db-instructions div .es-source-caption {
  display: flex;
  align-items: center;
  color: #1E252D;
}
.es-database-legend-wrapper .es-db-instructions div .es-source-caption svg {
  margin-right: 10px;
  margin-top: -2px;
}
@media screen and (max-width: 768px) {
  .es-database-legend-wrapper {
    grid-column-start: 2;
    grid-column-end: -2;
    display: block;
  }
  .es-database-legend-wrapper .es-database-legend {
    display: block;
  }
  .es-database-legend-wrapper .es-database-legend .es-db-bubbles {
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
  .es-database-legend-wrapper .es-database-legend .es-db-bubbles .es-db-bubble {
    display: inline-block;
  }
  .es-database-legend-wrapper .es-database-legend .es-db-instructions {
    display: block;
    width: 100%;
  }
}

.es-db-intro-selector-wrapper {
  display: inline-block;
  position: relative;
}
.es-db-intro-selector-wrapper:after {
  content: "";
  border: 4px solid white;
  height: 15px;
  width: 15px;
  right: 10px;
  top: 20px;
  position: absolute;
  transform-origin: center center;
  transform: rotate(45deg);
  border-top: none;
  border-left: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .es-db-intro-selector-wrapper {
    display: block;
    width: 100%;
    border-bottom: 2px solid white;
    margin-bottom: 10px;
  }
}

.es-db-intro-selector,
.es-db-intro-selector:focus {
  background: rgba(0, 0, 0, 0);
  border-radius: 0px;
  border: none;
  /*border-bottom: 2px solid rgb(232, 9, 213);*/
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 40px;
  line-height: 58px;
  position: relative;
  /*max-width: 550px;*/
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .es-db-intro-selector,
  .es-db-intro-selector:focus {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 14px;
  }
}
.es-db-intro-selector:hover,
.es-db-intro-selector:focus:hover {
  cursor: pointer;
}
.es-db-intro-selector option,
.es-db-intro-selector:focus option {
  color: black;
}
.es-db-intro-selector .es-db-rag-selected-options,
.es-db-intro-selector .es-db-state-selected-options,
.es-db-intro-selector .es-db-intent-selected-options,
.es-db-intro-selector:focus .es-db-rag-selected-options,
.es-db-intro-selector:focus .es-db-state-selected-options,
.es-db-intro-selector:focus .es-db-intent-selected-options {
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  padding-right: 45px;
}
@media screen and (max-width: 768px) {
  .es-db-intro-selector,
  .es-db-intro-selector:focus {
    border-bottom: none;
    width: 100%;
    font-size: 32px;
  }
}

select.es-db-intro-selector {
  padding-right: 45px;
}

.es-database-bars-holder {
  grid-column-start: 6;
  grid-column-end: -4;
  grid-row-start: 1;
  grid-row-end: 1;
  min-height: 80vh;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .es-database-bars-holder {
    /* border-left: 3px solid $blue; */
  }
}
.es-database-bars-holder .es-db-bar-wrapper {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 5px 0;
  transition: all 300ms ease-in-out;
  max-height: 45px;
  /* border-left: 3px solid $blue; */
}
.es-database-bars-holder .es-db-bar-wrapper.es-bar-hide {
  max-height: 0px;
  overflow: hidden;
  padding: 0;
}
.es-database-bars-holder .es-db-bar-wrapper .es-db-bar {
  display: flex;
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
}
.es-database-bars-holder .es-db-bar-wrapper .es-db-bar .es-db-bar-hom,
.es-database-bars-holder .es-db-bar-wrapper .es-db-bar .es-db-bar-sui,
.es-database-bars-holder .es-db-bar-wrapper .es-db-bar .es-db-bar-other {
  transition: all 300ms ease-in-out;
  height: 100%;
  display: inline-block;
  margin: 0;
  cursor: pointer;
}
.es-database-bars-holder .es-db-bar-wrapper .es-db-bar .es-db-bar-hom {
  background: #001C60;
}
.es-database-bars-holder .es-db-bar-wrapper .es-db-bar .es-db-bar-sui {
  background: #FF352E;
}
.es-database-bars-holder .es-db-bar-wrapper .es-db-bar .es-db-bar-other {
  background: #ffffff;
  border: 1px solid #808285;
  border-left: 0px solid;
}
.es-database-bars-holder .es-db-bar-wrapper .es-state-label {
  text-transform: uppercase;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translate(-100%, -50%);
  white-space: nowrap;
}
.es-database-bars-holder .es-db-bar-wrapper .es-stat-label {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translate(100%, -50%);
  white-space: nowrap;
}
.es-database-bars-holder .es-db-bar-wrapper .es-stat-label .es-database-rate-deaths-word {
  font-size: 10px;
}
.es-database-bars-holder .es-db-bar-wrapper .es-stat-label .es-database-rate-context {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .es-database-bars-holder .es-db-bar-wrapper .es-stat-label .es-database-rate-context {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .es-database-bars-holder .es-db-bar-wrapper {
    height: 70px;
    max-height: 70px;
    border-left: none;
  }
  .es-database-bars-holder .es-db-bar-wrapper .es-labels-wrapper {
    position: absolute;
    min-width: 200px;
    width: 100%;
  }
  .es-database-bars-holder .es-db-bar-wrapper .es-db-bar {
    top: 20px;
    bottom: 15px;
  }
  .es-database-bars-holder .es-db-bar-wrapper .es-state-label {
    top: -25px;
    left: 0px;
    transform: translate(0, 0);
  }
  .es-database-bars-holder .es-db-bar-wrapper .es-stat-label {
    top: -25px;
    transform: translate(0, 0);
  }
  .es-database-bars-holder .es-db-bar-wrapper .es-stat-label.es-na-data-db {
    top: -8px;
    left: 0;
  }
}
.es-database-bars-holder .es-db-hover-drawer {
  position: relative;
  transition: all 300ms ease-in-out;
  max-height: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.es-database-bars-holder .es-db-hover-drawer .es-db-hover-text {
  margin-left: 10px;
  border: 2px solid #E8E9EA;
  border-radius: 1px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .es-database-bars-holder .es-db-hover-drawer {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .es-database-bars-holder {
    grid-column-start: 6;
    grid-column-end: -4;
  }
}
@media screen and (max-width: 768px) {
  .es-database-bars-holder {
    grid-column-start: 2;
    grid-column-end: -2;
  }
}

.es-bar-tooltip {
  position: fixed;
  background: white;
  border-radius: 2px;
  padding: 10px 5px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.es-bar-tooltip.es-show {
  opacity: 1;
}

#everystat-pdfs-page {
  padding-top: 50px;
}
#everystat-pdfs-page .es-state-pdf-container,
#everystat-pdfs-page .es-pdf-page-title,
#everystat-pdfs-page .es-pdfs-page-intro {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 2;
  grid-column-end: -4;
}
@media screen and (min-width: 1280px) {
  #everystat-pdfs-page .es-state-pdf-container,
  #everystat-pdfs-page .es-pdf-page-title,
  #everystat-pdfs-page .es-pdfs-page-intro {
    margin-left: 138px;
  }
}
@media screen and (max-width: 768px) {
  #everystat-pdfs-page .es-state-pdf-container,
  #everystat-pdfs-page .es-pdf-page-title,
  #everystat-pdfs-page .es-pdfs-page-intro {
    grid-column-start: 2;
    grid-column-end: -2;
  }
}
#everystat-pdfs-page .es-pdfs-page-intro {
  margin-bottom: 40px;
}
#everystat-pdfs-page .es-state-pdf-container {
  display: flex;
  flex-wrap: wrap;
}
#everystat-pdfs-page .es-state-pdf-container-block {
  /* background-repeat: no-repeat;
  background-size: cover; */
  flex: 0 0 100%;
  padding: 10px 0;
  border-top: 2px solid #88847F;
  display: flex;
}
#everystat-pdfs-page .es-state-pdf-container-block .es-pdf-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#everystat-pdfs-page .es-state-img {
  width: 50px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  #everystat-pdfs-page .es-state-img {
    width: 70%;
    margin-top: 10px;
    margin-right: 0;
    display: none;
  }
}
#everystat-pdfs-page .es-overview-dl-link {
  width: 100%;
  margin: 5px;
}
#everystat-pdfs-page .es-pdf-download-module {
  align-items: center;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  opacity: 1;
  border-top: 2px solid #88847F;
  border-bottom: 2px solid #88847F;
  padding: 25px 0 20px;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
#everystat-pdfs-page .es-pdf-download-module:hover {
  opacity: 0.8;
}
#everystat-pdfs-page .es-pdf-download-module .es-overview-file-dl-logo-top {
  display: none;
}
#everystat-pdfs-page .es-pdf-download-module .es-overview-pdf-stats-wrapper {
  align-items: center;
  display: flex;
}
#everystat-pdfs-page .es-pdf-download-module .es-overview-pdf-stats-wrapper .es-download-link-icon {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #everystat-pdfs-page .es-pdf-download-module .es-overview-pdf-stats-wrapper {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
  }
}
#everystat-pdfs-page .es-pdf-download-module .es-pdf-img-title {
  display: flex;
  align-items: center;
  justify-content: left;
}
@media screen and (max-width: 768px) {
  #everystat-pdfs-page .es-pdf-download-module .es-pdf-img-title {
    flex-wrap: wrap;
    justify-content: center;
  }
  #everystat-pdfs-page .es-pdf-download-module .es-pdf-img-title .es-overview-pdf-title {
    display: none;
  }
}
#everystat-pdfs-page .es-pdf-download-module .es-overview-pdf-title.-es-pdf-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  #everystat-pdfs-page .es-pdf-download-module .es-overview-pdf-title.-es-pdf-mobile {
    display: block;
  }
}
#everystat-pdfs-page .es-pdf-download-module .es-overview-file-size,
#everystat-pdfs-page .es-pdf-download-module .es-overview-file-type {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  #everystat-pdfs-page .es-pdf-download-module {
    flex-direction: column;
    align-items: center;
  }
  #everystat-pdfs-page .es-pdf-download-module .es-overview-file-dl-logo {
    display: none;
  }
  #everystat-pdfs-page .es-pdf-download-module .es-overview-file-dl-logo-top {
    display: block;
    margin-bottom: 0px;
  }
  #everystat-pdfs-page .es-pdf-download-module .es-overview-file-dl-logo-top .es-download-link-icon {
    margin-bottom: 0;
    margin-top: 10px;
  }
  #everystat-pdfs-page .es-pdf-download-module .es-overview-file-size {
    margin-right: 5px;
    margin-left: 0;
  }
  #everystat-pdfs-page .es-pdf-download-module .es-overview-file-type {
    margin-left: 5px;
  }
}

.es-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: white;
}
.es-header .es-headerwrapper {
  --es-menu-open-animation: 0;
}
.es-header .es-headerwrapper:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F4F4F5;
  opacity: var(--es-menu-open-animation);
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .es-header .es-headerwrapper:before {
    display: none !important;
  }
}
.es-header .es-headerwrapper.database-header {
  background: #004073;
}
.es-header .es-headerwrapper.database-header .es-header-title {
  color: white;
}
.es-header .es-headerwrapper.database-header .es-header-title span {
  color: white;
}
.es-header .es-headerwrapper.database-header a {
  color: white;
}
.es-header .es-headerwrapper.database-header .es-header-logo svg g path,
.es-header .es-headerwrapper.database-header .es-header-logo svg g polygon {
  fill: white !important;
}
.es-header .es-headerwrapper.database-header .es-header-navlistlink:hover {
  opacity: 1;
}
.es-header .es-headerwrapper.database-header .es-header-navlistlink:after {
  background-color: white;
}
.es-header .es-headerwrapper.database-header .es-header-burgermenu .es-header-burgermenubar {
  background: white;
}
.es-header .es-headerwrapper.database-header.es-mobilemenu-open .es-header-title {
  color: #004073;
}
.es-header .es-headerwrapper.database-header.es-mobilemenu-open .es-header-title span {
  color: #004073;
}
.es-header .es-headerwrapper.database-header.es-mobilemenu-open a {
  color: #004073;
}
.es-header .es-header-content {
  grid-column-start: 2;
  grid-column-end: -2;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: var(--header-top-padding) 0;
  transition: padding 0.2s;
}
.es-header .es-header-left {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
}
.es-header .es-header-logo {
  width: 110px;
  display: block;
}
.es-header .es-header-logo svg {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .es-header .es-header-logo {
    margin-bottom: -5px;
  }
  .es-header .es-header-logo:first-child {
    display: none;
  }
}
.es-header .es-header-title {
  color: #48525C;
  font-family: GT America;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -1px;
  margin: 0;
  margin-left: 28px;
  overflow-wrap: normal;
}
.es-header .es-header-title span {
  color: #8E9296;
}
@media screen and (max-width: 1000px) {
  .es-header .es-header-title {
    font-size: 24px;
    margin-left: 14px;
  }
}
@media screen and (max-width: 768px) {
  .es-header .es-header-title {
    margin-left: 0;
  }
}
.es-header .es-header-nav {
  display: inline-block;
}
.es-header .es-header-navlist {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .es-header .es-header-navlist {
    justify-content: flex-start;
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: center;
  }
}
.es-header .es-header-navlistitem {
  display: inline-block;
  margin-left: 24px;
}
.es-header .es-header-navlistitem:last-child {
  margin-right: -11px;
}
@media screen and (max-width: 768px) {
  .es-header .es-header-navlistitem {
    opacity: 0;
    margin: 32.5px 0;
    transform: scale(0.92);
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-header .es-header-navlistitem {
    margin: 17.5px 0;
  }
}
@media screen and (max-width: 768px) {
  .es-mobilemenu-open .es-header .es-header-navlistitem {
    display: block;
  }
}
.es-header .es-header-navlistitem .es-header-navlistlink {
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: center;
  padding: 0 11px;
}
.es-header .es-header-navlistitem .es-header-navlistlink:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 13px);
  left: 0;
  right: 0;
  height: 3px;
  background-color: #48525C;
  opacity: 0;
  transition: opacity 0.2s;
}
.es-header .es-header-navlistitem .es-header-navlistlink:hover:after, .es-header .es-header-navlistitem .es-header-navlistlink:focus:after, .es-header .es-header-navlistitem .es-header-navlistlink:active:after {
  opacity: 1;
}
.es-header .es-header-navlistitem .es-header-navlistlink.es-current-page:after {
  opacity: 1;
}
.es-header .es-header-burgermenu {
  display: none;
  flex-direction: column;
  width: 45px; /*57px;*/
  height: var(--header-burger-height);
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  position: relative;
  background: none;
  color: inherit;
  border: none;
}
@media screen and (max-width: 768px) {
  .es-header .es-header-burgermenu {
    display: flex;
  }
}
.es-header .es-header-burgermenu:before, .es-header .es-header-burgermenu:after {
  content: "";
  display: block;
  height: 7px;
  width: calc(var(--es-menu-open-animation) * 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #004B87;
}
.es-header .es-header-burgermenu:before {
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(45deg);
}
.es-header .es-header-burgermenu:after {
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.es-header .es-header-burgermenubar {
  height: 7px;
  width: 100%;
  background-color: #004B87;
  transform-origin: left;
  transform: scaleX(calc(1 - var(--es-menu-open-animation)));
}
.es-header .es-header-burgermenubar:nth-child(2n) {
  transform-origin: right;
}

footer {
  background: #414f58;
  padding: 60px 0 43px;
  font-size: 11px;
  position: relative;
  z-index: 1;
}
footer h3 {
  color: #acb5bb;
  text-transform: uppercase;
  /*font-family: $et-open-sans;*/
  font-weight: 700;
  font-size: 11px;
  margin: 0 0 30px;
  letter-spacing: 1px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  line-height: 15px;
  margin: 0 0 15px;
}
footer ul li a {
  color: #fff;
  font-size: 13px;
  /*font-family: $et-open-sans;*/
  padding: 0;
}
footer .nav {
  margin-bottom: 40px;
}
footer .nav a {
  padding: 0;
  line-height: 1.4em;
}
footer .nav a:hover {
  color: #fff;
  background: none;
}
footer .logo {
  float: left;
  width: 110px;
  margin-right: 20px;
}
footer .website-copyright {
  float: left;
  width: 300px;
}
footer .website-copyright small {
  color: #eeeeee;
  font-size: 12px;
  /*font-family: $et-open-sans;*/
  font-weight: 300;
  line-height: 13px;
  display: block;
}
footer .website-copyright small a {
  color: #eeeeee;
}
footer .footer-search {
  margin-bottom: 175px;
}
footer .footer-search label {
  display: none;
}
footer .footer-search #s {
  border: none;
  background-color: transparent;
  padding: 6px 6px 4px 30px;
  border-bottom: 1px #FFF solid;
  width: 53%;
  font-size: 15px;
  color: #FFF;
  margin-right: 13px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  float: left;
  margin-top: 20px;
}
footer .footer-search #s::-webkit-input-placeholder {
  color: #fff;
}
footer .footer-search #s:-moz-placeholder { /* Firefox 18- */
  color: #fff;
}
footer .footer-search #s::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
footer .footer-search #s:-ms-input-placeholder {
  color: #fff;
}
footer .footer-search .btn-submit {
  width: 100%;
  width: 40%;
  float: left;
}
footer .form-group {
  position: relative;
}
footer .form-group:before, footer .form-group:after {
  content: " ";
  display: table;
}
footer .form-group:after {
  clear: both;
}
footer .form-group .glyphicon-search {
  position: absolute;
  top: 25px;
  left: 0;
  color: #fff;
  font-size: 20px;
}

@media (max-width: 992px) {
  footer .footer-search {
    margin-bottom: 160px;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
  footer .footer-extras h3 {
    display: none;
  }
  footer .footer-extras .nav {
    float: right;
    margin-bottom: 20px;
  }
  footer .footer-extras li {
    float: left;
    margin-left: 20px;
  }
  footer .footer-extras li:first-child {
    margin-left: 0;
  }
  footer .logo {
    position: absolute;
    top: -65px;
    left: 20px;
  }
  footer .website-copyright {
    width: 100%;
  }
  .row {
    margin-left: -20px;
    margin-right: -20px;
  }
  .container-fluid .row {
    margin-left: -40px;
    margin-right: -40px;
  }
  .no_nav .logo {
    float: left;
    position: relative;
    left: 0;
    top: 0;
    margin: 0 0 1em 0;
  }
}
/* -------- HEATMAP --------- */
.es-landing-heatmap {
  --es-heatmap-charttabs-linescale: 0;
  --es-heatmap-charttabs-linetranslate: 0;
  margin-bottom: var(--general-spacing);
  padding: var(--general-spacing) 0 calc(var(--general-spacing) * 2) 0;
  /*background-color: $o10;*/
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.es-landing-heatmap .-es-number {
  font-family: "GT Super Text";
}
@media screen and (max-width: 768px) {
  .es-landing-heatmap {
    padding-top: 10px;
  }
}

.es-landing-heatmap-title {
  grid-area: 1/2/1/-2;
  text-align: center;
  margin: var(--general-spacing) 0;
}

.es-landing-heatmap-content {
  grid-area: 2/2/2/-2;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(22, 1fr);
  grid-template-rows: auto;
  grid-auto-rows: 1fr;
}
@media screen and (max-width: 768px) {
  .es-landing-heatmap-content {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-flow: row;
    display: inline-grid;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-heatmap-content {
    grid-auto-rows: auto;
  }
}

.es-landing-heatmap-chart {
  height: 100%;
  /*@media screen and (min-width: $bp-mobile-s) and (max-width: $bp-mobile) { 
      height: 80%;
  }*/
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-heatmap-chart {
    height: auto;
    width: 100%;
    padding-bottom: 20px;
  }
}

.es-landing-heatmap-chartwrapper {
  grid-column: 1/-7;
  grid-row: auto;
}
@media screen and (max-width: 768px) {
  .es-landing-heatmap-chartwrapper {
    grid-column: 1/-1;
    grid-template-columns: repeat(10, 1fr);
    top: 20px;
    position: relative;
  }
}

.es-landing-heatmap-chartwrapper-national {
  grid-column: 1/-1;
  grid-row: auto;
}
@media screen and (max-width: 768px) {
  .es-landing-heatmap-chartwrapper-national {
    grid-column: 1/-1;
    grid-template-columns: repeat(10, 1fr);
    height: calc(50vh - 100px) !important;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) and (orientation: landscape) {
  .es-landing-heatmap-chartwrapper-national {
    height: calc(100vh - 200px) !important;
  }
}

.es-landing-heatmap-legend {
  text-align: left;
  grid-column: 18/-1;
  grid-row: auto;
}
@media screen and (max-width: 768px) {
  .es-landing-heatmap-legend {
    grid-column: 1/-1;
    grid-template-columns: repeat(10, 1fr);
    top: 45px;
    position: relative;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) and (orientation: landscape) {
  .es-landing-heatmap-legend {
    grid-row-start: 3;
    grid-row-end: 3;
    top: 0px;
  }
}

.es-landing-heatmap-legend-heading {
  position: relative;
  /*min-height: calc(var(--heading-text-padding) * 2.5);*/
  min-height: var(--heading-text-padding);
  padding-bottom: calc(var(--heading-text-padding) / 2.5);
  /*margin-bottom: var(--heading-text-padding);*/
  margin-top: var(--heading-text-padding);
  box-sizing: border-box;
  text-transform: uppercase !important;
}
.es-landing-heatmap-legend-heading:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0px;
  /*height: 2px;*/
  background-color: #88847F;
}

.es-landing-heatmap-legend-national {
  margin-bottom: 0;
  opacity: 0;
  margin-top: 20px;
}

.es-landing-heatmap-legend-state {
  opacity: 0;
  margin-top: 20px;
}

.es-source-wrapper-national-state {
  margin-top: 0px;
  text-align: left;
  line-height: 1 !important;
}

.es-chart-us-label {
  position: absolute;
  pointer-events: none;
  top: 37%;
  width: 100%;
}
@media screen and (max-width: 569px) {
  .es-chart-us-label { /* mobile */
    /*width: 17vw;
    height: 0px;
    top: -11vw;*/
    /*padding-top: 12.5%;
    top: unset;*/
    top: 15%;
  }
}
@media screen and (min-width: 569px) and (max-width: 768px) {
  .es-chart-us-label { /* tablet */
    /*width: 17vw;
    height: 0px;
    top: -11vw;*/
    /*padding-top: 12.5%;
    top: unset;*/
  }
}

.es-chart-close-mobile {
  cursor: pointer;
  pointer-events: all;
  float: right;
  position: relative;
  width: 17%;
  height: auto;
  /*background-color: coral;*/
  top: 0%;
}
@media screen and (max-width: 569px) {
  .es-chart-close-mobile { /* mobile */
    /*width: 17vw;
    height: 0px;*/
    top: -10%;
  }
}
@media screen and (min-width: 569px) and (max-width: 768px) {
  .es-chart-close-mobile { /* tablet */
    /*width: 17vw;
    height: 0px;
    top: -13vw;*/
  }
}

.es-landing-heatmap-charttabs-div, .es-landing-heatmap-charttabs-div-alt {
  display: inline-block;
  margin: 0 auto;
  margin-right: 1%;
}

.es-landing-heatmap-charttabs-div-OFF {
  display: none;
}

.es-landing-heatmap-charttabs-OFF:after {
  height: 0px !important;
  /*background-color: #48525c80;*/
}

.es-landing-heatmap-charttabs-PRIMARY-OFF:after {
  height: 0px !important;
  /*background-color: #48525c80;*/
}

.es-landing-heatmap-charttabs, .es-landing-heatmap-charttabs-2, .es-landing-heatmap-charttabs-3, .es-landing-heatmap-charttabs-4, .es-landing-heatmap-charttabs-alt, .es-landing-heatmap-charttabs-alt-2, .es-landing-heatmap-charttabs-alt-3, .es-landing-heatmap-charttabs-alt-4 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  position: relative;
  margin-top: 5px;
  height: 28px; /*calc(var(--heading-text-padding) * 2.5);*/
  align-items: flex-end;
  /*margin-bottom: calc(var(--heading-text-padding) * 3);*/
}
.es-landing-heatmap-charttabs:before, .es-landing-heatmap-charttabs-2:before, .es-landing-heatmap-charttabs-3:before, .es-landing-heatmap-charttabs-4:before, .es-landing-heatmap-charttabs-alt:before, .es-landing-heatmap-charttabs-alt-2:before, .es-landing-heatmap-charttabs-alt-3:before, .es-landing-heatmap-charttabs-alt-4:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0px; /*2px;*/
  background-color: #88847F;
}
.es-landing-heatmap-charttabs:after, .es-landing-heatmap-charttabs-2:after, .es-landing-heatmap-charttabs-3:after, .es-landing-heatmap-charttabs-4:after, .es-landing-heatmap-charttabs-alt:after, .es-landing-heatmap-charttabs-alt-2:after, .es-landing-heatmap-charttabs-alt-3:after, .es-landing-heatmap-charttabs-alt-4:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  background-color: #48525C;
  transform: translateX(calc(var(--es-heatmap-charttabs-linetranslate) * 1px)) scaleX(var(--es-heatmap-charttabs-linescale));
  transform-origin: center;
}
.es-landing-heatmap-charttabs .es-chart-close, .es-landing-heatmap-charttabs-2 .es-chart-close, .es-landing-heatmap-charttabs-3 .es-chart-close, .es-landing-heatmap-charttabs-4 .es-chart-close, .es-landing-heatmap-charttabs-alt .es-chart-close, .es-landing-heatmap-charttabs-alt-2 .es-chart-close, .es-landing-heatmap-charttabs-alt-3 .es-chart-close, .es-landing-heatmap-charttabs-alt-4 .es-chart-close {
  position: absolute;
  right: 12px;
  top: 75px;
  height: 30px;
  width: 30px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  pointer-events: none;
}
.es-landing-heatmap-charttabs .es-chart-close.es-active-hm-close, .es-landing-heatmap-charttabs-2 .es-chart-close.es-active-hm-close, .es-landing-heatmap-charttabs-3 .es-chart-close.es-active-hm-close, .es-landing-heatmap-charttabs-4 .es-chart-close.es-active-hm-close, .es-landing-heatmap-charttabs-alt .es-chart-close.es-active-hm-close, .es-landing-heatmap-charttabs-alt-2 .es-chart-close.es-active-hm-close, .es-landing-heatmap-charttabs-alt-3 .es-chart-close.es-active-hm-close, .es-landing-heatmap-charttabs-alt-4 .es-chart-close.es-active-hm-close {
  opacity: 1;
  pointer-events: all;
}
.es-landing-heatmap-charttabs .es-chart-close div, .es-landing-heatmap-charttabs-2 .es-chart-close div, .es-landing-heatmap-charttabs-3 .es-chart-close div, .es-landing-heatmap-charttabs-4 .es-chart-close div, .es-landing-heatmap-charttabs-alt .es-chart-close div, .es-landing-heatmap-charttabs-alt-2 .es-chart-close div, .es-landing-heatmap-charttabs-alt-3 .es-chart-close div, .es-landing-heatmap-charttabs-alt-4 .es-chart-close div {
  position: absolute;
  height: 100%;
  width: 4px;
  right: 13px;
  background: #5A6673;
  transform-origin: center;
}
.es-landing-heatmap-charttabs .es-chart-close div:first-child, .es-landing-heatmap-charttabs-2 .es-chart-close div:first-child, .es-landing-heatmap-charttabs-3 .es-chart-close div:first-child, .es-landing-heatmap-charttabs-4 .es-chart-close div:first-child, .es-landing-heatmap-charttabs-alt .es-chart-close div:first-child, .es-landing-heatmap-charttabs-alt-2 .es-chart-close div:first-child, .es-landing-heatmap-charttabs-alt-3 .es-chart-close div:first-child, .es-landing-heatmap-charttabs-alt-4 .es-chart-close div:first-child {
  transform: rotate(45deg);
}
.es-landing-heatmap-charttabs .es-chart-close div:last-child, .es-landing-heatmap-charttabs-2 .es-chart-close div:last-child, .es-landing-heatmap-charttabs-3 .es-chart-close div:last-child, .es-landing-heatmap-charttabs-4 .es-chart-close div:last-child, .es-landing-heatmap-charttabs-alt .es-chart-close div:last-child, .es-landing-heatmap-charttabs-alt-2 .es-chart-close div:last-child, .es-landing-heatmap-charttabs-alt-3 .es-chart-close div:last-child, .es-landing-heatmap-charttabs-alt-4 .es-chart-close div:last-child {
  transform: rotate(-45deg);
}

.es-landing-heatmap-selectwrapper {
  margin-bottom: var(--general-spacing);
  text-align: center;
}
@media (max-width: 768px) {
  .es-landing-heatmap-selectwrapper {
    margin-top: 0px;
    margin-bottom: 15px;
    display: inline-flex;
    width: calc(100% - 180px);
    float: right;
  }
}

.es-landing-heatmap-chart-text {
  width: 180px;
  text-align: right;
  font-size: 10px;
  padding-right: 15px;
}

.es-landing-heatmap-chart-div {
  display: flex;
}

.es-landing-heatmap-selectinner {
  position: relative;
  display: inline-flex;
  padding-bottom: 3px;
  align-items: center;
  position: relative;
}
.es-landing-heatmap-selectinner:after, .es-landing-heatmap-selectinner:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  pointer-events: none;
}
.es-landing-heatmap-selectinner:before {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #5A6673;
}
.es-landing-heatmap-selectinner:after {
  margin-left: 11px;
  display: inline-block;
  height: 10px;
  width: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='10' viewBox='0 0 20 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2L10.36 8L19 2' stroke='%23004B87' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
@media screen {
  .es-landing-heatmap-selectinner {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .es-landing-heatmap-selectinner {
    width: 100%;
  }
}

.es-landing-heatmap-select {
  -webkit-appearance: none;
  appearance: none;
  background: none !important;
  font-family: "GT America Extended";
  color: #004B87;
  font-size: 10px !important;
  line-height: 14px !important;
  /*text-transform: uppercase;*/
  border: none !important;
}
@media screen and (max-width: 768px) {
  .es-landing-heatmap-select {
    width: 100%;
  }
}

.-es-heatmap-stateselector, .-es-heatmap-stateselector:focus {
  -webkit-appearance: none;
  appearance: none;
  border: none !important;
  background: none !important;
  font-size: var(--font-size) !important;
}
@media screen and (max-width: 768px) {
  .-es-heatmap-stateselector, .-es-heatmap-stateselector:focus {
    width: 100%;
  }
}

.es-heatmap-stateselectorwrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.es-heatmap-stateselectorwrapper:after {
  content: "";
  position: absolute;
  right: 0;
  pointer-events: none;
  margin-left: 11px;
  display: inline-block;
  height: 13px;
  width: 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='10' viewBox='0 0 20 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2L10.36 8L19 2' stroke='%23565B61' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.es-landing-heatmap-charttabs-buttonwrapper {
  /*&:not(:first-child) {
      margin-left: var(--general-spacing);
  }*/
  margin-left: 0px;
  margin-right: 5px;
}

.es-intent-color-selected {
  background-color: rgba(18, 116, 191, 0) !important;
  color: white;
}

.es-landing-heatmap-charttabs-button {
  background: none;
  border: none;
  font-family: GT America;
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  padding: 6px;
  position: relative;
  display: block;
  background-color: #E2E6E9;
  white-space: nowrap;
  font-weight: 500;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 950px) {
  .es-landing-heatmap-charttabs-button {
    font-size: 11px;
  }
}
.es-landing-heatmap-charttabs-button:hover {
  background-color: #C0C6CC;
}

.es-landing-heatmap-caption-filter {
  display: flex;
  /*justify-content: right;*/
  /*margin-top: 30px;*/ /*var(--general-spacing);*/
  text-transform: uppercase;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .es-landing-heatmap-caption-filter {
    margin-top: 0px;
    /*margin-bottom: 35px;*/
  }
}

.es-landing-heatmap-caption {
  display: flex;
  justify-content: center;
  font-weight: bold;
  /*margin-top: 30px;*/ /*var(--general-spacing);*/
  text-transform: uppercase;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .es-landing-heatmap-caption {
    margin-top: 0px;
    /*margin-bottom: 35px;*/
    width: 100%;
    --font-size: 9px;
  }
}

.es-landing-heatmap-caption-barwrapper {
  margin: 0 10px;
  line-height: 1;
}
.es-landing-heatmap-caption-barwrapper span {
  font-family: GT America;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .es-landing-heatmap-caption-barwrapper span {
    --font-size: 9px;
    font-size: 9px;
    line-height: 2;
  }
}

.et-more-right, .et-fewer-left {
  line-height: 1;
}
@media (max-width: 768px) {
  .et-more-right, .et-fewer-left {
    line-height: 2;
  }
}

.es-custom-hide {
  display: none !important;
}

.es-landing-heatmap-caption-bar {
  height: 12px;
  width: 100%;
  /*background: linear-gradient(to right, #F6C4C1, #E03C31);*/
  /*background: linear-gradient(90deg, #f6c4c1, #e03c31 66%,#94271f);*/
  background: linear-gradient(90deg, rgb(246, 196, 193), rgb(224, 60, 49) 66%, rgb(148, 39, 31));
  position: relative;
  margin-top: 3px;
}
.es-landing-heatmap-caption-bar:before, .es-landing-heatmap-caption-bar:after {
  content: "";
  display: block;
  height: 4px;
  width: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.es-landing-heatmap-caption-bar:before {
  left: 8px;
}
.es-landing-heatmap-caption-bar:after {
  right: 8px;
}

#es-us-svg-text {
  pointer-events: none;
}

.es-charts-heatmap .es-charts-heatmap__svg {
  width: 100%;
}
.es-charts-heatmap .es-charts-heatmap__state {
  cursor: pointer;
}
.es-charts-heatmap .es-charts-heatmap__state:not(.-selected):not(.-notSelected) .es-charts-heatmap__state__dot.-bg {
  fill: #fff;
}
.es-charts-heatmap .es-charts-heatmap__state__dot {
  opacity: 0;
  fill: #C6CCD3;
}
.es-charts-heatmap .es-charts-heatmap__state__dot.-color {
  opacity: 0;
  fill: #E03C31;
}
.es-charts-heatmap .es-charts-heatmap__state__dot.-bg {
  transition: fill 0.2s;
}
.es-charts-heatmap .es-charts-heatmap__state__text {
  opacity: 0;
  font-family: GT America;
  font-size: 18px;
  fill: #1E252D;
}

.dropbtn {
  /*background-color: #04AA6D;
  color: white;*/
  background-color: transparent;
  padding: 0px;
  font-size: 16px;
  text-align: center;
  padding-right: 55px;
  border: none;
  cursor: pointer;
  width: 100%;
}
@media (max-width: 768px) {
  .dropbtn {
    padding-right: 24px;
  }
}

.dropbtn:hover, .dropbtn:focus {
  background-color: none;
}

.a-option:hover {
  color: #48525C !important;
  opacity: 1 !important;
}

.a-option {
  font-size: 20px;
  text-align: left;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  color: #48525C;
  margin-left: 30px;
  margin-right: 30px;
}

#myInput::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #A5A8AB;
  opacity: 1; /* Firefox */
}

#myInput:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #A5A8AB;
}

#myInput::-ms-input-placeholder { /* Microsoft Edge */
  color: #A5A8AB;
}

#myInput {
  box-sizing: border-box;
  background-image: url("/wp-content/plugins/everystat/build/searchicon.dee5770b.png");
  background-position: 14px 16px;
  background-repeat: no-repeat;
  font-size: 20px;
  font-weight: normal;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 2px #A5A8AB solid;
  border-top: 0px #A5A8AB solid;
  width: 100%;
  outline: none;
  color: #A5A8AB;
}

#myInput:focus {
  /*outline: 2px solid $s400;*/
  background-color: #fff;
  border-bottom: 2px #48525C solid;
  color: #48525C;
  /*border-top: 4px #6D7986 solid;*/
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 20px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  overflow-y: scroll;
  border: 1px solid #ddd;
  z-index: 2;
  width: 100%;
  top: calc(100% + 7px);
  max-height: calc(100vh - 300px);
  min-height: 240px;
  right: 0px;
}

.dropdown-content a {
  text-decoration: none;
  display: block;
  font-weight: normal;
  line-height: 1;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

.es-landing-selector-div {
  text-align: center;
  font-size: 35px;
  font-family: "GT America";
  line-height: 1.1;
  font-weight: bold;
  padding-right: 10%;
  padding-left: 10%;
  color: #48525C;
}
@media (max-width: 768px) {
  .es-landing-selector-div {
    font-size: 20px;
  }
}

.es-landing-selector-grid {
  grid-area: content;
}
@media (max-width: 768px) {
  .es-landing-selector-grid {
    font-size: 16px;
  }
}

.dropdown-list {
  display: inline-block !important;
  position: relative;
}

.es-selector-overlaywrapper {
  --scale: 0.95;
  pointer-events: none;
  position: fixed;
  top: 0;
  padding-top: calc(var(--general-spacing) / 2);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 0;
}
.es-selector-overlaywrapper .es-landing-selector-select {
  grid-area: 1/4/1/-4;
  margin-top: 2em;
}
@media screen and (max-height: 1100px) {
  .es-selector-overlaywrapper .es-landing-selector-select {
    padding-bottom: 0px;
  }
  .es-selector-overlaywrapper .es-landing-selector-select:after {
    width: 35px;
    height: 14px;
  }
  .es-selector-overlaywrapper .es-landing-selector-select .es-landing-selector-selected {
    --font-size: 44px;
  }
  .es-selector-overlaywrapper .es-landing-selector-select .es-landing-selector-selected:before {
    width: 15px;
    height: 15px;
  }
}

.es-selector-overlaycentered {
  transform: scale(var(--scale));
  padding: var(--general-spacing);
  grid-column-start: 3;
  grid-column-end: -3;
}

.es-selector-overlay {
  margin: auto;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  height: calc(100vh - var(--selector-height) * 1px - 3 * var(--general-spacing));
  width: 100%;
}
.es-selector-overlay button {
  background: none;
  border: none;
  padding: 15px 0;
  text-align: left;
  width: 25%;
}
@media screen and (min-aspect-ratio: 3/2) {
  .es-selector-overlay button {
    width: 20%;
  }
}
@media screen and (min-aspect-ratio: 5/3) {
  .es-selector-overlay button {
    width: 16.6666666667%;
  }
}
@media screen and (max-height: 1100px) {
  .es-selector-overlay button {
    padding: 0;
  }
}
.es-selector-overlay span {
  font-size: 16px;
  color: #004073;
}

.-es-stateselector, .-es-stateselector:focus {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  font-size: 35px;
  width: 100%;
  color: #004B87 !important;
  /*option:hover{
      background-color:$s200 !important;
  }
  option:active, option:hover {
      outline-color: red
  }*/
}
.-es-stateselector option, .-es-stateselector:focus option {
  color: #48525C !important;
}
@media screen and (max-width: 768px) {
  .-es-stateselector, .-es-stateselector:focus { /* Mobile */
    padding-left: 0px;
    font-size: 20px; /*var(--font-size) !important;*/
  }
}
@media screen and (min-width: 569px) and (max-width: 768px) {
  .-es-stateselector, .-es-stateselector:focus { /* tablet */
    padding-left: 0px;
    font-size: var(--font-size) !important;
  }
}
@media screen and (min-width: 768px) {
  .-es-stateselector option, .-es-stateselector:focus option {
    font-size: 20px;
  }
}

/*elect[selected="selected"]{
    @media screen and (min-width: $bp-mobile) { 

    }
}
@media screen and (min-width: $bp-mobile) { 
    option[selected="selected"]{
        font-size: 48px;
    }
}*/
/* -------- SELECTOR --------- */
.es-landing-selector-select {
  grid-area: 2/4/2/-4;
  position: relative;
  /*padding-bottom: 25px;*/
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  min-width: 360px;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .es-landing-selector-select {
    width: 50%;
    min-width: 246px;
  }
}
.es-landing-selector-select:before {
  content: "";
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  /*@media screen and (min-width: $bp-mobile) { 
      top: 75%;
  }*/
  bottom: 0;
  background-color: #48525C;
}
@media screen and (max-width: 768px) {
  .es-landing-selector-select:before {
    height: 2px;
  }
}
.es-landing-selector-select:after {
  content: "";
  display: block;
  /*height: 22px;
  width: 52px;*/
  width: 34.903726px;
  height: 20.22505225px;
  margin-right: var(--general-spacing);
  background-size: cover;
  /*background-image: url("data:image/svg+xml,%3Csvg width='54' height='23' viewBox='0 0 54 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 3L28 20L52 3' stroke='%23004B87' stroke-width='6' stroke-linejoin='round'/%3E%3C/svg%3E%0A");*/
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8' standalone='no'?%3e%3c!-- Created with Inkscape (http://www.inkscape.org/) --%3e%3csvg version='1.1' id='svg824' width='53.69804' height='31.115465' viewBox='0 0 53.69804 31.115465' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'%3e%3cdefs id='defs828' /%3e%3cg id='layer1' transform='translate(-10.610438,-16.655304)'%3e%3cpath style='fill:%23004B87;fill-opacity:1;stroke:%233737a9;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1' d='M 37.381655,37.785914 59.206774,16.800222 c 0,0 6.195547,-1.514184 4.931638,5.246423 L 39.585153,46.91469 c 0,0 -2.15477,1.854196 -3.882353,0.104928 L 10.624899,21.626931 c 0,0 -0.56392,-6.374272 5.351351,-4.511923 z' id='path966' /%3e%3c/g%3e%3c/svg%3e ");
  pointer-events: none;
  margin-right: 0 !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: absolute;
  right: 0;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .es-landing-selector-select:after { /* Mobile/Tablet */
    width: 26.84902px;
    height: 15.5577325px;
    right: 0;
    top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .es-landing-selector-select:after { /* Desktop */
    top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-selector-select {
    padding-bottom: 0px !important;
    grid-area: 2/2/2/-2;
  }
}
.es-landing-selector-select .es-landing-mobileselector {
  width: 100%;
}

.es-landing-selector-sticky {
  position: fixed;
  top: 117px; /*var(--header-height);*/
  left: 0;
  right: 0;
  height: var(--selector-sticky-height);
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .es-landing-selector-sticky {
    top: 69px;
    height: calc(var(--selector-sticky-height) - 9px);
  }
}
@media screen and (min-width: 769px) {
  .es-landing-selector-sticky {
    /*height: calc(var(--selector-sticky-height) + 20px);*/
    height: calc(var(--selector-sticky-height) + 0px);
  }
}
@media screen and (min-width: 769px) {
  .es-landing-selector-sticky .es-landing-selector-stickygrid {
    align-items: center;
  }
}
.es-landing-selector-sticky .es-landing-centered-title {
  --font-size: 20px;
  grid-column-start: 2;
  grid-column-end: 5;
  margin-bottom: 0;
  text-align: left;
  transform: translateY(-2px);
}
@media screen and (max-width: 1440px) {
  .es-landing-selector-sticky .es-landing-centered-title {
    --font-size: 17px;
  }
}
@media screen and (max-width: 1280px) {
  .es-landing-selector-sticky .es-landing-centered-title {
    display: none;
  }
}
.es-landing-selector-sticky .es-landing-selector-select {
  z-index: 2;
  transition: opacity 0.2s;
  padding-bottom: 9px;
  width: 420px;
  grid-column-start: 5;
  grid-row-start: 1;
}
.es-landing-selector-sticky .es-landing-selector-select:before {
  height: 2px;
}
.es-landing-selector-sticky .es-landing-selector-select:after {
  height: 10px;
  width: 24px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .es-landing-selector-sticky .es-landing-selector-select {
    grid-area: 2/2/2/-2;
    width: auto;
  }
}
.es-landing-selector-sticky .es-landing-selector-select .es-landing-selector-selected {
  --font-size: 32px;
}
.es-landing-selector-sticky .es-landing-selector-select .es-landing-selector-selected span {
  line-height: 18px;
}
@media screen and (min-width: 769px) {
  .es-landing-selector-sticky .es-landing-selector-select .es-landing-selector-selected span {
    line-height: 1.3;
  }
}
.es-landing-selector-sticky .es-landing-selector-select .es-landing-selector-selected:before {
  height: 12px;
  width: 12px;
  margin-right: 10px;
}

.es-landing-selector-selected {
  display: flex;
  align-items: center;
  /*&:before {
      content: '';
      display: inline-block;
      background-color: $blue;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-right: var(--general-spacing);
      @media screen and (max-width: $bp-mobile) {
          width: 7px !important;
          height: 7px !important;
          margin-right: 16px !important;
      }
  }*/
}
@media screen and (max-width: 768px) {
  .es-landing-selector-selected {
    grid-area: 1/1/1/-2;
  }
}
@media screen and (max-width: 768px) {
  .es-landing-selector-selected span {
    grid-area: 1/2/1/-1;
  }
}

.es-landing-selector-placemark {
  height: 1px;
  width: 100%;
}

.es-landing-selector-margin {
  height: 49px;
  width: 100%;
}

.-es-sticky-select-state {
  position: fixed;
  top: calc(var(--general-spacing) + 62px);
  background-color: #F4F4F5;
  z-index: 100;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
@media screen and (max-width: 768px) {
  .-es-sticky-select-state { /* Mobile/Tablet */
    top: calc(var(--general-spacing) + 13px);
  }
}

.es-landing-selector-parent {
  /*background-color:red;*/
  width: 100%;
  height: 128px;
  /*height:100%;*/
}
@media screen and (max-width: 768px) {
  .es-landing-selector-parent {
    height: 64px;
  }
}

.es-landing-selector {
  /*padding-top: 30px;*/
  /*margin-top: var(--general-spacing);*/
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  /*
  margin-top: var(--general-spacing);
  padding: var(--general-spacing);*/
}
@media screen and (max-width: 768px) {
  .es-landing-selector {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.es-landing-selector.-es-header-sticky .es-landing-selector-sticky {
  opacity: 1;
  pointer-events: all;
}
.es-landing-selector.es-selector-open .es-landing-selector-select {
  border-bottom: 4px solid #004073;
}
.es-landing-selector.es-selector-open .es-landing-selector-select:before, .es-landing-selector.es-selector-open .es-landing-selector-select:after {
  content: "";
  width: 4px;
  height: 40px;
  background: #004073;
  position: absolute;
  right: 30px;
  left: auto;
  margin: 0;
  top: 0;
  transform-origin: center center;
  transform: rotate(45deg);
}
.es-landing-selector.es-selector-open .es-landing-selector-select:before {
  background-image: none;
  transform: rotate(-45deg);
}
.es-landing-selector.es-selector-open .es-landing-selector-select:after {
  background-image: none;
}

.es-donut {
  --es-desktop: 14%; /* desktop (1280px to 1440px) */
  --es-small: 8%; /* #Image Export set to 15% for image export 8% for normal use */ /* small desktop (1071px to 1279px) */
  --es-smaller: 10%; /* smaller desktop (770px to 1070px) */
  --es-tablet: 18%; /* tablet (375px to 769px) */
  --es-mobile: 15%; /* mobile (up to 374px) */
  --es-desktop-sel: 16%;
  --es-small-sel: 10%;
  --es-smaller-sel: 12%;
  --es-tablet-sel: 20%;
  --es-mobile-sel: 17%;
  --es-donut-width: 100%; /* 627px; (old value) */
  margin-bottom: var(--general-spacing);
  position: relative;
}
@media screen and (max-width: 768px) {
  .es-donut {
    --es-donut-width: calc(100vw * 10/12);
  }
}
@media screen and (min-height: 1049px) {
  .es-donut {
    --es-donut-width: 627px;
  }
}
.es-donut .es-donut-slice-firearm-suicide path {
  stroke: #001C60;
}
.es-donut .ct-firearm-suicide {
  --ct-color: #001C60;
}
.es-donut .es-donut-slice-firearm-homicide path {
  stroke: #FF352E;
}
.es-donut .es-donut-slice-other-firearm-deaths path {
  stroke: #708090;
}
.es-donut .ct-firearm-homicide {
  --ct-color: #FF352E;
}
.es-donut .es-donut-slice-unintentional-firearm-deaths path, .es-donut .es-donut-slice-unintentional-firearm-death path {
  stroke: #ffffff;
  filter: drop-shadow(0px -1px 0px rgb(128, 130, 133)) drop-shadow(-1px 0px 0px rgb(128, 130, 133)) drop-shadow(1px 0px 0px rgb(128, 130, 133)) drop-shadow(0px 1px 0px rgb(128, 130, 133));
}
.es-donut .ct-unintentional-firearm-deaths {
  --ct-color: #ffffff;
}
.es-donut .es-donut-slice-undetermined-firearm-deaths path, .es-donut .es-donut-slice-undetermined-firearm-death path {
  stroke: #BCCBEF;
}
.es-donut .ct-undetermined-firearm-deaths {
  --ct-color: #BCCBEF;
}
.es-donut .es-donut-slice-shootings-by-law-enforcement path {
  stroke: #0D3DD9;
}
.es-donut .ct-shootings-by-law-enforcement {
  --ct-color: #0D3DD9;
}
.es-donut .es-donut-slice-police-shootings path {
  stroke: #0D3DD9;
}
.es-donut .ct-police-shootings {
  --ct-color: #0D3DD9;
}
.es-donut .es-donut-slice-shootings-by-police path {
  stroke: #0D3DD9;
}
.es-donut .ct-shootings-by-police {
  --ct-color: #0D3DD9;
}
.es-donut .es-donut-chart {
  position: relative;
  /*width: 100%*/
  width: 50%;
  /*background-color: #ff000073;*/
  max-width: var(--es-donut-width);
  /*margin: auto;*/
  left: 0%;
  /*@media (orientation: landscape) {
      @media screen and (max-height: 1049px) {*/
  height: calc(100vh - var(--header-height) - 300px);
  max-height: 350px; /* #Image Export set to 315px; for image export, 350px; for normal use */
  /*}
  }*/
  /*
              &.es-white-bar {
          background: $s200;
      }
      &.es-black-bar {
          background: $red;
      }
      &.es-hispanic-bar {
          background: $o60;
      }
      &.es-asian-bar {
          background: $blue;
      }
      &.es-na-bar {  
          background: $grey-beige;
      }
      */
}
@media screen and (max-width: 768px) {
  .es-donut .es-donut-chart {
    left: 0%;
    margin: auto;
    width: 70%;
    height: 100%;
    max-height: 35vh;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-donut .es-donut-chart {
    max-height: calc(100vh - var(--header-height) - 130px);
  }
}
.es-donut .es-donut-chart:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.es-donut .es-donut-chart .ct-chart-donut {
  position: absolute;
  top: 0; /* #Image Export ==> set to 10px for image export, 0 for normal use */
  right: -20%; /* #Image Export ==> set to 0% for image export, -20%; for normal use */
  /*@media (orientation: landscape) {
      @media screen and (max-height: 1049px) {
          transform: scale(1.3);
          right: -10%;
      }
  }
  @media screen and (max-height: 1049px) {
      transform: scale(2) !important;
  }*/
}
@media screen and (max-width: 768px) {
  .es-donut .es-donut-chart .ct-chart-donut {
    left: -2%;
    top: 5%;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-donut .es-donut-chart .ct-chart-donut {
    left: 0%;
    top: 10%;
  }
}
.es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path,
.es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path {
  transition: stroke-width 0.2s;
  stroke-width: 10% !important;
}
@media screen and (max-height: 379px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path {
    stroke-width: 6vh !important;
  }
}
@media screen and (min-height: 380px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path {
    /* mobile (up to 374px) */
    /* tablet (375px to 769px) */
    /* smaller desktop (770px to 1070px) */
    /* small desktop (1071px to 1279px) */
    /* desktop (1280px to 1440px) */
  }
}
@media screen and (min-height: 380px) and (max-width: 374px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path {
    stroke-width: calc(var(--es-mobile) - 2px) !important;
  }
}
@media screen and (min-height: 380px) and (min-width: 375px) and (max-width: 769px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path {
    stroke-width: calc(var(--es-tablet) - 2px) !important;
  }
}
@media screen and (min-height: 380px) and (min-width: 770px) and (max-width: 1070px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path {
    /*stroke-width: 10% !important;*/
    stroke-width: calc(var(--es-smaller) - 2px) !important;
  }
}
@media screen and (min-height: 380px) and (min-width: 1071px) and (max-width: 1279px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path {
    stroke-width: calc(var(--es-small) - 2px) !important;
  }
}
@media screen and (min-height: 380px) and (min-width: 1280px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path {
    stroke-width: calc(var(--es-desktop) - 2px) !important;
  }
}
.es-donut .es-donut-chart .ct-series path:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
  transition: stroke-width 0.2s;
  stroke-width: 10% !important;
}
@media screen and (max-height: 379px) {
  .es-donut .es-donut-chart .ct-series path:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: 6vh !important;
  }
}
@media screen and (min-height: 380px) {
  .es-donut .es-donut-chart .ct-series path:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    /* mobile (up to 374px) */
    /* tablet (375px to 769px) */
    /* smaller desktop (770px to 1070px) */
    /* small desktop (1071px to 1279px) */
    /* desktop (1280px to 1440px) */
  }
}
@media screen and (min-height: 380px) and (max-width: 374px) {
  .es-donut .es-donut-chart .ct-series path:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-mobile) !important;
  }
}
@media screen and (min-height: 380px) and (min-width: 375px) and (max-width: 769px) {
  .es-donut .es-donut-chart .ct-series path:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-tablet) !important;
  }
}
@media screen and (min-height: 380px) and (min-width: 770px) and (max-width: 1070px) {
  .es-donut .es-donut-chart .ct-series path:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-smaller) !important;
  }
}
@media screen and (min-height: 380px) and (min-width: 1071px) and (max-width: 1279px) {
  .es-donut .es-donut-chart .ct-series path:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-small) !important;
  }
}
@media screen and (min-height: 380px) and (min-width: 1280px) {
  .es-donut .es-donut-chart .ct-series path:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-desktop) !important;
  }
}
.es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path.es-path-selected,
.es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path.es-path-selected {
  stroke-width: calc(12% - 2px) !important;
  /* mobile (up to 374px) */
  /* tablet (375px to 769px) */
  /* smaller desktop (770px to 1070px) */
  /* small desktop (1071px to 1279px) */
  /* desktop (1280px to 1440px) */
}
@media screen and (max-width: 374px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path.es-path-selected,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path.es-path-selected {
    stroke-width: calc(var(--es-mobile-sel) - 2px) !important;
  }
}
@media screen and (min-width: 375px) and (max-width: 769px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path.es-path-selected,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path.es-path-selected {
    stroke-width: calc(var(--es-tablet-sel) - 2px) !important;
  }
}
@media screen and (min-width: 770px) and (max-width: 1070px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path.es-path-selected,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path.es-path-selected {
    stroke-width: calc(var(--es-smaller-sel) - 2px) !important;
  }
}
@media screen and (min-width: 1071px) and (max-width: 1279px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path.es-path-selected,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path.es-path-selected {
    stroke-width: calc(var(--es-small-sel) - 2px) !important;
  }
}
@media screen and (min-width: 1280px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path.es-path-selected,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path.es-path-selected {
    stroke-width: calc(var(--es-desktop-sel) - 2px) !important;
  }
}
@media screen and (min-width: 1280px) and (max-height: 650px) {
  .es-donut .es-donut-chart .es-donut-slice-unintentional-firearm-death path.es-path-selected,
  .es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path.es-path-selected {
    stroke-width: calc(10% - 2px) !important;
  }
}
.es-donut .es-donut-chart .ct-series path.es-path-selected:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
  stroke-width: 12% !important;
  /* tablet (375px to 769px) */
  /* smaller desktop (770px to 1070px) */
  /* small desktop (1071px to 1279px) */
  /* desktop (1280px to 1440px) */
}
@media screen and (max-width: 374px) {
  .es-donut .es-donut-chart .ct-series path.es-path-selected:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-mobile-sel) !important;
  }
}
@media screen and (min-width: 375px) and (max-width: 769px) {
  .es-donut .es-donut-chart .ct-series path.es-path-selected:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-tablet-sel) !important;
  }
}
@media screen and (min-width: 770px) and (max-width: 1070px) {
  .es-donut .es-donut-chart .ct-series path.es-path-selected:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-smaller-sel) !important;
  }
}
@media screen and (min-width: 1071px) and (max-width: 1279px) {
  .es-donut .es-donut-chart .ct-series path.es-path-selected:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-small-sel) !important;
  }
}
@media screen and (min-width: 1280px) {
  .es-donut .es-donut-chart .ct-series path.es-path-selected:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: var(--es-desktop-sel) !important;
  }
}
@media screen and (min-width: 1280px) and (max-height: 650px) {
  .es-donut .es-donut-chart .ct-series path.es-path-selected:not(.es-donut-slice-unintentional-firearm-death path, .es-donut-slice-american-indian-alaska-native path) {
    stroke-width: 10% !important;
  }
}
.es-donut .es-donut-chart .es-donut-slice-asian-native-hawaiian-pacific-islander path {
  stroke: #0D3DD9;
}
.es-donut .es-donut-chart .es-donut-slice-hispanic path {
  stroke: #FF352E;
}
.es-donut .es-donut-chart .es-donut-slice-latinx path {
  stroke: #FF352E;
}
.es-donut .es-donut-chart .es-donut-slice-black path {
  stroke: #596EA1;
}
.es-donut .es-donut-chart .es-donut-slice-white path {
  stroke: #001C60;
}
.es-donut .es-donut-chart .es-donut-slice-american-indian-alaska-native path {
  stroke: #ffffff;
  filter: drop-shadow(0px -1px 0px rgb(128, 130, 133)) drop-shadow(-1px 0px 0px rgb(128, 130, 133)) drop-shadow(1px 0px 0px rgb(128, 130, 133)) drop-shadow(0px 1px 0px rgb(128, 130, 133));
}
.es-donut .es-donut-chart .es-donut-slice-unknown-race path {
  stroke: #708090;
}
.es-donut .es-donut-chart .es-donut-slice-more-than-one-race path {
  stroke: #BCCBEF;
}
.es-donut .es-donut-chartlegend {
  position: relative;
  bottom: 100%;
  left: 50%;
  width: 40%;
  height: 100%;
  margin-left: 5%;
  /*top: -50%;
  left: 75%;
  width: 50%;
  transform: translate(-50%, -50%);*/
  height: 100%;
  margin-left: 70px;
  /*background-color: #0000ff73;*/
  max-width: 285px;
}
@media screen and (max-width: 768px) {
  .es-donut .es-donut-chartlegend {
    position: unset;
    /*left: 48%;
    top: 50%;*/
    width: 100%;
    margin-left: 0%;
    transform: translate(0%, 0%);
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-donut .es-donut-chartlegend {
    position: relative;
    bottom: 0%;
    left: 0%;
  }
}
.es-donut .es-donut-chartlegend .ct-legend {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.es-donut .es-donut-chartlegend .ct-legend li {
  font-family: GT America;
  font-size: 16px;
  line-height: 19px;
  color: #1E252D;
  /*text-transform: uppercase;*/
  position: absolute;
  top: 50%;
  left: 0%;
  text-align: left;
  transform: translate(0%, -50%);
  /*left: 50%;
  transform: translate(-50%, -50%);*/
  transition: opacity 0.2s;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .es-donut .es-donut-chartlegend .ct-legend li {
    transform: translate(0%, 0%);
    position: unset;
    font-size: 11px;
    position: unset;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-donut .es-donut-chartlegend .ct-legend li {
    padding-top: 0%;
    position: relative;
    /*top: 40px;*/
  }
}
@media screen and (max-width: 320px) {
  .es-donut .es-donut-chartlegend .ct-legend li {
    font-size: 10px;
    line-height: 1.2;
  }
}
.es-donut .es-donut-chartlegend .ct-legend li:not(.es-legend-selected) {
  opacity: 0;
  pointer-events: none;
  display: none;
}
.es-donut .es-donut-chartlegend .ct-legend li .es-donut-legend-number {
  display: block;
  font-family: "GT Super Text";
  color: #E03C31;
  font-size: 64px;
  line-height: 64px;
}
@media screen and (max-width: 768px) {
  .es-donut .es-donut-chartlegend .ct-legend li .es-donut-legend-number {
    font-size: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 320px) {
  .es-donut .es-donut-chartlegend .ct-legend li .es-donut-legend-number {
    font-size: 30px;
    line-height: 30px;
  }
}
.es-donut .es-donut-chartlegend .ct-legend li .es-donut-legend-additional {
  display: block;
  /*text-align: left;
  margin-top: 1.5rem;*/
  /*font-size: 1.1rem;
  line-height: 1.3;*/
}
@media screen and (max-width: 768px) {
  .es-donut .es-donut-chartlegend .ct-legend li .es-cdc-message-is-too-big {
    width: 200px;
    right: 25%;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .es-donut .es-donut-chartlegend .ct-legend li .es-cdc-message-is-too-big {
    /*width: 200px;
    font-size: 11px;*/
    width: 100%;
    /*right: 6%;*/
    font-size: 6pt;
    line-height: 1.2;
    position: relative;
    margin-top: 3px;
  }
}
.es-donut .es-donut-chartlegend .ct-legend li .es-donut-legend-tooltip {
  position: absolute;
  z-index: 1;
  background: white;
  padding: var(--general-spacing);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  width: 100%;
  text-transform: none;
  font-size: 16px;
  line-height: 22px;
  padding: 42px;
}
.es-donut .es-donut-chartlegend .ct-legend li .es-donut-legend-additional:hover ~ .es-donut-legend-tooltip, .es-donut .es-donut-chartlegend .ct-legend li .es-donut-legend-tooltip:hover {
  opacity: 1;
  pointer-events: all;
}
.es-donut .es-donut-chartlegend .ct-legend li.es-donut-additional-tooltip .es-donut-legend-additional:after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
  height: 1rem;
  width: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg preserveAcpectRatio='xMidYMid meet' viewBox='0 0 25 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12.5' cy='12.5' r='11.5' stroke='%23231F20' stroke-width='2'%3E%3C/circle%3E%3Cpath d='M11.9034 15.816H13.7914V15.352C13.7914 14.68 13.9674 14.312 14.4634 13.88L15.2314 13.208C16.0474 12.488 16.7354 11.512 16.7354 10.376C16.7354 8.36 15.3114 7.208 12.9754 7.208C10.5274 7.208 9.18344 8.568 9.18344 10.52C9.18344 10.744 9.19944 11.032 9.27944 11.416L11.1994 11.608C11.1194 11.24 11.1034 11.032 11.1034 10.776C11.1034 9.496 11.8554 8.76 12.9754 8.76C13.9834 8.76 14.7034 9.448 14.7034 10.488C14.7034 11.4 14.2394 11.976 13.6634 12.456L12.8634 13.144C12.0314 13.864 11.9034 14.52 11.9034 15.096V15.816ZM11.7754 19H13.9514V16.952H11.7754V19Z' fill='%23231F20'%3E%3C/path%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  .es-donut .es-donut-source {
    height: 10%;
    /*background-color: yellow;*/
  }
}
.es-donut .es-donut-inner {
  position: relative;
  /*width: 80%;
  left: 15%;*/
  height: calc(100% - 60px);
  left: 0%;
  /*@media (orientation: landscape) {
      @media screen and (max-height: 1049px) {*/
  height: calc(100vh - var(--header-height) - 300px);
  max-height: 350px;
  /*}
  }*/
}
@media screen and (max-width: 768px) {
  .es-donut .es-donut-inner {
    width: 100%;
    left: 0%;
    max-height: 100vh;
    /*margin-bottom: 20px;*/
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-donut .es-donut-inner {
    max-height: 100%;
  }
}
@media screen and (max-width: 569px) and (max-height: 640px) {
  .es-donut .es-donut-inner {
    height: 95%;
  }
}
@media screen and (max-width: 569px) and (min-height: 641px) {
  .es-donut .es-donut-inner {
    height: 90%;
  }
}
@media screen and (min-width: 569px) and (max-width: 768px) {
  .es-donut .es-donut-inner {
    height: 80%;
  }
}
.es-donut .es-source-wrapper {
  /*width: var(--es-donut-width);*/
  text-align: center;
  margin: auto;
  margin-top: var(--general-spacing);
}
@media screen and (orientation: landscape) and (max-height: 1049px) {
  .es-donut .es-source-wrapper {
    margin-top: 2vh;
  }
}
@media screen and (max-width: 768px) {
  .es-donut .es-source-wrapper {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) and (min-height: 775px) {
  .es-donut .es-source-wrapper {
    margin-top: calc(7% - 0px);
  }
}

.es-landing-blurb {
  margin: var(--general-spacing) 0;
}
.es-landing-blurb .es-landing-blurb-copy {
  grid-area: 1/4/1/-4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .es-landing-blurb .es-landing-blurb-copy {
    grid-area: 1/2/1/-2;
    /* font-size: 38px;
    line-height: 44px; */
  }
}

.es-landing-linechart {
  padding-top: 30px;
}

.es-landing-linechart-content {
  grid-area: 2/3/2/-3;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: auto;
  /*margin: var(--general-spacing) 0;*/
  padding: var(--general-spacing) 0;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .es-landing-linechart-content {
    grid-area: 2/2/2/-2;
    grid-template-columns: repeat(10, 1fr);
    margin-top: 0;
    padding-top: 0;
  }
}

.es-landing-linechart-captionwrapper {
  margin-left: calc(var(--general-spacing) * 0.66);
  display: flex;
  align-items: center;
  margin-top: var(--general-spacing);
}
@media screen and (max-width: 768px) {
  .es-landing-linechart-captionwrapper {
    margin-left: 0;
    grid-area: 2/1/2/-1;
    flex-wrap: wrap;
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-linechart-captionwrapper {
    margin-top: 12px;
  }
}
.es-landing-linechart-captionwrapper .es-current-state-name {
  text-transform: uppercase;
  margin-right: 44px;
}
.es-landing-linechart-captionwrapper .es-current-state-name:after {
  content: ":";
}
@media screen and (max-width: 768px) {
  .es-landing-linechart-captionwrapper .es-current-state-name {
    display: none;
  }
}

.es-linechart-caption-item {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-right: 22px;
}
.es-linechart-caption-item.-es-suicide:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--dot-color);
}
.es-linechart-caption-item.-es-homicide:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  background-color: var(--dot-color);
}
.es-linechart-caption-item.-es-all:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 18px solid var(--dot-color);
}
.es-linechart-caption-item.-es-all {
  --dot-color: #596EA1;
}
.es-linechart-caption-item.-es-suicide {
  --dot-color: #001C60;
}
.es-linechart-caption-item.-es-homicide {
  --dot-color: #FF352E;
}

.es-landing-linechart-axislegend {
  position: absolute;
  /*top: 50%;
  left: -20%;*/
  /*transform: translateY(-200%) rotate(-90deg);*/
  transform: rotate(-90deg) translateY(-500%) translateX(-100%);
}
@media screen and (max-width: 768px) {
  .es-landing-linechart-axislegend {
    left: 0;
    bottom: 50%;
    top: auto;
    transform-origin: left;
    position: absolute;
    transform: rotate(-90deg) translateY(-25%) translateX(-50%);
  }
}
@media screen and (min-width: 769px) and (max-width: 950px) {
  .es-landing-linechart-axislegend {
    /*left: -20%;*/
  }
}
@media screen and (min-width: 951px) and (max-width: 1200px) {
  .es-landing-linechart-axislegend {
    /*left: -25%;*/
  }
}

.es-landing-linechart-chartwrapper {
  grid-area: 1/1/1/-7;
  position: relative;
}
@media screen and (max-width: 768px) {
  .es-landing-linechart-chartwrapper {
    grid-area: 2/1/2/-1;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
  .es-landing-linechart-chartwrapper .es-source-wrapper {
    grid-row-start: 3;
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.es-landing-linechart-chartwrapper .es-source-wrapper {
  text-align: center;
  /*margin-left: calc(var(--general-spacing) * 0.66);*/
  margin-top: 10px;
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-landing-linechart-chartwrapper .es-source-wrapper {
    margin-top: 5px;
  }
}

.es-landing-linechart-chart {
  position: relative;
}
@media screen and (max-width: 768px) {
  .es-landing-linechart-chart {
    grid-area: 1/1/1/-1;
  }
}

.es-landing-linechart-legend {
  grid-area: 1/-6/1/-1;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .es-landing-linechart-legend {
    /*margin-bottom: var(--general-spacing);*/
    grid-area: 1/1/1/-1;
  }
}

@media screen and (max-width: 768px) {
  .LineChart-wrapper svg {
    width: 100%;
    height: calc(100vh - 200px);
  }
}
@media (orientation: landscape) {
  @media not screen and (max-width: 768px) {
    @media screen and (max-height: 800px) {
      .LineChart-wrapper svg {
        height: calc(100vh - 325px);
        max-width: 100%;
      }
    }
  }
}

.LineChartAxis {
  stroke: #E8E9EA;
}

.LineChart-Scale {
  text-anchor: end;
}
@media screen and (max-width: 569px) {
  .LineChart-Scale text {
    font-size: 4px;
    transform: translateX(1px);
  }
}
@media screen and (max-width: 768px) {
  .LineChart-Scale text {
    font-size: 3px;
    transform: translateX(1px);
  }
}

@media screen and (max-width: 768px) {
  .LineChart-dot {
    r: 2;
  }
}

/*.LineChart-square {
    @media screen and (max-width: $bp-mobile) {
        r: 2
    }
.LineChart-triangle {
    @media screen and (max-width: $bp-mobile) {
        r: 2
    }
}*/
@media screen and (max-width: 768px) {
  .LineChart-line {
    stroke-width: 1;
  }
}

@media screen and (max-width: 569px) {
  .LineChart-axes text {
    font-size: 5px;
  }
}
@media screen and (max-width: 768px) {
  .LineChart-axes text {
    font-size: 3px;
  }
}

.es-landing-linechart-legend-heading {
  position: relative;
  min-height: calc(var(--heading-text-padding) * 2.5);
  padding-bottom: calc(var(--heading-text-padding) / 2.5);
  margin-bottom: var(--heading-text-padding);
  box-sizing: border-box;
}
.es-landing-linechart-legend-heading:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #88847F;
}

.LineChart-tooltipText {
  font-size: 2.5px;
  font-family: "GT America";
  fill: #48525C;
  text-anchor: middle;
}
@media screen and (max-width: 768px) {
  .LineChart-tooltipText {
    font-size: 4px !important;
  }
}

.LineChart-tooltipBg {
  stroke: rgba(0, 0, 0, 0.3);
  stroke-width: 0.05px;
}

.LineChart-tooltip {
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
}
.LineChart-tooltip.es-donut-selected {
  opacity: 1;
}

.es-source .es-source-wrapper-i {
  display: inline-flex;
  border: 1px solid #5A6673;
  width: 32px;
  height: 32px;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .es-source {
    display: inline-block;
    /*max-width: 20em;*/
    /*text-align: left;*/
  }
}
.es-source .es-source-caption {
  font-family: GT America;
  font-size: 13px;
  line-height: 1; /*32px;*/
  top: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #A5A8AB;
  font-weight: normal !important;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .es-source .es-source-caption {
    font-size: 10px;
    line-height: 1.5 !important;
  }
}
.es-source .es-source-description {
  --scale: 0.95;
  position: fixed;
  width: 477px;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  padding: 42px;
  font-family: GT America;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: #48525C;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 20px)) scale(var(--scale));
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .es-source .es-source-description {
    width: 83.3333333333%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(var(--scale));
  }
}
.es-source .es-source-description.es-displayed {
  z-index: 100;
  pointer-events: all;
  opacity: 1;
  --scale: 1;
}
.es-source .es-source-description:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .es-source .es-source-description:before {
    content: "";
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg transform='translate(0,-952.36218)'%3E%3Cpath style='text-indent:0;text-transform:none;direction:ltr;block-progression:tb;baseline-shift:baseline;color:%23000000;enable-background:accumulate;' d='M 73.33453,974.78503 50,998.11953 l -23.33452,-23.3345 -4.24265,4.2426 23.33454,23.33447 -23.33453,23.3346 4.24263,4.2426 L 50,1006.6048 l 23.33452,23.3345 4.24265,-4.2426 -23.33454,-23.3346 23.33453,-23.33447 -4.24263,-4.2426 z' fill='%23000000' fill-opacity='1' marker='none' visibility='visible' display='inline' overflow='visible'/%3E%3C/g%3E%3C/svg%3E");
  }
}
@media screen and (max-width: 768px) {
  .es-source:not(.-es-mobile) .es-source-description {
    /*pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;*/
  }
}
.es-source .es-source-description-center {
  left: 50% !important;
}

.es-bucket-billboard-off {
  border-top: 0px solid #48525C !important;
  border-bottom: 0px solid #48525C !important;
}

.es-bucket-billboard {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  border-top: 0px solid #48525C;
  border-bottom: 0px solid #48525C;
  margin-bottom: 20px;
  grid-column-start: 3;
  grid-column-end: -3;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .es-bucket-billboard {
    grid-column-start: 2;
    grid-column-end: -2;
    grid-template-columns: repeat(10, 1fr);
    margin-bottom: 0px;
  }
}
.es-bucket-billboard .es-bucket-billboard-copy {
  grid-area: 2/3/2/-3;
}
@media screen and (max-width: 768px) {
  .es-bucket-billboard .es-bucket-billboard-copy {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.es-bucket-billboard .es-bucket-billboard-eyebrow,
.es-bucket-billboard .es-bucket-billboard-copy {
  text-align: center;
  color: #5A6673;
  padding: 20px 0 20px;
  line-height: 1.2;
}
.es-bucket-billboard .es-bucket-billboard-eyebrow {
  grid-area: 1/3/1/-3;
  padding: 60px 0 0 0;
}
@media screen and (max-width: 768px) {
  .es-bucket-billboard .es-bucket-billboard-eyebrow {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}

.es-bucket-hero-meter-homicide, .es-bucket-hero-meter-suicide, .es-bucket-trans-hero-meter, .es-iph-area-chartwrapper {
  --hero-chart-height: 40vmin;
  grid-column-start: 2;
  grid-column-end: -2;
  position: relative;
  display: grid;
  margin-bottom: 80px;
}
.es-bucket-hero-meter-homicide .es-source-wrapper, .es-bucket-hero-meter-suicide .es-source-wrapper, .es-bucket-trans-hero-meter .es-source-wrapper, .es-iph-area-chartwrapper .es-source-wrapper {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .es-bucket-hero-meter-homicide, .es-bucket-hero-meter-suicide, .es-bucket-trans-hero-meter, .es-iph-area-chartwrapper {
    margin-top: 20px; /*var(--general-spacing);*/
  }
}

/*.es-font-color-s400.es-typo-body{
    display: inline-block !important;
}*/
.es-hero-meter-inner {
  position: relative;
}

.es-hero-meter-textwrapper {
  position: relative;
  top: 0%;
  left: 0;
  height: var(--hero-chart-height);
  width: 45%;
  padding-left: 5%;
  /*float: right;*/
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .es-hero-meter-textwrapper {
    position: relative;
    /*grid-template-columns: repeat(10, 1fr);*/
    height: 0;
    width: 65%;
    float: right;
    display: inline-block;
    padding-left: 2.5%;
  }
}

.es-hero-meter-text {
  grid-column-start: 11;
  grid-column-end: 17;
  font-size: 28px;
  font-family: "GT Super Text";
}
@media screen and (max-width: 768px) {
  .es-hero-meter-text {
    grid-column-start: 2;
    grid-column-end: -2;
    text-align: left;
    /*font-family: GT America;*/
    font-size: 28px;
    line-height: 34px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .es-hero-meter-text {
    position: relative;
    top: 15%;
  }
}
@media screen and (min-width: 769px) and (max-width: 820px) {
  .es-hero-meter-text {
    grid-column-start: 12;
    grid-column-end: -1;
    font-size: 19px;
    line-height: 1;
  }
}
@media screen and (min-width: 821px) and (max-width: 1060px) {
  .es-hero-meter-text {
    grid-column-start: 12;
    grid-column-end: -1;
    font-size: 19px;
    line-height: 1;
    position: relative;
    top: 15%;
  }
}
@media screen and (min-width: 1061px) and (max-width: 1300px) {
  .es-hero-meter-text {
    grid-column-start: 12;
    grid-column-end: -3;
    font-size: 20px;
    line-height: 1.2;
    position: relative;
    top: 15%;
  }
}
@media screen and (max-height: 900px) {
  .es-hero-meter-text {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media screen and (max-height: 600px) {
  .es-hero-meter-text {
    font-size: 16px;
    line-height: 1.2;
    grid-column-end: -2;
  }
}

.es-hero-meter-number {
  position: relative;
  display: inline-flex !important;
  font-size: calc(var(--hero-chart-height) * 0.3);
  right: 0%;
  top: 20%;
  width: 100%;
  /*transform: translate(69%, -45%);*/
  color: #E03C31;
  font-family: "GT Super Text";
}
.es-hero-meter-number:after {
  content: "%";
}
@media screen and (max-width: 768px) {
  .es-hero-meter-number {
    /*transform: translate(5%, -10%);*/
    top: 0%;
    width: 100%;
    position: relative;
    font-size: calc(var(--hero-chart-height) * 0.4);
    line-height: 1;
  }
}

.es-hero-chartwrapper {
  position: relative;
  display: inline-flex;
  width: 100%;
}

.es-hero-chart {
  height: var(--hero-chart-height);
  width: 45%;
  margin-right: 5%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .es-hero-chart {
    --hero-chart-height: 30vmin;
    width: 35%;
    display: inline-flex;
  }
}
.es-hero-chart .es-hero-meter-chart {
  height: var(--hero-chart-height);
  width: var(--hero-chart-height);
  z-index: 1;
  position: absolute;
  right: 0%;
  transform: translateX(0%);
  /*
  .HeroMeterChartGradientRight-stop1 {
      stop-color: #D6E2EC;
  }
  .HeroMeterChartGradientRight-stop2 {
      stop-color: rgb(155, 181, 203);
  }
  .HeroMeterChartGradientLeft-stop1 {
      stop-color: rgb(155, 181, 203);
  }
  .HeroMeterChartGradientLeft-stop2 {
      stop-color: #004B87;
  }*/
}
@media screen and (max-width: 768px) {
  .es-hero-chart .es-hero-meter-chart {
    transform: unset; /*translateX(-40%);*/
    /*left: 0%;*/
  }
}
.es-hero-chart .es-hero-meter-chart .hero-meter-chart-thincircle {
  stroke: #D2D3D5;
}
@media screen and (max-width: 768px) {
  .es-hero-chart .es-hero-meter-chart .hero-meter-chart-thincircle {
    stroke-width: 20;
  }
}
.es-hero-chart .es-hero-meter-chart .hero-meter-chart-dot {
  fill: #D2D3D5;
  display: none;
}
@media screen and (max-width: 768px) {
  .es-hero-chart .es-hero-meter-chart .hero-meter-chart-dot {
    r: 1.5;
  }
}
.es-hero-chart .es-hero-meter-chart .HeroMeterChartGradientRight-stop1 {
  stop-color: #FF352E;
}
.es-hero-chart .es-hero-meter-chart .HeroMeterChartGradientRight-stop2 {
  stop-color: #FF352E;
}
.es-hero-chart .es-hero-meter-chart .HeroMeterChartGradientLeft-stop1 {
  stop-color: #FF352E;
}
.es-hero-chart .es-hero-meter-chart .HeroMeterChartGradientLeft-stop2 {
  stop-color: #FF352E;
}

.es-area-chartwrapper {
  position: relative;
}
.es-area-chartwrapper .es-area-chartlegend {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: "GT America";
  font-size: 28px;
  line-height: 34px;
  max-width: 13em;
  text-align: center;
  letter-spacing: -0.2px;
}
@media screen and (orientation: landscape) and (max-height: 800px) {
  .es-area-chartwrapper .es-area-chartlegend {
    transform: scale(0.7) translateY(-70%);
    /*transform: translate(-50%, -50%);
    transform: translateY(-50%);*/
  }
}
@media screen and (max-width: 768px) {
  .es-area-chartwrapper .es-area-chartlegend {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.2px;
  }
  .es-area-chartwrapper .es-area-chartlegend div {
    line-height: 20px;
  }
}
.es-area-chartwrapper .es-area-legendnumber {
  font-family: "GT Super Text";
  font-size: 64px;
  line-height: 64px;
  display: block;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .es-area-chartwrapper .es-area-legendnumber {
    margin-bottom: 0;
  }
}
.es-area-chartwrapper .es-area-chart {
  max-width: 450px;
  /*width:80%;*/
  width: calc(100vh - 275px);
  margin: auto;
}
@media (orientation: portrait) {
  .es-area-chartwrapper .es-area-chart {
    max-width: calc(100vw - 40px);
  }
}
@media (orientation: landscape) {
  .es-area-chartwrapper .es-area-chart {
    min-width: 250px;
  }
}
.es-area-chartwrapper .es-area-chart-inner {
  position: relative;
}
.es-area-chartwrapper .es-source-wrapper {
  text-align: center;
  margin-top: var(--general-spacing);
}
@media screen and (orientation: landscape) and (max-height: 800px) {
  .es-area-chartwrapper .es-source-wrapper {
    margin-top: 20px;
  }
}

.es-source-wrapper-disambiguated {
  display: inline-flex;
  border: 1px solid #5A6673;
  width: 20px;
  height: 20px;
  border-radius: 15px;
}

.es-typo-subheader1 {
  display: inline;
}

.es-firearms-source {
  width: 100%;
  vertical-align: top;
  text-align: center;
  line-height: 1 !important;
}

.es-source-firearm-caption {
  /* line-height: 20px !important;
   color: $o80 !important;*/
  font-size: 14px !important;
  top: 0px !important;
}
@media screen and (max-width: 768px) {
  .es-source-firearm-caption {
    font-size: 10px !important;
  }
}

.es-font-color-s400.es-typo-body {
  display: inline;
}

.es-font-color-s200.es-typo-subheader1 {
  display: block !important;
}

.es-landng-linechart-disambiguated {
  display: inline;
}

.es-meta-off {
  display: none;
}

.es-v-bar-graph {
  grid-column-start: 3;
  grid-column-end: -3;
  margin-bottom: 80px;
}
.es-v-bar-graph .es-source-wrapper {
  /*margin-left: percentage(7/20);*/
  margin-top: 10px;
}
.es-v-bar-graph .es-v-bar-graph-y-axis {
  margin-left: 35%;
}
@media screen and (max-width: 768px) {
  .es-v-bar-graph .es-v-bar-graph-y-axis {
    margin-left: 0;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-v-bar-graph .es-v-bar-graph-y-axis {
    margin-bottom: 15px;
  }
}
.es-v-bar-graph .es-graph-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .es-v-bar-graph .es-graph-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-v-bar-graph .es-graph-row {
    margin-bottom: 2px;
  }
}
.es-v-bar-graph .es-graph-row .es-graph-bar-wrapper {
  width: 65%;
  max-height: 50px;
  height: calc((100vh - 450px) / 5);
  margin: 5px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .es-v-bar-graph .es-graph-row .es-graph-bar-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-v-bar-graph .es-graph-row .es-graph-bar-wrapper {
    height: calc((100vh - 315px) / 5);
    margin: 0px 0;
    max-height: 20px;
  }
}
.es-v-bar-graph .es-graph-row .es-graph-bar-wrapper .es-graph-bar {
  position: absolute;
  transition: all 300ms ease-in;
  top: 0;
  bottom: 0;
  left: 0;
  background: #A9B3BC;
  width: calc(var(--vbchart-value) * 1%);
}
.es-v-bar-graph .es-graph-row .es-graph-bar-wrapper .es-graph-bar.firearm {
  background: #004073;
}
.es-v-bar-graph .es-graph-row .es-graph-label,
.es-v-bar-graph .es-graph-row .es-graph-stat {
  padding: 0 15px;
  text-transform: uppercase;
}
.es-v-bar-graph .es-graph-row .es-graph-label {
  width: 142px;
  text-align: end;
}
@media screen and (max-width: 768px) {
  .es-v-bar-graph .es-graph-row .es-graph-label {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .es-v-bar-graph .es-graph-row .es-graph-stat {
    position: absolute;
    top: calc(50% + 10px);
    transform: translateY(-50%) translateX(calc(-100% * var(--vbchart-low)));
    z-index: 1;
    font-size: 1.5em;
    color: var(--vbchart-color);
    left: calc(var(--vbchart-value) * 1%);
  }
}
@media screen and (max-width: 768px) and (orientation: landscape) {
  .es-v-bar-graph .es-graph-row .es-graph-stat {
    font-size: 3vh;
  }
}

.es-downloads-and-links {
  grid-area: content;
}

#footer {
  display: none;
}

#content {
  display: none;
}

.main-header {
  display: none;
}

.es-loader {
  z-index: 100000;
}

/*# sourceMappingURL=/wp-content/plugins/everystat/build/App.css.map */