@charset "utf-8";

.BestellForm{
	width: 100%;
	display: grid;
	gap: 0.5rem;
	grid-auto-columns: 1fr 1fr;
	grid-template-areas: 
	"bbox1 bbox2"
	"bbox4 bbox5"
	"bbox3 bbox3"
	"bbox6 bbox7"
	"bbox8 bbox9"
	"bbox10 bbox10"
	"bbox11 bbox11";
}
.bb{
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.bb3{
	text-align: right;
	margin-right: 7rem;
	height: 3.5rem;
}
.bb8{
	text-align: left;
	margin-left: 2rem;
}
.bb11{
	font-size: 1rem;
}
.entryarea{
	width: 100%;
	margin-top: 1rem;
}
.labelline{
	font-size: 1.3rem;
}

input{
	font-family: "PlayfairDisplay";
	font-size: 1.2rem;
	position: relative;
	height: 2.5rem;
	width: 80%;
	outline: none;
	border: 0.2rem solid #283618;
	border-radius: 0.8rem;
	background-color: #606c38;
	color: #fef1d0;
	padding: 0 1rem;
	margin-top: 0.5rem;
}
input::placeholder{
	color: #162208;
}
input:focus,
textarea:focus{
    color: #fef1d0;
    border: 0.15rem solid #fef1d0;
	background-color: #606c38;
}
input:disabled::placeholder{
	color: gray;
}
.invalid-msg{
	font-size: 1.1rem;
	color: rgba(200, 70, 70, 1);
	background: rgba(254, 241, 208, 0.7);
	border-radius: 0.5rem;
}
.invalid{
	border: 0.2rem solid red;
}
select{
	font-family: "PlayfairDisplay";
	font-size: 1.2rem;
	position: relative;
	height: 3rem;
	width: 88%;
	outline: none;
	border: 0.2rem solid #283618;
	border-radius: 0.8rem;
	background-color: #606c38;
	color: #162208;
	padding: 0 1rem;
	margin-top: 0.5rem;
}
select:focus{
	color: #fef1d0;
    border: 0.15rem solid #fef1d0;
	background-color: #606c38;
}
option:checked{
	color: #fef1d0;
}
.select-box{
	position: relative;
	width: 95%;
}

textarea{
	font-size: 1.3rem;
    width: 85%;
	margin-top: 0.5rem;
	padding: 0.5rem 0 0 0.4rem;
	border: 0.2rem solid;
	border-radius: 0.8rem;
	outline: none;
	font-family: "PlayfairDisplay";
	color: #283618;
	line-height: 1.5rem;
    background-color: #606c38;
	text-align: left;
	transition: all 0.2s;

}
textarea::placeholder{
	color: #283618;
}

.check label{
	position: relative;
	left: 1rem;
	bottom: 0.8rem;
	
	font-size: 1.2rem;
}
input[type="checkbox"]{
	appearance: none;
	-webkit-appearance: none;
	width: 1rem;
	border-radius: 0.2rem;
	cursor: pointer;
	border: 0.2rem solid #283618;
}
input[type="checkbox"]:checked{
	background: url("../images/PageContent/check.svg") no-repeat;
	background-color: #606c38;
	border: 0.15rem solid #fef1d0;
}

button{
	min-width: 15rem;
	min-height: 2.5rem;
	margin: 2rem 0;
	background-color: #fef1d0;
	border: none;
	border-radius: 0.5rem;
	color: #283618;
	font-size: 1.2rem;
	font-family: 'Playfair Display', sans-serif;
	transition: 0.2s
}
button:hover{
	transform: scale(1.1);
	box-shadow: 0 0 0.3rem 0.1rem #fef1d0; 
}
button:disabled{
	color: gray;
}
button:active{
	transform: scale(0.9);
}



@media(max-width: 767px){

.BestellForm{
	width: 100%;
	display: grid;
	gap: 0.5rem;
	grid-auto-columns: 1fr;
	grid-template-areas: 
	"bbox1"
	"bbox2"
	"bbox4"
	"bbox3"
	"bbox5"
	"bbox6"
	"bbox7"
	"bbox8"
	"bbox9"
	"bbox10"
	"bbox11";
}

}
	