#weather-forecast{
	padding: 10px 20px;
	min-height: 180px;
}

#weather-forecast div,
#weather-forecast h3,
#weather-forecast h4,
#weather-forecast p{
	font-family: "Raleway", sans-serif;
}

#weather-forecast h3{
	font-size: 50px;
}

#weather-forecast h4{
	font-size: 20px;
}

#weather-forecast p{
	font-size: 16px;
	line-height: 24px;
}

.wf-sunny{
	background-image: linear-gradient(#fff, #b8eef1);
}

.wf-sunny-partly-cloudy{
	background-image: linear-gradient(#f6f6f6, #b8eef1);
}

.wf-cloudy{
	background-image: linear-gradient(#eee, #b8eef1);
}

.wf-sunny-partly-cloudy-isolated-rain{
	background-image: linear-gradient(#b8eef1, #ccc);
}

.wf-thunder_light_rain{
	background-image: linear-gradient(#fff, #bbb);
}

.wf-rainy{
	background-image: linear-gradient(#eee, #bbb);
}

.wf-heavy-rain{
	background-image: linear-gradient(#ddd, #bbb);
}

.wf-thunder{
	background-image: linear-gradient(#ccc, #bbb);
}


.wf-detail-info{
	max-width: 240px;
    position: relative;
   	min-height: 120px;
}

.wf-temperature{
	position: absolute;
	right:0;
	width: 90px;
}

.wf-humidity-wind{
	position: relative;
	top:100px;
}

.wf-icon{
    width: 100%;
    height: 100%;
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
}

.wf-condition-icon{
	max-height: 110px;
	max-width: 120px;
}

.wf-humidity-icon,
.wf-wind-speed-icon{
	height: 28px;
	font-size: 16px;
	font-weight: 600;
	padding-left: 20px;
}

.wf-humidity-icon{
    background-image: url(../images/weather-forecast/humidity.svg);
    width: 60px;
    
}

.wf-wind-speed-icon{
    background-image: url(../images/weather-forecast/windSpeed.svg);
    width: 140px;
    right:0;
    padding-left: 40px;
}

.wf-update-time{
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 0;
}

.wf-sunny .wf-condition-icon{
	background-image: url(../images/weather-forecast/sunny.svg);
}

.wf-sunny-partly-cloudy .wf-condition-icon{
	background-image: url(../images/weather-forecast/sunny_partly_cloudy.svg);
}

.wf-cloudy .wf-condition-icon{
	background-image: url(../images/weather-forecast/cloudy.svg);
}

.wf-rainy .wf-condition-icon{
	background-image: url(../images/weather-forecast/heavy_rain.svg);
}

.wf-light-rain .wf-condition-icon{
	background-image: url(../images/weather-forecast/light_rain.svg);
}

.wf-heavy-rain .wf-condition-icon{
	background-image: url(../images/weather-forecast/heavy_rain.svg);
}

.wf-thunder .wf-condition-icon{
	background-image: url(../images/weather-forecast/thunder.svg);
}

.wf-thunder_light_rain .wf-condition-icon{
	background-image: url(../images/weather-forecast/thunder_light_rain.svg);
}

.wf-storm .wf-condition-icon{
	background-image: url(../images/weather-forecast/storm.svg);
}

.wf-windy .wf-condition-icon{
	background-image: url(../images/weather-forecast/windy.svg);
}

.wf-sunny-partly-cloudy-isolated-rain .wf-condition-icon{
	background-image: url(../images/weather-forecast/cloudy_isolated_rain.svg);
}

@media only screen and (max-width:1440px) {
	.wf-humidity-icon,
	.wf-wind-speed-icon{
		position: relative;
	    padding-left: 40px;
	    width: 100%;
	}
	
	.wf-detail-info{
	   	min-height: 140px;
	}
}

@media only screen and (max-width:575px) {
	.wf-detail-info{
	   	min-height: 170px;
	}
	
	.wf-temperature{
		left: 130px;
	}
}