/* @import url('https://fonts.googleapis.com/css2?family=Lemonada:wght@400;500;600;700&family=Roboto&display=swap'); */

/* body {
    font-family: 'Roboto', sans-serif;
}

nav {
    z-index: 100;
    height: 5%;
}

nav div ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
nav div ul li p {
    padding: 0px;
} */

#gazetteer {
  width: 100%;
  height: 500px;
  margin: 0 auto;
}

.gazetteer h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
  text-align: center;
}

.gazetteer > p {
  margin: 0 1.5rem 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: "merriweather", serif;
}
@media all and (max-width: 940px) {
  .gazetteer > p {
    min-height: 210px;
  }
}

@media all and (max-width: 580px) {
  .gazetteer > p {
    font-size: 1rem;
    min-height: 40px;
  }
}

.CountriesDropDownListDiv {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.CountriesDropDownList {
  background-color: black;
  color: white;
  display: block;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 700;
  color: #444;
  line-height: 1.3;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 100%;
  max-width: 100%; /* useful when width is set to anything other than 100% */
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient. 
		for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference
		
	*/
  /*background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
	  linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);
      
	background-repeat: no-repeat, repeat;
	/* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
  background-position: right 0.7em top 50%, 0 0;
  /* icon size, then gradient */
  background-size: 0.65em auto, 100%;
}
/* Hide arrow icon in IE browsers */
.CountriesDropDownListselect-css::-ms-expand {
  display: none;
}
/* Hover style */
.CountriesDropDownList:hover {
  border-color: #888;
}
/* Focus style */
.CountriesDropDownList:focus {
  border-color: #aaa;
  /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}

/* Set options to normal weight */
.CountriesDropDownList option {
  font-weight: normal;
}

option {
  color: white;
  background-color: #888;
}
option:hover {
  background-color: yellow;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
/*
*[dir="rtl"] .CountriesDropDownList, :root:lang(ar) .CountriesDropDownList, :root:lang(iw) .CountriesDropDownList {
	background-position: left .7em top 50%, 0 0;
	padding: .6em .8em .5em 1.4em;
}

/* Disabled styles */
.CountriesDropDownList:disabled,
.CountriesDropDownList[aria-disabled="true"] {
  color: gray; /*graytext*/
  /*background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
	  linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%);*/
}

.CountriesDropDownList:disabled:hover,
.CountriesDropDownList[aria-disabled="true"] {
  border-color: #aaa;
}

/*
.CountriesDropDownList option{
    background-color: red;
    color: yellow;
    
}

#navDropDown option-selected {
    background-color: yellowgreen;
}
/*
select {
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;       /* Remove default arrow 
   background-image: url(...);   /* Add custom arrow 
}

.CountriesDropDownListDiv-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
  }
*/

.appTitle {
  font-family: "Lemonada", cursive;
  font-weight: 600;
}

.mainDiv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  /*
    width: 100%; 
    height: 100vh;
    */
}

.mapDiv {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  border: 1px solid #000;
}

#mapid {
  height: 100%;
  width: 100%;
  z-index: 50;
  /*
    margin: auto; 
    position: absolute; 
    left: 5vw; top: 5vh;
    */
} /* height: 180px;  margin: 0px auto;*/

#spinner {
  display: block;
  position: absolute;
  left: 45%;
  top: 10%;
  background-color: #fff;
  z-index: 900;
}

#mapInfo {
  width: fit-content;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 100;
  background-color: #fff;
  border-radius: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: small;
}

.mapInfoTbl {
  /*max-width: 20%;*/
}
.mapInfoTbl tr th {
  text-align: left;
}
.mapInfoTbl tr td {
  padding-left: 20px;
}

.mapInfoTbl div {
  display: inline-block;
  width: 10%;
  margin-left: 10px;
  padding-bottom: 5px;
}
.mapInfoTblImg {
  width: 100%;
}

#coordinatesDiv {
  text-align: center;
  font-size: large;
  font-weight: 600;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 99vw;
  border: 1px dashed darkblue;
}
/*Bootstrap table*/
#countryName {
  text-align: center;
}
#borders {
  list-style: none;
  padding: 0px;
}
#languages {
  list-style: none;
  padding: 0px;
}

