.weatherforecast-today {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 1rem;
	color: #FFF;
}

.weatherforecast-today__label {
	white-space: nowrap;
}

.weatherforecast-today__icon img {
	display: block;
	width: 46px !important;
	height: 46px !important;
}

.weatherforecast-today__temperature,
.weatherforecast-today__precipitation {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	white-space: nowrap;
}

.weatherforecast-today__temperature {
	margin-right: 0.75rem;
}

.weatherforecast-today__precipitation-icon img,
.weatherforecast-today__precipitation-icon svg {
	display: block;
	width: auto !important;
	height: 46px !important;
}

@media screen and (max-width: 320px) {
	.weatherforecast-today {
		display: none;
	}
}

@media screen and (max-width: 450px) {
	.weatherforecast-today__precipitation {
		display: none;
	}
}

@media screen and (min-width: 768px) and (max-width: 899px) {
	.weatherforecast-today__precipitation {
		display: none;
	}
}