.weather-wrapper {
	position: relative;
	float: left;
	padding: 9px 8px 7px;
	z-index: 1;
}

.header-section .weather-wrapper.open {
	background-color: #00b1b0;
}

.weather-wrapper .weather-icon {
	display: inline-block;
	color: white;
}
.weather-wrapper .deg {
	padding-left: 1px;
	padding-right: 2px;
}
.weather-wrapper .weather {
	padding-top: 0px;
	white-space: nowrap;
	width: 100px;
	position: relative;
	z-index: 21;
}
.weather-wrapper .weather .temp {
	color: white;
	font: 400 20px 'futura-pt-condensed', sans-serif;
	display: inline-block;
	position: relative;
	top: -3px;
	margin-left: 3px;
}
.weather-wrapper .weather .fa {
	display: none;
	font-size: 14px;
	position: relative;
	color: white;
}
.weather-wrapper .weather .weather-icon {
	margin-right: 3px;
	font-size: 20px;
	vertical-align: top;
}
.weather-wrapper .weather-dropdown-wrapper {
	position: absolute;
	right: 0;
	top: 100%;
	min-width: 320px;
	z-index: 21;
	cursor: initial;
	opacity: 0;
	pointer-events: none;
	transition: opacity 300ms ease;
}
.weather-wrapper .weather-dropdown-wrapper.open {
	opacity: 1;
	pointer-events: all;
}

.weather-wrapper .header {
	font: 400 20px 'Pacifico', cursive;
	color: #d0952c;
}

.weather-wrapper .forecast-wrapper {
	margin-top: -5px;
}

.weather-wrapper .weather-dropdown-wrapper .marker-wrapper {
	position: relative;
	width: 100%;
	text-align: center;
}

.weather-wrapper .weather-dropdown ul li {
	color: white;
	font: 400 20px 'futura-pt-condensed', sans-serif;
	letter-spacing: 1.2px;
	display: inline-block;
}

.weather-wrapper .weather-dropdown ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.weather-wrapper .weather-dropdown .top-section {
	background-color: white;
	text-align: center;
	padding: 5px;
}
.weather-wrapper .forecast .weather-icon {
	font-size: 27px;
	color: #415968;
}

.weather-wrapper .forecast .temp {
	font: 400 36px 'futura-pt-condensed', sans-serif;
	color: #415968;
	margin-left: 3px;
}
.weather-wrapper .forecast .info {
	font: 400 16px 'tomarik-brush', sans-serif;
	color: #d0952c;
	text-transform: uppercase;
}

.weather-wrapper .bottom-section {
	background-color: #00b1b0
}

.weather-wrapper .weather-dropdown ul.forecast-list li.item {
	display: block;
	border-top: 1px solid rgba(255,255,255,0.5);
	padding: 8px 8px 8px 20px;
}
.weather-wrapper ul.item-details {
	font: 400 20px 'futura-pt-condensed', sans-serif;
	color: white;
}

.weather-wrapper ul.item-details .data {
	float: right;
	position: relative;
	top: -6px;
}
.weather-wrapper .data li {
	font-size: 24px;
	position: relative;
	padding: 0px 3px;
}
.weather-wrapper ul.item-details li.sep {
	border-left: 1px solid rgba(255,255,255,0.5);
	height: 26px;
	width: 1px;
	top: 6px;
}
.weather-wrapper ul.item-details li.low {
	width: 55px;
}
.weather-wrapper .forecast-list .weather-icon {
	font-size: 18px;
	display: inline-block;
	min-width: 35px;
}
.weather-wrapper ul.item-details li.high {
	padding-right: 6px;
	width: 55px;
}

@media screen and (min-width: 1024px) {
	.weather-wrapper {
		cursor: pointer;
	}
	
	.weather-wrapper > .weather .fa {
		display: inline;
	}
}