.weather2__details {
  border-top: 1px solid rgb(var(--c-neutral-light));
  margin-top: 1rem;
  padding-top: 1rem;
}

.weather2__details ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.2rem 1rem;
  padding: 0;
  margin: 0;
}

.weather2-item ul li {
  list-style: none;
}

.weather-icontemp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}

.tx-weather2 {
  width: 100%;
  margin: 0;
  max-width: 700px;
}

div.weather2-item {
  border: none;
  background: rgb(var(--c-neutral-lightest));
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0;
  text-align: left;
  width: auto;
}

.page.-sub div.weather2-item {
  border: 1px solid rgb(var(--c-neutral-light));
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 2rem;
}

div.weather2-item .primary {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  grid-gap: 1rem;
}

div.weather2-item .primary .weather-data p {
  font-size: 120%;
  white-space: nowrap;
  font-family: var(--f-family);
  font-weight: var(--f-weight-b);
}

.weather-city {
  text-align: left;
}

.weather-city span {
  line-height: 120%;
}

div.weather2-report h3 {
  text-align: left;
}

.weather-temp {
  font-size: 75px;
  font-family: var(--f-family-2);
  font-weight: var(--f-weight-sb);
  color: rgb(var(--c-primary));
  justify-self: flex-start;
  line-height: 100%;
  white-space: nowrap;
}

div.weather2-item .primary .weather-icon {
  padding: 0;
  float: none;
  justify-self: flex-end;
}

div.weather-icon img {
  height: 60px;
  width: inherit;
  max-width: inherit;
}

.popup__content .weather2-item {
  border: none;
  margin: 0;
  text-align: left;
  background: transparent;
}

.popup__content .weather2-item p {
  line-height: 160%;
  font-size: 100%;
  color: rgb(var(--c-secondary));
}

.popup__content .weather-data {
  text-align: center;
}

.popup__content .weather-temp {
  color: rgb(var(--c-secondary));
  font-size: var(--f-size-l-5);
  white-space: nowrap;
  line-height: 120%;
}

.popup__content .weather-spacer {
  background: rgb(var(--c-secondary));
  width: 1px;
  height: 100%;
  content: '';
  display: block;
}

.popup__content .weather2-item {
  display: grid;
  grid-template-columns: 140px 3px 100px;
  grid-gap: var(--g-gap-s);
  color: rgb(var(--c-secondary));
  align-items: center;
}

.popup__content .weather-icon {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
}

.popup__content .weather-icon img {
  width: 100%;
  height: inherit;
  object-fit: contain;
  max-height: 45px;
}

.popup__content .weather-icon span {
  margin-top: 1rem;
  line-height: 110%;
}

.popup__content .weather .grid__main {
  display: block;
}


/* =============================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 640px) {
  .popup__content .weather-icon img {
        max-height: 60px;
    }
}

@media (min-width: 1024px) {
  .page.-sub div.weather2-item .primary {
    grid-template-columns: 1fr min-content;
  }
}















