/* Weather forecast */
.forecast-weather-icon {
  font-size: 1.1rem;
  line-height: 1;
  vertical-align: middle;
  color: var(--bs-gray-600);
}

@media (min-width: 768px) {
  .forecast-weather-icon {
    font-size: 1.5rem;
  }
}

.forecast-weather-icon.bi-sun-fill,
.forecast-weather-icon.bi-cloud-sun-fill,
.forecast-weather-icon.bi-sun,
.forecast-weather-icon.bi-cloud-sun {
  color: #d9a100;
}

.forecast-weather-icon.bi-cloud-fill,
.forecast-weather-icon.bi-clouds-fill,
.forecast-weather-icon.bi-cloud-fog2-fill,
.forecast-weather-icon.bi-cloud,
.forecast-weather-icon.bi-clouds,
.forecast-weather-icon.bi-cloud-fog2,
.forecast-weather-icon.bi-wind {
  color: var(--bs-gray-600);
}

.forecast-weather-icon.bi-cloud-rain-fill,
.forecast-weather-icon.bi-cloud-rain-heavy-fill,
.forecast-weather-icon.bi-cloud-sleet-fill,
.forecast-weather-icon.bi-cloud-hail-fill,
.forecast-weather-icon.bi-cloud-rain,
.forecast-weather-icon.bi-cloud-rain-heavy,
.forecast-weather-icon.bi-cloud-sleet,
.forecast-weather-icon.bi-cloud-hail {
  color: #347ad4;
}

.forecast-weather-icon.bi-cloud-lightning-rain-fill,
.forecast-weather-icon.bi-cloud-lightning-rain {
  color: #8e5cf6;
}

.forecast-weather-icon.bi-cloud-snow-fill,
.forecast-weather-icon.bi-cloud-snow {
  color: #5b8def;
}

.forecast-day-icon.forecast-icon-faded {
  opacity: 0.3;
  filter: grayscale(1)
}