#booknow-form {
	display: none;
	position: fixed;
	z-index: 99999999999;
	background: #ffffffba;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	justify-content: center;
	align-items: center;
}
#booknow-form.open {display: flex;}
#booknow-form form {
	height: 98vh;
	width: 1000px;
	max-width: 90%;
	background: var(--white);
	overflow-y: auto;
	padding: 20px;
	border-radius: 5px;
	overflow-x: hidden;
	box-shadow: 0 0 6px black;
	padding-bottom: 30px;
}

#booknow-form form .form-title > *{
    line-height: 1.1;
    padding:0;
}
#booknow-form form .close-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#booknow-form .secure-btn {
	color: forestgreen;
	font-size: var(--small);
}
#booknow-form .secure-btn::after {
	content: "";
	border-top: 4px solid;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	position: absolute;
	top: 45%;
	left: calc( 100% + 2px );
}
#booknow-form .secure-msg {
	position: absolute;
	width: 230px;
	line-height: 1.1;
	color: var(--text-color);
	left: 0;
	top: 70%;
	background: var(--white);
	z-index: 1;
	padding: 10px;
	box-shadow: 0 0 8px 4px rgba(0,0,0,0.6);
	border-radius: 3px;
	font-size: var(--xsmall);
    display: none;
}
#booknow-form .secure-btn:hover .secure-msg {
    display: block;
}

#booknow-form .secure-msg::after {
	content: "";
	position: absolute;
	bottom: 100%;
	border-bottom: 6px solid var(--white);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	left: 10px;
}


#booknow-form form .close-btn {
	font-size: var(--xlarge);
	text-align: right;
	text-decoration: none;
	cursor: pointer;
}
#booknow-form .form-title {
    padding: 20px 0;
}
#booknow-form .form-title .title {
    font-size: var(--xxxlarge);
}
#booknow-form form .subtitle {
  font-size: var(--small);
}
#booknow-form form img {
    max-width: 100%;
    height: auto;
}
#booknow-form .featured-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
#booknow-form label {
	font-weight: bold;
	font-size: var(--small);
	padding-top: 8px;
	display: inline-block;
	color: var(--dark-text);
}
#booknow-form .captcha a {
	color: var(--link-color);
	font-size: var(--xsmall);
	top: -11px;
}


#booknow-form__message {
	display: none;
	font-size: var(--small);
}
#booknow-form__message.success {
	background: #a6f1ac;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid forestgreen;
	border-radius: 4px;
	color: forestgreen;
	display: block;
}
#booknow-form__message.error {
	background: #f1a6a6;
	padding: 10px;
	margin: 10px 0;
	border: 1px solid red;
	border-radius: 4px;
	color: red;
	display: block;
}

#booknow-form input:not([type="submit"]), #booknow-form textarea, #booknow-form select {
	width: 100%;
	border: 2px solid var(--border-color);
	padding: 5px;
	margin-bottom: 4px;
	border-radius: 2px;
    line-height: 1.7;
}
#booknow-form select {
	padding: 10px 5px;
	background: transparent;
}

@media only screen and (min-width:600px){
	#booknow-form .featured-image {height: 400px;}

}