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

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



/* Background */
.cover-bg {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-background-size: cover;
			background-size: cover;	
}
.contain-bg {
	-webkit-background-size: contain;
			background-size: contain;		
}

.parallax-bg {
	background-repeat: no-repeat;
	background-position: 50% 0;
	/*
	-webkit-background-size: 100% auto;
			background-size: 100% auto;	
	*/
	-webkit-transform: translateZ(0);
			transform: translateZ(0);
	-webkit-transition: background-position 0.1s ease !important;
			transition: background-position 0.1s ease !important;	
	will-change: background-position;
}

.fixed-bg {
	background-attachment: fixed;
}
.fixed-bg > img {
	position: fixed;
	top: 0;
}

.shaded-bg:after {
	content: '';
	position: absolute;
	z-index: 6;
	inset: 0;
	background-color: rgba(0,0,0,0.5);
}
/***/


/* Images */
/***/



/* 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); }

.cold-color 		{ color: var(--cold-color); }
.cool-color 		{ color: var(--cool-color); }
.warm-color 		{ color: var(--warm-color); }
.hot-color 			{ color: var(--hot-color); }

.primary-color 		{ color: var(--primary-color); }
.secondary-color	{ color: var(--secondary-color); }
.fancy-color 		{ color: var(--fancy-color); }

.text-color 		{ color: var(--text-color); }
.link-color 		{ color: var(--link-color); }
.hover-color 		{ color: var(--hover-color); }

.alert-color 		{ color: var(--alert-color); }
.error-color 		{ color: var(--error-color); }
.warning-color 		{ color: var(--warning-color); }

.default-color 		{ color: inherit; }
/***/



/* Fonts */
.smallest-font 		{ font-size: 0.6666em; }
.smaller-font 		{ font-size: 0.7777em; }
.small-font 		{ font-size: 0.8888em; }
.large-font 		{ font-size: 1.166667em; }
.larger-font 		{ font-size: 1.333333em; }
.largest-font 		{ font-size: 1.5em; }

.lighter-font		{ font-weight: lighter; }
.bolder-font		{ font-weight: bolder; }

.fancy-font			{ font-family: var(--fancy-font); }
.latin-text 		{ font-size: 0.8888em; }

.font-size--smaller { font-size: smaller; }
.font-size--larger 	{ font-size: larger; }
/***/



/* 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-2	{ text-align: justify; text-align-last: center;}
/***/



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

/********************************/





/********************************/
/* THEMES
/********************************/

.default-theme, 
.white-theme, 
.lighter-theme, 
.light-theme, 
.grey-theme, 
.dark-theme, 
.darker-theme, 
.black-theme,
.cold-theme,
.cool-theme,
.warm-theme, 
.hot-theme, 
.primary-theme, 
.secondary-theme, 
.fancy-theme, 
.custom-theme {
	background-color: var(--bg-color);
	color: var(--text-color);
}

.default-theme {
	/*
	--bg-color			: transparent;
	--text-color		: #000000; 
	--heading-color		: #000000; 
	--link-color		: #7A92CB; 
	--hover-color		: #7A92CB; 
	--fancy-color		: #7A92CB;
	*/
}

.white-theme { 
}  

.light-theme {
	--bg-color: rgba(255,255,255,0.9);
}

.grey-theme { 
}

.dark-theme {
	--bg-color: rgba(0,0,0,0.9);
	--text-color: #FFF;
}

.black-theme {  
}  

.cold-theme {  
}

.cool-theme { 
}

.warm-theme {
}

.hot-theme {
}

.primary-theme {
	--bg-color			: var(--primary-color);
	--text-color		: var(--white-color);
	--heading-color		: var(--text-color); 
}

.secondary-theme {
	--bg-color			: var(--secondary-color);
	--text-color		: var(--white-color);
	--heading-color		: var(--text-color);
	--fancy-color 		: var(--hover-color);
}

.fancy-theme {
	--bg-color			: var(--fancy-color);
	--text-color		: var(--white-color);
	--link-color		: red;
	--link-hover-color	: var(--white-color); 
}

.custom-theme {
	--text-color		: var(--fancy-color);
}





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