/*My Modal*/
.myModal {
  margin-top: 20px;
}

/*Popup*/
.tablePopup {
  border: 1px solid #fff;
  max-width: 250px;

  margin: 0;
}
.tablePopup td,
.tablePopup th {
  font-size: small;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

.routeDirections {
  height: 50px;
  border: 1px solid #000;
  text-align: center;
  background-color: rgb(5, 163, 202);
  color: #fff;
  margin-bottom: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 600;
  border-radius: 10px;
  padding-top: 10px;
}
.popupUL {
  list-style: none;
  padding-left: 0px;
}
.popupLI {
  font-weight: 600;
}
.easyPopup {
  max-width: 200px;
  text-align: center;
  font-weight: 500;
}

/*Maps control*/

.roadMaps {
  color: rgb(219, 3, 3);
}
.named {
  color: rgb(52, 61, 61);
}
.nightTime {
  color: rgb(18, 18, 150);
}
.railWay {
  color: rgb(255, 69, 0);
}
.drawnBorders {
  color: rgb(137, 190, 31);
}
.satellite {
  color: rgb(116, 64, 4);
}
.citiesDiv {
  color: rgb(7, 85, 230);
}
.circleMarker {
  color: deeppink;
}
.owmLocations {
  color: rgb(255, 136, 0);
}
.countiesDiv {
  color: rgb(231, 4, 231);
}
.clusterMarkerDiv {
  color: rgb(26, 156, 26);
}

/*Polyline*/
.polyline {
  z-index: 250;
}
.polyline:hover {
  z-index: 300;
  color: "green";
}
/*Weather*/
.widgetDiv {
  position: absolute;
  top: 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#openweathermapwidget11 {
  position: absolute;
  top: 0px;
  width: fit-content;
  /*
    left: 20%;
    top: 0;
    /*
    z-index: 200;
    */
}
.hideDisplay {
  z-index: 0;
  display: none;
}
.showDisplay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 200;
}
.my_btn_element {
  height: 50px;
  border: 1px solid #000;
  text-align: center;
  background-color: rgb(5, 163, 202);
  color: #fff;
  margin-bottom: 5px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: small;
  font-weight: 400;
  border-radius: 20px;
  padding-top: 10px;
  padding-bottom: 5px;
}
.btnTD {
  width: 100%;
  text-align: center;
  padding-top: 15px;
  cursor: pointer;
  align-self: center;
  /*
    position: relative;
    */
  display: flex;
  justify-content: center;
}
.owmWidget {
  position: relative;
}
.closeIconDiv {
  align-items: center;
  width: 20px;
  position: absolute;
  right: 20px;
  top: 5px;
  z-index: 400;
  cursor: pointer;
}

.closeIconDiv:hover .closeP {
  display: block;
  /*position: absolute;*/
}

.closeImg {
  width: 100%;
}
.closeP {
  display: none;
  font-weight: 600;
  font-size: medium;
  padding: 0px 5px;
  margin-top: 0px;
  color: #fff;
  /*
    -webkit-text-stroke-width: 0.6px;
    -webkit-text-stroke-color: #fff;
    */
  background-color: #000;
  border: 0.5px solid #fff;
  border-radius: 15%;
}

/*Polygon*/
.boundaryDiv {
  /*
    height: 50px;
    border: 1px solid #000;
    text-align: center;
    background-color: rgb(5, 163, 202);
    color: #fff;
    margin-bottom: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: small;
    font-weight: 400;
    border-radius: 20px;
    padding-top: 10px;*/
  width: 100%;
  height: 40px;
  border-radius: 0px;
  border: 0.5px solid #000;
  /*background-color: rgb(5, 163, 202);*/
  font-size: large;
  text-align: center;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 15px;
  padding-right: 15px;
  /*
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    */
}

/*Exchange Rate*/
#currency {
  padding-right: 10px;
}
#exRate {
  padding-right: 10px;
}
#callingcode {
  padding-right: 10px;
}

/*---------------------------------------------------------------------------GENERAL -----------------------------------------------------------*/
.modal-body-scroll {
  max-height: 70vh;
  overflow-y: scroll;
}

