#weather-widget {
	display: none;
	position: absolute;
	top: 45px;
	left: 10px;
	background: #fff;
	border-radius: 7px;
    box-shadow: 0px 0px 5px 1px rgba(50, 50, 50, 0.1);
    overflow: hidden;
    z-index: 3;
    transition: max-height 0.5s linear, max-width 0.5s linear; 
}

#weather-regular {
	display: none;
	font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
	font-weight: 300;
	min-width: 200px;
	background-image: url('https://openweathermap.org/img/wn/04d@2x.png');
	background-repeat: no-repeat;
	background-position: right;
}

#weather-large {
	display: none;
	font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
	font-weight: 300;
    font-size: 13px;
    padding: 0px 5px;
    margin:	0px 0px 5px 0px;
    opacity: 80%;
}

#weather-widget h1 {
    font-size:22px;
    padding: 0px 5px;
    opacity: 70%;
}

#weather-widget p {
    font-size:18px;
    opacity: 70%;
    margin:	0px 0px 5px 0px;
}
    
#weather-widget span {
    position: relative;
    font-family: 'Lato', sans-serif;
    font-weight:300;
    font-size:15px;
    opacity: 85%;
}

@media only screen and (min-height: 650px) and (min-width: 830px){
#weather-widget {
	display: block;
}
}
