/* map-voting.css */

#poe_maps_container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
	justify-content: center;
}
.active-filter {
    background-color: #007bff; /* Highlight color */
    color: white;
    border: 1px solid #0056b3; /* Optional: match highlight color */
    font-weight: bold;
}
.map-item {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px;
	position: relative;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	flex-wrap: wrap;
	transition: border-color 0.3s ease;
}
.wp-block-spacer { display: none; }
h1 { font-size: 1.4em; margin: 0 !important; }
.map-item h3 {
    font-size: 1.1em;
    margin: 0;
	text-shadow: 0px 0px 3px black;
}
header .wp-block-button { background-color: #797979; }
.timertext { text-align:center; font-size: 2em; }
.vote-buttons {
	display: flex;
    justify-content: space-around;
	flex-wrap: wrap;
    margin-top: 10px;
	text-align: center;
}
.hidden-vote-button {
    display: none !important;
}

/* Show hidden buttons when the map-item is hovered */
.map-item:hover .hidden-vote-button {
    display: flex !important;
}
.inhab-dropdown:has(option:checked[value=""]) {
    display: none;
}
.map-item:hover .inhab-dropdown{
	display: block !important;
}
.inhab-dropdown{
    appearance: none;
    width: 100%;
    font-size: 12px;
    padding: 6px;
    background-color: #ecd3ff;
    border: 1px solid #caced1;
    border-radius: 0.25rem;
    color: #000;
    cursor: pointer;
}
.inhab-dropdown::before,
.inhab-dropdown::after {
  --size: 0.3rem;
  position: absolute;
  content: "";
  right: 1rem;
  pointer-events: none;
}

.inhab-dropdown::before {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-bottom: var(--size) solid black;
  top: 40%;
}

.inhab-dropdown::after {
  border-left: var(--size) solid transparent;
  border-right: var(--size) solid transparent;
  border-top: var(--size) solid black;
  top: 55%;
}

.inhab-display { display: block; font-size: 12px; color: yellow; font-weight: bold; text-shadow: 2px 1px black; margin-bottom: 10px;
 }
.sort-buttons { text-align: center; }
.sort-buttons button:focus { background: #ff9ef3; outline: 0px;  }
#countdown-timer { font-size: 4em; text-align:center; margin: 0; }
.vote-button {
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 4px;
	font-size: 12px;
    padding: 3px;
	margin: 1px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
#vote-timer .close {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 3px 10px;
    background: black;
    cursor: pointer;
	border: 1px solid white;
}
.vote-button:hover {
    background-color: #e4e4e4;
}
#custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #f44336; /* Red background */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

#custom-alert p {
    margin: 0;
}

#custom-alert button {
    background-color: black;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    margin-top: 5px;
}
#confirm-yes {
	width: 40%;
    display: inline-block;
    padding: 10px;
    text-align: center;
    background: #2bb9ff;
    font-size: 22px;
    cursor: pointer;
}
#confirm-no {
	width: 40%;
    display: inline-block;
    padding: 10px;
    text-align: center;
    background: #ff0000;
    font-size: 22px;
    cursor: pointer;
}
#confirm-inhab {
	display: block;
	margin-bottom: 20px;
    font-weight: 500;
    color: yellow;
}
#confirm-notice {
	margin-top: 30px;
	font-size: 11px;
}
#confirm-notice strong {
	color: red;
}
#confirm-vote {
	position: fixed;
	max-width: 100vw !important;
    width: 100vw;
    height: 100%;
	margin: 0;
    background: black;
    top: 0;
    left: 0;
	align-content: center;
    z-index: 1000;
	text-align: center;
}
#confirm-vote h5 {
	font-size: 20px;
	margin: 10px;
}
#confirm-img {
	padding: 20px;
    max-width: 100px;
    max-height: 100px;
	border: 2px solid;
}
.vote-button img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
#confirm-tier {
	font-weight: bold;
    color: yellow;
    border: 2px solid #7f7f7f;
    width: 35px;
    height: 35px;
    display: inline-block;
    border-radius: 50%;
    line-height: 35px;
}
#confirm-map {
	font-size: 30px;
    color: #c1ffd4;
}
#vote-timer { 
	display: none;
	top: 13px;
	left: calc(50% - 300px);
	width: 600px;
	z-index: 10;
	height: 200px;
	position: fixed;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
	background: #ff000082;
	text-align: center;
	font-weight: bold;
	text-shadow: 2px 2px 3px black;
}
#voidstone {
	position: fixed;
    width: 150px;
    height: 505px;
	z-index: 100;
    color: #ff9d9d;
    background: black;
    border: 2px solid white;
    left: 0;
    padding: 5px;
    top: calc(50% - 390px);
    font-size: 12px;
    font-weight: bold;
}
#voidstone img { width: 100%; max-height: 144px; }
img.voidstone-led {
	width: 72px !important;
	float: right;
}
#vote-timer p {
	display: block;
	font-size: 1.6em;
}
#vote-timer-countdown {
	display:block;
	font-size: 3.4em;
}
#vote-timer.show {
	display: flex;
}
.vote-button span {
    font-weight: bold;
}
p.has-text-align-center { line-height: 1; }
p.has-text-align-center strong { color: #ff4747; }
header .wp-block-button a { background-color: #a5a5a5 !important; }
header .wp-block-button a:hover { background-color: white !important; }
header .has-base-background-color { background-color: #0a0a0a !important; }
footer > div { background-color: #0a0a0a; }


.map-item[data-map-id="37"],
.map-item[data-map-id="38"],
.map-item[data-map-id="39"],
.map-item[data-map-id="40"],
.map-item[data-map-id="41"],
.map-item[data-map-id="42"],
.map-item[data-map-id="43"],
.map-item[data-map-id="44"],
.map-item[data-map-id="45"],
.map-item[data-map-id="46"],
.map-item[data-map-id="47"],
.map-item[data-map-id="48"],
.map-item[data-map-id="49"],
.map-item[data-map-id="50"],
.map-item[data-map-id="51"],
.map-item[data-map-id="52"],
.map-item[data-map-id="53"],
.map-item[data-map-id="54"],
.map-item[data-map-id="55"],
.map-item[data-map-id="56"],
.map-item[data-map-id="57"],
.map-item[data-map-id="58"],
.map-item[data-map-id="59"],
.map-item[data-map-id="60"],
.map-item[data-map-id="61"],
.map-item[data-map-id="62"],
.map-item[data-map-id="63"],
.map-item[data-map-id="64"],
.map-item[data-map-id="65"],
.map-item[data-map-id="66"],
.map-item[data-map-id="67"],
.map-item[data-map-id="68"],
.map-item[data-map-id="69"] {
    border: 1px solid yellow;
}

.map-item[data-map-id="70"],
.map-item[data-map-id="71"],
.map-item[data-map-id="72"],
.map-item[data-map-id="73"],
.map-item[data-map-id="74"],
.map-item[data-map-id="75"],
.map-item[data-map-id="76"],
.map-item[data-map-id="77"],
.map-item[data-map-id="78"],
.map-item[data-map-id="79"],
.map-item[data-map-id="80"],
.map-item[data-map-id="81"],
.map-item[data-map-id="82"],
.map-item[data-map-id="83"],
.map-item[data-map-id="84"],
.map-item[data-map-id="85"],
.map-item[data-map-id="86"],
.map-item[data-map-id="87"],
.map-item[data-map-id="88"],
.map-item[data-map-id="89"],
.map-item[data-map-id="90"],
.map-item[data-map-id="91"],
.map-item[data-map-id="92"],
.map-item[data-map-id="93"],
.map-item[data-map-id="94"],
.map-item[data-map-id="95"],
.map-item[data-map-id="96"],
.map-item[data-map-id="97"],
.map-item[data-map-id="98"],
.map-item[data-map-id="99"],
.map-item[data-map-id="100"] {
    border: 1px solid red;
}

#poe_maps_container[data-void="1"] .map-item[data-map-id="51"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="52"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="53"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="54"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="55"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="56"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="57"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="58"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="59"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="60"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="61"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="62"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="63"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="64"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="65"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="66"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="67"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="68"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="69"] {
    border: 1px solid red;
}

#poe_maps_container[data-void="1"] .map-item[data-map-id="13"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="14"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="15"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="16"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="17"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="18"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="19"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="20"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="21"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="22"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="23"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="24"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="25"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="26"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="27"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="28"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="29"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="30"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="31"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="32"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="33"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="34"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="35"],
#poe_maps_container[data-void="1"] .map-item[data-map-id="36"] {
    border: 1px solid yellow;
}

#poe_maps_container[data-void="2"] .map-item[data-map-id="1"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="2"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="3"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="4"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="5"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="6"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="7"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="8"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="9"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="10"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="11"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="12"] {
    border: 1px solid yellow;
}
#poe_maps_container[data-void="2"] .map-item[data-map-id="13"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="14"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="15"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="16"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="17"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="18"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="19"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="20"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="21"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="22"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="23"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="24"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="25"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="26"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="27"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="28"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="29"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="30"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="31"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="32"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="33"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="34"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="35"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="36"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="37"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="38"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="39"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="40"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="41"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="42"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="43"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="44"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="45"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="46"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="47"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="48"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="49"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="50"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="51"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="52"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="53"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="54"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="55"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="56"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="57"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="58"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="59"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="60"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="61"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="62"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="63"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="64"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="65"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="66"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="67"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="68"],
#poe_maps_container[data-void="2"] .map-item[data-map-id="69"]   {
    border: 1px solid red;
}

