
.card {
	background: rgba(255,255,255,0.9);
    overflow: hidden;
	background: #ffffff;
    border: 1px solid #dbe6f3;
    border-radius: 15px;
	position: relative;
    box-shadow:
        0 10px 25px rgba(20, 40, 80, 0.06),
        0 2px 6px rgba(20, 40, 80, 0.04);
}

/* Blau */
.card--blue::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 110, 253, 0.08),
        rgba(13, 110, 253, 0.0)
    );
}

/* Grün */
.card--green::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(40, 180, 99, 0.08),
        rgba(40, 180, 99, 0.0)
    );
}

/* Orange */
.card--orange::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 159, 67, 0.1),
        rgba(255, 159, 67, 0.0)
    );
}

.card--header {
	padding: 20px;
	font-size: 20px;
	font-weight: 600;
	position: relative;
	z-index: 2;
}

.card--header .mdi {
	font-size: 20px;
}

.card--body {
	padding: 20px;
	position: relative;
	z-index: 2;
}

/* Foodplan
------------*/

	.card--foodplan {

	}

	.card--foodplan img {
		border-radius: 20px;
	}

/* Wetter
----------*/

	.weather {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}

	.weather--col {
		text-align: center;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.weather--col:nth-child(1),
	.weather--col:nth-child(2) {
		border-right: 1px solid #DDDDDD;
	}

	.weather--icon img {
		min-width: 100px;
	}

	.weather--temperature {
		font-size: 30px;
		font-weight: 500;
	}

	.weather--scope {
		margin-top: 10px;
	}

/* Terminliste
---------------*/

	.eventlist {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 10px;
	}

	.eventlist--item {
		display: grid;
		grid-template-columns: 50px 50px 1fr;
		background-color: #787878;
		border-radius: 10px;
		padding: 20px;
	}

	.eventlist--time {
		font-size: 15px;
		font-weight: bold;
		color: #ffffff;
	}

	.eventlist--icon .mdi {
		font-size: 15px;
		color: #ffffff;
	}

	.eventlist--content,
	.eventlist--content * {
		color: #ffffff;
	}

	.eventlist--content p {
		opacity: 0.7;
		margin-top: 5px;
	}