/* Containers */
.narrowest-container,
.narrower-container,
.narrow-container,
.container,
.default-container,
.wide-container,
.wider-container,
.widest-container,
.fluid-container,
.fullwidth-container {
	width: 100%;
	margin: 0 auto;
	padding-inline: 15px;
}
.narrowest-container 	{ max-width: 540px; }
.narrower-container 	{ max-width: 798px; /* 768 + (padding-inline) */ }
.narrow-container		{ max-width: 960px; }
.container,
.default-container		{ max-width: 1140px; }
.wide-container			{ max-width: 1320px; }
.wider-container		{ max-width: 1600px; }
.widest-container 		{ max-width: 1832px; }

.text-container {
	width: 30em;
	max-width: 100%;
	margin: 0 auto;
	padding-inline: 15px;
}
/***/



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

.flex-5vh 	{ min-height:  5vh; }
.flex-10vh 	{ min-height: 10vh; }
.flex-15vh 	{ min-height: 15vh; }
.flex-20vh 	{ min-height: 20vh; }
.flex-25vh 	{ min-height: 25vh; }
.flex-30vh 	{ min-height: 30vh; }
.flex-35vh 	{ min-height: 35vh; }
.flex-40vh 	{ min-height: 40vh; }
.flex-45vh 	{ min-height: 45vh; }
.flex-50vh 	{ min-height: 50vh; }
.flex-55vh 	{ min-height: 55vh; }
.flex-60vh 	{ min-height: 60vh; }
.flex-65vh 	{ min-height: 65vh; }
.flex-70vh 	{ min-height: 70vh; }
.flex-75vh 	{ min-height: 75vh; }
.flex-80vh 	{ min-height: 80vh; }
.flex-85vh 	{ min-height: 85vh; }
.flex-90vh 	{ min-height: 90vh; }
.flex-95vh 	{ min-height: 95vh; }
.flex-100vh { min-height: 100vh; }

.flex-top		{ justify-content: flex-start; }
.flex-center	{ justify-content: center; }
.flex-bottom	{ justify-content: flex-end; }
.flex-space-between	{ justify-content: space-between; }
.flex-space-around	{ justify-content: space-around; }
.flex-space-evenly	{ justify-content: space-evenly; }
/***/