#poe_maps_container[data-void="3"] .map-item, #poe_maps_container[data-void="4"] .map-item {
	border: 1px solid red !important;
}

.map-item[data-map-id="104"] , .map-item[data-map-id="103"] , .map-item[data-map-id="102"] , .map-item[data-map-id="105"] , .map-item[data-map-id="101"] {
	border: 1px solid #a424c0 !important;
}
#poe_maps_container[data-void="3"] .map-item[data-map-id="104"] , #poe_maps_container[data-void="3"] .map-item[data-map-id="103"] , #poe_maps_container[data-void="3"] .map-item[data-map-id="102"] , #poe_maps_container[data-void="3"] .map-item[data-map-id="105"] , #poe_maps_container[data-void="3"] .map-item[data-map-id="101"] {
	border: 1px solid #a424c0 !important;
}
#poe_maps_container[data-void="4"] .map-item[data-map-id="104"] , #poe_maps_container[data-void="4"] .map-item[data-map-id="103"] , #poe_maps_container[data-void="4"] .map-item[data-map-id="102"] , #poe_maps_container[data-void="4"] .map-item[data-map-id="105"] , #poe_maps_container[data-void="4"] .map-item[data-map-id="101"] {
	border: 1px solid #a424c0 !important;
}

img.voidstone-img {
    position: absolute;
    top: -8px;
    left: -1px;
    width: 70px;
}
#map-search {
	border: 2px solid white;
    padding: 2px 10px;
}
.voted-tier {
	position: absolute;
    top: -21px;
    left: -1px;
    width: 125px;
    background-color: #000000bf;
    color: #d191ff;
    font-weight: bold;
    font-size: 13px;
    z-index: 1;
}

