body {margin:0;}

.map-div {
  width: 100vw;
  height: 100vh;
} 

.mt {
  font-family: 'Lato', sans-serif;
  font-weight:300;
  height:3em;
  background-color:#ffcc00;
  line-height:3em;
  padding-left:2em;
}
#map {
    width: 100%; 
    height: 100%;
    border-radius: 20px;
}

h2 {
	font-family: "Poppins";
	font-weight: 800;
	font-size: 18px;
	margin: 3px 0;
  text-align: center
}

p,
span {
	font-family: "Avenir";
	font-size: 14px;
	color: rgba(34, 34, 34, 0.5);
	margin: 5px 0;
}

.card {
	background-color: #fff;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	padding: 30px;
	max-width: 400px;
	min-height: 130px;
	margin: 20px 0;
	transition: all 0.5s ease;
}

.card:hover {
	box-shadow: 8px 28px 50px rgba(39, 44, 49, 0.07),
		1px 6px 12px rgba(39, 44, 49, 0.04);
	transform: translate3D(0, -1px, 0) scale(1.02);
	transition: all 0.5s ease;
}

.profile_img {
	width: 80px;
	height: 80px;

	object-fit: cover;
	object-position: 50% 50%;

	border-radius: 100%;
}

.flag_wrapper {
	width: 25px;
	height: 25px;
	background-color: #f2f2f2;
	border-radius: 100%;
	position: relative;
	top: -30px;
	left: 55px;
}

.flag {
	width: 15px;
	height: 15px;
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto auto;
}

.left {
	margin-right: 12.5px;
}
.right {
	margin-left: 12.5px;
}

.interests {
	margin-top: 10px;
}

.interests_title {
	color: #222222;
	margin-bottom: 5px;
}

.interests_item {
	padding: 0 15px;
	margin-right: 5px;
	line-height: 35px;
	background-color: #e6e6e6;
	border-radius: 5px;

	display: inline-block;
}

.map-title {
	font-family: 'Poppins','Lato', sans-serif;
	font-weight: 1000;
	font-size: 2vh;
	text-align: center;
	position:fixed;
	top:0px;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	z-index: 1000000000;
	background-color: #ffffff50;
}

.download-btn{
  font-family: 'Poppins','Lato', sans-serif;
  font-weight: 600;
  font-size: 1vh;
  text-align: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 5px;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  z-index: 1000000000;
  display: flex;
  align-items:center;
}

.download-btn:hover {
  color: #2952c5;
  cursor: pointer;	
}