.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
}
.weather-wrapper .deg {
	padding-left: 3px;
}
.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 15;
	background-color: transparent;
	padding-top: 17px;
	margin: 0;
	color: currentColor;
}
.weather-wrapper .weather-button .temp {
	white-space: nowrap;
	font-weight: var(--font-weight-strong);
	font-size: 13px;
	color: var(--navy);
}
.weather-wrapper .weather-button .temp .fa {
	font-size: 20px;
}
.weather-wrapper .weather-button .weather-icon {
	margin-right: 3px;
	font-size: 16px;
}

.microsites .weather-wrapper .weather-button .weather-icon i {
	color: var(--navy-light);
}

.microsites .weather-wrapper .weather-button .temp {
	color: var(--navy-dark);
}


@media (min-width: 64em) {
	.weather-wrapper .weather-button {
		position: relative;
		padding: 0 0 0 14px;
		margin-left: 5px;
	}

	.weather-wrapper .weather-button:after {
		content: "";
		position: absolute;
		border-left: 2px solid #b4b2af;
		top: 50%;
		left: 0;
		height: 13px;
		transform: translateY(-50%);
	}

	.weather-wrapper .weather-button:before {
		content: "";
		position: absolute;
		border-right: 2px solid #b4b2af;
		top: 50%;
		right: -10px;
		height: 13px;
		transform: translateY(-50%);
	}

	.weather-wrapper .weather-button .temp {
		font-weight: var(--font-weight-normal);
	}
}