.featureGroups {
  display: inline-block;
}
/*-------------------------------------COUNTRY DATA------------------------------------*/
.modalImageDiv {
  max-height: 400px;
  width: 50%;
}
.countryFlagImage {
  width: 100%;
}
.countryNameFlagTitle {
  text-align: right;
  padding-right: 10px;
  padding-top: 5px;
  font-weight: 400;
  font-family: "Lemonada", cursive;
  color: #fff;
}
.countryDataDiv {
  background-color: #222;
  opacity: 0.8;
}
.countryDataDiv2 {
  background-color: midnightblue;
  border: 5px solid blue;
  margin: 0px 10px;
  margin-top: 10px;
}
.countryDatawhite {
  color: #fff;
}

.stormWeatherData2 {
  background-color: midnightblue;
  border: 5px solid blue;
  margin: 0px 10px;
  margin-top: 10px;
}
#stormMsg {
  color: white;
}
#countryMsg {
  color: white;
}
/* -------------------------------------------NEWS------------------------------------------ */
.newsHeaderTitle {
  width: 100%;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: x-large;
  color: #fff;
}
.newsTitle {
  font-size: large;
  font-family: "Roboto", sans-serif;
}
.newsPaper {
  font-weight: 600;
  font-family: "lemonada";
}
.newsDesc {
  color: #333;
  /*
    -webkit-text-stroke-width: 0.25px;
    -webkit-text-stroke-color: black;
    */
  background-color: white;
  /*border: 0.5px solid black;*/
}
.author {
  width: 100%;
  color: #444;
  font-weight: 600;
  display: block;
  text-align: right;
}
.link {
  display: inline-block;
  color: blue;
  font-style: italic;
}
.newsImage {
  width: 100%;
  padding-right: 10px;
  margin-bottom: 10px;
}
.noResultParagraph {
  width: 100%;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: large;
  font-weight: 600;
}
.newsCard {
  border: 10px solid #888;
  cursor: pointer;
}
.newsDataDiv2 {
  background-color: darkgreen;
  border: 5px solid green;
  margin: 0px 10px;
  margin-top: 10px;
}
/*-----------------------------------------------------------------Landmarks----------------------------------------------------------------------*/
.openTripDataImageDiv {
  width: 100%;
}
.openTripDataImage {
  width: 100%;
  max-height: 400px;
}
#openTripDataWikiEx {
  display: inline;
}
#openTripDataWiki {
  display: inline;
}
.openTripDataBtn {
  width: 80%;
  height: 40px;
  border-radius: 5px;
  border: 0.5px solid #000;
  /*background-color: rgb(5, 163, 202);*/
  font-size: large;
  text-align: center;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 10%;
}
.landmarkPopup {
  min-height: 100px;
  text-align: center;
  margin-bottom: 25px;
}
.landmarkName {
  font-size: large;
  font-weight: 400;
  font-family: "lemonada", cursive;
  margin-bottom: 20px;
}
.openTripDataTD {
  height: 40px;
}
.OTObjectsPopup {
  min-width: 100px;
}
.OPObjectsName {
  font-size: large;
  font-weight: 400;
  font-family: "lemonada", cursive;
  margin-bottom: 20px;
  text-align: center;
}
/*----------------------Battuta---------------------------------------*/
.battutaName {
  font-size: large;
  font-weight: 400;
  font-family: "lemonada", cursive;
}

/*------------------------------------------------------------------------PUBLIC HOLIDAYS-------------------------------------------------*/
.noResultParagraph {
  color: #fff;
}
.publicHolidayDataDiv2 {
  background-color: purple;
  border: 5px solid white;
  margin: 0px 10px;
  margin-top: 10px;
}
/*---------------------------------------------------------------------COVID-----------------------*/
.covidDataDiv2 {
  background-color: red;
  border: 5px solid yellow;
  margin: 0px 10px;
  margin-top: 10px;
}

/*---------------------------------------------------------------------------Weather----------------------------------------------------------------*/
.weatherDataBtn {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 0.5px solid #000;
  /*background-color: rgb(5, 163, 202);*/
  font-size: large;
  text-align: center;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  /*
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    */
}
.weatherDataTable {
  display: block !important;
  overflow-x: scroll !important;
  width: 100% !important;
}
.weatherPopup {
  min-height: 100px;
  text-align: center;
  margin-bottom: 25px;
}
.weatherName {
  font-size: large;
  font-weight: 400;
  font-family: "lemonada", cursive;
}

