html,
body {
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
}

#map {
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out,
.leaflet-control-layers {
	background-color: #D2DE32 !important;
}

#selectContainer {
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;
	padding: 11px 0;
}

#countrySelect {
	width: 200px;
	margin: 0 auto;
	background-color: #D2DE32;
}

.bg-color {
	background-color: #D2DE32;
}

.text-justify {
	text-align: justify;
}

#newsModal .modal-dialog {
    min-height: 200px;
}

#newsModal .modal-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

#newsModal .modal-body {
    flex: 1;
    overflow-y: auto;
}


#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #D2DE32;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 1s ease, background-color 1s ease;
}

#preloader.hidden {
    opacity: 0;
  	visibility: hidden;
    background-color: transparent;
}

#preloader img {
    width: 50px;
    height: 50px;
}


.pre-load {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.8);
}

.pre-load:before {
	content: "";
	border: 6px solid #f2f2f2;
	border-top: 6px solid #56829e;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

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

.fadeOut {
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s ease-out;
}
