nav a,
h3 {
  font-family: 'Ariel', sans-serif;
}

/* map */
#globalMap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.navbar{
    padding: 7px 15px;
    position: absolute;
    top: 0;
    width: 50%;
    left: 400px;
}

#theButton {
    border-color: black;
}

a{
    color: black;
}

.imgDescription {
  opacity: .7;
}

#weatherIcon {
  width: 3.5rem;
  height: auto;
}

.weather {
  font-size: .8rem;
}

#weatherList {
  padding: 0;
  margin: 0;
}

#weatherList li{
  list-style-type: none;
}

td img {
  width: 100%;
  height: auto;
}

.easy-button-button{
    font-size: 20px;
}

/*
.modal{
     position: relative; 
     display: flex; 
     flex-direction: column; 
     width: 100%; 
     color: black;
     pointer-events: auto; 
     background-color: var #fff;
     background-clip: padding-box; 
     border: 1px solid rgba(0,0,0,0.175); 
     border-radius: 0.5rem;
     outline: 0;
}
*/

.leaflet-touch .leaflet-bar button {
    width: 35px;
    height: 30px;
    line-height: 30px;
}

.loader-wrapper{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #242f3f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 394034000;
}

.loader{
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #fff;
    top: 50%;
    animation: loader 2s infinite ease;
    z-index: 999999;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #fff;
    animation: loader-inner 2s infinite ease-in;
    z-index: 99999;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}