.weather-wrapper {
	position: relative;
	display: inline-block;
	min-width: 80px;
}
.weather-wrapper .deg {
	padding-left: 3px;
	padding-right: 2px;
}

.weather-wrapper .weather-button {
	padding: 0;
}
.weather-wrapper .weather-info,
.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 15;
	background-color: transparent;
	margin: 0;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 1.25rem;
	min-width: 80px;
	margin-bottom: 25px;
}

@media(min-width: 64em) {

	.weather-wrapper .weather-info,
	.weather-wrapper .weather-button {
		padding: 10px 0 10px 25px;
		margin-bottom: 0;
	}
}
.weather-wrapper .weather-info .temp,
.weather-wrapper .weather-button .temp {
	white-space: nowrap;
}
.weather-wrapper .weather-button .temp .fa {
	font-size: 14px;
}

.weather-wrapper .weather-info .weather-icon,
.weather-wrapper .weather-button .weather-icon {
	margin-right: 3px;
	font-size: 16px;
}
.weather-wrapper .weather-dropdown {
	display: none;
	min-width: 255px;
	max-width: 255px;
	background-color: var(--blue-dark);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 40;
	cursor: initial;
	color: var(--white);
}
.weather-wrapper .weather-dropdown.open {
	display: block;
}
.weather-wrapper .top-section {
	text-align: center;
	padding: 20px;
}
.weather-wrapper .forecast .temp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
.weather-wrapper .forecast .weather-icon {
	font-size: 1.938rem;
	margin-right: 7px;
}
.weather-wrapper .forecast .temp {
	font-size: 2.5rem;
}
.weather-wrapper .forecast .info {
	font-size: 18px;
}
.weather-wrapper .forecast-list .item {
	display: block;
	border-top: 1px solid rgba(255,255,255, 0.15);
	padding: 5px 15px;
}
.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
}
.weather-wrapper .item-details .day {
	font-size: 1.125rem;
	letter-spacing: 1px;
}
.weather-wrapper .item-details .data {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0;
}
.weather-wrapper .item-details .data > div {
	font-size: 20px;
	padding: 0px 3px;
	text-align: center;
}
.weather-wrapper .item-details .weather-icon {
	font-size: 1.125rem;
	display: inline-block;
	min-width: 35px;
	color: var(--white);
}
.weather-wrapper .item-details .sep {
	border-left: 1px solid var(--white);
	height: 26px;
	width: 1px;
}
.weather-wrapper .item-details .low {
	color: var(--white);
}

.weather-wrapper .header {
	font-size: .875rem;
	font-family: var(--font-body);
	font-weight: var(--font-weight-normal);
	line-height: calc(19.6 / 14);
}

@media screen and (min-width: 1024px) {
	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}
}