.weatherCSS {
  text-align: left;
}

/* EARTHQUAKE CONTAINER */
.quakeInfoContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: white;
  text-align: left;
  padding: 10px;
}

.quakeData {
  font-size: 0.9rem;
}

/* WIKIPEDIA CONTAINER */

.wikipediaContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  color: white;
  text-align: left;
  padding: 10px;
}

.wikipediaImage {
  width: auto;
  height: auto;
}

.wikipediaLink {
  cursor: pointer;
  font-size: 1.1rem;
  color: darkorange;
  text-decoration: none;
}

.wikipediaLink:hover {
  cursor: pointer;
  color: darkorange;
  transition: 0.8s;
}

.shortHR {
  width: 80%;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
}

.cityContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  color: white;
  text-align: left;
  padding: 10px;
}

.cityPopupHeader {
  font-size: 1.1rem;
  font-weight: bold;
}

.cityPopupKey {
  font-size: 0.95rem;
}

.popupValueCity {
  display: inline-block;
  margin-left: 5px;
  font-weight: normal !important;
  font-size: 0.95rem;
}

.popupValue::first-letter {
  text-transform: capitalize !important;
}

.popupText {
  font-size: 0.9rem;
}

.weatherPopBlue .leaflet-popup-content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto !important;
  width: fit-content !important;
  background: rgba(0, 0, 136) !important;
  font-size: 0.95rem;
  border: 4px solid white;
  border-radius: 15px;
}

.weatherPopLightBlue .leaflet-popup-content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto !important;
  width: fit-content !important;
  background: rgba(60, 127, 155) !important;
  font-size: 0.95rem;
  border: 4px solid white;
  border-radius: 15px;
}

.weatherPopGreen .leaflet-popup-content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto !important;
  width: fit-content !important;
  background: rgba(114, 213, 24) !important;
  font-size: 0.95rem;
  border: 4px solid white;
  border-radius: 15px;
}

.weatherPopYellow .leaflet-popup-content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto !important;
  width: fit-content !important;
  background: rgba(231, 229, 10) !important;
  font-size: 0.95rem;
  border: 4px solid white;
  border-radius: 15px;
}

.weatherPopOrange .leaflet-popup-content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto !important;
  width: fit-content !important;
  background: rgba(255, 134, 0) !important;
  font-size: 0.95rem;
  border: 4px solid white;
  border-radius: 15px;
}

.weatherPopRed .leaflet-popup-content-wrapper {
  display: flex;
  flex-direction: column;
  height: auto !important;
  width: fit-content !important;
  background: rgba(255, 0, 4) !important;
  font-size: 0.95rem;
  border: 4px solid white;
  border-radius: 15px;
}

.weatherContainer {
  font-variant: small-caps !important;
}

.mapIconWiki {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0);
  color: white;
  border-radius: 50%;
  font-size: 1.4rem;

  width: 2.75rem !important;
  height: 2.75rem !important;
  border: 3px solid white;
}

.mapIconWiki:hover {
  border-radius: 50%;
  text-align: center;
  border: 3px solid darkblue;
  transition: 0.8s;
}

.mapIconQuake {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(7, 0, 45, 0.8);
  border-radius: 50%;
  font-size: 2rem;
  width: 3.5rem !important;
  height: 3.5rem !important;
  border: 3px solid #f8c302;
}

.mapIconQuake:hover {
  border-radius: 50%;
  text-align: center;
  border: 3px solid rgb(69, 0, 0);
  transition: 0.8s;
}

.mapIconCity {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(0, 82, 12);
  border-radius: 50%;
  font-size: 2rem;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border: 3px solid rgb(255, 255, 255);
}

.mapIconCity:hover {
  border-radius: 50%;
  text-align: center;
  border: 3px solid rgb(191, 45, 0);
  transition: 0.8s;
}

.mapWeatherIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(9, 134, 168);
  border-radius: 50%;
  font-size: 2rem;
  width: 3rem !important;
  height: 3rem !important;
  border: 3px solid rgb(255, 255, 255);
}

.mapWeatherIcon:hover {
  border: 3px solid #efcc00;
  transition: 0.8s;
}

.mapWeatherNightIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(1, 0, 29);
  border-radius: 50%;
  font-size: 2rem;
  width: 3rem !important;
  height: 3rem !important;
  border: 3px solid rgb(255, 255, 255);
}

.mapWeatherNightIcon:hover {
  border: 3px solid rgb(0, 0, 40);
  transition: 0.8s;
}

.mapIconSat {
  width: 130px;
  height: 50px !important;
}

.windVein {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
}
