.weather-wrapper {
	cursor: pointer;
	position: relative;
	display: inline-block;
}

.mobile-dd-top .weather-wrapper {
	margin-bottom: 5px;
}

.weather-wrapper .deg {
	padding-left: 3px;
	padding-right: 2px;
}

.weather-wrapper .weather-button {
	display: flex;
	align-items: center;
	position: relative;
	background-color: transparent;
	padding: 15px 0;
	margin: 0;
}

.weather-wrapper .weather-button .temp {
	color: var(--blue-gray);
	font-family: var(--poppins);
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 3px;
}

.weather-wrapper .weather-button .temp .fa {
	font-size: 14px;
}

.weather-wrapper .weather-button .weather-icon {
	margin-right: 5px;
	font-size: 16px;
	color: var(--terracotta);
}

@media screen and (min-width: 1220px) {
	.weather-wrapper .weather-button {
		padding: 0;
	}

	.weather-wrapper .weather-button .weather-icon {
		width: 37px;
		height: 37px;
		border: 1px solid #fff;
		border-radius: 50%;
		background-color: var(--terracotta);
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 10px;
		position: relative;
		top: 1px;
		color: #fff;
	}

	.weather-wrapper .weather-button .temp {
		color: #fff;
		font-weight: normal;
		letter-spacing: 2px;
		padding-bottom: 4px;
	}
}