.SchaazFormStep {
	max-width: 1240px;
	margin: auto;
	padding: 33px;
	background: #fff8;
	border-radius: 20px;
}

.SchaazFormStep .Container,
.SchaazFormStepUrlaub {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.SchaazFormStep button {
	background: var(--Vertex-Color);
	color: #fff;
	border: 2px solid var(--Scarlett-Color);
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 20px;
}

.SchaazFormStep button:hover {
	background: var(--Scarlett-Color);
}

.steptitel {
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	background: var(--Scarlett-Color);
	padding: 15px 20px;
	border-radius: 10px;
	margin-bottom: 20px;
	text-align: center;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	font-style: italic;
}

.FormInfoText {
	padding: 2rem;
	background: #ffff88;
	box-shadow: 10px 10px 10px #909090;
	margin-top: 2rem;
	font-size: 12px;
	border-radius: 5px;
}
.FormInfoText p {
	font-size: 1.1rem;
}
.FormInfoText u {
	text-decoration: underline 3px dotted var(--Scarlett-Color);
	text-underline-offset: 3px;
}

.TeamNav.Praxen {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.TeamNav.Praxen .item {
	width: 100%;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	overflow: hidden;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
	text-align: center;
	position: relative;
}

.TeamNav.Praxen .item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.TeamNav.Praxen .item img {
	width: 100%;
	height: auto;
	display: block;
}

.TeamNav.Praxen .item h2 {
	font-size: 20px;
	color: var(--Dexter-Color);
	margin: 10px 0 5px;
}

.TeamNav.Praxen .description {
	padding: 10px;
}

.TeamNav.Praxen .description h3 {
	font-size: 16px;
	margin-bottom: 5px;
}

.TeamNav.Praxen .namen {
	font-size: 14px;
}

.TeamNav.Praxen .Urlaub {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%) rotate(-6deg);
	background: var(--Alarm-Color);
	color: #fff;
	padding: 10px;
	border-radius: 6px;
	width: 80%;
}
.SchaazFormStepUrlaub .buttons, .SchaazFormStepErezept .buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.TeamNav.Praxen .Urlaub h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.TeamNav.Praxen .Urlaub p {
	font-size: 14px;
	margin: 0;
}

.TeamNav.Praxen .praxisbild {
	position: relative;
}

.TeamNav.Praxen .praxislabels {
	position: absolute;
	bottom: 10px;
	left: 25%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 2;
}

.TeamNav.Praxen .praxislabel {
	background: var(--Scarlett-Color);
	color: #fff;
	font-size: 12px;
	padding: 5px 10px;
	border-radius: 5px;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.TeamNav.Praxen .praxislabel.erezept {
	background: #999;
}

.TeamNav.Praxen .praxislabel.karte {
	background: var(--Dexter-Color);
}



/*Formular*/

.SchaazFormStep .mailRequest .fieldlist {
	background: #fff;
	padding: 25px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.SchaazFormStep .mailRequest .fieldcontainer {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 12px;
		font-size: 1.0rem;
}

.SchaazFormStep .mailRequest .fieldname {
	
	text-align: right;
	font-weight: 500;
	white-space: nowrap;
	flex: 0 0 130px;

}

.SchaazFormStep .mailRequest .fieldinput {
	flex: 1;
}

.SchaazFormStep .mailRequest .fieldinput input[type="text"],
.SchaazFormStep .mailRequest .fieldinput textarea,
.SchaazFormStep .mailRequest .fieldinput select {
	width: 100%;
	border: 1px solid var(--Scarlett-Color);
	padding: 10px;
	box-sizing: border-box;
	height: 36px;
}
.SchaazFormStep .mailRequest .cssbutton {
	font-size: 1rem;
	margin-top: 1rem;
	padding: 10px;
	border-radius: 5px;
}





@media all and (min-width: 600px) {
	.TeamNav.Praxen .item {
		width: calc(50% - 10px);
	}
}

@media all and (min-width: 900px) {
	.TeamNav.Praxen .item {
		width: calc(50% - 10px);
	}
}

@media all and (min-width: 1200px) {
	.TeamNav.Praxen .item {
		width: calc(33.333% - 14px);
	}
}