.weather_widget_canvas {
	display: grid;
	grid-template-columns: auto auto auto auto auto auto;
	/* 6 columns */
	grid-auto-rows: minmax(15em, auto);
}

.weather_detail_canvas {
	display: grid;
	grid-template-columns: auto;
	/* 1 column */
	grid-auto-rows: minmax(15em, auto);
}

/* WEATHER FORECAST */
.weather_forecast_container> :nth-last-child(1):first-child,
.weather_forecast_container> :nth-last-child(1):first-child~* {
	width: calc(100% - 10px);
}

.weather_forecast_container> :nth-last-child(2):first-child,
.weather_forecast_container> :nth-last-child(2):first-child~* {
	width: calc(50% - 10px);
}

.weather_forecast_container> :nth-last-child(3):first-child,
.weather_forecast_container> :nth-last-child(3):first-child~* {
	width: calc(33.3333% - 10px);
}

.weather_forecast_container> :nth-last-child(4):first-child,
.weather_forecast_container> :nth-last-child(4):first-child~* {
	width: calc(25% - 10px);
}

.weather_forecast_container> :nth-last-child(5):first-child,
.weather_forecast_container> :nth-last-child(5):first-child~* {
	width: calc(20% - 10px);
}

.weather_forecast .unit svg {
	height: 0.7em;
}

.weather_forecast_time {
	font-size: 0.8em;
	font-weight: normal;
}

.weather_forecast_day {
	font-size: 1.1em;
	font-weight: bold;
}

.weather_forecast_weather > img {
	height: 2em;
}

.weather_forecast_temperature {
	font-size: 0.9em;
	font-weight: bold;
}

.weather_forecast_three_rows {
	display: grid;
	grid-gap: 2.5px;
	grid-template-rows: 30% 40% 30%;
	grid-auto-columns: 1fr;
	grid-auto-flow: column;
}
/* WEATHER FORECAST END */

/* CLOCK_WIDGET */
.digital_clock {
	font-family: 'digital-7', sans-serif;
}

/* DAYS OF THE WEEK */
.digital_clock div.days {
	color: #121a23;
}

.digital_clock div.days .day {
	display: inline-block;
}

.digital_clock div.days .day p {
	font-size: 0.8em;
	font-weight: bold;
	font-family: sans-serif;
	text-transform: uppercase;
	padding-left: 0.3em;
	padding-right: 0.3em;
}

/* CLOCK */
.digital_clock div.clock {
	margin: 0 auto;
}

.digital_clock div.clock div {
	display: inline-block;
	position: relative;
}

.digital_clock div.clock div p {
	font-size: 4em;
	position: relative;
	z-index: 100;
	margin: 0;
	color: rgb(242, 246, 248);
}

.digital_clock div.clock .placeholder {
	color: #121a23;
	position: absolute;
	top: 0;
	z-index: 50;
	margin: 0;
}

.digital_clock .light-on {
	color: rgb(242, 246, 248);
}


/*END CLOCK_WIDGET*/

.map {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 20em;
}

.map_div {
	width: 80%;
}

.environment_overview_side_bar {
	width: 25%;
}

@media (max-aspect-ratio: 0.95) {
	.environment_overview_side_bar {
		width: 50%;
	}
}

.overview_sunrise:before {
	background-image: url('../images/sunrise-morning-svgrepo-com.svg');
}

.overview_sunfall:before {
	background-image: url('../images/sunset-svgrepo-com.svg');
}

.watering_pots,
.watering_barrel {
	border: 0.25em solid #a07b55;
	box-sizing: border-box;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
}

.watering_pots {
	background-color: #1e170f;
}

.watering_barrel {
	background-color: #a07b55;
}

.watering_text {
	z-index: 2;
}

.watering_plant {
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	display: block;
	position: absolute;
	z-index: 1;
}

.watering_plant_1 {
	background-color: #224615;
}

.watering_plant_2 {
	background-color: #2d581d;
}

.watering_plant_3 {
	background-color: #1b3a0e;
}
