.weather-wrapper {
	position: relative;
	display: inline-block;
}
.weather-wrapper .deg {
	padding-left: 3px;
	padding-right: 2px;
}
.weather-wrapper .weather-info,
.weather-wrapper .weather-button {
	position: relative;
	z-index: 15;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0;
	margin: 0;
	font-family: var(--font-soft);
	font-weight: var(--font-weight-medium);
	font-size: 1.0625rem;
	line-height: normal;
	color: var(--beige);
	background: none;
	border: none;
	border-radius: 0;
}
.weather-wrapper .weather-info .temp,
.weather-wrapper .weather-button .temp {
	white-space: nowrap;
}
.weather-wrapper .weather-button .temp .fa {
	display: none;
}

.weather-wrapper .weather-info .weather-icon,
.weather-wrapper .weather-button .weather-icon {
	font-size: 22px;
	color: var(--yellow);
}
.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;
}
.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 #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: #fe9b0c;
}
.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: 1024px) {
	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}
}

/*----- inside mobile nav -----*/

.mobile-menu .weather-wrapper {
	position: static;
	justify-self: center;

	.weather-info,
	.weather-button {
		font-size: var(--text-lg);
		color: var(--gray-mid);

		.weather-icon {
			color: inherit;
		}
	}

	.weather-button .temp .fa {
		display: inline;
		font-size: var(--text-base);
	}

	.weather-dropdown {
		right: 0;
	}
}