.weather-widget {
  display: flex;
  align-items: center;
}
@media (min-width: 10px) and (max-width: 768px) {
  .weather-widget {
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-direction: column;
  }
}
.weather-widget__image {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: block;
}
@media (min-width: 10px) and (max-width: 768px) {
  .weather-widget__image {
    width: 18px;
    height: 18px;
    order: 2;
    outline: 0;
  }
}
.weather-widget--locked {
  margin-left: 8px;
  min-width: 190px;
}
@media (min-width: 10px) and (max-width: 768px) {
  .weather-widget--locked {
    margin-left: 0;
    min-width: 50px;
    display: inline-block;
    vertical-align: middle;
  }
}
.weather-widget--locked .weather-widget__image {
  flex: 0 0 auto;
  width: 40px;
  height: 26px;
  order: 1;
}
.weather-widget--locked .weather-widget__image:after {
  content: "";
  width: 40px;
  height: 26px;
  display: block;
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  background-image: url("/img/icon-weather-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.weather-widget--locked .weather-widget__data {
  align-self: flex-start;
  text-align: left;
  order: 2;
}
.weather-widget__data {
  border-left: 1px solid rgba(74, 74, 74, 0.1);
  margin-left: 8px;
  padding: 2px 0 2px 8px;
}
@media (min-width: 10px) and (max-width: 768px) {
  .weather-widget__data {
    border-left: none;
    margin-left: 0;
    padding: 0;
    order: 1;
    text-align: right;
    align-self: flex-end;
  }
}
.weather-widget__data--date {
  font-size: 13px;
  color: #212121;
  display: block;
  margin: 0;
}
.weather-widget__data--city {
  font-size: 13px;
  color: #212121;
  font-family: "proximanova-bold", sans-serif;
  display: block;
}
@media (min-width: 10px) and (max-width: 768px) {
  .weather-widget__data--city {
    font-size: 8px;
    color: rgba(33, 33, 33, 0.6);
  }
}