/* Rows and columns */
.row {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin-inline: -15px;
}
.col {
	width: 100%;
	min-height: 1px;
	padding: 10px 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)  { .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 : 1200px) { .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 margins and paddings */
.px-margin 			{ margin-top:  1px; margin-bottom:  1px; }
.smallest-margin 	{ margin-top:  5px; margin-bottom:  5px; }
.smaller-margin 	{ margin-top: 10px; margin-bottom: 10px; }
.small-margin 		{ margin-top: 20px; margin-bottom: 20px; }
.medium-margin		{ margin-top: 30px; margin-bottom: 30px; }
.big-margin 		{ margin-top: 45px; margin-bottom: 45px; }
.bigger-margin 		{ margin-top: 60px; margin-bottom: 60px; }
.biggest-margin 	{ margin-top: 90px; margin-bottom: 90px; }

.px-padding 		{ padding-top:  1px; padding-bottom:  1px; }
.smallest-padding 	{ padding-top:  5px; padding-bottom:  5px; }
.smaller-padding 	{ padding-top: 10px; padding-bottom: 10px; }
.small-padding 		{ padding-top: 20px; padding-bottom: 20px; }
.medium-padding		{ padding-top: 30px; padding-bottom: 30px; }
.big-padding 		{ padding-top: 45px; padding-bottom: 45px; }
.bigger-padding 	{ padding-top: 60px; padding-bottom: 60px; }
.biggest-padding 	{ padding-top: 90px; padding-bottom: 90px; }
/***/



/* Side padding */
.no-padding 		{ padding-left:  0;		padding-right:  0; }
.thinnest-padding 	{ padding-left:  1px;	padding-right:  1px; }
.thinner-padding 	{ padding-left:  5px;	padding-right:  5px; }
.thin-padding 		{ padding-left: 10px;	padding-right: 10px; }
.default-padding 	{ padding-left: 15px;	padding-right: 15px; }
.thick-padding 		{ padding-left: 30px;	padding-right: 30px; }
.thicker-padding 	{ padding-left: 45px;	padding-right: 45px; }
.thickest-padding 	{ padding-left: 60px;	padding-right: 60px; }

.no-padding > .row			{ margin-left: 0;		margin-right: 0; }
.thinnest-padding > .row 	{ margin-left: -1px;	margin-right: -1px; }
.thinner-padding > .row 	{ margin-left: -5px;	margin-right: -5px; }
.thin-padding > .row 		{ margin-left: -10px;	margin-right: -10px; }
.default-padding > .row 	{ margin-left: -15px;	margin-right: -15px; }
.thick-padding > .row		{ margin-left: -30px;	margin-right: -30px; }
.thicker-padding > .row		{ margin-left: -45px;	margin-right: -45px; }
.thickest-padding > .row 	{ margin-left: -60px;	margin-right: -60px; }

.no-padding > .row > .col		{ padding-left: 0;		padding-right: 0; }
.thinnest-padding > .row > .col	{ padding-left: 1px;	padding-right: 1px; }
.thinner-padding > .row > .col	{ padding-left: 5px;	padding-right: 5px; }
.thin-padding > .row > .col		{ padding-left: 10px;	padding-right: 10px; }
.default-padding > .row > .col	{ padding-left: 15px;	padding-right: 15px; }
.thick-padding > .row > .col	{ padding-left: 30px;	padding-right: 30px; }
.thicker-padding > .row > .col	{ padding-left: 45px;	padding-right: 45px; }
.thickest-padding > .row > .col	{ padding-left: 60px;	padding-right: 60px; }
/***/



/* Vertical spacers */
.vspacer { clear: both; }
.smallest-vspacer	{ height: 5px; }
.smaller-vspacer 	{ height: 10px; }
.small-vspacer 		{ height: 15px; }
.default-vspacer 	{ height: 30px; }
.big-vspacer 		{ height: 45px; }
.bigger-vspacer 	{ height: 60px; }
.biggest-vspacer 	{ height: 75px; }

.vspacer.smallest 	{ height: 5px; }
.vspacer.smaller 	{ height: 10px; }
.vspacer.small 		{ height: 15px; }
.vspacer.default 	{ height: 30px; }
.vspacer.big 		{ height: 45px; }
.vspacer.bigger 	{ height: 60px; }
.vspacer.biggest 	{ height: 90px; }
/***/



/* Vertical separators */
.vseparator { clear: both; }
.vseparator.smallest	{ margin-top:  5px; margin-bottom:  5px;  }
.vseparator.smaller 	{ margin-top: 10px; margin-bottom: 10px; }
.vseparator.small 		{ margin-top: 15px; margin-bottom: 15px; }
.vseparator, 
.vseparator.default 	{ margin-top: 30px; margin-bottom: 30px; }
.vseparator.big 		{ margin-top: 45px; margin-bottom: 45px; }
.vseparator.bigger 		{ margin-top: 60px; margin-bottom: 60px; }
.vseparator.biggest 	{ margin-top: 90px; margin-bottom: 90px; }


.vseparator-hline {
	display: block;
}


.vseparator-inline {
	display: inline-block;
	vertical-align: top;
	width: 10em;
	max-width: 100%;
	height: 0;
	border: 4px solid;
}


.vseparator-icon {
}


.vseparator-deco {
}


.vseparator.three-dots {
	white-space: nowrap;
}
.vseparator.three-dots > span,
.vseparator.three-dots > i {
	vertical-align: middle;
	margin: 0 0.3333em;
	font-size: 0.6666em;
}
.vseparator.three-dots > span {
	display: inline-block;
}

/***/



/* Decorations */
/***/


/********************************/





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

/* Loaders */ 
.loader {
	position: absolute;
	z-index: -99;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
	   -moz-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
		 -o-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: 99;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0s, z-index 0s ease 0s;
	   -moz-transition: opacity 0.4s ease 0s, z-index 0s ease 0s;
		 -o-transition: opacity 0.4s ease 0s, z-index 0s ease 0s;
			transition: opacity 0.4s ease 0s, z-index 0s ease 0s;
}
.loader:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 128px;
	height: 128px;
	margin: -64px 0 0 -64px;
	/*background: #231f20 url(../img/star-purple.png) 50% 50% no-repeat;*/
	background-color: #231f20;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease 0s;
	   -moz-transition: opacity 0.4s ease 0s;
		 -o-transition: opacity 0.4s ease 0s;
			transition: opacity 0.4s ease 0s;
}
.loader.on:after {
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0.8s;
	   -moz-transition: opacity 0.4s ease 0.8s;
		 -o-transition: opacity 0.4s ease 0.8s;
			transition: opacity 0.4s ease 0.8s;
}
.loader.animated:after {
	-webkit-animation: sk-rotateplane 5.0s infinite ease-in-out;
			animation: sk-rotateplane 5.0s infinite ease-in-out;
}
@-webkit-keyframes sk-rotateplane {
	  0% { -webkit-transform: perspective(200px); }
	 25% { -webkit-transform: perspective(200px) rotateY(360deg); }
	 35% { -webkit-transform: perspective(200px) rotateY(360deg); }
	 60% { -webkit-transform: perspective(200px) rotateY(720deg); }
	100% { -webkit-transform: perspective(200px) rotateY(720deg); }
}
@keyframes sk-rotateplane {
	  0% { transform: perspective(200px); }
	 25% { transform: perspective(200px) rotateY(360deg); }
	 35% { transform: perspective(200px) rotateY(360deg); }
	 60% { transform: perspective(200px) rotateY(720deg); }
	100% { transform: perspective(200px) rotateY(720deg); }
}
#site-loader {
	position: fixed;
}
#site-loader.one {
	z-index: 9999;	
}
/***/



