@media only screen {
	.weatherWidget {
		position: relative;
		display: block;
		margin-bottom: 60px;
		height: 350px;
	}
	.weatherWidget .weatherBackground {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		z-index: 1;
	}
	.weatherWidget .weatherBackgroundGradient {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: transparent;
		background-repeat: no-repeat;
		background-image: -webkit-linear-gradient(top, transparent 25%, rgba(7,201,249,0.9) 100%);
		background-image:    -moz-linear-gradient(top, transparent 25%, rgba(7,201,249,0.9) 100%);
		background-image:     -ms-linear-gradient(top, transparent 25%, rgba(7,201,249,0.9) 100%);
		background-image:      -o-linear-gradient(top, transparent 25%, rgba(7,201,249,0.9) 100%);
		background-image:		  linear-gradient(top, transparent 25%, rgba(7,201,249,0.9) 100%);
	}
	.weatherWidget .weatherCurrent {
		display: block;
		position: relative;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		padding: 0;
		overflow: hidden;
		z-index: 3;
	}
	.weatherWidget .currentWrapper {
		display: block;
	}
	.weatherWidget .weatherCurrent .weatherWrapper {
		position: relative;
		display: block;
		height: 150px;
	    margin: 40px 0 0;
		border-bottom: 1px solid white;
	}
	.weatherWidget .weatherCurrent .weatherTemp {
		display: inline-block;
		position: absolute;
		left: 10px;
		top: 0;
		height: 140px;
		font-size: 140px;
		line-height: 140px;
		color: white;
	}
	.weatherWidget .weatherCurrent .deg {
		position: relative;
		top: -20px;
		color: white;
		font-size: 80px;
		line-height: 80px;
	}
	.weatherWidget .weatherCurrent .weatherInfo {
		position: absolute;
		right: 10px;
		top: 75px;
		display: inline-block;
		max-width: 85px;
		padding: 0;
		color: white;
		text-transform: uppercase;
		text-align: center;
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 1px;
		border-bottom: 2px solid white;
	}
	.weatherWidget .weatherForecast {
		display: block;
		position: relative;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
		overflow: hidden;
		padding: 10px 0;
		z-index: 2;
	}
	.weatherWidget .forecastWrapper {
		display: block;
		position: relative;
		padding: 0;
		margin: 0 auto;
	}
	.weatherWidget .forecastWrapper .forecastDetails {
		position: relative;
		display: inline-block;
		vertical-align: top;
		text-transform: uppercase;
		text-align: center;
		width: 20%;
		float: left;
	}
	.weatherWidget .weatherForecast .weatherDay,
	.weatherWidget .weatherForecast .weatherIcon,
	.weatherWidget .weatherForecast .weatherTemp {
		display: block;
		position: relative;
		color: white;
		margin: 15px auto;
	}
	.weatherWidget .weatherForecast .weatherDay {
		font-size: 22px;
		line-height: 22px;
	}
	.weatherWidget .weatherForecast .weatherIcon {
		margin-right: 3px;
		font-size: 20px;
		vertical-align: top;
		height: 33px;
	}
	.weatherWidget .weatherForecast .weatherIcon img {
		height: 33px;
	}
	.weatherWidget .weatherForecast .weatherTemp {
		font-size: 19px;
		line-height: 19px;
		height: 30px;
	}
	.weatherWidget .weatherLabelWrapper,
	.weatherWidget .weatherLabel {
		display: none;
	}
}
@media only screen and (min-width: 800px) {
	.weatherWidget {
		height: 400px;
	}
	.weatherWidget .weatherCurrent {
		max-width: 360px;
	}
	.weatherWidget .weatherCurrent .weatherWrapper {
		height: 180px;
	    margin: 60px auto 0;
	}
	.weatherWidget .weatherCurrent .weatherTemp {
		font-size: 160px;
		line-height: 160px;
	}
	.weatherWidget .weatherCurrent .deg {
		top: -30px;
	}
	.weatherWidget .weatherCurrent .weatherInfo {
		top: 95px;
	}
	.weatherWidget .forecastWrapper {
		width: 100%;
	}
	.weatherWidget .weatherForecast {
		max-width: 360px;
		margin: 0 auto;
	}
	.weatherWidget .weatherForecast .weatherDay,
	.weatherWidget .weatherForecast .weatherIcon,
	.weatherWidget .weatherForecast .weatherTemp {
		margin: 10px auto;
	}
}
@media only screen and (min-width: 64.063em) {
	.weatherWidget {
		width: 90%;
	}
	.weatherWidget .weatherLabelWrapper {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
	}
	.weatherWidget .weatherLabelWrapper .weatherLabel {
		display: block;
		position: absolute;
		text-transform: uppercase;
		white-space: nowrap;
	}
	.weatherWidget .weatherLabelWrapper .weatherLabel.labelInfo {
		top: 10px;
		right: 0;
	}
	.weatherWidget .weatherLabelWrapper .weatherLabel.labelHeader {
		top: 10px;
		right: 100px;
	}
}
@media only screen and (min-width: 1200px) {
	.weatherWidget {
		width: 85%;
		margin-left: 40px;
	}
}
@media only screen and (min-width: 1600px) {
	.weatherWidget {
		max-width: 1400px;
		height: 490px;
	}
	.weatherWidget .weatherCurrent .weatherWrapper {
	    margin: 100px auto 0;
	}
	.weatherWidget .weatherLabelWrapper {
		right: -60px;
	}
	.weatherWidget .weatherLabelWrapper .weatherLabel.labelInfo {
		top: -45px;
	}
	.weatherWidget .weatherLabelWrapper .weatherLabel.labelHeader {
		top: -45px;
	}
}
