#body {
	min-height: 100vh;
	background-color: #000;
	color: #eee;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

#body:after {
	content: '';
	position: fixed;
	z-index: -1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: transparent center center/cover no-repeat;
	background-image: var(--bg-image, none);
	opacity: .3;
	background-attachment: fixed;
}

img,
svg,
object {
	max-width: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

img {
	height: auto;
}

img:not([src]) {
	visibility: hidden;
	display: block;
}

label {
	cursor: pointer;
}

input:focus-visible,
button:focus-visible {
	outline: none !important;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
	text-decoration: none;
}

a {
	-webkit-transition: 0.2s ease;
	transition: 0.2s ease;
}

a[href^=mailto],
a[href^=tel] {
	font-size: calc(1.0125rem + 0.15vw);
	font-weight: 600;
	text-decoration: none;
}

ul li::marker {
	color: var(--v-primary);
}

ul:last-child,
ol:last-child,
blockquote:last-child,
q:last-child,
pre:last-child,
code:last-child,
p:last-child {
	margin-bottom: 0;
}



.page {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
}


.--fb-form .fancybox__content {
	max-width: 500px;
	width: 100%;
}

.--fb-form .fancybox__content iframe {
	width: 100% !important;
}