/* ==========================================================================
   Weather Widget style 
   ========================================================================== */

/* @font-face {
  font-family: 'Linearicons-Free';
  src: url('../../fonts/Linearicons-Free.eot?w118d');
  src: url('../../fonts/Linearicons-Free.eot?#iefixw118d') format('embedded-opentype'),
    url('../../fonts/Linearicons-Free.woff2?w118d') format('woff2'),
    url('../../fonts/Linearicons-Free.woff?w118d') format('woff'),
    url('../../fonts/Linearicons-Free.ttf?w118d') format('truetype'),
    url('../../fonts/Linearicons-Free.svg?w118d#Linearicons-Free') format('svg');
  font-weight: normal;
  font-style: normal;
} */

/* https://erikflowers.github.io/weather-icons/ */

/* Wetter Icons */
@font-face {
  font-family: 'linea-weather-10';
  src: url('../../fonts/wetter/linea-weather-10.eot');
  src: url('../../fonts/wetter/linea-weather-10.eot') format('embedded-opentype'),
    url('../../fonts/wetter/linea-weather-10.woff') format('woff'),
    url('../../fonts/wetter/linea-weather-10.ttf') format('truetype'),
    url('../../fonts/wetter/linea-weather-10.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

.wetter_container {
  padding: 30px;
}

.wind_direction_svg {
  --d: 0;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  color: #63636c;
  transform-origin: center;
  /* animation: swing 4s infinite ease-in-out; */
  /* animation: swing 4s infinite linear; */
}

.olox_weather {
  cursor: default;
  color: var(--color-text);
  font-size: 1em;
  font-weight: 300;
  line-height: 1;
}

.olox_weather .w_city {
  margin-bottom: 0.2em;
}

.olox_weather .w_details {
  margin-top: 0.5em;
}

.olox_weather p {
  margin: 0.5em 0;
}

.wetter_container_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: .25em;
  box-sizing: border-box;
}

.olox_weather .weather-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}



.olox_weather .weather-icon {
  font-family: "linea-weather-10";
  font-size: 45px;
  line-height: 1;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 15px;
}

.olox_weather .weather-icon:before {
  content: '';
}

.olox_weather .weather-icon.olox--mist:before,
.olox_weather .weather-icon.olox--haze:before {
  content: "\e00d";
}

.olox_weather .weather-icon.olox--snow:before,
.olox_weather .weather-icon.olox--light-snow:before {
  content: "\e02d";
}

.olox_weather .weather-icon.olox--thunderstorm:before {
  content: "\e034";
}

.olox_weather .weather-icon.olox--rain:before,
.olox_weather .weather-icon.olox--drizzle:before,
.olox_weather .weather-icon.olox--light-rain:before,
.olox_weather .weather-icon.olox--moderate-rain:before,
.olox_weather .weather-icon.olox--light-intensity-drizzle:before,
.olox_weather .weather-icon.olox--light-intensity-shower-rain:before,
.olox_weather .weather-icon.olox--light-rain-and-snow:before {
  content: "\e027";
}

.olox_weather .weather-icon.olox--shower-rain:before,
.olox_weather .weather-icon.olox--heavy-intensity-rain:before {
  content: "\e01b";
}

.olox_weather .weather-icon.olox--clouds:before,
.olox_weather .weather-icon.olox--broken-clouds:before,
.olox_weather .weather-icon.olox--overcast-clouds:before,
.olox_weather .weather-icon.olox--scattered-clouds:before,
.olox_weather .weather-icon.olox--few-clouds:before {
  content: "\e042";
}

.olox_weather .weather-icon.olox--clear:before,
.olox_weather .weather-icon.olox--clear-sky:before,
.olox_weather .weather-icon.olox--sky-is-clear:before,
.olox_weather .weather-icon.olox--sun:before {
  content: "\e038";
}

.olox_weather .temperature {
  color: var(--nav_color_text_fixed);
  color: var(--color_text);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  /* font-family: "Raleway", sans-serif;
  text-transform: uppercase; */
}

.olox_weather .temperature sup {
  font-size: inherit;
  top: 0;
}

