.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
}

@media screen and (min-width: 64em) {
	.weather-wrapper.search-active {
		opacity: 0;
	}
}

.weather-wrapper .deg {
	padding-left: 3px;
	padding-right: 2px;
}

.weather-wrapper .weather-button .deg {
	font-size: 0.75rem;
	position: absolute;
	top: 0;
	right: 6px
}

.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	gap: 5px;
	position: relative;
	z-index: 2;
	background-color: transparent;
	padding: 10px 15px;
	margin: 0;
	color: var(--gray-100);
}
.weather-wrapper .weather-button .temp {
	white-space: nowrap;
	position: relative;
}
.weather-wrapper .weather-button .temp .fa {
	font-size: 0.5rem;
	margin-left: 2px;
	vertical-align: middle;
}
.weather-wrapper .weather-button .weather-icon {
	margin-right: 3px;
	font-size: 1rem;
}
.weather-wrapper .weather-dropdown {
	display: none;
	width: 310px;
	background-color: var(--white);
	position: absolute;
	top: 100%;
	left: -4px;
	z-index: 40;
	cursor: initial;
	border-radius: 10px;
	color: var(--black);
}
.weather-wrapper .weather-dropdown.open {
	display: block;
}
.weather-wrapper .top-section {
	display: none;
}
.weather-wrapper .forecast .temp-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
.weather-wrapper .forecast .weather-icon {
	font-size: 1.875rem;
	margin-right: 7px;
}
.weather-wrapper .forecast .temp {
	font-size: 2rem;
}
.weather-wrapper .forecast .info {
	font-size: 1.125rem;
}

.weather-wrapper .forecast-list {
	padding: 14px 18px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.weather-wrapper .forecast-list .item {
	display: block;
}

.weather-wrapper .forecast-list .item .day {
	font-size: var(--text-base);
	font-weight: 400;
	color: var(--gray-100);
	line-height: 1.75;
	padding: 6px 26px;
	border-radius: 10px;
}

.weather-wrapper .forecast-list .item:nth-child(3n + 1) .day {
	background-color: var(--primary-color-700);
}

.weather-wrapper .forecast-list .item:nth-child(3n + 2) .day {
	background-color: var(--tertiary-color-600);
}

.weather-wrapper .forecast-list .item:nth-child(3n + 3) .day {
	background-color: var(--secondary-color-700);
}

.weather-wrapper .item-details {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.125rem;
}
.weather-wrapper .item-details .data {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.weather-wrapper .item-details .data > div {
	font-size: var(--text-base);
	text-align: center;
}
.weather-wrapper .item-details .weather-icon {
	font-size: 1.875rem;
	display: inline-block;
	min-width: 35px;
	color: var(--gray-800);
}
.weather-wrapper .item-details .high {
	font-weight: 600;
	color: var(--gray-800);
	position: relative;
}
.weather-wrapper .item-details .data .sep {
	background-color: #979797;
	opacity: 0.5;
	height: 26px;
	width: 2px;
	margin: 0 20px;
	padding: 0;
}

.weather-wrapper .item-details  span.divider {
	margin: 0 9px 0 17px;
	font-weight: 300;
	font-size: var(--text-base);
}
.weather-wrapper .item-details .low {
	color: var(--gray-800);
	position: relative;
	padding-right: 8px;
}

.weather-wrapper .item-details .high .deg,
.weather-wrapper .item-details .low .deg {
	font-size: 0.75rem;
	position: absolute;
	top: 0;
	padding: 0;
}

@media screen and (min-width: 375px) {
	.weather-wrapper .weather-dropdown {
		width: 335px;
		left: 15px;
	}
}

@media screen and (min-width: 1024px) {
	.weather-wrapper .weather-dropdown {
		right: 0;
		left: auto;
	}

	.weather-wrapper .weather-button {
		font-size: 0.9375rem;
		padding: 0 15px;
	}
}

.weather-wrapper .weather-footer {
	display: flex;
	align-items: center;
	justify-content: center;
}

.weather-wrapper .weather-footer.no-footer {
	display: none;
}

.weather-wrapper .weather-footer-link {
	padding: 17px 47px;
	font-family: var(--font-display);
	font-size: var(--text-sm);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--black);
	background-color: rgba(0, 0, 0, 0.051);
	border-radius: 25px;
	margin-bottom: 15px;
}