@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap");

html, body {
  background-color: #F9F6EE;
  margin: 0;
  padding: 0;
}

.footer {
  position: fixed;
  bottom: 0;
}

html {
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
}

body {
  color: black;
}

#map {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

#loading {
  background: #0183ee;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.50;
}

#loading-img {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10001;
  transform: translate(-50%, -50%);
}



.form-select {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%);
    width: 200px;
    z-index: 999;
}


.leaflet-touch .leaflet-bar a {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.easy-button-button {
  width: 40px;
  height: 40px;
}

.easy-button-button:hover {
  background-color: rgb(220, 217, 217);
}

.forecast {
  margin-bottom: 30px;
}

.wikiImg {
  display: flex;
  justify-content: center;
  align-content: center;
  padding-bottom: 30px;
}
.wikiImg img {
  margin: 0 0;
}

.divWiki h5 {
  font-size: 20px;
}

.divWiki p {
  color: black;
  text-shadow: none;
}

.news {
    text-shadow: none;
    overflow: scroll;
}

.news img {
  width: 50%;
  height: auto;
  object-fit: contain;
  padding-bottom: 40px;
}

.news p {
  width: 100%;
  border-bottom: 1px solid darkgrey;
  padding-bottom: 20px;
}

#pre-load {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#pre-load:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #2D8E5D ;
    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);
    }
}

.fadeOut {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 1s, opacity 1s linear;
}

.myBtn {
  width: 70px;
}