#weatherDataName {
  color: #fff;
}

#weatherDataHourlyDiv {
  display: flex;
  flex-direction: row;
  min-width: 100px;
  max-width: 400px;
  overflow-x: scroll;
}

#weatherDataDailyDiv {
  display: flex;
  flex-direction: row;
  min-width: 100px;
  max-width: 400px;
  overflow-x: scroll;
}
.weatherDataTD {
  overflow-x: hidden;
}
.hourlyDiv {
  border: 1px solid #fff;
  margin: 5px 10px;
  padding-left: 10px;
  padding-right: 10px;
  flex-basis: 1;
  min-width: 100px;
  align-self: center;
  text-align: center;
}
.dailyDiv {
  border: 1px solid #fff;
  margin: 5px 10px;
  padding-left: 10px;
  padding-right: 10px;
  flex-basis: 1;
  min-width: 100px;
  align-self: center;
  text-align: center;
}
#weatherDataDescription {
  font-size: large;
}
.weatherDataRainP {
  font-size: medium;
  font-weight: 400;
  width: 60%;
  text-align: center;
  border: 0.25px solid #fff;
  margin-top: 10px;
}

/*--------------------------------------------------------OPEN TRIP DATA------------------------------------------*/

.myTable {
  /*table*/
  display: block !important;
  overflow-x: scroll !important;
  width: 100% !important;
}
#openTripDataTable {
  /*tbody*/
  /*max-width: 90%;*/
}

.openTripDataScrollX {
  /*tr*/
  /*overflow-x: scroll;*/
}
.yb {
  border: 1px dashed yellow;
}
.rb {
  border: 1px dashed red;
}
.bb {
  border: 1px dotted blue;
}

/*------------------------------------------------------EASY BUTTONS---------------------------------------------------------*/
#easyBtn1 {
  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 50px;
  height: 50px;
  border: 0.5px solid #fff;
  border-radius: 25px;
  background-color: green;
  color: white;
}

/*----------------------------------------------------Preloader------------------------------------------------------*/
.loaderDiv {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 11em;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #888;
}
.loaderDiv > p {
  font-size: large;
  color: #000;
  opacity: 0.5;
  font-weight: 600;
  text-align: center;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 9em;
  height: 9em;
}
.loader {
  margin: 10px auto;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.5);
  border-right: 1.1em solid rgba(255, 255, 255, 0.5);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.5);
  border-left: 1.1em solid #888;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.progressBarDiv {
  width: 100%;
  color: #000 !important;
  background-color: #f1f1f1 !important;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  overflow: hidden;
}
.progressBar {
  color: #fff !important;
  background-color: #4caf50 !important;
  border-bottom-left-radius: 15px;
}

/*Map control loader*/
.display_lds {
  display: inline-block;
}
.hide_lds {
  display: none;
}
.lds {
  margin-left: 6px;
  margin-right: 0px;
  /*border: 1px dashed #000;*/
}
.lds-spinner {
  color: official;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 10px;
  height: 10px;
  z-index: 999999;
}
.lds-spinner div {
  transform-origin: 0px 0px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 1px;
  left: 0px;
  width: 2px;
  height: 8px;
  border-radius: 20%;
  background: #888;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

tbody.faImg > tr:first-child {
  width: 100px;
}
.popIcon {
  color: white;
  border-radius: 10px;
  text-align: center;
}
.popIconTD {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.capIcon {
}
.curIcon {
}
.exIcon {
}
.bordIcon {
}
.langIcon {
}

.white {
  color: #fff;
}
.dark_grey {
  background-color: #212529;
}
.phcnCenter {
  text-align: center;
  width: 100%;
}
.mlpx {
  min-width: 125px;
}
.flex_col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fcjc {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
.dinline {
  display: inline-block;
}

/*--------------------------------------------------------------------------(min-width: 1000px)-------------------------------------------------------*/
@media only screen and (min-width: 1000px) {
  .mapStyle {
    font-size: large;
    font-weight: 600;
    display: inline;
  }
}

@media only screen and (max-width: 518px) {
  .control {
    margin-top: 45px;
  }
}
