:root {
	--warning: rgb(241, 37, 0);
	--watch: #4e5766;
	--statement: #8a96ab;
	--school: rgb(255,155,94);
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	color: rgb(29, 29, 31);
	max-width: 640px;
	margin: 0 auto;
	padding: 1rem;
	font-weight: 400;
}

a {
	color: #06c;
	text-decoration-color: transparent;
	transition: text-decoration-color .25s ease-in-out;
}
a:hover {
	text-decoration-color: #06c;
}


h1 {
	font-size: 3rem;
	line-height: 1em;
	font-weight: 700;
}

h1 {
	font-size: 3rem;
}

h1 small {
	font-size: 1.5rem;
	line-height: 1em;
	display: block;
	font-weight: 500;
	color: #888;
}


.current {
	text-align: center;
}

table.keyvalue {
	margin: 0 auto 1rem auto;
}
table.keyvalue tr > * {
	padding: .25em .5em;
}
table.keyvalue th {
	width: 49%;
	text-align: right;
}
table.keyvalue td {
	text-align: left;
}



.hours, .days, pre {
	font-family: 'IBM Plex Mono';
}

ul.hours {
	display: flex;
	overflow-x: scroll;
	scroll-snap-type: x proximity;
	background: #f5f5f5;
	margin: 1rem -1rem;
	padding: 1rem;
	gap: 1.5rem;
}
@media (min-width: 650px) {
	ul.hours {
		border-radius: 5px;
	}
}
ul.hours li {
	flex-shrink: 0;
	/* width: 3rem; */
	/* max-width: 6rem; */
	/* padding: 0 .5em; */
	text-align: center;
	/* scroll-snap-align: start; */
	scroll-snap-align: end;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	padding: 0;
	/* margin-right: 0; */
}

ul.hours li img {
	width: 2rem;
	height: auto;
	display: block;
	margin: 0 .35rem;
}

ul.hours .temperature {
	font: 400 1.18rem/110% inherit;
	letter-spacing: -.07em;
	padding: 0;
}

ul.hours .time {
	font: 400 .9rem/110% inherit;
	padding: .3rem 0;
	display: block;
	width: 100%;
}

ul.hours .precipitation {
	font-size: 1rem;
	padding: .3rem 0;
}







table.days {
	width: 100%;
	font-size: smaller;
	/* max-width: 60rem; */
	/* font-weight: 400; */
}
table.days tr td:nth-child(2) {
/* 	width: 1.75rem; */
}
table.days tr td:nth-child(2) img {
	width: 2rem;
	height: auto;
}
table.days tr td:nth-child(3) {
	width: 100%;
}
table.days td range {
	padding: 0 1rem;
	display: flex;
	height: auto;
	vertical-align: center;
	justify-content: center;
	align-items: center;
}
table.days td range low {
	flex-basis: 40%;
	text-align: right;
}
table.days td range span {
	flex-grow: 1;
	background: #0001;
	background: rgb(86,201,237);
	/* background: var(--accent); */
	color: transparent;
	border-radius: 1rem;
	margin: 0 .3em;
	line-height: .8em;
}
table.days td range high {
	flex-basis: 40%;
}
table.days td range low:after,
table.days td range high:after {
	content: "°";
}


/* hide pop */
table.days tr > *:last-child {
/* 	display: none; */
}


table.tabular {
	width: 100%;
}
table th {
	text-align: left;
}



details {
	background-color: rgb(255, 255, 100);
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 .5rem .5rem -.5rem #0003;
}
details+details {
	margin-top: .5rem;
}
details.warning {
	background-color: var(--warning);
	color: #fff;
}
details.watch {
	background-color: var(--watch);
	color: #fff;
}
details.statement {
	background-color: var(--statement);
	color: #fff;
}

details > * {
	padding: 1rem;
}
details summary {
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: .05em;
	display: flex;
	justify-content: space-between;
}
details>summary::-webkit-details-marker {
	display: none;
}
details>summary::after {
	display: block;
	content: '+';
	transform: rotate(0deg);
	transition: transform .25s ease;
}
details[open]>summary::after {
	transform: rotate(45deg);
}
details div {
	font-family: 'IBM Plex Mono';
}
details time {
	text-decoration: underline;
}
mark {
	/* background-color: rgb(255, 255, 100); */
}


hr {
	height: 1px;
	background-color: #eee;
	margin: 2rem 0;
	border: none;
}

.nowrap {
	white-space: nowrap;
}


footer {
	margin-top: 3rem;
	border-top: 1px solid #eee;
	font-size: smaller;
	padding-top: 1em;
	color: #999;
}







.Button {
	appearance: none;
	outline: none;
	display: inline-block;
	font: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 120%;
	margin: 0;
	border: 2px solid transparent;
	padding: .55em 1.5em;
	border-radius: 2em;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	color: #fff;
	background: var(--watch);
	text-decoration: none;
}

.Button::after {
	content: "";
	display: block;
	background: #fff;
	height: 2px;
	margin-top: -2px;
	transform: scaleX(0);
	transform-origin: left;
	transition:transform .3s ease-out
}

.Button:hover::after {
	transform:scaleX(1)
}

.Button + .Button {
	margin-left: 1rem;
}

a.Button:hover {
	text-decoration: none;
}


section.notice {
	/* border: 2px solid var(--warning); */
	border-radius: 5px;
	padding: 1rem;
	background-color: var(--warning);
	color: #fff;
	font-weight: 500;
	margin: 0 0 1rem 0;
	display: flex;
	gap: 1rem;
	align-items: center;
}

section.notice span {
	display: block;
	font-size: 2.5rem;
	flex-grow: 0;
}


pre.ad {
	display: inline-block;
	font-size: smaller;
	/* color: #aaa; */
	/* padding: .5em 1em;
	border: 1px solid #ccc;
	border-radius: 5px; */
}




.farmarket {
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 .5rem .5rem -.5rem #0003;
}
.farmarket > div {
	display: flex;
	gap: 1px;
	padding-top: 1px;
}
.farmarket > div img {
	display: block;
	width: 100%;
	height: auto;
}
.farmarket > h3 {
	background: rgb(254, 56, 92);
	margin: 0;
}
.farmarket > h3 img {
	height: 1.5rem;
	width: auto;
	padding: .5em 1em .35em;
}