/****************************************/
/* CLASSES
/****************************************/


/* Backgrounds */
.cover-bg {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;	
}
.shaded-bg:after {
	content: '';
	position: absolute;
	z-index: 6;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.3);
}
.parallax-bg {
	background-repeat: no-repeat;
	background-position: 50% 0;
	-webkit-transform: translateZ(0);
			transform: translateZ(0);
	-webkit-transition: background-position 0.1s ease;
			transition: background-position 0.1s ease;	
}
/***/



/* Colors */
.white-color { color: var(--white-color); }
.lighter-color { color: var(--lighter-color); }
.light-color { color: var(--light-color); }
.grey-color { color: var(--grey-color); }
.dark-color { color: var(--dark-color); }
.darker-color { color: var(--darker-color); }
.black-color { color: var(--black-color); }
.hot-color { color: var(--hot-color); }
.warm-color { color: var(--warm-color); }
.cool-color { color: var(--cool-color); }
.cold-color { color: var(--cold-color); }
.primary-color { color: var(--primary-color); }
.secondary-color { color: var(--secondary-color); }
.fancy-color { color: var(--fancy-color); }
.main-color { color: var(--main-color); }
.link-color { color: var(--link-color); }
.link-hover-color { color: var(--link-hover-color); }
.parent-color	{ color: inherit; }
/***/



/* Fonts */
.smaller-font 	{ font-size: 0.75em; }
.small-font 	{ font-size: 0.8333em; }
.large-font 	{ font-size: 1.11em; }
.larger-font 	{ font-size: 1.16em; line-height: 1; }
.largest-font 	{ font-size: 1.25em; line-height: 1; }
.latin-text 	{ font-size: 0.8333em; }
.strong-font 	{ font-weight: 700; }

.fancy-text		{ }
.atzofen-font 	{ }
.noto-sans-font	{ }
.heebo-font		{ }
/***/



/* Alignments */
.text-align-initial 	{ text-align: initial; }
.text-align-left 		{ text-align: left; }
.text-align-right 		{ text-align: right; }
.text-align-center 		{ text-align: center; }
.text-align-justify 	{ text-align: justify; }
.text-align-justify-last{ text-align: justify; text-align-last: center;}
.nowrap { white-space: nowrap; }
/***/



/* Other text stuff */
.tight-text-lines {
    line-height: 1.125em;
}
/***/



/* Themes */
.black-theme 		{ background-color: var(--black-color); color: var(--white-color); }
.darker-theme 		{ background-color: var(--darker-color); color: var(--white-color); }
.dark-theme 		{ background-color: var(--dark-color); color: var(--white-color); }
.grey-theme 		{ background-color: var(--grey-color); color: var(--cold-color); }
.light-theme 		{ background-color: var(--light-color); color: var(--black-color); }
.lighter-theme 		{ background-color: var(--lighter-color); color: var(--black-color); }
.white-theme 		{ background-color: var(--white-color); color: var(--black-color); }
.cold-theme 		{ background-color: var(--cold-color); color: var(--white-color); }
.cool-theme 		{ background-color: var(--cool-color); color: var(--white-color); }
.warm-theme 		{ background-color: var(--warm-color); color: var(--white-color); }
.hot-theme 			{ background-color: var(--hot-color); color: var(--white-color); }
.primary-theme 		{ background-color: var(--primary-color); color: var(--cold-color); }
.secondary-theme 	{ background-color: var(--secondary-color); color: var(--white-color); }
.fancy-theme 		{ background-color: var(--fancy-color); color: var(--white-color); }
.custom-theme 		{ }
/***/



/* Buttons */
/*
button {
	cursor: pointer;
	outline: none;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
}
.button {
}
.inline-button {
	display: inline-block;
	width: auto;
}
*/
/***/



/* Visibility */
@media (max-width : 1199px) {
	.desktop-only { 
		display: none !important;
	}		
}
@media (min-width : 1200px) {
	.mobile-only {
		display: none !important;
	}	
}
/***/



/* Misc. */
.clear,
.clear-fix {
	clear: both;
}
/***/









/****************************************/
/* LAYOUT
/****************************************/

