* {
  padding: 0;
  margin: 0;
  text-decoration: none !important;
  list-style-type: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

html,
body {
  height: 100%;
  width: 100vw;
}

/* Leaflet Popups */
.custom-popup .leaflet-popup-content-wrapper {
  background: #f0f2f5;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.custom-popup .leaflet-popup-content-wrapper a {
  color: rgba(255, 255, 255, 0.5);
}
.custom-popup .leaflet-popup-tip-container {
  width: 30px;
  height: 15px;
}
.custom-popup .leaflet-popup-tip {
  background: #f0f2f5;
}
.popupHeader {
  font-size: 1.3rem;
  font-weight: 300;
}

/* Splash */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.splash.display-none {
  position: fixed;
  opacity: 0;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}
.splashLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  border-radius: 20px;
  text-align: center;
}
.splash-h2 {
  font-size: 1.2rem;
  opacity: 0.7;
  padding-top: 1.5rem;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

/* Map */
#map {
  position: absolute;
  top: 70px;
  height: calc(100vh - 70px);
  width: 100vw;
}

/* Nav */
#topNav {
  width: 100%;
  height: 70px;
  background: dodgerblue;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 99000;
}
.logo {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
}
.navbar-brand {
  font-size: 2rem;
}
#countrySelect {
  width: 600px;
  height: 2.5rem;
  border-radius: 10px;
  padding-top: 4px;
}

.dem {
  padding-left: 0;
}

.bi {
  font-size: 1.5rem;
}

.fas {
  font-size: 1.2rem;
  padding-top: 0.3rem;
}

.table-body {
  padding: 0;
}

.modal {
  z-index: 99999;
}

.modal-content {
  text-align: center;
}

.modal-header {
  background: dodgerblue;
  color: white;
}

.countryInfo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 200vh;
}

.sidebarSection {
  width: 80%;
  border-bottom: solid 1px rgb(0, 123, 255);
  padding: 2rem 0;
}

.sectionHeader {
  font-size: 2rem;
  padding-bottom: 1rem;
}

.listItem {
  font-weight: 500;
  padding: 0.5rem;
}

.emphasis {
  font-size: 1.5rem;
}

.test {
  font-weight: 300;
}

#countryName {
  font-size: 2rem;
}

.currencyContainer {
  padding: 2rem;
}

.outputContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.modal-sub-header {
  font-size: 2rem;
  padding: 1.5rem;
}

.currentWeather {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.forecastWeather {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.dayItem {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.iconImage {
  width: 50%;
  height: auto;
}

.w-icon {
  width: 100%;
  height: auto;
}

#temp {
  font-weight: 400;
  font-size: 1.5rem;
}

.red {
  color: rgb(255, 72, 0);
  padding-right: 0.5rem;
}

.yellow {
  color: rgb(252, 252, 0);
  padding-right: 0.5rem;
}

.fa-wind {
  color: rgb(0, 119, 255);
  padding-right: 0.5rem;
}

td {
  text-align: left;
}

.right {
  text-align: right;
}

#output .article {
  margin-top: 2rem;
}

.form-input {
  width: 10rem;
  height: 2rem;
  border: solid 1px rgb(0, 123, 255);
  border-radius: 10px;
  box-shadow: none;
  text-align: center;
}

.currency {
  width: 4rem;
  height: 2rem;
  border: solid 1px rgb(0, 123, 255);
  border-radius: 10px;
  box-shadow: none;
}
.currencyInput {
  padding: 2rem 0 2rem 0;
}

.article {
  margin: 2rem 0;
  padding: 1rem;
  -webkit-box-shadow: -2px 2px 18px -1px rgba(0, 0, 0, 0.18);
  box-shadow: -2px 2px 18px -1px rgba(0, 0, 0, 0.18);
  border-radius: 10px;
}

.articleImage {
  width: 90%;
  height: auto;
  padding-top: 1rem;
}

@media only screen and (max-width: 1000px) {
  #countrySelect {
    width: 400px;
  }
  .splashLogo {
    width: 80%;
  }
}

@media only screen and (max-width: 700px) {
  #countrySelect {
    width: 200px;
  }
}

@media only screen and (max-width: 500px) {
  .logo {
    font-size: 1.5rem;
  }
  .splashLogo {
    width: 90%;
    height: 40%;
  }
  .currentWeather {
    padding: 2rem 0;
  }
}

@media only screen and (max-width: 400px) {
  #countrySelect {
    width: 200px;
  }
  .logo {
    font-size: 1.2rem;
  }
}