/* 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 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s; 
			transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
}
.fader-items > div.current {
	z-index: 3;
	opacity: 1;
	-webkit-transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s; 
			transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
}
.fader-items > div > img {
	display: block;
}
/***/



/* Swipers */
.swiper-container {
	width: round(100%,1px); 
	--swiper-navigation-size: 1em;
}
.swiper-button-prev, 
.swiper-button-next {
	width: 44px;
	height: 48px;
	margin-top: -48px;
	border: 1px solid rgba(0,0,0,0.1);
	background-color: rgba(0,0,0,0.1);
	-webkit-transition: background-color 0.2s ease;
			transition: background-color 0.2s ease;
}
.swiper-button-prev:hover, 
.swiper-button-next:hover {
	background-color: rgba(0,0,0,0.2);
}
.swiper-button-prev:after,
.swiper-button-next:after {
	font-weight: 900;
	color: #FFF;
}

.swiper-slide-caption {
	padding: 0.75em 1.5em;
	text-align: center;
	font-weight: 400;
}
/***/




/* Lists */

/***/



/* Lightbox */
.lightbox {
	position: fixed;
	z-index: -999;
	inset: 0;
	display: flex;
	align-items: center; 
	padding: 50px 10px;
	opacity: 0;
	background: rgba(255,255,255,0.95);
	color: var(--text-color);
	-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 .spinner {
	background-color: #ccc;
}
.lightbox-content {
	position: relative;
	width: 100%;
	max-height: 100%;
	overflow: auto;
}
.map-lightbox .lightbox-content {
	height: 100%;
}
.gallery-lightbox .lightbox-content {
	height: 100%;
	overflow: visible;
}
.lightbox-content > * {
	direction: rtl;
}



/*
.text-lightbox .lightbox-content {
	background: var(--white-color);
	color: var(--text-color);	
}
.text-lightbox > .lightbox-content {
	padding: 60px 10px;
	
}
*/

.close-lightbox {
	position: absolute;
	z-index: 99;
	top: 4px;
	right: 8px;
	width: 48px;
	height: 48px;
	cursor: pointer;
}
.close-lightbox::before,
.close-lightbox::after {
	content: '';
	display: block;
	position: absolute;
	top: 24px;
	left: 10px;
	width: 28px;
	height: 0;
	border-top: 3px solid;
	opacity: 0;
}
.lightbox.open .close-lightbox::before,
.lightbox.open .close-lightbox::after {
	opacity: 1;
	-webkit-transition: all 0.4s ease 1.2s;
			transition: all 0.4s ease 1.2s;
}
.lightbox.open .close-lightbox::before {
	transform: rotateZ(45deg);
}
.lightbox.open .close-lightbox::after {
	transform: rotateZ(-45deg);
}



.lightbox-content .swiper-container {
	height: 100%;
	overflow-x: clip;
	--swiper-navigation-size: 1.5em;
}
.lightbox-content .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.lightbox-content .swiper-slide-caption {
	padding: 0.5em 1em;
	text-align: center;
}
.lightbox .swiper-button-prev, 
.lightbox .swiper-button-next {
	color: #fff;
	opacity: 0;
	-webkit-transition: all 0.4s ease 1s;
			transition: all 0.4s ease 1s;
}
.lightbox .swiper-button-prev {
	-webkit-transform: translateX(25px);
			transform: translateX(25px);
} 
.lightbox .swiper-button-next {
	-webkit-transform: translateX(-25px);
			transform: translateX(-25px);
}
.lightbox.open .swiper-button-prev, 
.lightbox.open .swiper-button-next {
	opacity: 1;
	-webkit-transform: none;
			transform: none;	
}

.lightbox .swiper-pagination {
	bottom: -1.5em;
}
.lightbox .swiper-pagination-bullet,
.lightbox .swiper-pagination-bullet-active {
	background: #fff;
}

.lightbox .swiper-slide-active .swiper-slide-caption {
	-webkit-transform: translateY(100%);
			transform: translateY(100%);
}
.lightbox.open .swiper-slide-active .swiper-slide-caption {
	-webkit-transform: none;
			transform: none;	
}
.lightbox-content .map-canvas {
	height: 100%;
}




@media (min-width : 1200px) {
	.lightbox {
		padding: 5em 3em 3em 3em;
	}
	.close-lightbox {
		top: 1em;
		right: 2em;
	}
}
/***/



/* 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%;
}

@media (orientation: portrait) {
	.desktop-video {
		display: none !important;
	}
}
@media (orientation: landscape) {
	
	.mobile-video {
		display: none !important;
	}
}
/***/



/* Google maps */
.google-map {
	max-height: 100vh;
}
.google-map.small-map 	{ height: 240px; }
.google-map.medium-map 	{ height: 360px; }
.google-map.large-map 	{ height: 640px; }
.google-map.full-map 	{ height: 100%; }

.google-map > .map-canvas {
	width: 100%;
	height: 100%;
	background: var(--grey-color);
	/*border: 1px solid #CCC;*/
}
.google-map > .map-marker,
.google-map > .map-pin,
.google-map > .map-infobox {
	display: none;
}

.map-popup-anchor {
	width: 0;
	height: 0;
	position: absolute; 
}
.map-popup-wrapper {
	position: absolute;
	width: max-content;
	bottom: 15px;
	left: 0;
	border-radius: 4px;
	background: var(--fancy-color);
	color: var(--white-color);
	filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
	transform: translate3d(-50%,-100px,0);
	opacity: 0;
	-webkit-transition: all 0.6s ease;
			transition: all 0.6s ease;
}
.map-loaded .map-popup-wrapper {
	transform: translate3d(-50%,0,0);
	opacity: 1;
}
.map-popup-wrapper::after {
	content: "";
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-top: 16px solid var(--fancy-color);
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 0;
}
.map-popup-content {
	padding: 1em 1.5em;
	font-family: 'Heebo', Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.3333em;
	
}
.map-popup-bubble-anchor {
	position: absolute;
	width: 100%;
	bottom: 12px;
	left: 0;
	transform: translate3d(0,-100px,0);
	opacity: 0;
}
.map-loaded .map-popup-bubble-anchor {
	transform: translate3d(0,0,0);
	opacity: 1;
	-webkit-transition: all 0.8s cubic-bezier(0.770, 0.000, 0.175, 1.000);
			transition: all 0.8s cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
.map-popup-bubble-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translate(-50%,-100%);
	background-color: var(--dark-color);
	color: #fff;
	padding: 1em;
	overflow-y: auto;
	box-shadow: 0px 2px 6px 1px rgba(0,0,0,0.3);
	font-size: 1.1667rem;
}
.map-popup-bubble-content h3,
.map-popup-bubble-content h4 {
	margin: 0.25em 0;
}
.map-popup-bubble-content p {
	margin-bottom: 0.75em;
}
.map-popup-bubble-content p:last-child {
	font-size: 0.857142em;
}
.map-popup-bubble-content a {
	color: inherit;
	white-space: nowrap;
}
.map-popup-bubble-content a.open-google-map {
	display: inline-block;
	width: 30px;
	height: 40px;
	background: url('../img/map-pin.png') 50% 50% no-repeat;
}
.google-maps-link {
	border-top: 1px solid;
	padding: 0.5em 0 0.25em 0;
	text-align: center;
}
/***/



/* Forms */
::-webkit-input-placeholder { color: var(--fancy-color); opacity: 0.8; }
:-moz-placeholder 			{ color: var(--fancy-color); opacity: 0.8; }
::-moz-placeholder 			{ color: var(--fancy-color); opacity: 0.8; }
:-ms-input-placeholder 		{ color: var(--fancy-color); opacity: 0.8; }

.form-container {
	position: relative;
}
.form-container form {
}
.form-container > form.off {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
			transition: opacity 0.4s ease;	
}
.form-row {
	margin: 0 -10px;
}
.form-col {
	padding: 0 10px;
}
.form-field {
	position: relative;
	margin-bottom: 1em;
	text-align: initial;
}
.subscribe-field {
	font-size: 0.8em;
	display: flex;
    align-items: flex-start;
	gap: 0.3333em;
}
.submit-field {
	text-align: left;
}
input, 
textarea {
	outline: 0;
	background: var(--white-color);
	color: var(--fancy-color);
	font: inherit;
	text-align: initial;
	text-align-last: initial;
}
input[type=text], 
input[type=email], 
input[type=password], 
textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	border: 1px solid;
	padding: 0.75em 1.25em;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
textarea {
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
	color: var(--text-color);
}

input[type=checkbox] {
	appearance: none;
	margin: 0 0 0 0.5em;
	border: 1px solid;
    vertical-align: text-top;
	line-height: 1em !important;
}
input[type=checkbox]:before {
	content: "\00a0";
	display: inline-block;
	vertical-align: baseline;
	width: 1.2em;
	height: 1.2em;
	text-align: center;
	font-size: 0.75em;
	-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 {
	vertical-align: middle;
	text-wrap: balance;
	cursor: pointer;
}

input[type=submit] {
	border: 0;
	padding: 0.5em 3em;
	background: var(--fancy-color);
	color: #FFF;
	text-align: center;
	font-weight: 400;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
input[type=submit]:hover {
}

.form-field > .error-box {
	display: block;
	position: absolute;
	z-index: -1;
	top: 50%;
	right: 25%;
	border-radius: 4px;
	padding: 0.5em 1em;
	white-space: nowrap;
	background: var(--error-color);
	color: #fff;
	font-size: max(0.75em,15px);
	opacity: 0;
	-webkit-transform: translate3D(-48px,-50%,0);
			transform: translate3D(-48px,-50%,0);
	-webkit-transition: all 0.35s ease;
			transition: all 0.35s ease;
	-webkit-box-shadow: 0px 2px 5px -3px rgba(0,0,0,0.75);
			box-shadow: 0px 2px 5px -3px rgba(0,0,0,0.75);
}
.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 var(--error-color);
	border-bottom: 5px solid transparent;
}
.form-field.invalid-field > .error-box {
	z-index: 9;
	opacity: 1;
	-webkit-transform: translate3D(0,-50%,0);
			transform: translate3D(0,-50%,0);
}

.form-return {
	position: absolute;
	z-index: -9;
	inset: 0;
	padding-block: 2em;
	align-content: center;
	color: var(--primary-color);
	font-size: 1.25em;
	font-weight: 400;
	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.2s;
			transition: opacity 0.4s ease 0.2s;
}
.form-success, 
.form-failure {
	display: none;
}
.form-success.on, 
.form-failure.on {
	display: block;
}


@media (min-width : 1200px) {
	.form-row {
		display: flex;
		flex-wrap: wrap;
	}
	.form-col {
		flex-grow: 1;
	}
	.form-col-3 {
		width: 25%;
	}
	.form-col-6 {
		width: 50%;
	}
	.form-col-9 {
		width: 75%;
	}
	.form-col-12 {
		width: 100%;
	}
}
/***/



/********************************/