.map-item:before {
    display: block;
    position: absolute;
    right: -5px;
    top: 0;
    background: white;
    color: black;
    width: 20px;
    height: 20px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50%;
}


.map-item[data-map-id="1"]:before,
.map-item[data-map-id="2"]:before,
.map-item[data-map-id="3"]:before,
.map-item[data-map-id="4"]:before
{
	content: "1";
}

.map-item[data-map-id="5"]:before,
.map-item[data-map-id="6"]:before,
.map-item[data-map-id="7"]:before,
.map-item[data-map-id="8"]:before,
.map-item[data-map-id="9"]:before,
.map-item[data-map-id="10"]:before,
.map-item[data-map-id="11"]:before,
.map-item[data-map-id="12"]:before {
    content: "2";
}

.map-item[data-map-id="13"]:before,
.map-item[data-map-id="14"]:before,
.map-item[data-map-id="15"]:before,
.map-item[data-map-id="16"]:before,
.map-item[data-map-id="17"]:before,
.map-item[data-map-id="18"]:before,
.map-item[data-map-id="19"]:before,
.map-item[data-map-id="20"]:before {
    content: "3";
}

.map-item[data-map-id="21"]:before,
.map-item[data-map-id="22"]:before,
.map-item[data-map-id="23"]:before,
.map-item[data-map-id="24"]:before,
.map-item[data-map-id="25"]:before,
.map-item[data-map-id="26"]:before,
.map-item[data-map-id="27"]:before,
.map-item[data-map-id="28"]:before {
    content: "4";
}

