@charset "UTF-8";
/* < 576 */
/* > 576 < 768 */
/* > 768 < 992 */
/* > 992 < 1200 */
/* > 1200 < 1400 */
/* > 1400 */
/* Bases for modals */
.current-conditions {
  width: 100% !important;
}

.weather-table tr th, .weather-table tr td {
  vertical-align: top;
  padding-bottom: 0.5em;
}

.map-card {
  border: 1px solid rgba(88, 125, 148, 0.2);
  box-sizing: border-box;
  background: rgba(245, 245, 245, 0.64);
  border-radius: 0.5em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (prefers-color-scheme: dark) {
  .map-card {
    border: 1px solid rgba(88, 125, 148, 0.4);
    background: rgba(0, 0, 0, 0.2);
  }
}
.map-card .map-card-header {
  background-color: rgba(88, 125, 148, 0.2);
  color: var(--body-fg);
  font-weight: 700;
  text-align: center;
  padding: 0.5em;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(88, 125, 148, 0.1);
}
.map-card .map-card-body {
  padding: 1em;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.map-card .service-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.map-card .service-links .service-link {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(88, 125, 148, 0.5);
  border-radius: 1em;
  padding: 0.8em;
  text-decoration: none;
}
.map-card .service-links .service-link:hover {
  border: 1px solid #587d94;
  color: var(--body-bg);
  background: #587d94;
}
.map-card .leaflet-container {
  border: 1px solid #587d94;
  width: 100% !important;
  max-width: 600px !important;
  height: 400px !important;
  margin: 0 0 10px 0;
  border-radius: 0.5em;
}

.forecast {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
  margin-top: 1.1em;
}
.forecast .forecast-day-card {
  border: 1px solid rgba(88, 125, 148, 0.2);
  box-sizing: border-box;
  background: rgba(245, 245, 245, 0.6);
  border-radius: 0.5em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.forecast .forecast-day-card:hover {
  border: 1px solid rgba(88, 125, 148, 0.6);
}
.forecast .forecast-day-card:hover .forecast-card-header {
  background-color: rgba(88, 125, 148, 0.6);
}
@media (prefers-color-scheme: dark) {
  .forecast .forecast-day-card {
    border: 1px solid rgba(88, 125, 148, 0.15);
    background: rgba(var(--body-quiet-color), 0.15);
  }
}
.forecast .forecast-day-card .forecast-card-header {
  background-color: rgba(88, 125, 148, 0.2);
  color: var(--body-fg);
  font-weight: 700;
  text-align: center;
  padding: 0.5em;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(88, 125, 148, 0.1);
}
.forecast .forecast-day-card .forecast-card-body {
  padding: 1em;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.forecast .forecast-day-card .forecast-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 1em;
}
.forecast .forecast-day-card .forecast-hero-visual .forecast-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: auto;
}
.forecast .forecast-day-card .forecast-hero-visual .forecast-icon-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.1));
}
.forecast .forecast-day-card .forecast-hero-visual .forecast-temp-display {
  font-size: 4rem;
  font-weight: 800;
  color: var(--body-loud-color);
  line-height: 1;
}
.forecast .forecast-day-card .forecast-hero-visual .forecast-temp-display .temp-unit-small {
  font-size: 1.1rem;
  font-weight: 400;
  color: #587d94;
  vertical-align: super;
}
.forecast .forecast-day-card .forecast-rain-pill {
  align-self: center;
  background: rgba(88, 125, 148, 0.1);
  color: #587d94;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.forecast .forecast-day-card .forecast-card-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-bottom: 1em;
}
.forecast .forecast-day-card .forecast-card-metrics .metric-pair-row {
  display: flex;
  gap: 0.5em;
  width: 100%;
}
.forecast .forecast-day-card .forecast-card-metrics .metric-pair-row .metric-block {
  border: 1px solid rgba(88, 125, 148, 0.05);
  width: 50%;
  background: rgba(245, 245, 245, 0.4);
  border-radius: 0.5em;
  padding: 0.4em 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (prefers-color-scheme: dark) {
  .forecast .forecast-day-card .forecast-card-metrics .metric-pair-row .metric-block {
    background: rgba(255, 255, 255, 0.03);
  }
}
.forecast .forecast-day-card .forecast-card-metrics .metric-pair-row .metric-block .metric-lbl {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #587d94;
  margin-bottom: 0.25em;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.forecast .forecast-day-card .forecast-card-metrics .metric-pair-row .metric-block .metric-lbl .wi {
  font-size: 1rem;
  text-align: center;
  width: 1.2em;
}
.forecast .forecast-day-card .forecast-card-metrics .metric-pair-row .metric-block .metric-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--body-fg);
}
.forecast .forecast-day-card .forecast-card-metrics .metric-pair-row .metric-block .display-wind-val {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #895A74;
  font-weight: 700;
  gap: 0.5em;
}
.forecast .forecast-day-card .forecast-card-metrics .metric-pair-row .metric-block .display-wind-val .forecast-wind-icon {
  font-size: 2.4rem !important;
  line-height: 1;
  color: #895A74;
  display: inline-block;
}
.forecast .forecast-day-card .forecast-card-details {
  line-height: 1.4;
  color: var(--body-fg);
  border-top: 1px solid rgba(88, 125, 148, 0.15);
  padding-top: 0.9em;
  margin-top: auto;
}

