.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
	color: #333232;
	margin-right: 12px;
}

.weather-wrapper .deg {
	padding-left: 1px;
    padding-right: 2px;
    font-size: 10px;
    position: relative;
    top: -3px;
}

.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 15;
	background-color: transparent;
	padding: 1.5px 11px 1.5px 6px;
	margin: 0;
}

.weather-wrapper .weather-button:focus {
	outline: 1px dashed #898989;
}
.weather-wrapper .weather-button .temp {
	color: #FFF;
	font-size: 13px;
	font-family:"brandon-grotesque";
	font-weight: 700;
}
.weather-wrapper .weather-button .temp .fa {
	font-size: 14px;
}
.weather-wrapper .weather-button .weather-icon {
	margin-right: 7px;
   	font-size: 16px;
    width: 22px;
    color: #FFF;
}
.weather-wrapper .weather-dropdown {
	display: none;
	min-width: 320px;
	background-color: #fff;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 40;
	cursor: initial;

	box-shadow: 0px 3px 18px rgba(0,0,0, 0.5);
}
.weather-wrapper .weather-dropdown.open {
	display: block;
}
.weather-wrapper .top-section {
	text-align: center;
	padding: 5px;
	font-family: "copperplate";
	font-weight: 700;
}
.weather-wrapper .forecast .temp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
.weather-wrapper .forecast .weather-icon {
	font-size: 22px;
	margin-right: 7px;
}
.weather-wrapper .forecast .temp {
	font-size: 32px;
}
.weather-wrapper .forecast .info {
	font-size: 18px;
}
.weather-wrapper .forecast-list .item {
	display: block;
	border-top: 1px solid #999;
	padding: 2px 8px;
}
.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
}
.weather-wrapper .item-details .data {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.weather-wrapper .item-details .data > div {
	font-size: 24px;
	padding: 0px 3px;
	text-align: center;
}
.weather-wrapper .item-details .weather-icon {
	font-size: 22px;
	display: inline-block;
	min-width: 35px;
	color: #fde078;
}
.weather-wrapper .item-details .high {
	padding-right: 6px;
	width: 55px;
}
.weather-wrapper .item-details .sep {
	border-left: 1px solid #cdcdcd;
	height: 26px;
	width: 1px;
}
.weather-wrapper .item-details .low {
	color: #18a3de;
	width: 55px;
}

@media screen and (min-width: 64em) {
	.weather-wrapper {
		margin-right: calc(2px + (9 - 2) * ((100vw - 1025px) / (1440 - 1025)));
	}

	.panel-header.searchOpen .weather-wrapper{
		opacity: 0;
	}

	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}

	.weather-wrapper .weather-button {
	    padding: 1.5px 5px;
	}

	.weather-wrapper .deg {
		font-size: 16px;
		top: -2px;
	}

	.weather-wrapper .weather-button .weather-icon{
		color: #848484;
	    font-size: calc(15px + (25 - 15) * ((100vw - 1025px) / (1440 - 1025)));
	    width: calc(22px + (40 - 22) * ((100vw - 1025px) / (1440 - 1025)));
	}

	.weather-wrapper .weather-button .temp {
		color: #848484;
		font-size: calc(16px + (20 - 16) * ((100vw - 1025px) / (1440 - 1025)));
	}
}

@media screen and (min-width: 1440px) {
	.weather-wrapper {
		margin-right: 9px;
	}

	.weather-wrapper .weather-button .weather-icon{
		color: #848484;
		font-size: 25px;
		width: 40px;
	}

	.weather-wrapper .weather-button .temp {
		font-size: 20px;
	}
}