h1 {
    display: inline;
}

input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;

}

label {
	cursor: pointer;
    text-align: right;
    font-size: large;
    font-weight: 800;
    padding-right: 12px;
    padding-left: 12px;
	width: 110px;
	height: 40px;
	background: gray;
	display: block;
	border-radius: 100px;
    position: absolute;
    top: 102px;
    right: 10px;
	line-height: 40px;
}

label:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 36px;
	height: 36px;
	background: #fff;
	border-radius: 40px;
	transition: 0.3s;
	background-image: url('/pic/geschenke/keksformen/vegan.png'); /* Hintergrundbild hinzufügen */
    background-size: cover; /* Bildgröße anpassen */
    background-position: center; /* Bild in der Mitte positionieren */
    background-repeat: no-repeat; /* Verhindern, dass sich das Bild wiederholt */
	filter: grayscale(90%); /* Bild in Graustufen anzeigen */
}

input:checked + label {
	background: #bada55;
	text-align: left;
}

input:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
	filter: grayscale(0%);
}

label:active:after {
	width: 130px;
}