/* Static containers */
.narrowest-container,
.narrower-container,
.narrow-container,
.container,
.default-container,
.wide-container,
.wider-container,
.widest-container {
	margin: 0 auto;
	padding: 0 15px;
}
.no-padding-container {
	padding: 0;
}
.narrowest-container 	{ max-width: 576px; }
.narrower-container 	{ max-width: 720px; }
.narrow-container		{ max-width: 960px; }
.container,
.default-container		{ max-width: 1140px; /* 384 * 3 + 30 * 2 = 1212 */ }
.wide-container			{ max-width: 1263px; /* 1280 - 17 */}
.wider-container		{ max-width: 1583px; /* 1600 - 17 */ /* 768 * 2 + 30 = 1566 */ }
.widest-container 		{ max-width: 1920px; }
.fluid-container,
.fullwidth-container 	{ max-width: 100%; }
/***/


.text-container {
	max-width: 562px;
	margin: 0 auto;
	padding: 0 15px;
}
	

/* Flex containers */
.flex-container {
	display: flex;
}
/***/



/* Rows and columns */
.row {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col {
	width: 100%;
	min-height: 1px;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
}
.col-1  { width:  8.33%; } 
.col-2  { width: 16.66%; } 
.col-3  { width: 25.00%; } 
.col-4  { width: 33.33%; } 
.col-5  { width: 41.66%; } 
.col-6  { width: 50.00%; } 
.col-7  { width: 58.33%; } 
.col-8  { width: 66.66%; } 
.col-9  { width: 75.00%; } 
.col-10 { width: 83.33%; } 
.col-11 { width: 91.66%; } 
.col-12 { width: 100%;   }
@media (max-width : 575px) {
	.col-xs-1  { width:  8.33%; } 
	.col-xs-2  { width: 16.66%; } 
	.col-xs-3  { width: 25.00%; } 
	.col-xs-4  { width: 33.33%; } 
	.col-xs-5  { width: 41.66%; } 
	.col-xs-6  { width: 50.00%; } 
	.col-xs-7  { width: 58.33%; } 
	.col-xs-8  { width: 66.66%; } 
	.col-xs-9  { width: 75.00%; } 
	.col-xs-10 { width: 83.33%; } 
	.col-xs-11 { width: 91.66%; } 
	.col-xs-12 { width: 100%;   }
}
@media (min-width : 576px) {
	.col-sm-1  { width:  8.33%; } 
	.col-sm-2  { width: 16.66%; } 
	.col-sm-3  { width: 25.00%; } 
	.col-sm-4  { width: 33.33%; } 
	.col-sm-5  { width: 41.66%; } 
	.col-sm-6  { width: 50.00%; } 
	.col-sm-7  { width: 58.33%; } 
	.col-sm-8  { width: 66.66%; } 
	.col-sm-9  { width: 75.00%; } 
	.col-sm-10 { width: 83.33%; } 
	.col-sm-11 { width: 91.66%; } 
	.col-sm-12 { width: 100%;   }
}
@media (min-width : 768px) {
	.col-md-1  { width:  8.33%; } 
	.col-md-2  { width: 16.66%; } 
	.col-md-3  { width: 25.00%; } 
	.col-md-4  { width: 33.33%; } 
	.col-md-5  { width: 41.66%; } 
	.col-md-6  { width: 50.00%; } 
	.col-md-7  { width: 58.33%; } 
	.col-md-8  { width: 66.66%; } 
	.col-md-9  { width: 75.00%; } 
	.col-md-10 { width: 83.33%; } 
	.col-md-11 { width: 91.66%; } 
	.col-md-12 { width: 100%;   }
}
@media (min-width : 992px) {
	.col-lg-1  { width:  8.33%; } 
	.col-lg-2  { width: 16.66%; } 
	.col-lg-3  { width: 25.00%; } 
	.col-lg-4  { width: 33.33%; } 
	.col-lg-5  { width: 41.66%; } 
	.col-lg-6  { width: 50.00%; } 
	.col-lg-7  { width: 58.33%; } 
	.col-lg-8  { width: 66.66%; } 
	.col-lg-9  { width: 75.00%; } 
	.col-lg-10 { width: 83.33%; } 
	.col-lg-11 { width: 91.66%; } 
	.col-lg-12 { width: 100%;   }
}
@media (min-width : 1200px) { 
	.col-xl-1  { width:  8.33%; } 
	.col-xl-2  { width: 16.66%; } 
	.col-xl-3  { width: 25.00%; } 
	.col-xl-4  { width: 33.33%; } 
	.col-xl-5  { width: 41.66%; } 
	.col-xl-6  { width: 50.00%; } 
	.col-xl-7  { width: 58.33%; } 
	.col-xl-8  { width: 66.66%; } 
	.col-xl-9  { width: 75.00%; } 
	.col-xl-10 { width: 83.33%; } 
	.col-xl-11 { width: 91.66%; } 
	.col-xl-12 { width: 100%;   } 
}
@media (min-width : 1600px) { 
	.col-xxl-1  { width:  8.33%; } 
	.col-xxl-2  { width: 16.66%; } 
	.col-xxl-3  { width: 25.00%; } 
	.col-xxl-4  { width: 33.33%; } 
	.col-xxl-5  { width: 41.66%; } 
	.col-xxl-6  { width: 50.00%; } 
	.col-xxl-7  { width: 58.33%; } 
	.col-xxl-8  { width: 66.66%; } 
	.col-xxl-9  { width: 75.00%; } 
	.col-xxl-10 { width: 83.33%; } 
	.col-xxl-11 { width: 91.66%; } 
	.col-xxl-12 { width: 100%;   } 
}
@media (max-width : 768px) { /* mobile */
	.col--sm-1  { width:  8.33%; } 
	.col--sm-2  { width: 16.66%; } 
	.col--sm-3  { width: 25.00%; } 
	.col--sm-4  { width: 33.33%; } 
	.col--sm-5  { width: 41.66%; } 
	.col--sm-6  { width: 50.00%; } 
	.col--sm-7  { width: 58.33%; } 
	.col--sm-8  { width: 66.66%; } 
	.col--sm-9  { width: 75.00%; } 
	.col--sm-10 { width: 83.33%; } 
	.col--sm-11 { width: 91.66%; } 
	.col--sm-12 { width: 100%;   }
}
@media (min-width : 768px) { /* tablet */
	.col--md-1  { width:  8.33%; } 
	.col--md-2  { width: 16.66%; } 
	.col--md-3  { width: 25.00%; } 
	.col--md-4  { width: 33.33%; } 
	.col--md-5  { width: 41.66%; } 
	.col--md-6  { width: 50.00%; } 
	.col--md-7  { width: 58.33%; } 
	.col--md-8  { width: 66.66%; } 
	.col--md-9  { width: 75.00%; } 
	.col--md-10 { width: 83.33%; } 
	.col--md-11 { width: 91.66%; } 
	.col--md-12 { width: 100%;   }
}
@media (min-width : 1200px) { /* laptop + desktop */
	.col--lg-1  { width:  8.33%; } 
	.col--lg-2  { width: 16.66%; } 
	.col--lg-3  { width: 25.00%; } 
	.col--lg-4  { width: 33.33%; } 
	.col--lg-5  { width: 41.66%; } 
	.col--lg-6  { width: 50.00%; } 
	.col--lg-7  { width: 58.33%; } 
	.col--lg-8  { width: 66.66%; } 
	.col--lg-9  { width: 75.00%; } 
	.col--lg-10 { width: 83.33%; } 
	.col--lg-11 { width: 91.66%; } 
	.col--lg-12 { width: 100%;   } 
}
/***/



/* Vertical spacers */
.vspacer { clear: both; }
.vspacer.smallest 	{ height: 1px; }
.vspacer.smaller 	{ height: 10px; }
.vspacer.small 		{ height: 15px; }
.vspacer,
.vspacer.medium, 
.vspacer.default 	{ height: 30px; }
.vspacer.big 		{ height: 45px; }
.vspacer.bigger 	{ height: 60px; }
.vspacer.biggest 	{ height: 90px; }
/***/



/* Vertical separators */
.vseparator {
	clear: both;
	display: block;
}
.vseparator.smallest	{ margin: 1px auto; }
.vseparator.smaller		{ margin: 10px auto; }
.vseparator.small		{ margin: 20px auto; }
.vseparator.default		{ margin: 30px auto; }
.vseparator.big			{ margin: 45px auto; }
.vseparator.bigger 		{ margin: 60px auto; }
.vseparator.biggest 	{ margin: 90px auto; }

.inline-vseparator {
	display: inline-block;
}
.inline-vseparator:before,
.inline-vseparator:after {
	content: '';
	display: block;
	height: 0;
}

.deco-vseparator {
	clear: both;
}

.dots-vseparator {
	height: 1px;
	background-image: linear-gradient(to right, #000 25%, rgba(255,255,255,0) 0%);
	background-position: bottom;
	background-size: 4px 1px;
	background-repeat: repeat-x;
}

.three-dots-vseparator {
	clear: both;
}
.three-dots-vseparator > span {
	display: inline-block;
	width: 0;
	height: 0;
	margin: 4px;
	border: 4px solid;
}



.fancy-vseparator {
	clear: both;
	min-width: 40px;
	min-height: 40px;
	border: 0;
	background: url('../img/fancy-separator.png') 50% 50% no-repeat;
}
/***/






/****************************************/
/* COMMON ELEMENTS
/****************************************/

/* Loaders */
.loader {
	position: absolute;
	z-index: -9999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
		-ms-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
			transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s; 
}
.loader.on {
	z-index: 9999;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0s;
		-ms-transition: opacity 0.4s ease 0s;
			transition: opacity 0.4s ease 0s;
}
#site-loader {
	position: fixed;
}
.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin: -20px auto auto -20px;
	background-color: var(--primary-color);
}
.loader.animated .spinner {
	-webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
			animation: sk-rotateplane 1.2s infinite ease-in-out;	
}

