.weather-widget-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}
.weather-widget {
	background-color: white;
	border-radius: 10px;
	padding: 0.75em;
	display: inline-block;
	color: black;
}
.weather-widget .title h3 {
	font-size: 1em;
	color: rgb(56, 140, 121);
	margin: 0;
	margin-bottom: 0.5em;
}	
.weather-widget .location {
	font-size: 1em;
	font-weight: bold;
}
.weather-widget .temperature {
	font-size: 1em;
	font-weight: bold;
}
.weather-widget .icon {
	display: inline-block;
	height: 25px;
	width: 25px;
}
.weather-widget .wind {
	font-size: 1em;
	font-weight: bold;
}
.weather-widget .row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5em;
}
@media screen and (min-width: 300px) {
	body:not(.elementor-editor-active) .weather-widget {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
}
