.weatherforecast {
  background: #E1F6F9;
  border-radius: 12px;
  overflow: hidden;
}
.weatherforecast .wf-top {
  position: relative;
  padding: 17px 15px 7px;
}
.weatherforecast .wf-bottom {
  background-color: white;
  border: 2px solid #E1F6F9;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 6px 15px;
  justify-content: space-between;
}
.weatherforecast .wf-row {
  display: flex;
  flex-direction: row;
}
.weatherforecast .wf-col {
  display: flex;
  flex-direction: column;
}
.weatherforecast .wf-col-center {
  align-items: center;
}
.weatherforecast .wf-col-center {
  align-items: center;
}
.weatherforecast .wf-time {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #272742;
}
.weatherforecast .wf-uvindex {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  color: #272742;
}
.weatherforecast .wf-uvindex-number {
  background: #43BB79;
  border-radius: 8px;
  padding: 2px 11px;
}
.weatherforecast .wf-temperatur {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #272742;
}
.weatherforecast .wf-temperatur.--current {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  line-height: 61px;
  text-transform: uppercase;
  color: #272742;
}
.weatherforecast .wf-btn-outline {
  border: 2px solid #3CCFCF;
  box-sizing: border-box;
  border-radius: 24px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #3CCFCF;
  background-color: transparent;
  padding: 4px 8px;
  text-decoration: none;
}
.weatherforecast .wf-btn-outline:hover, .weatherforecast .wf-btn-outline:active {
  text-decoration: none;
}
.weatherforecast .wf-btn-filled {
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #272742;
  padding: 8px 24px;
  border-radius: 24px;
  border-color: transparent;
  background-color: transparent;
}
.weatherforecast .wf-btn-filled.--active, .weatherforecast .wf-btn-filled:active {
  background-color: #3CCFCF;
  color: white;
}
.weatherforecast .wf-days {
  background: rgba(60, 207, 207, 0.1);
  border-radius: 25px 0 0 25px;
  overflow-y: hidden;
  scroll-behavior: smooth;
}
.weatherforecast .wf-day {
  border-right: 1px solid white;
  padding: 19px 25px;
}
.weatherforecast .wf-day:last-child {
  border-right: none;
}
.weatherforecast .wf-hidden {
  display: none;
}
.weatherforecast #wf-uv-index-explain {
  position: absolute;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 100%;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  padding: 17px 15px;
  background: #E1F6F9;
  display: none;
}
.weatherforecast #wf-uv-index-explain.show {
  display: unset;
}
.weatherforecast .wf-uv-low {
  background-color: #43BB79;
}
.weatherforecast .wf-uv-moderate {
  background-color: #FBF1CB;
}
.weatherforecast .wf-uv-high {
  background-color: #F4B26B;
}
.weatherforecast .wf-uv-very-high {
  background-color: #E99999;
}
.weatherforecast .wf-uv-extreme {
  background-color: #8E7CC2;
}
@media screen and (min-width: 576px) {
  .weatherforecast .order-sm-2 {
    order: 2;
  }
  .weatherforecast .flex-sm-column {
    flex-direction: column !important;
  }
  .weatherforecast .flex-grow-sm-0 {
    flex-grow: 0 !important;
  }
}
