#locations-map-wrapper * {
	font-family: "Noto Sans", Sans-serif;
}
.trax-map-overlay {
	width: 10px;
	height: 10px;
	border-radius: 20px;
	opacity: 0;
}

.earth-overlay {
	border-radius: 30px;
	padding: 0;
	position: relative;
	background: transparent;
	backdrop-filter: blur(10px);
	box-shadow: none;
	opacity: 0;
}

#earth-col {
	position: relative;
	overflow: hidden;
	background: radial-gradient(circle, rgba(83, 134, 151, 0.9) 10%, rgba(83, 134, 151, 0) 20%);
}

#earth-col::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70%;
	height: 90%;
	background: radial-gradient(circle, rgba(83, 134, 151, 1) 0%, rgba(83, 134, 151, 0) 80%);
	transform: translate(-50%, -50%);
	z-index: 0;
	border-radius: 50%;
	filter: blur(15px);
	/* Adjust the blur intensity as needed */
}

#earth-col::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70%;
	height: 90%;
	background: radial-gradient(circle, rgba(83, 134, 151, 1) 10%, rgba(83, 134, 151, 0) 50%);
	transform: translate(-50%, -50%);
	z-index: 0;
	border-radius: 50%;
	filter: blur(10px);
	/* Adjust the blur intensity as needed */
}

#locations-map-wrapper {
	text-align: center;
	color: #ffffff;
	background-color: #1a1b4a;
	padding: 0 0 50px;
}

#locations-map-wrapper .locations-world-zones {
	display: inline-flex;
	gap: 60px;
	margin: 50px auto;
	padding: 10px 20px;
	border: 1px solid;
	border-radius: 10px;
	align-items: baseline;
}

#locations-map-wrapper .locations-world-zones .location-item {
	font-weight: 700;
	font-size: 18px;
	line-height: 24.5px;
	transition: ease-in all 0.3s;
	cursor: pointer;
	padding: 10px 24px;
	border-radius: 15px;
}

#locations-map-wrapper .locations-world-zones .location-item.active {
	background: #fff;
	color: #181c44;
}

#locations-map-wrapper .locations-world-zones .location-item:hover {
	background: rgba(255, 255, 255, 0.15);
}

#locations-map-wrapper .locations-map-wrapper {
	display: flex;
	align-items: flex-start;
}

#locations-map-wrapper #earth-col {
	width: 70%;
}

#locations-map-wrapper #locations .location-item {
	text-align: left;
	margin-bottom: 30px;
	cursor: pointer;
	transition: ease-in all 0.3s;
	opacity: 1;
}

#locations-map-wrapper #locations .location-item:hover {
	opacity: 0.5;
}

#locations-map-wrapper #locations .location-item h4 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 5px;
}

#locations-map-wrapper #locations .location-item .location-info {
	font-size: 16px;
	line-height: 24px;
	padding-left: 15px;
	display: none;
	margin-top: 20px;
}

#locations-map-wrapper #locations .location-item.active .location-info {
	display: block;
}

.world-zone h3 {
	display: none;
}

@media screen and (max-width: 900px) {
	#locations-map-wrapper #earth-col {
		width: 60%;
	}
}

@media screen and (max-width: 900px) {
	#locations-map-wrapper #earth-col {
		width: 60%;
	}
}

@media screen and (max-width: 700px) {
	#locations-map-wrapper .locations-map-wrapper {
		display: block;
	}

	#locations-map-wrapper .locations-world-zones {
		gap: 0;
		align-items: center;
		display: flex;
		flex-direction: column;
	}

	#locations-map-wrapper #earth-col {
		width: auto;
		display: none;
	}

	#map-wrapper {
		padding-bottom: 0px;
	}

	.world-zone h3 {
		display: block;
		margin-bottom: 10px;
		position: relative;
		cursor: pointer;
	}

	.wrapper.locations-world-zones-wrapper {
		display: none;
	}

	#locations-map-wrapper #locations {
		margin-top: 40px;
		border-top: 2px solid;
		padding-top: 30px;
		text-align: left;
	}

	#locations-map-wrapper #locations .location-item {
		padding: 0 20px;
		margin-bottom: 20px;
	}

	#locations-map-wrapper #locations .location-item h4 {
		padding-top: 30px;
	}

	#locations-map-wrapper #locations .location-item .location-info {
		display: block;
		line-height: 19.5px;
	}

	#locations-map-wrapper #locations .location-item .location-info {
		padding-left: 0px;
	}

	.world-zone h3:after {
		border: solid #ffffff;
		border-width: 0 3px 3px 0;
		display: inline-block;
		padding: 3px;
		transform: rotate(45deg);
		content: "";
		right: 0;
		position: absolute;
		top: 35%;
	}

	.world-zone.active h3:after {
		transform: rotate(-135deg);
		top: 50%;
	}

	.world-zone:not(.active) .location-item {
		display: none;
	}

	.world-zone+.world-zone {
		margin-top: 20px;
		border-top: 2px solid white;
		padding-top: 15px;
	}
}