<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.r34charts--wrapper {
	/* Scoped variables */
	--r34charts--color--active: var(--wp--preset--color--primary);
	--r34charts--color--active-hover: var(--wp--preset--color--secondary);
	--r34charts--color--inactive: var(--wp--preset--color--neutral-light);
	--r34charts--color--inactive-hover: var(--wp--preset--color--neutral-x-light);

	color: #666666;
	height: 640px;
	max-height: 75vh;
}

.r34charts-chart {
	max-height: 100% !important;
	max-width: 100% !important;
	position: relative;
}

h3.r34charts-label {
	color: inherit !important;
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	text-align: center;
}

#r34charts-lightbox {
	background: rgba(153,153,153,0.5);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	cursor: pointer;
	position: fixed; top: 0; right: 0; bottom: 0; left: 0;
	z-index: 999;
}

#r34charts-lightbox--close {
	background: #424242;
	border: 2px solid #ffffff;
	border-radius: 100%;
	cursor: pointer;
	display: block;
	height: 44px;
	overflow: hidden;
	position: absolute; top: calc(15% - 22px); right: calc(5% - 22px);
	width: 44px;
	z-index: 2;
}

#r34charts-lightbox--close .r34charts-icon {
	position: absolute; top: calc(50% - 12px); left: 0;
}

#r34charts-lightbox--content {
	align-items: center;
	background: #233252;
	border: 5px solid #f06f1e;
	border-radius: 1rem;
	color: #ffffff;
	cursor: default;
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
	position: absolute; top: 15%; right: 5%; bottom: 15%; left: 5%;
	z-index: 1;
}

#r34charts-lightbox--content canvas {
	flex-grow: 1;
	height: auto !important;
	width: auto !important;
}

.r34charts-lightbox--trigger {
	cursor: pointer;
}

.r34charts-map {
	position: relative !important;
}

.r34charts-map svg {
	z-index: 1;
}

.r34charts-map svg.usmap g path {
	transition: fill 0.25s ease;
}

.r34charts-map svg.usmap g:not(.active) path {
	fill: var(--r34charts--color--inactive) !important;
}

.r34charts-map svg.usmap g:not(.active):hover path {
	fill: var(--r34charts--color--inactive-hover) !important;
}

.r34charts-map svg.usmap g.active path {
	fill: var(--r34charts--color--active) !important;
}
.r34charts-map svg.usmap g.active:hover path, .r34charts-map svg.usmap g.active.highlight path {
	fill: var(--r34charts--color--active-hover) !important;
}

table.r34charts-table {
	margin: 1.5rem 0;
}

table.r34charts-table * {
	font-family: Montserrat, sans-serif;
	font-size: 13px;
}

table.r34charts-table tbody {
	display: flex;
	flex-wrap: wrap;
	gap: 0 1rem;
}

table.r34charts-table tbody tr {
	display: inline-block;
}

table.r34charts-table tbody th, table.r34charts-table tbody td {
	font-weight: 600;
	white-space: nowrap;
}

#r34charts-tooltip {
	background: rgba(0,0,0,0.7);
	border: 1px solid black;
	border-radius: 5px;
	color: #ffffff;
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	font-weight: normal;
	padding: 5px;
	position: absolute;
	display: none;
	z-index: 2;
}


@media screen and (max-width: 640px) {

}</pre></body></html>