#bottom-form{
	position: relative;
	padding: 3rem;
	margin: 0;
	display: grid;
	grid-template-columns: 100%;
	grid-gap: 1rem;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	background: var(--black);
	border: 2px solid white;
}
#bottom-form .title{
	margin: 0;
}
#bottom-form .line{
	position: absolute;
	background: white;
	transition: .5s;
}
#bottom-form :is(.line.left, .line.right){
	top: 0;
	width: 2px;
	height: 100%;
	transform-origin: top;
	transition-delay: .5s;
	transform: scaley(0);
}
#bottom-form.visible :is(.line.left, .line.right){
	transform: scaley(1);
}
#bottom-form .line.left{
	left: 0;
}
#bottom-form .line.right{
	right: 0;
}
#bottom-form :is(input, label, select){
	width: 100%;
}
#bottom-form :is(.line.top1, .line.top2){
	top: 0;
	height: 2px;
	width: 50%;
	transform: scalex(0);
}
#bottom-form.visible :is(.line.top1, .line.top2){
	transform: scalex(1);
}
#bottom-form .line.top1{
	left: 0;
	transform-origin: right;
}
#bottom-form .line.top2{
	right: 0;
	transform-origin: left;
}
#bottom-form :is(.line.bottom1, .line.bottom2){
	bottom: 0;
	height: 2px;
	width: 50%;
	transition-delay: 1s;
	transform: scalex(0);
}
#bottom-form.visible :is(.line.bottom1, .line.bottom2){
	transform: scalex(1);
}
#bottom-form .line.bottom1{
	left: 0;
	transform-origin: left;
}
#bottom-form .line.bottom2{
	right: 0;
	transform-origin: right;
}
#bottom-form .form-title {
	text-align: center;
}
#bottom-form :is(input, select){
	padding: 1rem 2rem;
}
/* #bottom-form label{
	display: grid;
  grid-template-columns: 50px 1fr;
} */
#bottom-form label input{
	width: auto;
}


#bottom-form .wpcf7 {
	width: 100%;
}
#bottom-form .wpcf7-form {
	position: relative;
	margin: 0;
}
#bottom-form .wpcf7 p {
	margin: 0;
}
#bottom-form .wpcf7 br {
	display: none;
}
#bottom-form .wpcf7 .wpcf7-checkbox + .wpcf7-not-valid-tip {
	margin-left: 1em;
}
#bottom-form .wpcf7 input {
	margin-top: 15px;
}
#bottom-form .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#bottom-form .wpcf7-response-output {
	margin-top: 15px;
	margin-bottom: 0;
}