.vcms__popup-check {
	display: none;
}

.vcms__popup {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, .9);
	opacity: 0;
	visibility: hidden;
	transition: visibility 0s, opacity .35s ease-in-out;
	transition-delay: .65s, .1s;
}

.vcms__popup-check:checked + .vcms__popup {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s, 0s;
}

.vcms__popup .inner {
	box-sizing: border-box;
	width: 540px;
	max-width: 95%;
	margin-bottom: 100px;
	background-color: #ffffff;
	background-position: center;
	background-size: cover;
	box-shadow: 0 20px 63px 0 rgba(0, 0, 0, .15);
	border-radius: 20px;
	opacity: 0;
	transition: margin-bottom .4s cubic-bezier(.42, .72, .37, 1.31), opacity .25s ease-in-out;
	transition-delay: .0s, .0s;
}

.vcms__popup.vcms__seo .inner {
	width: 680px;
}

.vcms__popup-check:checked + .vcms__popup .inner {
	margin-bottom: 0;
	opacity: 1;
	transition-delay: .15s, .15s;
}

.vcms__popup .inner .bg {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, .8) 100%);
	border-radius: 4px;
}

.vcms__popup .inner .bg .header {
	padding: 20px 25px 13px;
	color: #ffffff;
	font-family: "Libre Baskerville", sans-serif;
	font-size: 24px;
	background-color: #97a7b8;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}

.vcms__popup .inner .bg .txt {
	max-height: calc(100vh - 260px);
	padding: 20px 25px;
	overflow: auto;
}

.vcms__popup .inner .bg .footer {
	display: flex;
	justify-content: flex-end;
	box-sizing: border-box;
	padding: 15px 25px 20px;
	background-color: rgba(255, 255, 255, .6);
	border-top: 1px solid #efefef;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.vcms__popup .inner .bg .footer .booking-btn {
	display: flex;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	box-sizing: border-box;
	width: 156px;
	height: 43px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	background-color: #97a7b8;
	border: 2px solid #97a7b8;
	border-radius: 21.5px;
	transition: border .15s ease-in-out, background-color .15s ease-in-out;
}

body:not(.mobile) .vcms__popup .inner .bg .footer .booking-btn:hover {
	background-color: #f36f23;
	border: 2px solid #f36f23;
}

.vcms__popup .inner .bg .footer .close {
	display: flex;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	justify-content: center;
	box-sizing: border-box;
	width: 126px;
	height: 43px;
	margin-left: 7px;
	color: #bcbcbc;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #dadada;
	border-radius: 21.5px;
	cursor: pointer;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border .15s ease-in-out;
}

body:not(.mobile) .vcms__popup .inner .bg .footer .close:hover {
	color: #ffffff;
	background-color: #f36f23;
	border: 2px solid #f36f23;
}