.map-item[data-map-id="29"]:before,
.map-item[data-map-id="30"]:before,
.map-item[data-map-id="31"]:before,
.map-item[data-map-id="32"]:before,
.map-item[data-map-id="33"]:before,
.map-item[data-map-id="34"]:before,
.map-item[data-map-id="35"]:before,
.map-item[data-map-id="36"]:before {
    content: "5";
}

.map-item[data-map-id="37"]:before,
.map-item[data-map-id="38"]:before,
.map-item[data-map-id="39"]:before,
.map-item[data-map-id="40"]:before,
.map-item[data-map-id="41"]:before,
.map-item[data-map-id="42"]:before,
.map-item[data-map-id="43"]:before {
    content: "6";
}

.map-item[data-map-id="44"]:before,
.map-item[data-map-id="45"]:before,
.map-item[data-map-id="46"]:before,
.map-item[data-map-id="47"]:before,
.map-item[data-map-id="48"]:before,
.map-item[data-map-id="49"]:before,
.map-item[data-map-id="50"]:before {
    content: "7";
}

.map-item[data-map-id="51"]:before,
.map-item[data-map-id="52"]:before,
.map-item[data-map-id="53"]:before,
.map-item[data-map-id="54"]:before,
.map-item[data-map-id="55"]:before,
.map-item[data-map-id="56"]:before,
.map-item[data-map-id="57"]:before {
    content: "8";
}

.map-item[data-map-id="58"]:before,
.map-item[data-map-id="59"]:before,
.map-item[data-map-id="60"]:before,
.map-item[data-map-id="61"]:before,
.map-item[data-map-id="62"]:before,
.map-item[data-map-id="63"]:before {
    content: "9";
}

.map-item[data-map-id="64"]:before,
.map-item[data-map-id="65"]:before,
.map-item[data-map-id="66"]:before,
.map-item[data-map-id="67"]:before,
.map-item[data-map-id="68"]:before,
.map-item[data-map-id="69"]:before {
    content: "10";
}

.map-item[data-map-id="70"]:before,
.map-item[data-map-id="71"]:before,
.map-item[data-map-id="72"]:before,
.map-item[data-map-id="73"]:before,
.map-item[data-map-id="74"]:before,
.map-item[data-map-id="75"]:before {
    content: "11";
}

.map-item[data-map-id="76"]:before,
.map-item[data-map-id="77"]:before,
.map-item[data-map-id="78"]:before,
.map-item[data-map-id="79"]:before,
.map-item[data-map-id="80"]:before,
.map-item[data-map-id="81"]:before {
    content: "12";
}

.map-item[data-map-id="82"]:before,
.map-item[data-map-id="83"]:before,
.map-item[data-map-id="84"]:before,
.map-item[data-map-id="85"]:before,
.map-item[data-map-id="86"]:before {
    content: "13";
}

.map-item[data-map-id="87"]:before,
.map-item[data-map-id="88"]:before,
.map-item[data-map-id="89"]:before,
.map-item[data-map-id="90"]:before,
.map-item[data-map-id="91"]:before {
    content: "14";
}

.map-item[data-map-id="92"]:before,
.map-item[data-map-id="93"]:before,
.map-item[data-map-id="94"]:before,
.map-item[data-map-id="95"]:before,
.map-item[data-map-id="96"]:before {
    content: "15";
}

.map-item[data-map-id="97"]:before,
.map-item[data-map-id="98"]:before,
.map-item[data-map-id="99"]:before,
.map-item[data-map-id="100"]:before {
    content: "16";
}

