html,
body {
  margin: 0;
  padding: 0;
  background-color: rgb(19, 85, 142);
}

#selectContainer {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 17px 0;
  /* background-color: rgb(145, 234, 145); */
  text-align: center;
  display: block;
}

.city-summary {
  font-size: 1.2rem;
}

#countrySelect {
  width: 200px;
  margin: 0 auto;
  text-align: center;
  border-radius: 1.3rem;
  padding: 0.4rem;
  border: none;
}

#map {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.lighter-bg-success {
  background-color: #d1e7dd;
}
.yellow {
  color: yellow;
}
.blue {
  color: blue;
}

.red {
  color: red;
}

.card-shadow {
  box-shadow: 1px 1px 1px 1px rgb(234, 45, 45);
  margin: 1rem;
}
.fromCurrency {
  color: gray;
  font-size: 0.8rem;
  margin-bottom: -1.4rem;
  margin-left: 0.8rem;
}

.leaflet-touch .leaflet-control-layers-toggle {
  background-image: url(../../node_modules/leaflet/dist/images/layers-2x.png) !important;
}

.city-summary {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: wrap;
  font-size: 0.9rem;
  font-weight: 200;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #56829e;
  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);
  }
}

@media screen and (max-width: 767px) {
  .fromCurrency {
    font-size: 0.8rem;
    margin-bottom: -1.4rem;
    margin-left: 0.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fromCurrency {
    font-size: 0.8rem;
    margin-bottom: -1.4rem;
    margin-left: 0.8rem;
  }
}
