.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
	color: black;
}
.weather-wrapper .deg {
	padding-left: 3px;
	padding-right: 2px;
}
.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 15;
	background-color: transparent;
	padding: 10px 2px;
	margin: 0;
}
.weather-wrapper .weather-button .temp {
	color: #be3312;
	font-size: 14px; 
	font-family: "open-sans", sans-serif;
	font-weight: 600;
}

.weather-wrapper .weather-button .temp .fa {
	font-size: 14px;
}
.weather-wrapper .weather-button .weather-icon {
	margin-right: 4px;
	font-size: 15px;
	color: #be3312;
}
@media screen and (min-width: 375px) {
	.weather-wrapper .weather-button {
		padding: 10px 8px;
	}
	.weather-wrapper .weather-button .temp {
		font-size: 17px; 
	}
	.weather-wrapper .weather-button .weather-icon {
		margin-right: 6px;
		font-size: 18px;
	}
}
.weather-wrapper .weather-button .weather-icon i{
	font-size: inherit;
}
.weather-wrapper .weather-dropdown {
	font-family: "open-sans", sans-serif;
	color: #FFF;
	display: none;
	min-width: 320px;
	background-color: #8e7959;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 40;
	cursor: initial;
}
.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;
}
.weather-wrapper .forecast .info {
	font-size: 18px;
}
.weather-wrapper .forecast-list .item {
	display: block;
	border-top: 1px solid #7f6a4a;
	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: #e1cf01;
}
.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: #ffecc7;
	width: 55px;
}

@media screen and (min-width: 1200px) {
	.weather-wrapper,
	.weather-wrapper .weather-button {
		height: 100%;
	}
	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}
	.weather-wrapper .weather-button {
		background: #8e7959;
	    color: #FFF;
	    padding: 0 2px;
	    height: calc(42px + (47 - 42) * ((100vw - 1200px) / (1400 - 1200)));;
	}

	.weather-wrapper .weather-button:focus {
		outline: none;
	}
	.weather-wrapper .weather-button .temp,
	.weather-wrapper .weather-button .weather-icon{
		color: #FFF;
	}
}

@media screen and (min-width: 1350px) {
	.weather-wrapper .weather-button {
	    height: 47px;
	}
}