.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
}

.weather-wrapper .deg {
	font-size: 0.9rem;
}

.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 15;
	background-color: transparent;
	padding: 0;
	margin: 0;
	color: var(--green);
	font-weight: var(--font-weight-medium);
	line-height: 1;
}

.weather-wrapper .weather-button .temp {
	white-space: nowrap;
}

.weather-wrapper .weather-button .temp .fa {
	display: none;
	font-size: 14px;
}

.weather-wrapper .weather-button .weather-icon {
	margin-right: 3px;
	font-size: 16px;
	line-height: 1;
}

.weather-wrapper .weather-dropdown {
	display: none;
	min-width: 150px;
	background-color: var(--green);
	position: absolute;
	top: calc(100% + 7px);
	right: 0;
	z-index: 40;
	cursor: initial;
	color: var(--white);
	border-radius: 8px;
}

.weather-wrapper .weather-dropdown.open {
	display: block;
}

.weather-wrapper .weather-dropdown .top-section {
	text-align: center;
	padding:  11px 5px 5px;
	font-size: 0.6rem;
	font-weight: var(--font-weight-medium);
	margin-bottom: 4px;
}

.weather-wrapper .weather-dropdown .top-section .header {
	margin-bottom: 16px;
}

.weather-wrapper .forecast .temp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.weather-wrapper .forecast .weather-icon {
	font-size: 22px;
	margin-right: 7px;
	line-height: 1;
}

.weather-wrapper .forecast .temp {
	font-size: 17px;
	line-height: 1;
}

.weather-wrapper .forecast .temp .deg {
	font-size: 17px;
}

.weather-wrapper .forecast .info {
	font-size: 10px;
}

.weather-wrapper .forecast-list {
	padding: 0 10px 10px;
}

.weather-wrapper .forecast-list .item {
	display: block;
	border-top: 1px solid rgba(255,255,255, .15);
	padding: 2px 0;
}

.weather-wrapper .forecast-list .item:first-child {
	border-top: none;
}

.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .7rem;
	padding-inline: 8px;
	padding-block: 2px 1px;
}

.weather-wrapper .item-details .day {
	padding-right: 18px;
}

.weather-wrapper .item-details .deg {
	font-size: .7rem
}

.weather-wrapper .item-details .data {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.weather-wrapper .item-details .data > div {
	text-align: center;
}

.weather-wrapper .item-details .weather-icon {
	font-size: 16px;
	display: inline-block;
	min-width: 24px;
	margin-right: 4px;
	line-height: 1;
}

.weather-wrapper .item-details .high {
	padding-right: 5px;
}

.weather-wrapper .item-details .low,
.weather-wrapper .item-details .low .deg {
	font-size: 0.5rem;
}

@media screen and (min-width: 1024px) {
	.weather-wrapper {
		margin-right: 12px;
	}

	.weather-wrapper .weather-dropdown {
		right: 50%;
		translate: 50%;
	}

	.weather-wrapper .weather-button {
		font-size: 0.7rem;
	}

	.weather-wrapper .weather-button .weather-icon {
		font-size: 0.7rem;
	}

	.weather-wrapper .weather-button .deg {
		font-size: 0.7rem;
	}
}