@-webkit-keyframes sk-rotateplane {
	0% { 
		-webkit-transform: perspective(120px);
	}
	50% { 
		-webkit-transform: perspective(120px) rotateY(180deg);
	}
	100% { 
		-webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg);
	}
}
@keyframes sk-rotateplane {
	0% { 
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);		
				transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	} 
	50% { 
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
				transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
	100% { 
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
				transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}
/***/



/* Swipers */
.swiper-container {
}
.swiper-button-prev,
.swiper-button-next {
	width: 2.2em;
	height: 2.2em;
	margin-top: -1.1em;
	background-color: rgba(255,255,255,0.9);
	cursor: pointer;
}
.swiper-button-prev:after,
.swiper-button-next:after {
	color: #000;
	font-weight: 700;
	font-size: 1.25em;	
}
.swiper-button-next, 
.swiper-rtl .swiper-button-prev {
	right: 2px;
}
.swiper-button-prev, 
.swiper-rtl .swiper-button-next {
	left: 2px;
}
.swiper-slide {
}
.swiper-slide > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.swiper-slide-caption {
	position: absolute;
	z-index: 9;
	left: 2px;
	bottom: 2px;
	min-width: 35%;
	padding: 10px 20px;
	background-color: rgba(255,255,255,0.9);
	color: #000;
	font-weight: 400;
	white-space: nowrap;
	opacity: 0;
	-webkit-transform: translate3d(50px,0,0);
			transform: translate3d(50px,0,0);
}
.swiper-slide-active .swiper-slide-caption {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
	-webkit-transition: all 0.5s ease 0.5s;
			transition: all 0.5s ease 0.5s;
}

@media (min-width : 1200px) {
	.swiper-button-prev,
	.swiper-button-next {
	}
	.swiper-slide-caption {
		bottom: 50%;
		left: calc(2.2em + 5px);
		height: 2.2em;
		margin-bottom: -1.1em;
	}
}


/*
.video-slide .video-player {
	width: 100%;
	height: 100%;
}
.video-slide .video-player > iframe {
	width: 100% !important;
	height: 100% !important;
}
*/
/***/



/* Faders */
.fader { 
	position: relative;
}
.fader-items {
	position: relative;
	height: 100%;
}
.fader-items > div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	-webkit-transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s; 
	   -moz-transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
		-ms-transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
		 -o-transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
			transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
}
.fast-fader > .fader-items > div {
	-webkit-transition-duration: 0.8s; 
	   -moz-transition-duration: 0.8s;
		-ms-transition-duration: 0.8s;
		 -o-transition-duration: 0.8s;
			transition-duration: 0.8s;	
}
.fader-items > div.current {
	z-index: 3;
	opacity: 1;

}
.fader-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	background: rgba(40,40,40,0.85);
	color: #fff;
}
.fader-caption > div {
	padding: 10px 20px 9px 20px;
	white-space: nowrap;
}

