<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane &gt; svg,
.leaflet-pane &gt; 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,
.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;
}

.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-tile {
  will-change: opacity;
}

.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;
}

.leaflet-zoom-anim .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 &amp; overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane &gt; svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane &gt; 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: 0;
}

.leaflet-container a {
  color: #0078A8;
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a,
.leaflet-bar a:hover {
  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 {
  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("/static/img/statistics/leaflet/layers.a6137456ed16.png");
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url("/static/img/statistics/leaflet/layers-2x.4f0283c6ce28.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;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url("/static/img/statistics/leaflet/marker-icon.2273e3d8ad92.png");
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover {
  text-decoration: underline;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}

.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;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.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 19px;
  line-height: 1.4;
}

.leaflet-popup-content p {
  margin: 18px 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -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;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.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-popup-tip-container {
  margin-top: -1px;
}

.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-clickable {
  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;
}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
  -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
  -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
  background-color: rgba(181, 226, 140, 0.6);
}

.marker-cluster-small div {
  background-color: rgba(110, 204, 57, 0.6);
}

.marker-cluster-medium {
  background-color: rgba(241, 211, 87, 0.6);
}

.marker-cluster-medium div {
  background-color: rgba(240, 194, 12, 0.6);
}

.marker-cluster-large {
  background-color: rgba(253, 156, 115, 0.6);
}

.marker-cluster-large div {
  background-color: rgba(241, 128, 23, 0.6);
}

/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
  background-color: rgb(181, 226, 140);
}

.leaflet-oldie .marker-cluster-small div {
  background-color: rgb(110, 204, 57);
}

.leaflet-oldie .marker-cluster-medium {
  background-color: rgb(241, 211, 87);
}

.leaflet-oldie .marker-cluster-medium div {
  background-color: rgb(240, 194, 12);
}

.leaflet-oldie .marker-cluster-large {
  background-color: rgb(253, 156, 115);
}

.leaflet-oldie .marker-cluster-large div {
  background-color: rgb(241, 128, 23);
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
}

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
  line-height: 30px;
}

:root {
  --brand-font-family: Fira Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
  --brand-yellow: #ffc41e;
  --brand-orange: #e07e26;
  --brand-black: #222223;
  --color-red: #ff4136;
  --color-orange: #ff851b;
  --color-yellow: #ffc41e;
  --color-green: #2ecc40;
  --color-blue: #0074d9;
  --color-magenta: #e9198e;
  --color-purple: #af5fd3;
  --color-yellow-fade: #fffbcc;
  --color-range-start: #0074d9;
  --color-range-end: #ff4136;
  --color-triple-red: 255, 65, 54;
  --color-triple-orange: 255, 133, 27;
  --color-triple-yellow: 255, 196, 30;
  --color-triple-green: 46, 204, 64;
  --color-triple-blue: 0, 116, 217;
  --color-triple-magenta: 233, 25, 142;
  --color-triple-purple: 175, 95, 211;
  --shade-black: #000000;
  --shade-off-black: #222223;
  --shade-dark: #494949;
  --shade-mid: #949497;
  --shade-off-mid: #abacac;
  --shade-light: #d4d4d6;
  --shade-pale: #efeded;
  --shade-off-white: #fafafa;
  --shade-white: #ffffff;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes yellow-fade {
  0% {
    background-color: #fffbcc;
  }
  100% {
    background-color: transparent;
  }
}
.stats-content {
  padding: 0;
  /* Avoid mystery margin at the bottom of .map due
     to flex gap between .map and .map-png-render. */
  gap: 0;
}

.png-render {
  height: 0;
  overflow-y: hidden;
}

/* Legend */
.map-legend-inner .legend {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
}

.map-legend-inner .swatch {
  position: relative;
  display: inline-block;
  height: 1.2em;
  width: 1.5em;
  border: 1px solid #efeded;
  vertical-align: middle;
  margin-right: 0.3em;
}

.map-legend-inner .swatch:before {
  position: absolute;
  display: block;
  content: " ";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #fff;
}

/* Legend (statistics map) */
.legend-bar-outer {
  border: 1px solid #efeded;
  padding: 2px;
  margin: 2px 0;
}

.legend-bar {
  height: 1.2em;
}

/* Popups */
.map-detail {
  font-size: 12px;
  line-height: 1.5;
  max-width: 450px;
}

.map-detail-head {
  display: flex;
  align-items: center;
}

.map-detail-head .map-detail-head-flag img {
  display: block;
  filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.6)) drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.1));
}

