.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
	min-height: 30px;
	min-width: 67px;
}
.weather-wrapper .deg {
	padding-left: 1px;
	padding-right: 0;
}
.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 15;
	background-color: transparent;
	padding: 0;
	margin: 0;
	color: var(--white);
	font-weight: 700;
	gap: 6px;
}

.weather-wrapper .weather-button .temp {
	position: relative;
	white-space: nowrap;
	font-size: var(--text-xs);
}

.weather-wrapper .weather-button .temp::after {
	content: 'F';
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight:  700;
	color: var(--white);
}

.weather-wrapper .weather-button .temp .fa {
	display: none;
}
.weather-wrapper .weather-button .weather-icon {
	min-width: 30px;
	width: 30px;
	min-height: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: var(--text-base);
	background: var(--dark-orange);
	border-radius: var(--rounded-full);
}
.weather-wrapper .weather-dropdown {
	display: none;
	min-width: 320px;
	background-color: var(--white);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 40;
	cursor: initial;
	color: var(--black);
}
.weather-wrapper .weather-dropdown.open {
	display: block;
	border-radius: 4px;
}
.weather-wrapper .top-section {
	text-align: center;
	color: var(--gray);
	padding: 5px;
}

.weather-wrapper .top-section .header {
	font-family: var(--font-display-wide);
	font-size: var(--text-xs);
	letter-spacing: var(--tracking-widest);
}

.weather-wrapper .forecast .temp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
.weather-wrapper .forecast .weather-icon {
	font-size: 22px;
	color :var(--yellow);
	margin-right: 7px;
}
.weather-wrapper .forecast .temp {
	font-size: 32px;
	font-weight: 700;
}
.weather-wrapper .forecast .info {
	font-size: 18px;
	font-weight: 700;
}
.weather-wrapper .forecast-list .item {
	display: block;
	border-top: 1px solid var(--text-black);
	padding: 2px 8px;
}
.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	color: var(--gray);
}
.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;
	color: var(--gray);
}
.weather-wrapper .item-details .weather-icon {
	font-size: 22px;
	display: inline-block;
	min-width: 35px;
	color: var(--yellow);
}
.weather-wrapper .item-details .high {
	padding-right: 6px;
	width: 55px;
}
.weather-wrapper .item-details .sep {
	border-left: 1px solid var(--gray);
	height: 26px;
	width: 1px;
}
.weather-wrapper .item-details .data > div.low {
	color: var(--light-blue);
	width: 55px;
}

@media screen and (min-width: 1024px) {
	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}
}