.weather-widget-container {
  color: var(--body-fg);
}
.weather-widget-container .weather-card-main {
  padding: 1.25em;
  margin-bottom: 1em;
}
.weather-widget-container .weather-hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
}
.weather-widget-container .weather-display-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.weather-widget-container .weather-circle {
  width: 16em;
  aspect-ratio: 1/1;
  border: 5px solid #587d94;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
}
.weather-widget-container .weather-circle .weather-circle-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  gap: 0.5em;
}
.weather-widget-container .weather-circle .temp-range div {
  font-size: 1.5em;
}
.weather-widget-container .weather-circle .temp-range div:after {
  content: "°";
}
.weather-widget-container .weather-circle .temp-range div:first-of-type {
  border-right: 1px solid #895A74;
}
.weather-widget-container .weather-display-temp {
  font-size: 5em;
  font-weight: 800;
  line-height: 1;
  color: var(--body-loud-color);
}
.weather-widget-container .weather-display-unit {
  font-size: 1.5rem;
  font-weight: 300;
  align-self: flex-start;
  color: #587d94;
}
.weather-widget-container .feels-like-card {
  border: 1px solid #587d94;
  display: flex;
  flex-direction: column;
  border-radius: 0.5em;
}
.weather-widget-container .feels-like-card .feels-like-title, .weather-widget-container .feels-like-card .feels-like-body {
  padding: 0 0.5em 0 0.5em;
}
.weather-widget-container .feels-like-card .feels-like-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #895A74;
  font-size: 0.9em;
  text-transform: uppercase;
}
.weather-widget-container .weather-display-feels-like {
  font-weight: 800;
  line-height: 1;
  color: var(--body-loud-color);
}
.weather-widget-container .feels-like-unit {
  font-size: 1rem;
  font-weight: 200;
  align-self: flex-start;
  color: #895A74;
}
.weather-widget-container .weather-metric-box {
  background: rgba(245, 245, 245, 0.72);
  border-left: 0.25em solid #895A74;
  border-radius: 0.5em;
  padding: 0.75em;
  margin-bottom: 1em;
  height: calc(100% - 1em);
}
@media (prefers-color-scheme: dark) {
  .weather-widget-container .weather-metric-box {
    background: rgba(0, 0, 0, 0.15);
  }
}
.weather-widget-container .weather-metric-title {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #587d94;
  font-weight: 600;
  margin-bottom: 0.25em;
}
.weather-widget-container .weather-metric-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--body-fg);
}
.weather-widget-container .chart-wrapper-box {
  max-width: 180px;
  margin: 0 auto;
  position: relative;
}
.weather-widget-container .compass-ui-wrapper {
  max-width: 200px;
  margin: 0 auto;
  position: relative;
  padding: 0.125em;
}
.weather-widget-container .compass-dial {
  width: 100%;
  height: auto;
  overflow: visible;
}
.weather-widget-container .compass-dial .compass-ring-outer {
  fill: none;
  stroke: rgba(88, 125, 148, 0.25);
  stroke-width: 1;
}
.weather-widget-container .compass-dial .compass-ring-inner {
  fill: none;
  stroke: rgba(88, 125, 148, 0.1) 2px;
  stroke-width: 1;
  stroke-dasharray: 2 3;
}
.weather-widget-container .compass-dial text {
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
}
.weather-widget-container .compass-dial .coord-major {
  font-size: 1em;
  fill: #587d94;
}
.weather-widget-container .compass-dial .coord-minor {
  font-size: 0.75em;
  fill: #895A74;
}
.weather-widget-container .compass-dial .coord-micro {
  font-size: 0.5em;
  fill: var(--body-fg);
  font-weight: 500;
}
.weather-widget-container .compass-dial .compass-needle-group {
  transform-origin: 60px 60px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.weather-widget-container .compass-dial .compass-needle-group .needle-chevron {
  fill: none;
  stroke: rgb(255, 53, 94);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.weather-widget-container .compass-dial .compass-needle-group .needle-chevron-shaft {
  stroke: rgb(255, 53, 94);
  stroke-width: 2;
  stroke-linecap: round;
}
.weather-widget-container .compass-dial .compass-needle-group .needle-body-left {
  fill: rgb(132, 139, 121);
}
.weather-widget-container .compass-dial .compass-needle-group .needle-body-right {
  fill: rgb(112.268, 118.456, 102.544);
}
.weather-widget-container .compass-dial .compass-needle-group .needle-center-pin {
  fill: var(--body-bg);
  stroke: #587d94;
  stroke-width: 1.5;
}
.weather-widget-container .compass-dial .compass-needle-group #wind-header {
  border-bottom: 1px solid #587d94;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.weather-widget-container #wind-stats {
  margin-top: 1em;
  border-top: 1px solid #587d94;
  padding-top: 0.5em;
}
.weather-widget-container #wind-stats .wind-stat-container .wind-stat-label {
  text-transform: uppercase;
  font-weight: bold;
  color: #587d94;
}
.weather-widget-container #wind-stats .wind-stat-container .wind-stat-value {
  font-size: 2em;
}
.weather-widget-container .text-muted-xs {
  font-size: 0.75rem;
  color: var(--body-quiet-color);
}
.weather-widget-container .flex-row-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.weather-widget-container .flex-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.weather-widget-container .hidden {
  display: none !important;
}

