/* Preloader */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
    background: #fff;
}
#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #f2f2f2;
    border-top: 6px solid #2A81CB;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
			animation: animate-preloader 1s linear infinite;
} 

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

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

/* Map */
#map {
	z-index: 0;
	width: 100%;
	height: 100vh;
	}

/* Country Selector/ Dropdown */
#country-dropdown {
    position: absolute;
    top: 12px;
    left: 22%;
    z-index: 500;
    width: 59%;
}

#modal1, #modal2, #modal3, #modal4, #modal5 .modal-title {
    color: black; 
}

/* Title Flags */
#titleFlag {
	width: auto;
	height: 40px;
	border: 1px solid #dee2e6;
	cursor: pointer;
	display: block;
  	margin: 0 auto;
	margin-left: 27%;
	position: relative;
	top: 3px;
	align: right;
}
#titleFlag3 {
	width: auto;
	height: 40px;
	border: 1px solid #dee2e6;
	cursor: pointer;
	display: block;
  	margin: 0 auto;
	margin-left: 43%;
	position: relative;
	top: 3px;
	align: right;
}
#titleFlag4 {
	width: auto;
	height: 40px;
	border: 1px solid #dee2e6;
	cursor: pointer;
	top: 3px;
	display: block;
	margin: 0 auto;
	margin-left: 30%;
	position: relative;
	align: right;
}

/* Info Modal */
#modal1 .modal-content {
    background-color: #5483e1; 
}
#modal1 table { 
    color: white; 
}
#modal1 td {
	vertical-align: middle; 
	width: 90px;
	text-align: right;
}
#coatOfArms {
	width: 100px;
	height: 100px;
	margin: 0;
	margin-right: 38%;
	cursor: pointer;
	position: relative;
}

/* Weather Modal */
#modal2 .modal-content {
    background-color: #55abde; 
}
#modal2 table { 
    color: white; 
}
#modal2 th { 
	vertical-align: middle; 

}
#modal2 td { 
	vertical-align: middle; 
	text-align: center; 
}
#txtTemperature { 
	font-size: 3.0em; 
	margin: auto;
	padding-top: 13px;
}
#highestAndLowestTemp { 
	font-size: 1.5em; 
	margin: auto;
	padding-top: 13px;
}
#txtDescription { 
	margin: auto;
	padding-top: 16px;
}
.smallWeatherIcon { 
	height: 59px; 
	align: center; 
}

/* Currency Modal */
#modal3 .modal-content {
    background-color: #57dde0; 
}
#modal3 table { 
    color: white; 
}
#modal3 h5 { 
    color: black; 
	vertical-align: middle; 
	text-align: center; 
}
#modal3 th { 
	vertical-align: middle; 
}
#modal3 td {
	 vertical-align: middle; 
	 width: 90px;
}
#currencyImg { 
	vertical-align: middle; 
	padding-bottom: 10px;
	align: right;
}
#currencySymbol { 
	font-size: 2.0em; 
}
#txtCurrency { 
	font-size: 1.15em; 
}
#txtCurrencyCode { 
	font-size: 1.5em; 
}
#exchangeRateUSD { 
	text-align: right; 
}
#exchangeRateEUR { 
	text-align: right; 
}
#exchangeRateGBP { 
	text-align: right; 
}


/* News Modal */
#modal4 .modal-content {
	background-color: #47cbb5; 
}
#modal4 table { 
    color: white; 
}
#modal4 th { 
    color: black;
	background-color: rgb(155, 250, 237);
	font-size: 1.0em;
	vertical-align: middle; 
	width: 150px;  
}
#modal4 td { 
    color: black;
	vertical-align: middle; 
}
.fi-rr-calendar-clock {
    font-size: 1.8em;
    color: black;
}
.fa-long-arrow-alt-right:hover { color: black; }

/* Flag Modal */
#modal5 .modal-content {
    width: auto !important;
    margin: 0 auto;
	background-color: #aef1e5; 
}

.leaflet-popup-content-wrapper {
	background-color: black;
	color: white;
}	

/* Map Markers */
.POIs,
.POIs div {
    color: white;
}
.fa-plane {
    position: relative;
    left: 1px;
    top: 1px;
}
.fa-graduation-cap {
    position: relative;
    left: 1px;
}
.fa-building-columns{
    position: relative;
    left: 1px;
}
.fa-hospital {
    position: relative;
    left: 1px;
	top: 1px;
}
.fa-cow {
    position: relative;
    left: 1px;
	top: 1px;
}
.fa-volcano {
    position: relative;
    left: 1px;
    top: 1px;
}
.fa-futbol {
    position: relative;
    top: 1px;
}
.fa-city {
    position: relative;
    left: 1px;
    top: 1px;
}