@media only screen and (min-width : 1200px) {
	.fader-caption {
		right: 50%;
		bottom: 50%;
		left: 52px;
		max-width: 0;
		margin-bottom: -25px;
		overflow: hidden;
		font-size: 21px;
		-webkit-transition: max-width 0s ease 0.8s;
		   -moz-transition: max-width 0s ease 0.8s;
			-ms-transition: max-width 0s ease 0.8s;
			 -o-transition: max-width 0s ease 0.8s;
				transition: max-width 0s ease 0.8s;
	}
	.on > .fader-caption {
		max-width: 50%;
		-webkit-transition: max-width 0.8s ease 0.8s;
		   -moz-transition: max-width 0.8s ease 0.8s;
			-ms-transition: max-width 0.8s ease 0.8s;
			 -o-transition: max-width 0.8s ease 0.8s;
				transition: max-width 0.8s ease 0.8s;
	}
}
.fader-next,
.fader-prev {
	position: absolute;
	z-index: 9;
	top: 50%;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	background-image: url('../img/arrows.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
.fader-prev {
	left: 10px;
	background-position: 0 50%;
}
.fader-next {
	right: 10px;
	background-position: -48px 50%;
}
/***/



/* Maps */
.map-container,
.map-canvas {
	width: 100%;
	height: 100%;
}
.map-container {
	background: #fff;
}
.map-container.small-map {
	height: 200px;
}

.map-canvas {
	background: #ddd;
}
/***/



/* Lightbox */
.lightbox {
	position: fixed;
	z-index: -999;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0;
	opacity: 0;
	background: rgba(0,0,0,0.95);
	-webkit-transition: z-index 0s ease 0.5s, opacity 0.35s ease;
	   -moz-transition: z-index 0s ease 0.5s, opacity 0.35s ease;
		-ms-transition: z-index 0s ease 0.5s, opacity 0.35s ease;
		 -o-transition: z-index 0s ease 0.5s, opacity 0.35s ease;
			transition: z-index 0s ease 0.5s, opacity 0.35s ease;	
}
.lightbox.open {
	z-index: 999;
	opacity: 1;
	-webkit-transition: z-index 0s ease, opacity 0.5s ease;
	   -moz-transition: z-index 0s ease, opacity 0.5s ease;
		-ms-transition: z-index 0s ease, opacity 0.5s ease;
		 -o-transition: z-index 0s ease, opacity 0.5s ease;
			transition: z-index 0s ease, opacity 0.5s ease;	
}
.lightbox-content {
sem
	background: #042129;
}
.lightbox-content > img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
}
.close-lightbox {
	position: absolute;
	z-index: 99;
	top: 10px;
	right: 10px;
	width: 48px;
	height: 48px;
	cursor: pointer;
}
.close-lightbox::before,
.close-lightbox::after {
	content: '';
	display: block;
	position: absolute;
	top: 22px;
	left: 11px;
	width: 32px;
	height: 4px;
	background: #FFF;
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.3);
	opacity: 0;
}
.lightbox.open .close-lightbox::before,
.lightbox.open .close-lightbox::after {
	opacity: 1;
	-webkit-transition: all 0.4s ease 1s;
			transition: all 0.4s ease 1s;
}
.lightbox.open .close-lightbox::before {
	transform: rotateZ(45deg);
}
.lightbox.open .close-lightbox::after {
	transform: rotateZ(-45deg);
}
@media only screen and (min-width : 1200px) {
	.lightbox {
		padding: 60px;
	}
	.close-lightbox {
		top: 12px;
		right: 12px;
	}
}
/***/