.weather-charts-container {
  gap: 0.5em;
}
.weather-charts-container .card {
  border: 1px solid rgba(88, 125, 148, 0.2);
  box-sizing: border-box;
  background: rgba(245, 245, 245, 0.64);
  border-radius: 0.5em;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (prefers-color-scheme: dark) {
  .weather-charts-container .card {
    border: 1px solid rgba(88, 125, 148, 0.4);
    background: rgba(0, 0, 0, 0.2);
  }
}
.weather-charts-container .card .card-title {
  background-color: rgba(88, 125, 148, 0.2);
  color: var(--body-fg);
  font-weight: 700;
  text-align: center;
  padding: 0.5em;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(88, 125, 148, 0.1);
}
.weather-charts-container .card .card-body {
  padding: 1em;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.weather-charts-container .card .card-body canvas {
  border: 1px solid rgba(88, 125, 148, 0.5);
  border-radius: 0.5em;
}
.weather-charts-container .card .weather-chart {
  width: 100%;
}

.style-label {
  text-transform: uppercase;
  font-weight: bold;
  color: #587d94;
}

@media (max-width: 768px) {
  .row {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .current-conditions {
    max-width: 300px !important;
  }
  .forecast {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .forecast .forecast-day-card {
    width: calc((100% - 45px) / 4);
  }
}

/*# sourceMappingURL=weather.css.map */
