* {
	box-sizing: border-box;
}

body {
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 0.9rem;
	background-color: whitesmoke;
}

fieldset {
	width: 100%;
	margin: auto;
	padding: 10px;
	border: solid 1px dimgray;
	border-radius: .2rem;
}

fieldset>legend {
	color: royalblue;
	font-size: 1.2rem;
}

input,
button {
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 0.9rem;
	border: 1px solid #ccc;
	border-radius: .2rem;
	padding: 5px;
}

input[type=number] {
	width: 70px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: .2rem;
	resize: vertical;
}

input[type="text"],
input[name="name"],
input[type="email"],
input[type="tel"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: .2rem;
	resize: vertical;
}

select {
	border: 1px solid #ccc;
	outline: 0;
	font: inherit;

	/* Personalize */
	padding: 10px;
	width: 100%;
	min-width: fit-content;
	height: 40px;

	/* padding: 1rem 4rem 1rem 1rem;*/

	color: inherit;
	border-radius: .2rem;
	cursor: pointer;
	resize: vertical;

	/* Remove IE arrow */
	&::-ms-expand {
		display: none;
	}

	/* Remove focus outline */
	&:focus {
		outline: none;
	}

	/* <option> colors */
	option {
		color: inherit;
	}
}

input[name="wunschd"],
input[name="alterd"] {
	width: 110px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: .2rem;
}

input[name="cptch"] {
	width: 100px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: .2rem;
	resize: vertical;
}

label {
	padding: 12px 12px 12px 0;
	display: inline-block;
}

label.checklist {
	padding: 2px 4px 4px 0;
	display: inline-block;
}

input[type=submit] {
	background-color: royalblue;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: .2rem;
	cursor: pointer;
	float: left;
}

input[type=submit]:hover {
	background-color: #45a049;
}

button {
	background-color: royalblue;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: .2rem;
	cursor: pointer;
	float: left;
}

textarea {
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 0.8rem;
	width: 100%;
	height: 80px;
	min-height: 80px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: .2rem;
	resize: vertical;
}

:focus-visible {
	outline: solid 1px royalblue;
}

span.fehler {
	font-family: Tahoma, Arial, Sans-Serif;
	font-size: 0.9rem;
	font-style: oblique;
	color: Red;
	cursor: default;
	display: inline;
	margin-top: 3px;
}

span.error {
	font-family: Tahoma, Arial, Sans-Serif;
	font-size: 0.9rem;
	font-style: oblique;
	color: Red;
	cursor: default;
	display: inline;
	margin-top: 3px;
}

/* Pflichtangaben markieren */
var,
noscript {
	font-size: 0.75rem;
	color: Red;
}

.hiro {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: - 1;
}

/* 2 Spalten fürs Formular */
.container {
	border-radius: 5px;
	background-color: #f2f2f2;
	padding: 20px;
}

.col-25 {
	float: left;
	width: 25%;
	margin-top: 6px;
}

.col-75 {
	float: left;
	width: 75%;
	margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

div.infoBox {
	margin-top: 6px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-right: 5px;
	padding-left: 10px;
	border: 1px solid #ccc;
	border-radius: 0.2em;
	background-color: rgb(233, 233, 233);
}

/* multi line css start: */
div._multi_line {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin-top: 3px;
	/* Optional: Adjust based on your design */
}

input[type='text']._multi-input {
	width: 100%;
	padding-right: 40px;
	/* Leave space for the button */
	padding: 10px;
	box-sizing: border-box;
}

input[type='text']._multi-info {
	width: 100%;
	padding-right: 40px;
	/* Leave space for the button */
	padding: 10px;
	box-sizing: border-box;
	background-color: lightgrey;
}

input[type='button'].addButton_inside {
	position: absolute;
	width: 30px;
	border-radius: 0.2em;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	background-color: royalblue;
	color: white;
	border: none;
	cursor: pointer;
	padding: 5px 10px;
	z-index: 1;
}

input[type='button'].addButton_inside:hover {
	background-color: #45a049;
}

input[type='button'].deleteButton_inside {
	position: absolute;
	width: 30px;
	border-radius: 0.2em;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	background-color: lightsalmon;
	color: white;
	border: none;
	cursor: pointer;
	padding: 5px 10px;
	z-index: 1;
}

input[type='button'].deleteButton_inside:hover {
	background-color: lightcoral;
	color: red;
}

input[type='button'].addButton {
	width: 30px;
	border-radius: 0.2em;
	padding: 5px 10px;
	color: white;
	vertical-align: bottom;
	margin-top: 3px;
	background-color: royalblue;
	border: none;
	cursor: pointer;
}

input[type='button'].addButton:hover {
	background-color: #45a049;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {

	.col-25,
	.col-75,
	input[type=submit] {
		width: 100%;
		margin-top: 0;
	}

	div._multi_line {
		max-width: 100%;
	}

	input[type='button'].addButton_inline {
		right: 5px;
		/* Adjust spacing for smaller screens */
	}

	input[type='button'].addButton {
		right: 5px;
		/* Adjust spacing for smaller screens */
	}

	.input[type='button'].deleteButton_inline {
		right: 5px;
		/* Adjust spacing for smaller screens */
	}
}