/* =========================================================
   CHANNEL FINDER
   ========================================================= */

.channel-finder {
	margin: 0 0 40px 0;
}

.channel-finder h1 {
	margin-bottom: 48px;
}

.times-notice
{
	font-size:14px;
	margin-top:14px !important;
	font-style:italic !important;
}


/* =========================================================
   FIND STATION HEADER
   ========================================================= */

.find-station
{
	margin-bottom: 40px;
}

.find-station p,
.stream-heading p {
	color: #8a8a8a;
	margin: 0;
}

.find-station h2,
.stream-now h2 {
	font-family: "Untitled Serif", Georgia, serif;
	color: #222;
	font-size: 32px;
}

.find-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 0 16px;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 20px;
}


/* =========================================================
   STATE BUTTONS
   ========================================================= */

.state-links {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	width: 60%;
}

.state-box {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px 9px;
	font-size: 16px;
	color: #8a8a8a;
	text-decoration: none;
	text-transform: uppercase;
	border: 1.5px solid #d9d9d9;
	background: #fbfbfb;
	border-radius: 4px;
	transition: all 0.3s ease-in;
}

.state-box:hover {
	border-color: #111111;
	color: #111111;
}


/* =========================================================
   STATE ACCORDION
   ========================================================= */

.state-group {
	border-top: 1px solid #111;
}

.state-group:last-child {
	border-bottom: 1px solid #111;
}

.state-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	cursor: pointer;
}

.state-head h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	display: flex;
	align-items: baseline;
	gap: 12px;
	font-family: "Untitled Serif", Georgia, serif;
}

.state-head .count {
	font-size: 11px;
	color: #8a8a8a;
	font-weight: bold;
	text-transform: lowercase;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

.chev {
	transition: transform 0.2s ease;
}

.chev svg {
	width: 16px;
	height: 16px;
	display: block;
}

.state-group.open .chev {
	transform: rotate(90deg);
}


/* =========================================================
   ACCORDION CONTENT
   ========================================================= */

.state-table {
	display: none;
	padding-bottom: 24px;
}

.state-group.open .state-table {
	display: block;
}


/* =========================================================
   CHANNEL TABLE
   ========================================================= */

.row-head,
.row {
	display: grid;
	grid-template-columns: 2fr 2fr 1fr;
	gap: 24px;
	align-items: center;
}

.row-head {
	padding: 12px 0;
	border-bottom: 1px solid #111;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #8a8a8a;
}

.row {
	padding: 16px 0;
	border-bottom: 1px dashed #d9d9d9;
}

.row:last-child {
	border-bottom: 0;
}

.station {
	color: #222;
}

.time.tbd {
	color: #8a8a8a;
	font-style: italic;
}


/* =========================================================
   STREAM LIST
   ========================================================= */

.stream-single {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed #d9d9d9;
	padding: 15px 0;
	align-items: center;
}

.stream-name {
	color: #111111;
	font-weight: bold;
	font-size: 18px;
	margin: 0;
}

.stream-list a {
	color: #111111;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
}

.stream-list a:hover {
	text-decoration: underline;
}

.stream-list svg {
	height: 15px;
	width: 15px;
}

.stream-heading {
	border-bottom: 1px solid #111111;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.stream-now {
	margin-bottom: 40px;
}


/* =========================================================
   MOBILE — CHANNEL FINDER
   ========================================================= */

@media (max-width: 768px) {

	.find-station {
		padding-bottom: 0;
	}

	.find-row {
		padding: 0;
	}

	.find-station h2 {
		font-size: 28px;
	}

	.state-links {
		width: 100%;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-top: 15px;
		padding-bottom: 20px;
		border-bottom: 1px solid #111111;
		gap: 10px;
	}

	.state-box {
		flex-shrink: 0;
	}

	.state-box:hover {
		border-color: #111111;
		color: white;
		background: #111111;
	}

	.state-group {
		border-top: 0;
		border-bottom: 1px solid #e2e2e2;
	}

	.state-group:last-child {
		border-bottom: 1px solid #e2e2e2;
	}

	.state-head h3 {
		font-size: 22px;
	}

	.row-head {
		display: none;
	}

	.row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 16px 0;
	}

	.market,
	.station,
	.time {
		font-size: 14px;
	}

	.time {
		text-align: right;
		margin-top: -55px;
	}

	.time_wrap {
		background: #f4f4f4;
		padding: 5px;
	}

	.time.tbd .time_wrap {
		background: white;
		border: 1px solid #e2e2e2;
	}
}