.weather-section {
  padding: 20px 40px;
}
.weather-section .yataweather-day,
.weather-section .yataweather-contexte {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  text-align: center;
}
.weather-section .yataweather-day .date,
.weather-section .yataweather-contexte .date {
  font-family: 'Mrs White', cursive;
  font-size: 2.4rem;
}
.weather-section .yataweather-day .location,
.weather-section .yataweather-contexte .location {
  font-size: 3.6rem;
  font-weight: 900;
}
.weather-section .yataweather-day .icon-div img,
.weather-section .yataweather-contexte .icon-div img {
  width: 50px;
  height: 50px;
  opacity: 0.7;
}
.weather-section .yataweather-day .description,
.weather-section .yataweather-contexte .description {
  font-size: 2rem;
  font-weight: bold;
}
.weather-section .yataweather-day .temperature,
.weather-section .yataweather-contexte .temperature {
  font-size: 2.4rem;
  font-family: 'Mrs White', cursive;
}
.weather-section .yataweather-today {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.weather-section .yataweather-nextdays {
  text-align: center;
  max-width: 1000px;
  margin: auto;
}
.weather-section .yataweather-nextdays .yataweather-split {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.weather-section .yataweather-nextdays .yataweather-split > div {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
}
.weather-section .yataweather-nextdays .yataweather-content {
  width: 230px;
}
.weather-section .yataweather-today .date,
.weather-section .yataweather-nextdays .date {
  font-family: 'Mrs White', cursive;
  font-size: 2.4rem;
}
.weather-section .yataweather-today .location,
.weather-section .yataweather-nextdays .location {
  font-size: 3.6rem;
  font-weight: 900;
}
.weather-section .yataweather-today .icon-div img,
.weather-section .yataweather-nextdays .icon-div img {
  width: 50px;
  height: 50px;
  opacity: 0.7;
}
.weather-section .yataweather-today .description,
.weather-section .yataweather-nextdays .description {
  font-size: 2rem;
  font-weight: bold;
}
.weather-section .yataweather-today .temperature,
.weather-section .yataweather-nextdays .temperature {
  font-size: 2.4rem;
  font-family: 'Mrs White', cursive;
}
.weather-section .yataweather-today .temp-min,
.weather-section .yataweather-today .temp-max,
.weather-section .yataweather-nextdays .temp-min,
.weather-section .yataweather-nextdays .temp-max {
  font-weight: bold;
}
.weather-section .yataweather-content,
.weather-section .yataweather-contexte {
  background-color: #F7F6E7;
  color: #76A38D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 250px;
}
.weather-section .yataweather-content.box-left,
.weather-section .yataweather-contexte.box-left {
  margin-right: 16px;
}
.yataweather-loader {
  width: 50px;
  height: 50px;
  margin: 20px auto;
  border: 4px solid #F7F6E7;
  border-top: 4px solid #76A38D;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 767.98px) {
  .weather-section .yataweather-day,
  .weather-section .yataweather-today {
    flex-direction: column;
    align-items: center;
  }
  .weather-section .yataweather-day .box-left,
  .weather-section .yataweather-today .box-left {
    margin: 0 0 16px;
  }
}
@media (max-width: 580px) {
  .weather-section .yataweather-nextdays .yataweather-split > div {
    flex-direction: column;
    align-items: center;
  }
  .weather-section .yataweather-nextdays .yataweather-split > div .box-left {
    margin: 0 0 16px;
  }
}
@media only screen and (max-width: 499px) {
  .yataweather-split > div {
    justify-content: center;
  }
}
