/*
	This is the core css file for the weather plugin if you need to change it please extended it on your client 
*/

.header .weather {max-width: 230px; position: relative; margin-top: 0; margin-right: 1em; float: left;}
.header .weather h2 {font-size: 1.2em; padding-top: 0;}
.header .weather h2 span {
	font-family:'DIN Next LT W04 Light';
	font-size: .6em;
	display: inline-block;
	vertical-align: bottom;
	font-weight: 400;
	position: relative;
	top: -2px;
}
.header .weather .temp {
	font-family:'DIN Next LT W04 Light';
	font-weight: 700;
	color: #29dbe7;
	float: left;
	padding: 9px 15px;
	opacity: 1;
}
.header .weather .temp:hover {background: #fff; color: #000; text-decoration: none;}
.header .weather .temp:hover .icon {border-top-color: #000;}
.header .weather .temp .icon {
	margin-left: .25em;
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #29dbe7;
	vertical-align: middle;
	-webkit-transition: all .15s;
	-moz-transition: all .15s;
	-o-transition: all .15s;
	-ms-transition: all .15s;
	transition: all .15s
}
.header .weather .temp.inactive {opacity: 0;}
.header .weather .weather-info {
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all .15s;
	background: #fff;
	clear: both;
	position: absolute;
	width: 250px;
	top: 40px;
	z-index: 100
}
.header .weather.isActive .temp {background: #fff; color: #000; text-decoration: none;}
.header .weather.isActive .temp .icon {border-top: 0; border-bottom: 5px solid #000;}
.header .weather.isActive .weather-info {max-height: 1000px;}
.header .weather .current-weather {padding: 15px; position: relative;}
.header .weather .current-weather:after {display: block; content: ''; clear: both;}
.header .weather .current-weather .temp {padding: 0; font-size: 2.2em; color: #29dbe7; line-height: 1em; margin-top: 5px;}
.header .weather .current-weather .temp img {display: inline-block; vertical-align: top; position: relative; top: 3px; margin-left: 10px;}
.header .weather .current-weather p {font-size: 0.8em; display: block; clear: both; padding: 0; font-weight: 700;}
.header .weather .current-weather .y-logo {
	display: block;
	position: absolute;
	right: 15px;
	bottom: 15px;
	background: url(/includes/public/assets/images/yahoo-logo.png) no-repeat;
	width: 19px;
	height: 11px;
	overflow: hidden;
	text-indent: -9999px
}
.header .weather .forecast {list-style: none; padding: 0;}
.header .weather .forecast li {width: 100%; padding: 15px 10px; background: #f3f3f3; border-top: solid 1px #dcdcdc; font-weight: 700;}
.header .weather .forecast li>span {display: block; width: 50%; text-align: right; float: left; font-size: 0.9em;}
.header .weather .forecast li>span.day {text-align: left;}
.header .weather .forecast li>span span.gray {color: #888;}
.header .weather .forecast li:after {display: block; content: ""; clear: both;}