

body {
	margin: 0;
	padding: 0;
}

html,
body,
#map {
	height: 100%;
	background-color: black;
	color: white;
}

h1 {
	text-align: center;
	font-family: monospace;
	margin: 1rem 0 1rem 0;
}

#map {
	width: 100%;
	height: 80vh;
	position: relative;
}

#map:before {
	content: "";
	background-color: transparent;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	z-index: 9999;
}


#locations {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin: 1rem;
}

.popup-class {
	max-width: 300px !important;
	height: 150px !important;
	top: 0;
	left: -200px;
	opacity: 1;
}

.popup-class .maplibregl-popup-content {
	background-color: #0c142a;
	color: white;
	padding: 0.75rem 1rem;
	border: 1px solid #ff4949;
}

.popup-class .maplibregl-popup-tip {
	border-top-color: #0c142a;
	border: none;
}

.popup-class .maplibregl-popup-tip:after {
	content: "";
	background-image: url('data:image/svg+xml,<svg width="51" height="80" viewBox="0 0 51 80" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="50.75" y1="79.998" x2="50.75" y2="-0.00195311" stroke="black" stroke-width="0.5" stroke-dasharray="2 2"/><line x1="51" y1="0.25" y2="0.25" stroke="black" stroke-width="0.5" stroke-dasharray="2 2"/></svg>');
	background-repeat: no-repeat;
	width: 100px;
	height: 80px;
	display: block;
	right: -100px;
	position: absolute;
	top: 50%;
}

.popup-class .sub-title {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
}

.popup-class .title {
	font-size: 12px;
	color: #ff4949;
	margin-top: 0.5rem;
}

.popup-class .title .number {
	font-size: 27.33px;
	line-height: 100%;
	letter-spacing: 0%;
}

.popup-class .text {
	font-size: 12px;
	margin-top: 0.5rem;
}

.marker {
	background-color: #ff4949;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	position: relative;
	z-index: 999;
}


button.location{
	background-color: #ff4949;
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 0.2rem;
	cursor: pointer;
	font-family: monospace;
}

.hidden{
	visibility: hidden;
}