.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
}
.weather-wrapper .deg {
	padding-left: 0px;
	padding-right: 2px;
}
.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 15;
	background-color: transparent;
	padding: 10px 15px;
	margin: 0;
	color: var(--gray-dark);
}
.weather-wrapper .weather-button .temp {
	white-space: nowrap;
	font-size:  16px;
	font-family:  var(--font-body);
	font-weight:  var(--font-weight-black);
	letter-spacing: .025em;
}

.weather-wrapper .weather-button .temp i {
	display: none;
}
.weather-wrapper .weather-button .temp .fa {
	font-size: 14px;
}
.weather-wrapper .weather-button .weather-icon {
	margin-right: 3px;
	font-size: 16px;
	background-color: #ffd899;
	width: 30px;
	height:  30px;
	border-radius:  50%;
	display:  grid;
	place-items: center;
}

.weather-wrapper .weather-button .weather-icon .wi {
	font-weight: 900;
}
.weather-wrapper .weather-dropdown {
	display: none;
	min-width: 320px;
	background-color: #fff;
	position: absolute;
	top: calc(100% + 5px);
	right: -15px;
	z-index: 1;
	cursor: initial;
	color: #000;
}

.weather-wrapper .weather-dropdown.open {
	display: block;
	border:  1px solid var(--gray-dark);
}
.weather-wrapper .top-section {
	text-align: center;
	padding: 5px;
	font-weight:  var(--font-weight-medium);
	letter-spacing: .025em;
	color:  var(--gray-dark);
}
.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 var(--gray-dark);
	padding: 2px 8px;
}
.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	color:  var(--gray-dark);
	font-weight:  var(--font-weight-medium);
}
.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 var(--gray-dark);
	height: 26px;
	width: 1px;
}
.weather-wrapper .item-details .low {
	color: var(--blue);
	width: 55px;
}

@media screen and (min-width: 1024px) {
	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}
}