#peb-kontakt-form input[name="firstname"]{			/* Honeypot */
	display: none;
}

#peb-std-kontakt-modal{ 							/* Modal */
	position: fixed;
	height: 0;
	width: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	background: rgba(66, 66, 83, 0.73);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	transition: all 0.8s;
	opacity: 0;
	z-index: 1000;
}
.peb-std-kontakt-open{ 								/* Modal offen */
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100% !important;
	width: 100% !important;
	opacity: 1 !important;
}

#peb-kontakt-form{ 									/* Formular */
	background: var(--pebweb-form-color);
	color: var(--pebweb-font-color) !important;
	position: relative;
	width: 100%;
	max-width: 410px;
	margin: 30px auto;
	padding: 30px;
	border-radius: 5px;
	height: 0px;
	max-width: 0px;
	overflow: hidden;
	transition: all 1.2s ease;
}
.peb-std-kontakt-open #peb-kontakt-form{
	height: auto;
	max-width: 410px;
}

#peb-close-modal{									/* Schliessen Button */
	font-family: peb;
	font-size: 40px;
	position: absolute;
	right: 5px;
	top: 0px;
	line-height: 1;
	padding: 2px;
	cursor: pointer;
}
	
#peb-kontakt-form label{								/* Label */
	margin-bottom: -3px;
	font-size: 15px;
	color: #9E9E9E !important;
}
#peb-kontakt-form h2{								/* Titel */
	color: var(--pebweb-font-color) !important;
	font-size: 28px;
	line-height: 1;
	margin-top: 5px;
	margin-bottom: 15px;
}
#peb-kontakt-form textarea, #peb-kontakt-form input{	/* Inputs / Textarea */
	width: 100%;
	margin-bottom: 15px;
	border: 1px solid #aaa;
	border-radius: 5px;
}
#peb-kontakt-form textarea{
	min-height: 100px;
}
#peb-std-form-submit{ 								/* Senden Button */
	background: var(--pebweb-btn-color) !important;
	color: var(--pebweb-btn-font-color) !important;
	margin-top: 15px;
	padding: 10px 15px;
	width: 100%;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 5px;
	cursor: pointer;	
	transition: filter 0.3s;
}
#peb-std-form-submit:hover{
	filter: brightness(0.9); 
}
#send-ico {											/* Icon beim Senden Button */
  transform: rotate(-25deg) translate(12px,-1px);
  position: absolute;
  transition: transform 0s;
}
#peb-std-form-submit:hover #send-ico {
	transform: rotate(-40deg) translate(50px,-10px) scale(0.5);
	opacity: 0;
	color: grey;
	transition: all 0.7s;
}
.peb-std-form-error{								/* Error Fields */
	color: #FFF;
	background: #FF8C00;
	line-height: 1;
	font-size: 85%;
	padding: 3px 5px 4px 2em;
	margin: -15px 0 15px 0;
	height: auto;
}
.peb-std-form-error:empty{
	padding: 0 0;
	height: 0;
}
.peb-std-form-error::before {
	content: '⚠';
	margin-right: 0.5em;
	font-size: 1.5em;
	position: absolute;
	transform: translate(-1.2em, -0.3em);
}
#peb_kontakt_thankyou{								/* Thankyou */
	position: relative;
	font-weight: bold;
	text-align: center;
	padding: 25px 50px 30px 30px;
	background: #FFF;
}
#peb_kontakt_thankyou .thx-check{							/* Check bei Thankyou */
	font-size: 110px;
	line-height: 1;
	color: lime;
	margin-bottom: 15px;
}

.smallForMobiles{									/* Auf mobiles etwas kleineres Formular, damit es auf dem Screen Platz hat und auch wieder geschlossen werden kann */
	transform: scale(85%);
}