/* Video players */
.video-container {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	box-shadow: 0 2px 4px -2px rgba(0,0,0,0.5);
	background: #000;
}
.video-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/***/



/* Forms */
.form-container {
	position: relative;
}
.form-container form {
	text-align: initial;
}
.form-container > form.off {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
			transition: opacity 0.4s ease;	
}
.form-row {
	margin: 0 -0.5em;
}
.form-col {
	padding: 0 0.5em;
}
.form-field {
	position: relative;
	margin-bottom: 1em;
}
.subscribe-field {
    display: flex;
    align-items: flex-start;
}
input[type=text],
input[type=email],
textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	outline: 0;
	border: 1px solid var(--grey-color);
	padding: 0.75em 1em 0.6666em 1em;
	text-align: initial;
	text-align-last: initial;
	line-height: 1.1111em;
	font-family: inherit;
	font-size: inherit;
	font-weight: 400;
	letter-spacing: 1px;
	background: var(--grey-color);
	color: var(--white-color);
}
input[type=checkbox] {
	appearance: none;
	outline: 0;
	margin: 0;
	border: 1px solid;
	color: inherit;
}
input[type=checkbox]:before {
	content: "\00a0";
	display: inline-block;
	width: 1.3333em;
	height: 1.3333em;
	text-align: center;
	font-weight: 700;
	-webkit-transform: scale(0);
			transform: scale(0);
	-webkit-transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
			transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
input[type=checkbox]:checked:before {
	content: "\2713";
	-webkit-transform: none;
			transform: none;
}
input[type=checkbox] + label {
    padding: 0 0.5em;
	line-height: 1.3333em;
}
::-webkit-input-placeholder { color: #aaa; }
:-moz-placeholder { color: #aaa; opacity: 1; }
::-moz-placeholder { color: #aaa; opacity: 1; }
:-ms-input-placeholder { color: #aaa; }
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
	-webkit-box-shadow: 0px 1px 4px -2px rgba(0,0,0,0.7);
	   -moz-box-shadow: 0px 1px 4px -2px rgba(0,0,0,0.7);
			box-shadow: 0px 1px 4px -2px rgba(0,0,0,0.7);
}
input[type=submit] {
	display: block;
	box-sizing: border-box;
	width: 100%;
	outline: 0;
	border: 1px solid;
	padding: 0.25em 1em;
	text-align: center;
	font-family: inherit;
	font-size: 1.3333em;
	font-weight: 700;
	letter-spacing: 1px;
	background: var(--fancy-color);
	color: var(--white-color);
	cursor: pointer;
	-webkit-transition: background 0.2s ease;
			transition: background 0.2s ease;
}
input[type=submit]:hover {
    background: var(--primary-color);
}
.form-field > .error-box {
	display: block;
	position: absolute;
	z-index: -1;
	top: 50%;
	right: 50%;
	margin-top: -1.125em;
	border-radius: 4px;
	padding: 0.5em 1em;
	white-space: nowrap;
	background: #f44336;
	color: #fff;
	font-size: 0.8em;
	opacity: 0;
	-webkit-transform: translateX(-40px);
	   -moz-transform: translateX(-40px);
		-ms-transform: translateX(-40px);
		 -o-transform: translateX(-40px);
			transform: translateX(-40px);
	-webkit-transition: all 0.35s ease;
			transition: all 0.35s ease;
	-webkit-box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.7);
	   -moz-box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.7);
			box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.7);
}
.form-field > .error-box:after {
	content: "";
	display: block;
	position: absolute;
	right: -5px;
	top: 50%;
	width: 0px;
	height: 0px;
	margin-top: -5px;
	border-right: 0px;
	border-top: 5px solid transparent;
	border-left: 5px solid #f44336;
	border-bottom: 5px solid transparent;
}
.form-field.invalid-field > .error-box {
	z-index: 9;
	opacity: 1;
	-webkit-transform: none;
	   -moz-transform: none;
		-ms-transform: none;
		 -o-transform: none;
			transform: none;
}
.form-return {
	position: absolute;
	z-index: -9;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px 20px;
	color: var(--fancy-color);
    font-size: 1.125em;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
			transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;	
}
.form-return.on {
	z-index: 9;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0.4s;
			transition: opacity 0.4s ease 0.4s;
}
.form-success, 
.form-failure {
	display: none;
}
.form-success.on, 
.form-failure.on {
	display: flex;
	height: 90%;
	flex-direction: column;
	justify-content: center;
}
@media (min-width : 1200px) {
}
/***/