.map-detail-head .map-detail-head-text {
  flex: 1;
  padding-left: 15px;
  overflow: hidden;
}

.map-detail-head + .map-detail-body {
  margin-top: 20px;
}

.map-detail h3 {
  padding-right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-detail-tabs {
  margin: 15px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-content: flex-start;
  flex-flow: row nowrap;
}

.map-detail-tabs &gt; li {
  margin: 0 -1px 0 0;
  padding: 0;
  border: 1px solid #efeded;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #fafafa;
  color: #949497;
}

.map-detail-tabs &gt; li.active {
  background: #fff;
  color: #222223;
  border-bottom-color: transparent;
}

.map-detail-tabs &gt; li &gt; a {
  position: relative;
  display: inline-block;
  padding: 5px 12px;
  color: inherit;
  text-decoration: none;
}

.map-detail-tab-content {
  padding-right: 20px;
  overflow-y: auto;
  max-height: 250px;
  min-width: min(100vw - 200px, 400px);
}

.map-detail .map-detail-table-ready tbody {
  max-height: 145px;
  overflow-y: auto;
  overflow-x: hidden;
  border-bottom: 1px solid #efeded;
}

.map-detail dl {
  margin: 0;
}

.map-detail dt {
  font-weight: bold;
  margin-top: 2px;
}

.map-detail dt:first-child {
  margin-top: 0;
}

.map-detail dd {
  margin-left: 0;
}

.map-detail abbr {
  cursor: help;
}

/* Comparison map */
body.statistics-combined-map-comparison .stats-content,
body.statistics-iot-devices-map-comparison .stats-content,
body.statistics-honeypot-map-comparison .stats-content {
  display: flex;
  flex-flow: row;
}

.map-comparison {
  flex: 1;
  position: relative;
}

.map-comparison:first-child {
  border-right: 1px solid #eae5e5;
}

.map-comparison-country {
  position: absolute;
  z-index: 1001;
  top: 15px;
  left: 86px;
  right: 30px;
  padding: 5px;
  font-size: 0.9rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
}

.map-comparison-country select {
  width: 100%;
}

/* Tree map */
body.statistics-combined-tree .stats-content,
body.statistics-iot-devices-tree .stats-content,
body.statistics-honeypot-tree .stats-content,
body.statistics-general-tree .stats-content {
  padding: 30px;
  background: #f3f3f3;
}

body.statistics-combined-tree .stats-content &gt; .tree,
body.statistics-iot-devices-tree .stats-content &gt; .tree,
body.statistics-honeypot-tree .stats-content &gt; .tree,
body.statistics-general-tree .stats-content &gt; .tree {
  overflow: hidden;
}

/* Markers and clusters */
.icon-marker {
  background: #0074d9;
  border-radius: 50%;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
.icon-marker.non-management {
  background: #d00000;
}
.icon-marker.node {
  background: #060;
}
.icon-marker.legend {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
}

.icon-cluster {
  display: table;
  font-size: 10px;
  text-align: center;
  color: #fff;
  background: #0074d9;
  border-radius: 50%;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}
.icon-cluster.node {
  background: #080;
}
.icon-cluster.non-mgmt {
  background: #d00000;
}

.icon-cluster span {
  display: table-cell;
  vertical-align: middle;
}

.icon-marker-with-label {
  display: inline-block;
}

.icon-marker-with-label .marker-label {
  width: fit-content;
  min-width: 24px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  padding: 0 5px;
  border: 2px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  background: currentColor;
  white-space: nowrap;
  margin-top: -25px;
  transform: translateX(-50%);
}

.icon-marker-with-label .marker-arrow {
  position: relative;
  transform: translateX(-50%);
}

.icon-marker-with-label .marker-arrow-a {
  /* Arrow: Clipping rectangle for border and shadow */
  position: relative;
  top: 0px;
  left: 50%;
  margin-left: -8px;
  margin-bottom: -3px;
  width: 16px;
  height: 8px;
  overflow: hidden;
}

.icon-marker-with-label .marker-arrow-a:before {
  /* Arrow: Border and shadow */
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -3px;
  width: 6px;
  height: 6px;
  background: currentColor;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) rotate(45deg);
}

.icon-marker-with-label .marker-arrow-b {
  /* Arrow: Colored fill to cover label border */
  position: absolute;
  top: -2px;
  left: 50%;
  margin-left: -3px;
  border: 3px solid transparent;
  border-top-color: currentColor;
  border-bottom-width: 0;
}

/* Safari renders marker shadows incorrectly at some zoom levels when generating
 * PNGs at higher device pixel ratios. We can disable them as a workaround. */
.no-marker-shadows .icon-marker-with-label .marker-label,
.no-marker-shadows .icon-marker-with-label .marker-arrow-a:before {
  box-shadow: none;
}

/* Controls: Zoom */
.icon-reset {
  display: inline-block;
  position: relative;
  top: 1px;
  width: 12px;
  height: 12px;
  border: 1px solid #494949;
  border-radius: 50%;
  border-bottom-color: #6f6f6f;
  border-right-color: #969696;
  border-top-color: #bcbcbc;
}

.icon-reset:before,
.icon-reset:after {
  display: block;
  content: " ";
  position: absolute;
}

.icon-reset:before {
  top: -1px;
  left: -3px;
  height: 6px;
  width: 7px;
  background: #fff;
}

.icon-reset:after {
  top: 1px;
  left: -3px;
  border: 3px solid #494949;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-width: 4px;
  border-top-width: 0;
}

/* Controls: Zoom */
.leaflet-control-zoom-reset:hover .icon-reset:before {
  background: #f4f4f4;
}

/* Controls: Layers */
/* Styled to match zoom control. */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-control-layers-toggle,
.leaflet-retina .leaflet-control-layers-toggle {
  width: 26px;
  height: 26px;
  background-size: 18px 18px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 30px;
  height: 30px;
}

/* Leaflet container (overrides) */
.leaflet-container {
  background: #efeded;
  background: #cfd3d6;
  font-family: inherit;
}

.leaflet-container.with-tileset {
  /* This class is only active when the tileset layer is toggled
   * on in the layers control. Colours should match the shades
   * used for bodies of water and landmasses respectively from
   * the mapbox tileset's styles. Not that the colour values you
   * enter in mapbox may not be what you get in the final tiles
   * so check with a color picker to be sure. */
  background: linear-gradient(#cfd3d6 40%, #f0f3f3 60%);
}

/* Leaflet controls (overrides) */
.leaflet-top .leaflet-control {
  margin-top: 15px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 15px;
}

.leaflet-left .leaflet-control {
  margin-left: 30px;
}

.leaflet-right .leaflet-control {
  margin-right: 30px;
}

/* Leaflet tooltips (overrides) */
.leaflet-tooltip {
  color: #ffffff;
  background: #222223;
  padding: 7px 12px;
  border: none;
  border-radius: 4px;
  box-shadow: none;
}

.leaflet-tooltip-top:before {
  border-top-color: #222223;
}

.leaflet-tooltip-bottom:before {
  border-bottom-color: #222223;
}

.leaflet-tooltip-left:before {
  border-left-color: #222223;
}

.leaflet-tooltip-right:before {
  border-right-color: #222223;
}

/* Leaflet popups (overrides) */
.leaflet-popup-content {
  margin: 19px;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
}

.leaflet-popup-flipped .leaflet-popup-tip-container {
  position: relative;
}

.leaflet-popup-flipped .leaflet-popup-tip {
  position: relative;
  margin-top: 0;
  bottom: -12px;
}

.leaflet-popup-flipped a.leaflet-popup-close-button {
  margin-top: 20px;
}

.leaflet-popup-loading a.leaflet-popup-close-button {
  display: none;
}

.leaflet-popup a {
  color: #0074d9;
}

.leaflet-popup a.leaflet-popup-close-button {
  padding: 12px 19px;
  width: auto;
  height: auto;
  font: inherit;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: #949497;
}

.leaflet-popup a.leaflet-popup-close-button:hover {
  color: inherit;
}

.leaflet-popup-scrolled {
  border-top: 0;
  border-bottom: 0;
}

.map-comparison-country &gt; .chosen-container {
  max-width: 100%;
}

@media (max-width: 1200px) {
  body.statistics-combined-map-comparison .stats-content,
body.statistics-iot-devices-map-comparison .stats-content,
body.statistics-honeypot-map-comparison .stats-content {
    display: block;
  }

  .map-comparison {
    flex: 1;
    position: relative;
  }

  .map-comparison {
    height: max(500px, 50%);
  }

  .map-comparison:first-child {
    border-right: none;
    border-bottom: 1px solid #eae5e5;
  }

  .map-detail-body .map-detail-tab-content {
    max-height: 200px;
  }

  .leaflet-popup-content {
    max-width: calc(100vw - 100px);
    min-height: min-content;
    overflow-x: hidden;
  }
}

/*# sourceMappingURL=map.css.map */</pre></body></html>