* {
	margin: 0;
	padding: 0;
}

#map {
	height: 100vh;
	z-index: 1;
	position: relative;
}
#dropdown {
	z-index: 1003;
	position: absolute;
	top: 1%;
	left: 50%;
	transform: translate(-50%);
	width: auto;
}

.map-loader {
	z-index: 1;
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	animation: spin 1s linear infinite;
	display: none;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.info-loader {
	z-index: 1;
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%);
	z-index: 3;
	animation: spin 1s linear infinite;
	display: none;
}

.weather-loader {
	z-index: 1;
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%);
	z-index: 3;
	animation: spin 1s linear infinite;
	display: none;
}

.modals-loader {
	z-index: 1;
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%);
	z-index: 3;
	animation: spin 1s linear infinite;
	display: none;
}

#holidays-modal .timeline {
	position: relative;
	padding-left: 30px;
	height: 50vh;
}

#holidays-modal .timeline-line {
	position: absolute;
	left: 12px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	z-index: 1;
}

#holidays-modal .timeline-icon {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	box-shadow: 0 0 0 3px #ffffff;
	margin-top: 4px;
	margin-right: 15px;
	position: relative;
	z-index: 2;
}

#holidays-modal .month-label {
	font-size: 1.4rem;
	font-weight: bold;
	margin: 30px 0 10px;
	color: #222;
	position: relative;
	z-index: 2;
}

.weather-icon{
	height: 30px;
	aspect-ratio: 1/1;
}
