
.card {
	background: rgba(255,255,255,0.9);
    overflow: hidden;
	position: relative;
    background: #ffffff;

	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);
    overflow: hidden;
}


/* 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: 30px;
	font-weight: 600;
}

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

.card--body {
	padding: 20px;
}

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

	.card--foodplan {

	}

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