.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
	color: #353533;
}
.weather-wrapper .deg {
	font-size: 12px;
	margin-left: 2px;
}
.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 15;
	background-color: transparent;
	padding: 12.5px 10px 12.5px 17px;
	margin: 0;
}

.mobile-nav .weather-wrapper .weather-button {
	height: 100%;
	display: none;
}

.mobile-nav.active .weather-wrapper .weather-button {
	display: block;
	padding: 10px 0px 20px;
}

@media screen and (min-width: 375px) {
	.mobile-nav.active .weather-wrapper .weather-button {
		padding: 10px 5px 20px;
	}

}


.weather-wrapper .weather-button:focus {
	outline: 1px dashed #323233
}
.weather-wrapper .weather-button .temp {
	font-family: 'Playfair-Display', serif;
	color: #353533;
	font-size: 16px;
	letter-spacing: 0.96px;

}
.weather-wrapper .weather-button .temp .fa {
	font-size: 14px;
}
.weather-wrapper .weather-button .weather-icon {
    min-width: 21px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.96px;
    color: #353533;
}
.weather-wrapper .weather-dropdown {
	font-family: "Karla", sans-serif;
	display: none;
	min-width: 320px;
	background-color: #fff;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 40;
	cursor: initial;
	box-shadow: 6px 4px 22px -10px #000;
}

.mobile-nav .weather-wrapper .weather-dropdown {
	left: auto;
	right: 0;
	box-shadow: 1px 1px 10px #000;
}
.weather-wrapper .weather-dropdown.open {
	display: block;
}
.weather-wrapper .top-section {
	text-align: center;
	padding: 5px;
}
.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;
	font-family: 'Playfair-Display', serif;
}
.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-family: 'Playfair-Display', serif;
	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: #dea132;
}
.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: #126883;
	width: 55px;
}

@media screen and (min-width: 1135px) {
	.weather-wrapper .weather-button .weather-icon {
		margin-right: 3px;
	}
	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}

	.weather-wrapper .weather-button .temp {
		color: #353533;
		margin-left: 2px;
	}
}