/* CSS for the ACIS Weather Forecast page */

#currentConditionsContainer {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

#current-conditions-icon-block {
	font-size: 16px;
	text-align: center;
	line-height: 1em;

	padding-top: 0.5em;

	width: 110px;
	flex-basis: 110px;
	flex-grow: 0;
}

#currentConditionsIconContainer {
	text-align: center;
	min-width: 110px;
}

.current-conditions-table-container {
	text-align: center;
	margin-right: 10px;
	width: 200px !important;
}

#forecastContainer {
	position: relative;
	width: 97%;

	margin-left: auto;
	margin-right: auto;
}

#watchWarningContainer #description {
	margin-left: 12px;
	margin-right: 12px;
	width: 100%;
}

.forecast-table {
	border: black 2px;
	background: #fcfcfc;

	margin-top: 10px;
	width: 100%;

	-moz-box-shadow: 3px 3px 4px #E0E0E0;
	-webkit-box-shadow: 3px 3px 4px #E0E0E0;
	box-shadow: 3px 3px 4px #E0E0E0;
}

#extendedForecastContainer {
	width: 100%;
	overflow-x: auto;
}

#extendedForecast {
	margin-left: auto;
	margin-right: auto;
	display: table;
	border-spacing: 8px;
}

.extended-forecast-table {
	display: table-row;
}

.forecast-tile-spacer {
	display: table-cell;

	border: 2px;

	height: 100%;
	min-width: 117px;
	max-width: 117px;
	width: 117px;

	vertical-align: top;
}

.forecast-tile {
	display: table-cell;

	border: black 2px;
	background: #fcfcfc;

	height: 100%;
	min-width: 117px;
	max-width: 117px;
	width: 117px;

	-moz-box-shadow: 3px 3px 4px #E0E0E0;
	-webkit-box-shadow: 3px 3px 4px #E0E0E0;
	box-shadow: 3px 3px 4px #E0E0E0;

	font-size: 16px;

	vertical-align: top;
}

.forecast-date-heading {
	text-align: center;
	width: 100%;
	margin-bottom: 3px;
}

.forecast-block {
	min-height: 120px;
	width: 100%;
}

.forecast-icon-block {
	position: absolute;
	left: 10px;

	margin-top: auto;
	margin-bottom: auto;

	font-size: 16px;
	text-align: center;
	line-height: 1em;

	width: 110px;
	min-width: 110px;
	max-width: 110px;
}

.forecast-temp-block {
	position: absolute;
	left: 130px;

	padding-left: 6px;
	padding-right: 6px;

	vertical-align: middle;
	text-align: left;
	line-height: 1em;

	width: 150px;
	min-width: 150px;
	max-width: 150px;
}

.forecast-temp-block div {
 	font-size: 16px;
	line-height: 1.2em;

	width: 100%;
}

.forecast-text-block {
	position: relative;
	left: 280px;

	padding-left: 6px;
	padding-right: 6px;
	text-align: left;
}

.forecast-mobile-text-block {
	padding: 0px 8px 4px 8px;
	text-align: left;
	width: 100%;
}

.forecast-label {
	font-weight: bold;
	text-align: left
}

.forecast-value {
	text-align: right;
	width: 100%;
}

.watch {
	background: #FFD966 !important;
}

.warning {
	background: #FF8C66 !important;
}

.high {
	color: #EE0000;
}

.steady {
	color: #FF531A;
}

.low {
	color: #0000DD;
}