.map-item[data-map-id="101"]:before,
.map-item[data-map-id="102"]:before,
.map-item[data-map-id="103"]:before,
.map-item[data-map-id="104"]:before,
.map-item[data-map-id="105"]:before {
    content: "17" !important;
}

.map-item[data-map-id="101"] img.voidstone-img, .map-item[data-map-id="102"] img.voidstone-img, .map-item[data-map-id="103"] img.voidstone-img,
.map-item[data-map-id="104"] img.voidstone-img, .map-item[data-map-id="105"] img.voidstone-img {
	display: none !important;
}



#poe_maps_container[data-void="1"] .map-item[data-map-id="1"]::before { content: "4"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="2"]::before { content: "4"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="3"]::before { content: "4"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="4"]::before { content: "4"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="5"]::before { content: "5"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="6"]::before { content: "5"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="7"]::before { content: "5"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="8"]::before { content: "5"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="9"]::before { content: "5"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="10"]::before { content: "5"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="11"]::before { content: "5"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="12"]::before { content: "5"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="13"]::before { content: "6"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="14"]::before { content: "6"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="15"]::before { content: "6"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="16"]::before { content: "6"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="17"]::before { content: "6"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="18"]::before { content: "6"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="19"]::before { content: "6"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="20"]::before { content: "6"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="21"]::before { content: "7"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="22"]::before { content: "7"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="23"]::before { content: "7"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="24"]::before { content: "7"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="25"]::before { content: "7"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="26"]::before { content: "7"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="27"]::before { content: "7"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="28"]::before { content: "7"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="29"]::before { content: "8"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="30"]::before { content: "8"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="31"]::before { content: "8"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="32"]::before { content: "8"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="33"]::before { content: "8"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="34"]::before { content: "8"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="35"]::before { content: "8"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="36"]::before { content: "8"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="37"]::before { content: "9"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="38"]::before { content: "9"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="39"]::before { content: "9"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="40"]::before { content: "9"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="41"]::before { content: "9"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="42"]::before { content: "9"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="43"]::before { content: "9"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="44"]::before { content: "10"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="45"]::before { content: "10"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="46"]::before { content: "10"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="47"]::before { content: "10"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="48"]::before { content: "10"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="49"]::before { content: "10"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="50"]::before { content: "10"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="51"]::before { content: "11"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="52"]::before { content: "11"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="53"]::before { content: "11"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="54"]::before { content: "11"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="55"]::before { content: "11"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="56"]::before { content: "11"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="57"]::before { content: "11"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="58"]::before { content: "12"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="59"]::before { content: "12"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="60"]::before { content: "12"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="61"]::before { content: "12"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="62"]::before { content: "12"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="63"]::before { content: "12"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="64"]::before { content: "13"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="65"]::before { content: "13"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="66"]::before { content: "13"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="67"]::before { content: "13"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="68"]::before { content: "13"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="69"]::before { content: "13"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="70"]::before { content: "14"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="71"]::before { content: "14"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="72"]::before { content: "14"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="73"]::before { content: "14"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="74"]::before { content: "14"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="75"]::before { content: "14"; }

#poe_maps_container[data-void="1"] .map-item[data-map-id="76"]::before { content: "15"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="77"]::before { content: "15"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="78"]::before { content: "15"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="79"]::before { content: "15"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="80"]::before { content: "15"; }
#poe_maps_container[data-void="1"] .map-item[data-map-id="81"]::before { content: "15"; }

#poe_maps_container[data-void="1"] .map-item:before { content: "16"; }


#poe_maps_container[data-void="2"] .map-item[data-map-id="1"]::before { content: "8"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="2"]::before { content: "8"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="3"]::before { content: "8"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="4"]::before { content: "8"; }

#poe_maps_container[data-void="2"] .map-item[data-map-id="5"]::before { content: "9"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="6"]::before { content: "9"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="7"]::before { content: "9"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="8"]::before { content: "9"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="9"]::before { content: "9"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="10"]::before { content: "9"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="11"]::before { content: "9"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="12"]::before { content: "9"; }

