.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
	height: 100%;
	min-height: 32px;
}

.weather-wrapper .weather-button {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 15;
    height: 100%;
    background-color: var(--light-blue);
    padding: 4px 10px;
    min-width: 48px;
    margin: 0;
    color: var(--black);
    font-size: var(--text-xxs);
    font-weight: 900;
	min-height: 38px;
}
.weather-wrapper .weather-button .temp {
	white-space: nowrap;
}
.weather-wrapper .weather-button .temp .fa {
	font-size: 14px;
	display: none;
	line-height: var(--leading-none);
}
.weather-wrapper .weather-button .weather-icon {
	font-size: 0.9375rem;
	line-height: var(--leading-none);
}
.weather-wrapper .weather-dropdown {
	display: none;
	min-width: 320px;
	background-color: var(--white);
	position: absolute;
	top: calc(100% + 4px);
	right: -100%;
	z-index: 40;
	cursor: initial;
	color: var(--black);
	box-shadow: 2px 4px 13px -4px rgba(0,0,0,0.4);
}
.weather-wrapper .weather-dropdown.open {
	display: block;
}
.weather-wrapper .top-section {
	text-align: center;
	padding: 5px;
	font-family: var(--font-display);
}

.weather-wrapper .top-section .header {
	color: var(--blue);
    font-size: var(--text-xl);
}
.weather-wrapper .forecast .temp-wrapper {
	display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 500;
}
.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 #999;
	padding: 2px 8px;
}
.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	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(--orange);
}
.weather-wrapper .item-details .high {
	padding-right: 6px;
	width: 55px;
}
.weather-wrapper .item-details .sep {
	border-left: 1px solid #cdcdcd;
	height: 26px;
	width: 1px;
}
.weather-wrapper .item-details .low {
	color: var(--blue);
	width: 55px;
}

@media screen and (min-width: 64em) {
	.weather-wrapper {
		width: 100%;
	}
	.weather-wrapper .weather-dropdown {
		right: calc(100% + 4px);
		top: 0;
		left: auto;
	}

	.weather-wrapper .weather-button {
		flex-direction: row;
		width: 100%;
		font-size: var(--text-sm);
		padding: 10.5px 0 6.5px;
	}
}