.olox_weather.olox-layout--standard>.weather-inner {
  /* -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; */
  display: block;
}

@media only screen and (max-width: 680px) {
  .olox_weather.olox-layout--standard>.weather-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
  }

  .olox_weather.olox-layout--standard .olox-m-weather {
    margin-bottom: 6px;
  }
}

.olox_weather.olox-layout--simple .weather-icon {
  font-size: 22px;
  margin: 0 8px;
}

.wetter_container_nav .olox_weather .weather-icon {
  color: var(--nav_color_text_fixed);
}

.olox_weather.olox-layout--simple .temperature {
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 400;
}


/* Animations */
/* https://codepen.io/aryancodeworm/pen/dyjYgpN */
@keyframes swing {
  0% {
    transform: rotate(var(--d));
  }

  25% {
    transform: rotate(calc(var(--d) + 10deg));
  }

  50% {
    transform: rotate(var(--d));
  }

  75% {
    transform: rotate(calc(var(--d) - 10deg));
  }

  100% {
    transform: rotate(var(--d));
  }
}

/* @keyframes swing {
  0% {
    transform: rotate(calc(var(--d) - 10deg));
  }

  25% {
    transform: rotate(var(--d));
  }

  50% {
    transform: rotate(calc(var(--d) + 10deg));
  }

  75% {
    transform: rotate(var(--d));
  }

  100% {
    transform: rotate(calc(var(--d) - 10deg));
  }
} */


/* @keyframes swing {
  0% {
    transform: rotate(calc(var(--d)-10)deg);
  }

  50% {
    transform: rotate(var(--d)deg);
  }

  100% {
    transform: rotate(calc(var(--d)-10)deg);
  }
} */

/* @keyframes move {
  0% {
    transform: translateX(calc(var(--d) * -1));
  }

  100% {
    transform: translateX(var(--d));
  }
}

@keyframes movesmall {
  0% {
    transform: translateX(calc(var(--d) * -1)) scale(0.7);
  }

  100% {
    transform: translateX(var(--d)) scale(0.7);
  }
} */


/*
.olox_weather .olox-m-weather {
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.olox_weather .humidity,
.olox_weather .wind {
  font-size: 15px;
  line-height: 1;
} 
.olox_weather.olox-layout--simple .olox-m-city {
  margin: 0 10px 0 0;
  font-size: 15px;
  color: #000;
}


.olox_weather .olox-m-other-days {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  line-height: 1.6em;
  color: #000;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.olox_weather .olox-m-other-days .weather-inner {
  width: 100%;
  margin: 17px 0;
}

.olox_weather .olox-m-other-days .weather-icon {
  font-size: 22px;
  letter-spacing: 0;
  margin: 0 4px 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 38px;
  text-align: center;
}

.olox_weather .olox-m-other-days .temperature {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.olox_weather .olox-m-other-days .olox-m-day {
  min-width: 40px;
}

.olox-header--light:not(.olox-header--sticky-display) .olox_weather {
  color: #fff;
}

.olox-header--light:not(.olox-header--sticky-display) .olox_weather .temperature {
  color: #fff;
}

.olox-header--light:not(.olox-header--sticky-display) .olox_weather .olox-m-other-days {
  color: #fff;
}

.olox-header--light:not(.olox-header--sticky-display) .olox_weather.olox-layout--simple .olox-m-city {
  color: #fff;
}

.olox-sticky-header--light .olox_weather {
  color: #fff;
}

.olox-sticky-header--light .olox_weather .temperature {
  color: #fff;
}

.olox-sticky-header--light .olox_weather .olox-m-other-days {
  color: #fff;
}

.olox-sticky-header--light .olox_weather.olox-layout--simple .olox-m-city {
  color: #fff;
}

#olox-page-footer .olox_weather {
  color: #fff;
}

#olox-page-footer .olox_weather .temperature {
  color: #fff;
}

#olox-page-footer .olox_weather .olox-m-other-days {
  color: #fff;
}

#olox-page-footer .olox_weather.olox-layout--simple .olox-m-city {
  color: #fff;
} */