#poe_maps_container[data-void="2"] .map-item[data-map-id="13"]::before { content: "10"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="14"]::before { content: "10"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="15"]::before { content: "10"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="16"]::before { content: "10"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="17"]::before { content: "10"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="18"]::before { content: "10"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="19"]::before { content: "10"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="20"]::before { content: "10"; }

#poe_maps_container[data-void="2"] .map-item[data-map-id="21"]::before { content: "11"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="22"]::before { content: "11"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="23"]::before { content: "11"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="24"]::before { content: "11"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="25"]::before { content: "11"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="26"]::before { content: "11"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="27"]::before { content: "11"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="28"]::before { content: "11"; }

#poe_maps_container[data-void="2"] .map-item[data-map-id="29"]::before { content: "12"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="30"]::before { content: "12"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="31"]::before { content: "12"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="32"]::before { content: "12"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="33"]::before { content: "12"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="34"]::before { content: "12"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="35"]::before { content: "12"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="36"]::before { content: "12"; }

#poe_maps_container[data-void="2"] .map-item[data-map-id="37"]::before { content: "13"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="38"]::before { content: "13"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="39"]::before { content: "13"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="40"]::before { content: "13"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="41"]::before { content: "13"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="42"]::before { content: "13"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="43"]::before { content: "13"; }

#poe_maps_container[data-void="2"] .map-item[data-map-id="44"]::before { content: "14"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="45"]::before { content: "14"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="46"]::before { content: "14"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="47"]::before { content: "14"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="48"]::before { content: "14"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="49"]::before { content: "14"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="50"]::before { content: "14"; }

#poe_maps_container[data-void="2"] .map-item[data-map-id="51"]::before { content: "15"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="52"]::before { content: "15"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="53"]::before { content: "15"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="54"]::before { content: "15"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="55"]::before { content: "15"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="56"]::before { content: "15"; }
#poe_maps_container[data-void="2"] .map-item[data-map-id="57"]::before { content: "15"; }

#poe_maps_container[data-void="2"] .map-item:before { content: "16"; }

#poe_maps_container[data-void="3"] .map-item[data-map-id="1"]::before { content: "12"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="2"]::before { content: "12"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="3"]::before { content: "12"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="4"]::before { content: "12"; }

#poe_maps_container[data-void="3"] .map-item[data-map-id="5"]::before { content: "13"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="6"]::before { content: "13"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="7"]::before { content: "13"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="8"]::before { content: "13"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="9"]::before { content: "13"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="10"]::before { content: "13"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="11"]::before { content: "13"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="12"]::before { content: "13"; }

#poe_maps_container[data-void="3"] .map-item[data-map-id="13"]::before { content: "14"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="14"]::before { content: "14"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="15"]::before { content: "14"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="16"]::before { content: "14"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="17"]::before { content: "14"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="18"]::before { content: "14"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="19"]::before { content: "14"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="20"]::before { content: "14"; }

#poe_maps_container[data-void="3"] .map-item[data-map-id="21"]::before { content: "15"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="22"]::before { content: "15"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="23"]::before { content: "15"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="24"]::before { content: "15"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="25"]::before { content: "15"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="26"]::before { content: "15"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="27"]::before { content: "15"; }
#poe_maps_container[data-void="3"] .map-item[data-map-id="28"]::before { content: "15"; }

#poe_maps_container[data-void="3"] .map-item:before { content: "16"; }

#poe_maps_container[data-void="4"] .map-item:before { content: "16"; }

.map-item[data-map-admin="true"]:after {
	content: "Admin Vote";
    background: black;
    padding: 2px 4px;
    outline: 1px solid white;
    font-size: 10px;
    font-weight: bold;
    color: #a6ff00;
    position: absolute;
    right: 0;
    bottom: -4px;
}
/*
     FILE ARCHIVED ON 02:08:59 Mar 10, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 08:51:28 May 11, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.544
  exclusion.robots: 0.066
  exclusion.robots.policy: 0.056
  esindex: 0.007
  cdx.remote: 6.651
  LoadShardBlock: 95.785 (3)
  PetaboxLoader3.datanode: 98.722 (4)
  PetaboxLoader3.resolve: 1544.595 (2)
  load_resource: 1619.135
*/