#map {
  height: 100vh;
  width: 100%;
}

body {
  font-family: "Roboto Flex", sans-serif;
  font-size: 16px;
}

.easy-button-button {
  width: 40px !important;
  height: 40px !important;
}

.leaflet-right .easy-button-button {
  width: 45px !important;
  height: 45px !important;
}

.fa {
  font-size: 22px;
  line-height: 40px;
}

.leaflet-control-zoom-out,
.leaflet-control-zoom-in {
  width: 40px !important;
  height: 40px !important;
}

.pop-up__wrapper {
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  gap: 0.3rem;
}

.pop-up__image {
  width: 120px;
  height: auto;
}

.wiki-button {
  width: 120px;
  border-radius: 2px;
  background-color: #bfe6f4;
  border:1px solid #989898;
  text-align: center;
  transition: all 0.5s ease;
}

.wiki-button:hover {
  background-color: #88def4;
}

.wiki-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.wiki-button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -15px;
  transition: 0.5s;
}

.wiki-button:hover span {
  padding-right: 15px;
}

.wiki-button:hover span:after {
  opacity: 1;
  right: 0;
}


#country-select-wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 30%);
}

#country-modal-flag {
  max-width: 200px;
  border: 1px solid #000;
}

/*Home Btn*/
.home-size {
  font-size: 24px;
  display: block;
  margin-top: 5px;
  line-height: 1.4;
}

/* animation */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0, 0.5);
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}

.loader-icon {
  width: 40%;
  height: 40%;
}


/* Media queries*/
@media(max-width: 540px) {

  /*Country information modal*/
  .modal-content.lt-mobile {
    width: 77%;
    height: 70vh;
    margin: 0 auto;
  }
  #country-modal-flag {
    max-width: 125px;
    border: 1px solid #000;
  }
  #country-info-modal{
    font-size: 14px;
  }
  #country-modal-title {
    font-size: 1.2rem;
  }

  .icons-mobile i {
    transform: scale(0.9);
  }
  /*Wikipedia information modal*/
  #wikiModal .modal-body {
    padding-left: 0;
    padding-right: 0;
  }

  #wikiModal .modal-footer{
    justify-content: start;
    
  }

  /* Three day weather forecast modal*/
  .modal-title.header-mobile {
    font-size: 1.18rem;
  }
  .para-footer-mobile {
    font-size: 0.9rem !important;
    
  }
  .footer-font {
    font-size: 0.9rem;
  }
  .anchor-font {
    font-size: 0.8rem;
  }
  .modal-footer.footer-mobile{
    text-align: left !important;
  }

  .leaflet-bottom.leaflet-left {
    margin-bottom: 80px;
  }

  .help-size {
    display: block;
    line-height: 2;
  }

}