.full-booking-form{
	position: relative;
	z-index: 4;
	margin: var(--margin-xl) auto;
    max-width: var(--wp--style--global--wide-size);
}
.full-booking-form.aligncenter{
	margin: var(--margin-xl) auto ;
    max-width: var(--wp--style--global--wide-size);
    padding: 0 calc(40px + 4vw);
}
.full-booking-form-content{
	width: 100%;
	background: var(--default-colour2);
	padding: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
}
.full-booking-form-form{
	width:100% ;
}
.full-booking-form-form h2,
.full-booking-form-form h3,
.full-booking-form-form p{
	text-align: center;
	width: 100%;
}

.full-booking-form-form-holder {
	width: 100%;
	padding-top: 30px;
}
.full-booking-form-form-holder form{
	width: 100%;
}
.full-booking-form-form-holder input{
	width: 100%;
	padding: 10px;
	background: rgba(255,255,255,0.5);
	outline: none;
	border: 0px solid rgba(0, 0, 0, 0);
	border-bottom: rgba(0,0,0,0.6) 1px solid;
	color: var(--default-colour1);
	margin-bottom: 10px;
}
.full-booking-form-form-holder button{
	width: 100%;
	background: var(--default-colour1);
	color: var(--default-colour2);
    font-family: 'rugenexpanded';
	border: 0px solid rgba(0, 0, 0, 0);
	transition: all ease-in-out 0.4s;
	padding: 15px 40px;
}
.full-booking-form-form-holder button:hover{
	background: #fff;
	color: var(--default-colour2);
}

.full-booking-form.overlap-previous,
.full-booking-form.overlap-previous.aligncenter {
    position: relative;
    margin-top: -150px;
    z-index: 5;
}