.weather-wrapper {
	--weather-background: #212121;
	--weather-background-secondary: #0068b0;
	cursor: pointer;
	position: relative;
	display: inline-block;
}
.weather-wrapper .deg {
	padding-left: 3px;
	padding-right: 2px;
}
.weather-wrapper .weather-button {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
	margin-right: 10px;
	padding: 10px 15px;
	color: currentColor;
	font-size: 18px;
	font-family: 'closeone';
	background-color: transparent;
	z-index: 15;
}
.weather-wrapper .weather-button:hover {
	background-color: var(--weather-background-secondary);
}
.weather-wrapper .weather-button .temp {
	white-space: nowrap;
}
.weather-wrapper .weather-button .temp .fa {
	font-size: 14px;
}
.weather-wrapper .weather-button .weather-icon {
	margin-right: 3px;
	font-size: 16px;
}
.weather-wrapper .weather-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	min-width: 320px;
	color: var(--white);
	background-color: var(--weather-background);
	border-top: 1px solid #515151;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	box-shadow: 0px 10px 10px rgb(0 0 0 / 25%);
	cursor: initial;
	z-index: 40;
}
.weather-wrapper .weather-dropdown.open {
	display: block;
}
.weather-wrapper .top-section {
	padding: 5px;
	text-align: center;
	color: var(--white);
	font-family: "closeone";
	font-size: 22px;
}
.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);
	padding: 2px 8px 2px 15px;
}
.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--white);
	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: var(--yellow);
}
.weather-wrapper .item-details .high {
	padding-right: 6px;
	width: 55px;
}
.weather-wrapper .item-details .sep {
	border-left: 1px solid var(--gray);
	height: 26px;
	width: 1px;
	margin-left: 5px;
}
.weather-wrapper .item-details .low {
	color: var(--light-blue);
	width: 55px;
}

@media screen and (min-width: 1024px) {
	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}
}