/* //////////////////////////////////////////////////////// */

.heading_location {
  background-color: #001F3F;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.show_map {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  color: white;
  padding: 20px;
}

.location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 30px;
  border: 1px solid #dddddd86;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  background: #001F3F;
}

.map {
  width: 50%;
  height: 350px;
  border: 1px solid #dddddd86;
  border-radius: 5px;
  margin-top: 10px;
}

.map_buttons{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dddddd86;
  border-radius: 8px;
  padding: 10px;
  margin: 10px;
}

#map2{
  display: none;
}
#map3{
  display: none;
}

/* utility css  */

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

.align_center {
  text-align: center;
}

.margin_left {
  margin-left: 10px;
}