.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
}
.weather-wrapper .deg {
	padding-left: 3px;
	padding-right: 2px;
	font-size: 10px;
}
.weather-wrapper .forecast-wrapper .deg {
	font-size: 30px;
	padding-left: 3px;
}
.weather-wrapper .deg:after {
	content: 'f';
	text-transform: uppercase;
	vertical-align: super;
	font-size: 7px;
	display: inline-block;
	translate: 0 2px;
	margin-left: 4px;
}
.weather-wrapper .forecast-wrapper .deg:after {
	translate: 0 1px;
	font-size: 18px;
	margin-left: 6px;
}
.weather-wrapper .weather-button {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 4px;
	position: relative;
	z-index: 15;
	background-color: transparent;
	padding: 4px 2px 0;
	margin: 0;
	color: var(--black);
}
.weather-wrapper .weather-button .temp {
	white-space: nowrap;
	font-size: 10px;
	font-weight: var(--font-weight-med);
	line-height: 1;
	letter-spacing: 0.06em;
}
.weather-wrapper .weather-button .temp i {
	display: none;
	
}
.weather-wrapper .weather-button .temp .fa {
	font-size: 9px;
}
.weather-wrapper .weather-button .weather-icon {
	margin-right: 3px;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.weather-wrapper .weather-button .weather-icon:after {
	content: '\f078';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 6px;
	transform: translateY(2px)
}
.weather-wrapper .weather-dropdown {
	display: none;
	min-width: 267px;
	background-color: var(--black);
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	z-index: 40;
	cursor: initial;
	color: var(--white);
}
.weather-wrapper .weather-dropdown:before {
	content: '';
	pointer-events: none;
	--size: 20px;
	width: var(--size);
	height: var(--size);
	left: 0;
	position:  absolute;
	top: 9px;
	transform-origin: top left;
	rotate: -45deg;
	background: var(--black);
}
.weather-wrapper .weather-dropdown.open {
	display: block;
	padding-top: 17px;
	padding-bottom: 2px;
}
.weather-wrapper .top-section {
	text-align: center;
	padding: 5px 5px 20px;
}
.weather-wrapper .top-section .header {
	color: var(--gray-dark);
	font-size: 12px;
	letter-spacing: .02em;
	font-weight: var(--font-weight-normal);
	margin-bottom: 1px;
}
.weather-wrapper .forecast .temp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2px;
}
.weather-wrapper .forecast .weather-icon {
	font-size: 28px;
	margin-right: 11px;
}
.weather-wrapper .forecast .temp {
	font-size: 30px;
	line-height: 1;
}
.weather-wrapper .forecast .info {
	font-size: 12px;
	text-transform:  uppercase;
	letter-spacing: .1em;
	font-weight:  var(--font-weight-normal);
}
.weather-wrapper .forecast-list .item {
	display: block;
	border-top: 1px solid var(--gray-dark);
	padding: 2px 5px 2px 13px;
}
.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .1em;
}
.weather-wrapper .item-details .data {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.weather-wrapper .item-details .data > div {
	font-size: 14px;
	padding: 0px 0px;
	text-align: center;
}
.weather-wrapper .item-details .weather-icon {
	font-size: 16px;
	display: inline-block;
	min-width: 28px;
	color: var(--white);
}
.weather-wrapper .item-details .data .high {
	padding-right: 3px;
	width: 45px;
}
.weather-wrapper .item-details .sep {
	border-left: 1px solid var(--gray-dark);
	height: 18px;
	width: 1px;
	margin: 9px 0;
}
.weather-wrapper .item-details .low {
	color: var(--gray-dark);
	width: 55px;
}

@media screen and (min-width: 1024px) {
	.weather-wrapper .weather-button {
		flex-direction: row;
	}
	.weather-wrapper .weather-button .temp {
		font-size: 14px;
	}
	.weather-wrapper .weather-button .temp i {
		display: inline-block;
	}
	.weather-wrapper .deg {
		font-size: 14px;
		padding-left: 1px;
		padding-right: 0;
	}
	.weather-wrapper .deg:after {
		font-size: 8px;
		margin-left: 3px;
	}

	.weather-wrapper .weather-button .weather-icon {
		margin-right: 6px;
	}
	.weather-wrapper .weather-button .weather-icon:after {
		display: none;
		font-size: 8px;
	}
	.weather-wrapper .weather-dropdown {
		left: 50%;
		transform: translateX(-50%);
		top: calc(100% + 12px);
	}
	.weather-wrapper .weather-dropdown:before {
		left: 48%;
		translate: -50%;
	}
}