@charset "utf-8";

@font-face {
    font-family: 'RedHatDisplay';
    src: url('../fonts/RedHatDisplay-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'RedHatDisplay';
    src: url('../fonts/RedHatDisplay-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'RedHatDisplay';
    src: url('../fonts/RedHatDisplay-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'RedHatDisplay';
    src: url('../fonts/RedHatDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'RedHatDisplay';
    src: url('../fonts/RedHatDisplay-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'RedHatDisplay';
    src: url('../fonts/RedHatDisplay-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
    display: none;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
div {
	box-sizing: border-box;
}







html, body { 
	width: 100vw; 
	height: 100vh; 
	-webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    font-size-adjust: none;
    -moz-font-size-adjust: none;
    -webkit-font-size-adjust: none; 
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
html { 

}
body { 
	overflow-x: hidden;
	scroll-behavior: smooth;
	padding-top: var(--header-height);
}
body.no-scroll { 
	overflow-y: hidden;
}

header {

}
main {
	height: auto;
	min-height: 100vh;
}
footer {

}

/* HEADER */
	header {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: 400;
		color: var(--color-2);
		background-color: transparent;
		
		height: auto;
		min-height: var(--header-height);

		display: flex;
		flex-flow: row nowrap;
  		justify-content: stretch;
		align-items: center;
	}
	#header-wrap {
		width: 100%;
		background-color: transparent;
		padding: calc(1 * var(--spacer));
		xpadding-bottom: calc(1 * var(--spacer));
		xpadding-left: calc(1 * var(--spacer));
		xpadding-right: var(--handler-width); /* calc(1 * var(--spacer));*/
	}



	#header__nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: auto;
		left: 0;
		z-index: 500;
		pointer-events: none;

		height: auto;
		min-height: var(--header-height);

		display: flex;
		flex-flow: row nowrap;
  		justify-content: center;
		align-items: center;
	}

	#header__nav-handle {
		pointer-events: auto;
	}






	#header__container {
		width: 100%;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;

		padding: calc(1 * var(--spacer));
		padding-right: calc(2 * var(--spacer) + var(--handler-width));

		position: relative;
	}
	#header__logo {
		position: relative;
		display: block;
		transform: rotate(-3deg);
	}
	#header__logo a {
		display: block;
		background-color: var(--color-primary);
		background: var(--gradient-1);
		border-radius: var(--border-radius-4);
		box-shadow: 0 5px 50px 0 rgba(0,0,0,.1);
	}
	#header__logo img {
		height: 4.5rem;
		width: auto;
		display: block;
	}
	#header__menu-wrapper {
		height: 100%;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-end;

		background-color: var(--color-3);
		border-radius: var(--border-radius-4);
	}


/* PRIMARY MENU */
	#header-menu {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: flex-start;
		height: 100%;
	}
	#header-menu li {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
	}
	#header-menu li.parent-wide {
		
	}

	#header-menu a {
		display: block;
		padding: calc(1.5 * var(--spacer)) calc(.5 * var(--spacer));
		margin: 0 calc(.33 * var(--spacer)) 0 0;
		position: relative;
		text-transform: uppercase;
		font-weight: 600;
	}
	#header-menu a.special {
		display: block;
		padding: calc(.75 * var(--spacer)) var(--spacer);
		position: relative;
		text-transform: uppercase;
		background: var(--gradient-3);
		color: var(--color-1);
		border-radius: var(--border-radius-3);
	}
	#header-menu a:hover {
		transform: translateY(.125em);
	}
	#header-menu a:not(.special):hover, #header-menu a.actual {
		color: var(--color-primary);
	}
	#header-menu .header-menu-sub {
		position: absolute;
		top: 100%;
		left: 50%;
		z-index: 600;
		width: 15rem;
		height: auto;
		padding: calc(.5 * var(--spacer));
		background-color: var(--color-3);
		box-shadow: 0px 15px 15px rgba(0,0,0,0.125);
		border-top: none;

		border-bottom-left-radius: var(--border-radius-2);
		border-bottom-right-radius: var(--border-radius-2);
		overflow: hidden;
		
		display: none;

		transform: translateX(-50%);
	}
	#header-menu .header-menu-sub a {
		padding: var(--spacer);
	}
	#header-menu li.parent:hover > a::before {
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 6px 4px 6px;
		border-color: transparent transparent var(--color-primary) transparent;
		position: absolute;
		right: auto;
		top: auto;
		left: 50%;
		bottom: 0;
		background-color: transparent;
		transform: translateX(-50%);
	}
	#header-menu li:hover .header-menu-sub {
		display: block;
		opacity: 1;
		animation: menu-sub-opacity .1s ease-out;
	}
	@keyframes menu-sub-opacity {
		0% {
			opacity: 0.1;
			transform: translate(-50%,.33rem);
		}
		100% {
			opacity: 1;
			transform: translateX(-50%);
		}
	}

	#header-menu .header-menu-sub-wide {
		position: absolute;
		top: 100%;
		left: calc(2 * var(--spacer));
		right: calc(2 * var(--spacer));
		z-index: 600;
		width: auto;
		height: auto;
		padding: 0;
		background-color: var(--color-3);

		box-shadow: 0px 15px 15px rgba(0,0,0,0.125);

		border-top: 2px solid var(--color-primary);

		border-radius: var(--border-radius-2);
		overflow: hidden;

		display: none;
	}
	#header-menu li.parent-wide:hover .header-menu-sub-wide {
		display: block;
		opacity: 1;
		animation: menu-sub-wide-opacity .1s ease-out;
	}
	@keyframes menu-sub-wide-opacity {
		0% {
			opacity: 0.1;
			transform: translateY(.33rem);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}

	#header-menu .header-menu-sub a, #header-menu .header-menu-sub-wide a {
		color: var(--color-2);
	}



	#header-menu .menu-sub-btn {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;

		padding: calc(.66 * var(--spacer)) calc(1 * var(--spacer));

		font-size: 1;
		line-height: 1.125em;
		font-weight: 600;

		min-height: 3rem;
	}
	#header-menu .menu-sub-btn.actual {
		color: var(--color-8);
	}
	#header-menu .menu-sub-btn, #header-menu .menu-sub-logo {
		border-radius: var(--border-radius-2);
	}

	#header-menu .menu-sub-btn .thumb {
		-webkit-filter: grayscale(100%);
  		filter: grayscale(100%);
		margin-right: 1em;
	}

	


	#header-menu .menu-sub-logo {
		text-align: center;
		padding: calc(.5 * var(--spacer)) calc(.5 * var(--spacer));
	}
	#header-menu .menu-sub-logo .thumb {
		-webkit-filter: grayscale(100%);
  		filter: grayscale(100%) opacity(.7);
	}

	#header-menu .menu-sub-btn:hover, #header-menu .menu-sub-logo:hover {
		box-shadow: var(--shadow-1);
	}

	#header-menu .header-menu-sub-wide a:hover, #header-menu .header-menu-sub a:hover {
		color: var(--color-primary);
	}

/* END PRIMARY MENU */

/* SECONDARY MENU */

	
	#sidebar-menu ul  {
		list-style: none;
	}
	#sidebar-menu li  {
		padding: calc(.5 * var(--spacer)) 0;
	}
	#sidebar-menu a:hover {
		transform: translateY(.125em);
	}
	#sidebar-menu a:hover, .sidebar-menu-main a.actual {
		color: var(--color-primary);
	}

	.sidebar-menu-main li  {
		padding: calc(.5 * var(--spacer)) 0;
	}

	.sidebar-menu-main a  {
		font-size: 2.5em;
		line-height: 1em;
		font-weight: 900;

		display: block;
		padding: calc(.5 * var(--spacer)) 0;
	}

	#sidebar-menu-sub li  {
		padding: calc(.125 * var(--spacer)) 0;
	}
	#sidebar-menu-sub a  {
		font-size: 1em;
		font-weight: 400;

		display: block;
		padding: calc(.25 * var(--spacer)) 0;
	}
	

/* END SECONDARY MENU */



/* NAV MENU COLUMN */
	.nav-menu-col {

	}
	.nav-menu-col ul {
		
	}
	.nav-menu-col li {
		
	}
	.nav-menu-col a {
		display: block;
		padding: calc(.25 * var(--spacer)) var(--spacer);
		color: var(--color-2);
	}
	.nav-menu-col a:hover, .nav-menu-col a.actual {
		color: var(--color-8) !important;
	}

/*
FOOTER
*/
#footer-logo {
	height: 5rem;
	width: auto;
	max-width: 90%;
}

/*
BANNER-HEADER
*/

	#banner-header {
		background-color: var(--color-2);
		color: var(--color-1);
		font-size: .875em;
		line-height: 1;
	}

/*
BANNER HERO
*/
	/*
	#banner-hero {
		position: relative;
	}
	*/

	/*
	#banner-main {
		width: 100%;
		height: calc(90vh + 0);
		background-color: transparent;
		position: relative;

		
		xoverflow: hidden;
	}
	*/
	#banner-main {
		position: relative;
		align-items: flex-end;
	}

	#banner-main .swiper {
		width: 100%;
		max-width: 100vw;
		position: relative;

		border-radius: var(--border-radius-4);
		overflow: hidden;
	}
	#banner-main .swiper-wrapper {
		width: 100%;
		height: auto;
	}
	#banner-main .swiper-slide {
		width: 100%;
		height: 80vh;
		position: relative;
		display: flex; 
		flex-flow: row wrap;
		align-items: flex-end;
		justify-content: flex-start;
	}
	#banner-main .swiper-scrollbar-wrap {
		position: absolute;
		top: auto;
		bottom: var(--spacer);
		left: var(--spacer);
		right: auto;
		z-index: 900;
		width: 50%;

		background-color: var(--color-3);
		padding: .25em;
		border-radius: var(--border-radius-4);
	}

	#banner-main .swiper-scrollbar-btn {
		position: absolute;
		top: auto;
		bottom: 0;
		right: 0;
		left: auto;
		z-index: 900;
		width: auto;

		display: flex;
		flex-flow: row nowrap;
		gap: .5em;

		background-color: var(--color-3);
		padding: .75rem var(--spacer) 0 .75rem;
		border-top-left-radius: var(--border-radius-5);
	}
	#banner-main .swiper-scrollbar-btn::after {
		content: "";
		position: absolute;
		bottom: 100%;
		right: 0;
		height: 3rem;
		width: 3rem;
		border-bottom-right-radius: var(--border-radius-4);
		background-color: transparent;
		box-shadow: 0 0 0 50px var(--color-3), 0 0 0 0 var(--color-3);
		pointer-events: none;
		clip-path: inset(0);
		transform: skewY(0.001deg);
	}
	#banner-main .swiper-scrollbar-btn::before {
		content: "";
		position: absolute;
		bottom: 0;
  		right: 100%;
		height: 3rem;
		width: 3rem;
		border-bottom-right-radius: var(--border-radius-4);
		background-color: transparent;
		box-shadow: 0 0 0 50px var(--color-3), 0 0 0 0 var(--color-3);
		pointer-events: none;
		clip-path: inset(0);
		transform: skewY(0.001deg);
	}
	.swiper-btn-next, .swiper-btn-prev {
		background: var(--color-6);
		box-shadow: none;
		border: none;
		border-radius: 50%;
		
		width: 2.66em;
		height: 2.66em;

		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: center;

		cursor: pointer;
	}


	/*
	#banner-main .swiper-button-next, #banner-main .swiper-button-prev {
		background: transparent;
		box-shadow: none;

		color: var(--color-primary);
	}
	#banner-main .swiper-button-prev {
		left: 1rem;
	}
	#banner-main .swiper-button-next {
		right: 1rem;
	}
	.swiper-navigation-icon {
		display: none;
	}
	*/
	#banner-main .banner-main-picture {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 500;
		opacity: 1;
	}
	#banner-main .banner-main-picture-full img, #banner-main .banner-main-picture img, #banner-main .symbol-bg img {
		object-fit: cover;
		-o-object-fit: cover;
		height: 100%;
		width: 100%; 
		display: block;
	}



	.banner-main-swiper {
		position: relative;
	}
	.banner-main-swiper::before {
		content: "";
		position: absolute;
		top: 40vh;
		left: 0;
		z-index: 2;
		height: 3rem;
		width: 3rem;
		border-top-left-radius: var(--border-radius-4);
		background-color: transparent;
		box-shadow: 0 0 0 50px var(--color-3), 0 0 0 0 var(--color-3);
		pointer-events: none;
		clip-path: inset(0);
		transform: skewY(0.001deg);
	}


	.banner-main-content {
		position: absolute;
		top: 0;
		right: auto;
		left: 0;
		z-index: 200;
		width: 50%;
		height: 40vh;
		background-color: var(--color-3);
		border-bottom-right-radius: var(--border-radius-5);

		display: flex;
		flex-flow: column nowrap;
		justify-content: flex-end;
	}
	.banner-main-content::after {
		content: "";
		position: absolute;
		top: 0;
		right: -3rem;
		height: 3rem;
		width: 3rem;
		border-top-left-radius: var(--border-radius-4);
		background-color: transparent;
		box-shadow: 0 0 0 50px var(--color-3), 0 0 0 0 var(--color-3);
		pointer-events: none;
		clip-path: inset(0);
		transform: skewY(0.001deg);
	}
	
	

	#banner-main .swiper-slide-content {
		display: none;
		opacity: 0;

		font-size: 3em;
		line-height: 1;
		font-weight: 900;
		color: var(--color-2);

		text-align: right;
		padding: calc(3 * var(--spacer));
	}
	#banner-main .swiper-slide-content p {
		padding: 0;
		margin: 0 0 calc(1 * var(--spacer)) 0;
	}
	#banner-main .swiper-slide-content-active {
		display: block;
		opacity: 1;
		animation: swiper-slide-content 1s 0s ease-out ;
	}
	@keyframes swiper-slide-content {
		0% {
			opacity: 0;
			transform: translateX(-6rem);
		}
		100% {
			opacity: 1;
			transform: translateX(0);
		}
	}




	#banner-hero-sub {
		position: absolute;
		top: 0;
		left: auto;
		right: 0;
		z-index: 200;
		height: auto;
		background-color: transparent;
	}
	.banner-hero-sub {
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-start;
		align-items: center;

		background-color: var(--color-primary);
		background: var(--gradient-1);

		border-radius: 5rem;
		box-shadow: var(--shadow-1);

		line-height: 1.33;
		color: var(--color-1);
	}

	.banner-hero-sub:hover {
		transform: translateY(.25em);
		background-position: right center;
	}

	/*
	#banner-hero-meteo {
		position: absolute;
		bottom: 3rem;
		left: auto;
		right: 0;
		z-index: 200;
		height: auto;
		background-color: transparent;
	}
	*/

/*
BANNER SIDE
*/
	.banner-side {
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		overflow: hidden;
		color: var(--color-1);
		background-color: var(--color-2);
		background: var(--gradient-3);
		position: relative;

		display: flex;
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;

		border-radius: var(--border-radius-2);
		box-shadow: var(--shadow-2);

		text-align: center;
	}
	.banner-side-horizontal {
		height: auto;
		overflow: hidden;
		color: var(--color-1);
		background-color: var(--color-2);
		background: var(--gradient-3);
		position: relative;

		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: center;

		border-radius: var(--border-radius-2);
		box-shadow: var(--shadow-2);

		text-align: left;
	}
	.banner-side-high {
		min-height: 60vh;
	}


	.banner-sub {
		background-color: var(--color-1);
		border-radius: var(--border-radius-3);
	}
	.banner-sub_content strong {
		font-size: 1.33em;
		line-height: 1;
		font-weight: 900;
		color: var(--color-4);
	}


	.wb-bannerMeteo {
		display: flex; 
		flex-flow: row wrap;
		align-items: flex-start;
		justify-content: flex-start;

		gap: var(--spacer);
	}
	.wb-bannerMeteo__title {
		
	}
	.wb-bannerMeteo__item {
		display: flex; 
		flex-flow: row nowrap;
		align-items: center;
		justify-content: flex-start;

		gap: var(--spacer);
	}
/*
SECTION
*/
	section {

	}
	#section-page-title {
		
		border-radius: var(--border-radius-4);
		overflow: hidden;
		min-height: 60vh;

		display: flex; 
		flex-flow: row wrap;
		align-items: flex-start;
		justify-content: flex-start;

		position: relative;
	}
	#section-page-title.page-title-slim {
		min-height: auto;
	}
	.section-page-title-content {
		background-color: var(--color-3);
		border-bottom-right-radius: var(--border-radius-4);
		position: relative;
		min-width: 50%;
		max-width: 75%;
	}
	.section-page-title-content::after {
		content: "";
		position: absolute;
		top: 0;
		right: -3rem;
		height: 3rem;
		width: 3rem;
		border-top-left-radius: var(--border-radius-4);
		background-color: transparent;
		box-shadow: 0 0 0 50px var(--color-3), 0 0 0 0 var(--color-3);
		pointer-events: none;
		clip-path: inset(0);
		transform: skewY(0.001deg);
	}
	.section-page-title-content::before {
		content: "";
		position: absolute;
		top: 100%;
		left: 0;
		height: 3rem;
		width: 3rem;
		border-top-left-radius: var(--border-radius-4);
		background-color: transparent;
		box-shadow: 0 0 0 50px var(--color-3), 0 0 0 0 var(--color-3);
		pointer-events: none;
		clip-path: inset(0);
		transform: skewY(0.001deg);
	}


	.section-page-title-bg {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
	}
	.section-page-title-bg img {
		object-fit: cover;
		-o-object-fit: cover;
		height: 100%;
		width: 100%; 
		display: block;
	}

	.section-title {
		
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		
		transform: rotate(-3deg);
	}

	.section-title h1, .section-title h2, .section-title h3 {
		font-size: 4.5em;
		line-height: 1em;
		font-weight: 900;
		white-space: wrap;
		color: var(--color-4);
		opacity: 1;
		text-align: center;
	}

	.section-title-sub {
		font-size: 4.5em;
		line-height: 1em;
		font-weight: 900;
		white-space: wrap;
		color: var(--color-4);
		opacity: 1;
		text-align: center;
		transform: rotate(-3deg);
	}


/*
CARD
*/
	.card {
		background-color: var(--color-1);

		border-radius: var(--border-radius-1);

		-webkit-transition: all .33s ease-out 0s;
		-moz-transition: all .33s ease-out 0s;
		-o-transition: all .33s ease-out 0s;
		transition: all .33s ease-out 0s;
	}
	.card-wrap {
		display: flex;
		flex-flow: column;
		flex-wrap: wrap;
		align-content: stretch;
  		justify-content: space-between;

		width: 100%;
		height: 100%;

		background-color: var(--color-4);
		border-radius: var(--border-radius-3);

	}

	.card.card-high {
		height: 100%;
	}
	.card .box-thumb {
		position: relative;
		z-index: 300;
	}

	.card .box-content {
		padding: calc(1.5 * var(--spacer)); 
		background-color: var(--color-1);
		position: relative;
		z-index: 500;
	}
	.card h2 {
		font-size: 1.25em;
		font-weight: 600;
		text-align: center;
		padding: 0 0 calc(1 * var(--spacer)) 0; 
	}
	.card h3 {
		font-size: 1.125em;
		font-weight: 600;
		padding: 0; 
	}
	.card:not(.static):hover {
		transform: scale(1.05);
	}

	.card-row {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;

		text-align: left;
	}





	.card-btn {
		box-sizing: border-box;
	}
	.card-btn-wrap {
		display: flex;
		flex-flow: column;
		flex-wrap: wrap;
		align-content: stretch;
  		justify-content: flex-start;

		width: 100%;
		height: 100%;

		background-color: var(--color-1);
		border-radius: var(--border-radius-2);
		overflow: hidden;

	}
	.card-btn-thumb {
		max-height: 300px;
	}
	.card-btn-thumb img {
		object-fit: cover;
		-o-object-fit: cover;
		height: 100%;
		width: 100%; 
		display: block;
	}
	.card-btn-title {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: flex-start;
		justify-content: space-between;
	}

	.card-btn-title h2 {
		font-size: 1.25em;
		line-height: 1.125em;
		font-weight: 900;

		margin: 0;
		padding: var(--spacer) 0 0 0;

		color: var(--color-2);
	}

	.card-btn:hover .card-btn-wrap {
		transform: scale(1.05);
	}

	.card-btn-btn {
		display: block;
		box-sizing: border-box;
		background-color: transparent;
		padding: calc(.125 * var(--spacer));
		position: relative;
	}

/*
QUESTION
*/

	.question {
		background-color: var(--color-1);
		border-radius: var(--border-radius-2);
	}


/*
DROPDOWN
*/
	.nav-dropdown {
		position: relative;
	}
	.nav-dropdown-handle {
		cursor: pointer;
		display: inline-block;
	}
	.nav-dropdown-menu {
		position: absolute;
		top: 100%;
		right: 0;
		z-index: 600;
		width: 15rem;
		height: auto;
		padding: calc(.5 * var(--spacer));
		background-color: var(--color-3);
		box-shadow: 0 5px 15px rgba(0,0,0,0.125);
		border-radius: var(--border-radius-2);
		display: none;
	}
	.nav-dropdown-menu.column {
		width: auto;
		left: 0;
		/*border-top: 1px solid var(--color-primary);*/
	}
	.nav-dropdown-menu.opened {
		display: block;
		animation: nav-dropdown-menu-in .25s;
	}
	@keyframes nav-dropdown-menu-in {
		0% {
			opacity: 0;
			transform: translateY(1rem);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}
	.nav-dropdown-menu a {
		display: block;
		padding: calc(.5 * var(--spacer));
		text-align: left;
	}
	.nav-dropdown-menu.column a {
		text-align: center;
	}

	.nav-dropdown-menu.column::before {
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 6px 4px 6px;
		border-color: transparent transparent var(--color-primary) transparent;
		position: absolute;
		right: auto;
		top: auto;
		left: 50%;
		bottom: 100%;
		background-color: transparent;
		transform: translateX(-50%);
	}

/*
BOX TEXT
*/
	.box-text {
		font-size: 1.125em;
		line-height: 1.5em;
	}
	.box-text h2 {

	}
	.box-text ul, .box-text ol {
		list-style-type: none;
		margin-bottom: calc(1 * var(--spacer));
	}
	.box-text ul > li {
		padding: .25rem 0 .25rem 2.5em;
		position: relative;
	}
	.box-text ul > li:before {
		content: "";
		height: 18px;
		width: 18px;
		background-image: url(../image/ico-list-c.svg);
		background-repeat: no-repeat;
		background-size: cover;
		position: absolute;
		top: 50%;
		left: .66em;
		z-index: 200;
		transform: translateY(-50%);
	}
	.box-text ol {
		counter-reset: item;
	}
	.box-text ol > li {
		counter-increment: item;
		padding: calc(1 * var(--spacer)) 0 calc(1 * var(--spacer)) 3em;
		position: relative;
	}
	.box-text ol > li:before {
		content: counter(item);
		width: auto;
		min-width: 1.5em;
		height: auto;
		padding: .1em;
		text-align: center;
		position: absolute;
		top: 50%;
		left: 0;

		font-size: 1.33em;
		font-weight: 300;
  		line-height: 1.5em;
		
		background-color: var(--color-primary);
		color: var(--color-1);
		border-radius: 3rem;
		transform: translateY(-50%);
	}
	.box-text > p {
		text-indent: 0;
	}
	.box-text a, a.link {
		position: relative;
		cursor: pointer;
	}
	.box-text a:not(.btn)::after, a.link::after {
		content: "";
		height: 2px;
		width: 80%;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: auto;
		background-color: var(--color-8);
	}
	.box-text img:not(.icon) {
		height: 1.5em;
		width: auto;
		display: inline-block;
		vertical-align: middle;
	}

	.box-text-page {
		position: relative;
		/*
		background-color: var(--color-1);
		border-radius: var(--border-radius-3);
		*/
		z-index: 300;
	}
	.box-text-page-left {
		border-top-right-radius: 0;
	}
	.box-text-page-right {
		border-top-left-radius: 0;
	}

/*
BOX-TEXT-SUB
*/
	.box-text-sub {
		text-align: center;
		position: relative;
		width: 100%;
		height: auto;
		margin-top: 2rem;
		background-color: var(--color-1);
		color: var(--color-2);
		padding: calc(3 * var(--spacer)) calc(1 * var(--spacer)) calc(2 * var(--spacer)) calc(1 * var(--spacer));

		border-radius: 2px;
		box-shadow: 0 5px 50px 0 rgba(0,0,0,.125);

		-webkit-transition: all .33s ease-out 0s;
		-moz-transition: all .33s ease-out 0s;
		-o-transition: all .33s ease-out 0s;
		transition: all .33s ease-out 0s;
	}
	.box-text-sub h2 {
		color: var(--color-1);
	}
	.box-text-sub p {
		text-align: center;
	}
	.box-text-sub .box-icon {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);

		background-color: var(--color-3);
		border-bottom: 1px solid var(--color-8);

	}
	.box-text-sub .icon {

	}
	.box-text-sub:hover {
		transform: scale(1.05);
	}

/*
GALLERY
*/
	.box-photo { 
		overflow: hidden;
		width: 20%;
	}
	.box-photo .box-thumb { 
		overflow: hidden;
		border-radius: 3px;

		position: relative;
	}
	.box-photo .marker { 
		position: absolute;	
		top: calc(.5 * var(--spacer)); 	
		left: calc(.5 * var(--spacer));
		display: inline-block;	
		padding: .33rem .66em;	
		background-color: var(--color-9);	
		color: var(--color-1);	
		font-size: .75rem;
		line-height: 1em;
		border-radius: 2px;
	}

	.box-photo:hover .thumb {
		transform: scale(1.05);
	}

	.box-gallery-grid, .box-gallery-grid-wide {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-template-rows: repeat(3, 15rem);
		grid-column-gap: calc(2 * var(--spacer));
		grid-row-gap: calc(2 * var(--spacer));
		position: relative;
	}
	.box-gallery-grid-wide {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
		grid-template-rows: repeat(3, 12rem);
	}
	.box-photo-grid { 
		overflow: hidden;
		border-radius: var(--border-radius-3);

		-webkit-transition: all .33s ease-out 0s;
		-moz-transition: all .33s ease-out 0s;
		-o-transition: all .33s ease-out 0s;
		transition: all .33s ease-out 0s;
	}
	.box-photo-grid-first {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
	}
	.box-gallery-grid-wide > .box-photo-grid-first {
		grid-column: 1 / 3;
		grid-row: 1 / 3;
	}
	.box-photo-grid-4 {
		grid-column-start: 3;
		grid-column-end: 5;
		grid-row-start: 2;
		grid-row-end: 4;
	}

	.box-photo-grid a {
		display: block;
		height: 100%;
		width: 100%;
	}
	.box-photo-grid img {
		object-fit: cover;
		-o-object-fit: cover;
		height: 100%;
		width: 100%; 
		display: block;
	}
	.box-photo-grid:hover {
		transform: scale(1.05);
	}

/*
THUMBS
*/
	.box-thumb { width: 100%; height: auto; overflow: hidden; position: relative; }
	.box-thumb a {
		display: block;
		height: 100%;
		width: 100%;
	}
	.box-thumb img {
		object-fit: cover;
		-o-object-fit: cover;
		height: 100%;
		width: 100%; 
		display: block;
	}




	.box-thumb-page {
		position: relative;
	}
	.box-thumb-page-left {
		width: 100%;
	}
	.box-thumb-page-right {
		width: 100%;
	}
	
	.box-thumb-page .box-thumb {
		border-radius: var(--border-radius-4);
		overflow: hidden;
		height: 70vh;
	}
	.box-thumb-page .box-thumb img {
		object-fit: cover;
		-o-object-fit: cover;
		height: 100%;
		width: 100%; 
		display: block;
	}
	.box-thumb-page .box-thumb:hover img {
		filter: none;
	}




/*
MARKER
*/

	.marker-color { 
		display: inline-block;	
		width: 3rem;
		height: 3rem;	

		border-radius: var(--border-radius-2);
	}

	.tag-pill {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
		gap: .33em;
	}
	.tag-pill__icon {
		color: var(--color-4);
	}
	.tag-pill__icon svg {
		display: block; height: 32px; width: 32px; fill: currentcolor;
	}
	.tag-pill__icon img {
		height: 32px;
		line-height: 1;
	}
/*
ATTACHMENTS
*/
	.box-attach {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: stretch;
		text-align: left;
	}


/*
MAPS
*/
	.box-map {
		width: 100%;
		height: 100%;
		min-height: 65vh;
		border-radius: var(--border-radius-4);
		overflow: hidden;
	}


/*
PAGINATION
*/

	.box-pagination {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	.box-pagination .step {
		font-size: inherit;
		line-height: inherit;
		cursor: pointer;
		padding: calc(.5 * var(--spacer));
		margin: .25em;
		min-width: 2em;
		text-align: center;

		color: var(--color-2);
		background-color: var(--color-1);
		border-radius: var(--border-radius-2);
  		box-shadow: var(--shadow-2);
	}
	.box-pagination .step:focus {
		outline: none;
	}
	.box-pagination .step:not(.inactive, .actual, .disabled) {

	}

	.box-pagination .step:not(.inactive, .actual, .disabled):hover {
		color: var(--color-2);
		background-color: var(--color-1);

		transform: translateY(.25em);
	}
	.box-pagination .step.actual {
		color: var(--color-1);
		background-color: var(--color-2);
	}
	.box-pagination .step.inactive img {
		filter: invert(1);
	}
	.box-pagination .step.disabled {
		background-color: transparent;
	}

/*
CALENDAR
*/
	#wb-availability-calendar {
		position: relative;
		width: 100%;
		max-width: 760px;
	}

	.wb-calendar {
		
	}

	.wb-calendar__header {
		display: grid;
		grid-template-columns: 3rem 1fr 3rem;
		align-items: center;
		gap: .5rem;
		text-align: center;
	}

	/*
	.wb-calendar-title {
		margin: 0;
		font-size: clamp(20px, 3vw, 28px);
		line-height: 1.2;
		text-align: center;
	}
	*/

	/*
	.calendar-navigation {
		display: grid;
		place-items: center;
		width: 48px;
		height: 48px;
		padding: 0;
		color: #fff;
		font-size: 24px;
		background: #222;
		border: 0;
		border-radius: 50%;
		cursor: pointer;
		transition:
			background-color 0.2s ease,
			transform 0.2s ease;
	}
	.calendar-navigation:hover {
		background: #555;
		transform: scale(1.05);
	}
	.calendar-navigation:focus-visible {
		outline: 3px solid rgba(0, 0, 0, 0.25);
		outline-offset: 3px;
	}
	*/

	.wb-calendar__grid {
		display: grid;
		grid-template-columns: repeat(7, minmax(0, 1fr));
		gap: .3rem;
	}

	.wb-calendar__weekday {
		padding: .5rem .1rem;
		color: var(--color-4);
		font-size: .875em;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
	}

	.wb-calendar__day {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-width: 0;
		min-height: 4rem;
		padding: .66rem .33rem;
		border-radius: .5rem;
		color: var(--color-4);
	}

	.wb-calendar__day--empty {
		min-height: 0;
		background: transparent;
	}

	.wb-calendar__day--available {
		color: #176b39;
		background: #eaf8ef;
	}

	.wb-calendar__day--occupied {
		color: #a22929;
		background: #fdeaea;
	}

	.wb-calendar__day--past {
		opacity: 0.55;
	}

	.wb-calendar__day--today {
		outline: 2px solid #222;
		outline-offset: -2px;
	}

	.wb-calendar__day-number {
		font-size: 1.125em;
		font-weight: 700;
	}

	.wb-calendar__day-status {
		margin-top: 4px;
		font-size: .75em;
	}

	

	.wb-calendar__legend {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
		font-size: .875em;
	}

	.wb-calendar__legend-item {
		display: inline-flex;
		align-items: center;
		gap: 7px;
	}

	.wb-calendar__legend-color {
		width: 1.5em;
		height: 1.5em;
		border-radius: .33em;
	}

	.wb-calendar__legend-color--available {
		background: #eaf8ef;
		xborder: 1px solid #72bd8c;
	}

	.wb-calendar__legend-color--occupied {
		background: #fdeaea;
		xborder: 1px solid #db7c7c;
	}

	.wb-calendar-loading {
		position: absolute;
		z-index: 2;
		top: 12px;
		left: 50%;
		padding: 7px 12px;
		color: #fff;
		font-size: 13px;
		background: #222;
		border-radius: 20px;
		transform: translateX(-50%);
	}

	#availability-calendar.is-loading .wb-calendar-content {
		opacity: 0.5;
		pointer-events: none;
	}

	.wb-calendar-content {
		transition: opacity 0.2s ease;
	}

	.calendar-error {
		padding: 20px;
		color: #a22929;
		background: #fdeaea;
		border-radius: 10px;
	}

	@media (max-width: 600px) {
		/*
		.calendar {
			padding: 14px;
			border-radius: 14px;
		}
		*/

		.calendar-grid {
			gap: 3px;
		}

		.calendar-day {
			min-height: 48px;
			padding: 5px 2px;
		}

		.calendar-day-number {
			font-size: 15px;
		}

		.calendar-day-status {
			display: none;
		}

		.calendar-navigation {
			width: 42px;
			height: 42px;
		}
	}

/*
FORM
*/
	.btn {
		display: inline-block;
		padding: 1em 1.5em;
		margin: 0;
		border: none;
		border-radius: 0;
		font-family: inherit;
		font-size: 1rem;
		line-height: 1.33rem;
		box-sizing: border-box;
		cursor: pointer;
		background-color: transparent;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: normal;
		position: relative;
		outline: none;


		border-radius: 4rem;
	}
	.btn-flex {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: space-between;
		text-align: left;
	}
	.btn:focus {
		outline: none;
	}
	.btn:not(.btn-static):hover {
		transform: translateY(.25em);
	}
	.btn-primary, .btn-primary:visited {
		background-color: var(--color-primary);
		background: var(--gradient-1);
		color: var(--color-1);
	}
	.btn-primary:hover {
		background-position: right center;
	}
	.btn-secondary, .btn-secondary:visited {
		background-color: var(--color-secondary);
		color: var(--color-1);
	}
	.btn-color, .btn-color:visited {
		background-color: var(--color-8);
		color: var(--color-2);
	}
	.btn-gradient {
		background: var(--gradient-3);
		color: var(--color-1);
	}
	.btn-icon {
		padding: .75em 1em;
	}
	.btn-full {
		width: 100%;
		margin: 0 0 .3em 0;
		text-align: center;
	}
	.btn-small {
		padding: .5em 1em;
	}
	.btn-big {
		width: 100%;
		max-width: 15rem;
		margin: 0;
		text-align: center;
	}
	.btn-border {
		display: inline-block;
		border-radius: 0;
		border: 1px solid var(--color-8);
		background-color: var(--color-2);
		box-sizing: border-box;
	}
	.btn-round {
		display: grid;
		place-items: center;
		width: 3.5rem;
		height: 3.5rem;
		padding: 0;
		font-size: 1;
		border: 0;
		border-radius: 50%;
		overflow: hidden;
		position: relative;
	}
	.btn-round__base {
		position: absolute;
		inset: 0%;
		background-color: var(--color-secondary);
		z-index: 1;
	}
	.btn-round__content {
		z-index: 2;
	}
	.btn-round .icon {
		height: 1.25em;
	}

	label {
		font-size: .875em;
		display: block;
		color: var(--color-2);
		text-align: left;
	}
	label .icon {
		margin: 0 .5em .33em 0;
		display: inline-block;
		max-width: 80px;
	}
	input, textarea, select {
		border: none;
		background-color: var(--color-1);
		border-radius: var(--border-radius-2);
		margin: 0;
		padding: calc(.75 * var(--spacer));
		font-family: inherit;
		font-size: 1.125em;
		line-height: 1.25em;
		font-weight: 400;
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	input[type=checkbox] {
		width: auto;
	}
	textarea {
		min-height: 6em;
	}
	textarea.high {
		min-height: 12em;
	}
	select {
		outline: none;
		cursor: pointer;
	}
	textarea:focus, input:focus, select:focus, button:focus {
		outline: none;
	}
	input.inline {
		width: auto;
		display: inline-block;
	}
	input.number {
		width: 5em;
		text-align: center;
		-moz-appearance: textfield;
	}
	input.number::-webkit-outer-spin-button,
	input.number::-webkit-inner-spin-button {
		-webkit-appearance: none;
		margin: 0;
	}
	input.loading {
		background-image: url(../image/ico-wait2-c.svg);
		background-position: right center;
		background-repeat: no-repeat;
		background-origin: content-box;
		background-size: 24px;
	}

/*
IMG
*/
	.icon {
		height: 1em;
		line-height: 1;
		width: auto;
		display: inline-block;
		vertical-align: middle;

		transition: transform .3s ease;
	}
	.icon-xs {
		height: .75em;
		width: auto;
	}
	.icon-sm {
		height: .875em;
		width: auto;
	}
	.icon-md {
		height: 2em;
		width: auto;
	}
	.icon-lg {
		height: 3em;
		width: auto;
	}
	.icon-xl {
		height: 4.5em;
		width: auto;
	}
	.icon-logo-partner {
		height: 4.5rem;
		width: auto;
		max-width: 100%;
		margin: 0;
	}
	.icon-logo-member {
		height: 6rem;
		width: auto;
		max-width: 15em;
		margin: 0;
	}
	.icon-grayscale {
		filter: grayscale(1);
	}
	.icon-flip-v {
		transform: rotate(180deg);
	}
	.icon-start {
		margin-right: .75rem;
	}
	.icon-end {
		margin-left: .75rem;
	}
	.icon-top {
		margin-bottom: .75em
	}
	.icon-solo {
		margin: 0;
	}

/*
FORMAT
*/
	p {
		margin: 0 0 1em 0;
	}
	div > p:last-child, a > p:last-child {
		margin: 0;
	}
	sup {
		vertical-align: super;
		line-height: 1em;
		font-size: .75em;
	}

	.thin {
		
	}
	.small {
		font-size: .875em;
		line-height: 1.5em;
	}
	.supersmall {
		font-size: .75em;
		line-height: 1.66em;
	}
	.big {
		font-size: 1.25em;
		line-height: 1.25em;
	}
	.superbig {
		font-size: 1.33em;
		line-height: 1.25em;
	}
	.bigger {
		font-size: 2em;
		line-height: 1em;
	}
	.strike {
		position: relative;
		
	}
	.strike::after {
		content: '';
		position: absolute;
		background: transparent;
		border-radius: none;
		top: 50%;
		right: -.33rem;
		bottom: auto;
		left: -.33rem;
		speak: never;
		border-top: 3px solid var(--color-8);

		transform: rotate(-5deg);
	}

	.align-right {
		text-align: right;
	}
	.align-center {
		text-align: center;
	}
	.align-left {
		text-align: left;
	}
	.relative {
		position: relative;
	}
	.hidden {
		display: none;
	}
	.invisible {
		visibility: hidden !important;
	}
	.inline {
		display: inline-block;
	}

	.handle, .location, .location-extern {
		cursor: pointer;
	}

	.border-top {
		border-top: 1px dotted var(--color-6);
	}
	.border-bottom {
		border-bottom: 1px dotted var(--color-6);
	}
/*
TABLE
*/

	table {
		table-layout: auto;
		border-collapse: collapse;
		border-spacing: 0;
		min-width: 60%;
		max-width: 600px;
		margin: 0 auto 1em auto;
	}
	td, th {
		padding: calc(.5 * var(--spacer)) calc(.5 * var(--spacer));
		vertical-align: middle;
	}
	table.data-result {
		table-layout: auto;
		border-collapse: collapse;
		border-spacing: 0;
		width: 100%;
		max-width: 600px;
		margin: 0 auto 0 auto;
	}
	table.data-result tr th {
		border-bottom: 1px solid var(--color-1);
		font-size: .75em;
		text-transform: uppercase;
	}
	table.data-result tr td {
		border-bottom: 1px solid var(--color-1);
	}
	table.data-result tr:last-child td {
		border-bottom: none;
	}

	table.data-result td.label {
		font-weight: .875em;
	}



/*
BOX TABLE
*/
	.data-table {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: flex-start;
	}
	.data-row {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		position: relative;
	}
	.data-row-head {
		font-size: .75em;
		text-transform: uppercase;

	}
	.data-table .data-row:last-child {
		border-bottom: none;
	}
	.data-row > div {
		padding: calc(.66 * var(--spacer)) calc(1 * var(--spacer));
	}
	.data-row-slim > div {
		padding: calc(.25 * var(--spacer)) calc(1 * var(--spacer));
	}
	.data-row p {
		padding: 0;
		margin: 0 0 calc(.33 * var(--spacer)) 0;
	}
	.data-row > p:last-child {
		margin-bottom: 0;
	}
	.data-row h3 {
		font-size: 1em;
		line-height: 1em;
		margin: 0 0 calc(.25 * var(--spacer)) 0;
	}
	.data-label {
		padding: .5em .5em .5em .5em;
		min-width: 25%;
	}
	.data-value {
		padding: .5em .5em .5em .5em;
	}

	.data-thumb {
		width: 15%;
		text-align: left;
	}
	.data-descript {
		width: 35%;
		text-align: left;
	}
	.data-size {
		width: 20%;
		text-align: right;
	}
	.data-unit {
		width: 10%;
		text-align: right;
	}
	.data-price {
		width: 10%;
		text-align: right;
	}
	.data-input {
		width: 20%;
		text-align: right;
	}

	.data-input input {
		width: 3rem;
		display: inline-block;
	}

/*
FONT
*/
	body { 
		font-family: 'RedHatDisplay', Tahoma, sans-serif; 
		font-weight: 400;
		font-style: normal;
		font-size: 17px;
		line-height: 1.5em;
		font-display: swap;
	}
	.italic {
		font-family: 'RedHatDisplay', serif;
		font-weight: 400;
		font-style: italic;
	}
	h1, h2 {
		font-weight: 900;
	}
	h1 sup {
		font-weight: 300;
	}
	h3, .bigger, .title, .eyebrow {
		font-weight: 900;
	}
	h4 {
		font-weight: 800;
	}
	.regular, .small {
		font-weight: 400;
	}
	.btn {
		font-weight: 900;
	}
	strong, .strong, .big-2 {
		font-weight: 600;
	}
	.superstrong {
		font-weight: 900;
	}
	.thin, .title-sub {
		font-weight: 300;
	}

	h1 {
		font-size: 3.25em;
		line-height: 1em;
	}
	h1 sup {
		font-size: 1.25rem;
		line-height: 1em;
	}
	h2 {
		font-size: 1.66em;
		line-height: 1.125em;
		padding: .5em 0;
	}
	h3 {
		font-size: 1.33em;
		line-height: 1.125em;
		padding: .5em 0;
	}
	h4 {
		font-size: 1.125em;
		line-height: 1.125em;
		padding: .5em 0;
	}
	.title {
		font-size: 1.5em;
		line-height: 1.125em;
		padding: .5em 0;
	}
	.title-sub {
		line-height: 1em;
		text-align: left;
		padding: calc(.66 * var(--spacer)) calc(.66 * var(--spacer));
		margin: 0 0 calc(.66 * var(--spacer)) 0;
		border-bottom: 1px dotted var(--color-6);
		color: var(--color-2);
	}
	.eyebrow {
		font-size: 10em;
		line-height: 1em;
		color: var(--color-4);
	}

	body {
		color: var(--color-2);
		background-color: var(--color-3);
		background-attachment: fixed;
	}
	a {
		color: inherit;
		text-decoration: none;
		outline: none;
	}
	a:visited {
		text-decoration: none;
	}
	a:focus {
		outline: none;
	}
	span, img, input, select, textarea {
		outline: none;
	}

	.animate, .animate *, header, #header-wrap.header-sticky, #header-menu a, #sidebar-menu a, #box-info-float a, .box-sidebar, .box-sidebar-bg, .box-loading-bg, .box-pagination *, .box-thumb *, .box-icon {
		-webkit-transition: all .5s ease-out 0s;
		-moz-transition: all .5s ease-out 0s;
		-o-transition: all .5s ease-out 0s;
		transition: all .5s ease-out 0s;
	}
	.card-category-wrap, .card-producent-wrap, .card-btn-wrap, .article-wrap, .product-price-preview, .product-variant-thumb, .product-property, .product-technology {
		-webkit-transition: all .5s ease-out 0s;
		-moz-transition: all .5s ease-out 0s;
		-o-transition: all .5s ease-out 0s;
		transition: all .5s ease-out 0s;
	}
	.btn:not(.btn-static), .btn *, .banner-hero-sub, .nav-subcategory-wrap, .nav-page-category-btn, .box-pagination .step {
		-webkit-transition: all .25s ease-out 0s;
		-moz-transition: all .25s ease-out 0s;
		-o-transition: all .25s ease-out 0s;
		transition: all .25s ease-out 0s;
	}
	.btn.btn-static {
		-webkit-transition: all .66s ease-out 0s;
		-moz-transition: all .66s ease-out 0s;
		-o-transition: all .66s ease-out 0s;
		transition: all .66s ease-out 0s;
	}

/*
BREADCRUMB
*/
	#breadcrumb-navigator {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;

		font-size: .975em;
		line-height: 1em;
		font-weight: 300;

	}


/* SIDEBAR */
	.box-sidebar {
		position: fixed;
		top: 1.5rem;
		bottom: 1.5rem;
		right: 0;
		z-index: 900;
		overflow-x: hidden;
		overflow-y: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		width: 50vw;
		box-sizing: border-box;
		padding-top: 6rem;
		background-color: var(--color-3);
		background-attachment: fixed;
		border-left: none; 
		border-radius: var(--border-radius-3);
		transform: translateX(100%);
	}
	.box-sidebar-slim {
		width: 33vw;
	}
	.box-sidebar.opened {
		box-shadow: 0 2px 100px 0 rgb(0 0 0 / 35%);
	}
	.box-sidebar .handle-close {
		width: 3em;
		height: 3em;
		background-color: var(--color-secondary);
		display: block;
		position: absolute;
		top: 1rem;
		right: 1rem;

		border-radius: var(--border-radius-2);
	}
	.box-sidebar .handle-close img {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.box-sidebar-content {
		width: 100%;
		height: 100%;
		display: flex;
		flex-flow: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
	.box-sidebar-bg {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 890;
		width: 100vw;
		height: 100vh;
		box-sizing: border-box;
		background: var(--opacity-1);
		visibility: hidden;
		opacity: 0;
	}
	.box-loading-bg {
		content: "";
		position: fixed;
		top: 0;
		right: 0;
		z-index: 890;
		width: 100vw;
		height: 100vh;

		background-image: url(../image/ico-wait2-b.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-origin: content-box;
		background-size: 100px;
		background-color: rgba(0,0,0,0.3);
		visibility: hidden;
		opacity: 0;
	}
/* SCROLLTOP */

	#box-scrolltop-btn {
		position: fixed;
		top: 1.5rem;
		right: 1.25rem;
		width: auto;
		height: auto;
		border: none;
		border-radius: 50%;
		font-size: 1em;
		display: none;
		align-items: center;
		justify-content: center;
		z-index: 895;
		cursor: pointer;
	}
	#box-scrolltop-btn:before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: -1;
		height: 3.5rem;
		width: 3.5rem;
		border-radius: 5rem;
		background-color: var(--color-primary);
		box-shadow: var(--shadow-1);
		pointer-events: none;
		transform: translate(-50%,-50%);
	}

/* MESSAGE-OVER */
	#box-message-over {	
		position: fixed;
		top: var(--header-height);	
		right: 0;
		left: 0;
		z-index: 9999;
		text-align: center; 
		display: none; 
		font-weight: 600; 
		font-size: 1em; 
		line-height: 1.33em; 
		padding: 1em 0;  
	}
	#box-message-over .wrapper {	
		width: 400px;
		max-width: 90%;

		padding: calc(3 * var(--spacer));
		margin: 0 auto;

		box-shadow: 0 5px 50px 0 rgba(0,0,0,.25);
		border-radius: var(--border-radius-3);
	}
	#box-message-over.status .wrapper {	
		color: #000000;	
		background-color: #8aaf09;	
		background-color: rgba(138, 175, 9, 0.7);	
		background: rgba(138, 175, 9, 0.7);
	}
	#box-message-over.error .wrapper {	
		color: #ffffff;	
		background-color: #e41414;	
		background-color: rgba(228, 20, 20, 0.9);	
		background: rgba(228, 20, 20, 0.9);
	}


	#box-info-float {	position: fixed; bottom: 20%;	left: 0; width: auto; height: auto;	z-index: 700; transform: translateY(-50%); overflow: hidden;  }
	#box-info-float a {
		display: block;
		padding: .75em 1em .75em 1.5em;
		margin-bottom: .1em;

		text-align: right;
		color: var(--color-1);
		background-color: var(--color-primary);
		background: var(--background-gradient-1);
		transform: translateX(-.75em);
		
		border-top-right-radius: var(--border-radius-2);
		border-bottom-right-radius: var(--border-radius-2);

	}
	#box-info-float a:hover {
		transform: translateX(0);
		opacity: 1;
	}

/*
MODAL, BILLBOARD
*/

	#box-billboard, #box-modal {
		width: 500px;
		max-width: 90vw;
		padding: 3rem 0 3rem 0;
		background-color: var(--color-1);
		position: relative;

		border-radius: var(--border-radius-3);
  		overflow: hidden;
	}
	#box-modal {
		padding: 1rem 0 3rem 0;
		background-color: var(--color-1);
		position: relative;
	}







@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(30px);
	}
}
@keyframes zoomSlideOut {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}




/*
COLORS
*/
:root {

	--header-height: 140px;
	--handler-height: 3.5rem;
	--handler-width: 3.5rem;

	--spacer: 1rem;

	--color-primary: #940227;
	--color-secondary: #090C10;

	--color-checkmark: #cc1a4d;

	--color-1: #ffffff;
	--color-2: #090C10;
	--color-3: #f3eee9;
	--color-4: #726961;
	--color-5: #1d1d1d;
	--color-6: #dbd3cc;
	
	--color-7: #6aaa70;
	--color-8: #cc1a4d;
	--color-9: #f5ccb3;
	--color-10: #f5ccb3;

	--bg-error-1: #fee;

	--gradient-1: linear-gradient(135deg, #940227 0%, #ca093a 51%, #940227 100%);

	--opacity-1: rgba(0, 0, 0, .65);
	--opacity-2: rgba(0, 0, 0, .85);
	--opacity-3: rgba(255, 252, 249, 0.66);

	--border-radius-1: .33rem;
	--border-radius-2: .66rem;
	--border-radius-3: 1rem;
	--border-radius-4: 1.33rem;
	--border-radius-5: 1.66rem;

	--shadow-1: 0 5px 50px 0 rgba(0,0,0,.1);
	--shadow-2: 0 5px 50px 0 rgba(233, 222, 211, 0.9);
}

.color-1 { color: var(--color-1); }
.color-2 { color: var(--color-2); }
.color-3 { color: var(--color-3); }
.color-4 { color: var(--color-4); }
.color-5 { color: var(--color-5); }
.color-6 { color: var(--color-6); }
.color-7 { color: var(--color-7); }
.color-8 { color: var(--color-8); }

.color-inverse * {
	color: var(--color-1);
}
.color-inverse h1, .color-inverse h2, .color-inverse h3, .color-inverse h4, .color-inverse a, .color-inverse a:visited { 
	color: var(--color-1);
}

.bg-color-1 { background-color: var(--color-1); }
.bg-color-2 { background-color: var(--color-2); }
.bg-color-3 { background-color: var(--color-3); }
.bg-color-4 { background-color: var(--color-4); }
.bg-color-5 { background-color: var(--color-5); }
.bg-color-6 { background-color: var(--color-6); }
.bg-color-7 { background-color: var(--color-7); }
.bg-color-8 { background-color: var(--color-8); }
.bg-color-9 { background-color: var(--color-9); }
.bg-color-10 { background-color: var(--color-10); }
.bg-color-11 { background-color: var(--color-11); }




/*
GRID
*/
	.row, .row-slim, .row-wide { 
		width: 100%; 
		margin: 0 auto 0 auto;	
		text-align: left;	
		padding: 0;	
		display: flex; 
		flex-flow: row wrap;
		justify-content: center;
	}
	.row-slim  { max-width: 980px; }
	.row-wide  { max-width: 1350px;	}

	.col {
		flex-grow: 1;
		flex-basis: 0;
	}
	.col-aside {
		max-width: 25%;
	}
	.col-1 {
		width: 8.33%;
	}
	.col-15 {
		width: 10%;
	}
	.col-2 {
		width: 16.66%;
	}
	.col-20 {
		width: 20%;
	}
	.col-3 {
		width: 25%;
	}
	.col-4 {
		width: 33.33%;
	}
	.col-5 {
		width: 41.66%;
	}
	.col-6 {
		width: 50%;
	}
	.col-7 {
		width: 58.33%;
	}
	.col-8 {
		width: 66.66%;
	}
	.col-9 {
		width: 75%;
	}
	.col-10 {
		width: 83.33%;
	}
	.col-11 {
		width: 91.67%;
	}
	.col-12 {
		width: 100%;
	}

	.p-0 {
		padding: 0;
	}
	.p-1 {
		padding: calc(.5 * var(--spacer));
	}
	.p-2 {
		padding: calc(1 * var(--spacer));
	}
	.p-3 {
		padding: calc(1.5 * var(--spacer));
	}
	.p-4 {
		padding: calc(2 * var(--spacer));
	}
	.px-1 {
		padding-right: calc(.5 * var(--spacer));
		padding-left: calc(.5 * var(--spacer));
	}
	.px-2 {
		padding-right: calc(1 * var(--spacer));
		padding-left: calc(1 * var(--spacer));
	}
	.px-3 {
		padding-right: calc(1.5 * var(--spacer));
		padding-left: calc(1.5 * var(--spacer));
	}
	.px-4 {
		padding-right: calc(2 * var(--spacer));
		padding-left: calc(2 * var(--spacer));
	}
	.py-1 {
		padding-top: calc(.5 * var(--spacer));
		padding-bottom: calc(.5 * var(--spacer));
	}
	.py-2 {
		padding-top: calc(1 * var(--spacer));
		padding-bottom: calc(1 * var(--spacer));
	}
	.py-3 {
		padding-top: calc(1.5 * var(--spacer));
		padding-bottom: calc(1.5 * var(--spacer));
	}
	.py-4 {
		padding-top: calc(2 * var(--spacer));
		padding-bottom: calc(2 * var(--spacer));
	}
	.py-6 {
		padding-top: calc(4 * var(--spacer));
		padding-bottom: calc(4 * var(--spacer));
	}

	.pl-2 {
		padding-left: calc(1 * var(--spacer));
	}
	.pr-2 {
		padding-right: calc(1 * var(--spacer));
	}

	.mb-0 {
		margin-bottom: 0;
	}
	.mb-1 {
		margin-bottom: calc(.5 * var(--spacer));
	}
	.mb-2 {
		margin-bottom: calc(1 * var(--spacer));
	}
	.mb-3 {
		margin-bottom: calc(1.5 * var(--spacer));
	}
	.mb-4 {
		margin-bottom: calc(2 * var(--spacer));
	}
	.mb-6 {
		margin-bottom: calc(4 * var(--spacer));
	}
	.mr-1 {
		margin-right: calc(.5 * var(--spacer));
	}

	.gap-1 {
		gap: calc(.5 * var(--spacer));
	}
	.gap-2 {
		gap: calc(1 * var(--spacer));
	}
	.gap-3 {
		gap: calc(1.5 * var(--spacer));
	}
	.gap-4 {
		gap: calc(2 * var(--spacer));
	}


	.box-inline {
		display: inline-block;
	}
	.box-flex {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: center;
	}
	.box-flex-col {
		flex-direction: column;
		align-items: inherit;
		justify-content: flex-start;
	}
	.box-flex-nowrap {
		flex-wrap: nowrap;
	}
	.box-flex-start {
		justify-content: flex-start;
	}
	.box-flex-end {
		justify-content: flex-end;
	}
	.box-flex-center {
		justify-content: space-around;
	}
	.box-flex-top {
		align-items: flex-start;
	}
	.box-flex-bottom {
		align-items: flex-end;
	}
	.box-flex-inline {
		align-items: center;
		justify-content: flex-start;
	}
	.box-flex-middle {
		align-items: center;
		align-content: center;
	}
	.box-flex-justify {
		justify-content: space-between;
	}
	.box-flex-row-stretch {
		justify-content: flex-start;
		align-items: stretch;
	}
	.box-flex-reverse {
		flex-direction: row-reverse;
	}
	.box-self-center {
		align-self: center;
	}
	.box-self-right {
		align-self: flex-end;
	}
	.box-break-after {
		break-after: always;
	}
	.box-sticky-scroll {
		position: sticky;
		top: 2em;
		bottom: 1em;
	}

	.box-grid {
		/*
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-template-rows: auto;
		grid-column-gap: 0;
		grid-row-gap: 0;
		justify-items: stretch;
		*/
	}
	.box-rounded {
		border-radius: var(--border-radius-2);
	}
	.box-rounded-4 {
		border-radius: var(--border-radius-4);
	}
	.box-rounded-5 {
		border-radius: var(--border-radius-5);
	}
	.box-rounded-over {
		border-top-left-radius: 2em;
		border-top-right-radius: 2em;
	}
	.box-circle {
		border-radius: 50%;
	}
	.box-skew {
		clip-path: polygon(100% 0, 40% 100% , 0 100%, 60% 0);
	}
	.box-shadow {
		box-shadow: 0 5px 50px 0 rgba(0,0,0,.125);
	}
	.box-expandable {
		display: none;
	}
	.box-expanded {
		display: block;
		animation: expand-box 1s;
	}
	@keyframes expand-box {
		0% {
			opacity: 0;
			transform: translateY(-1rem);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}



/*
RESPONSIVE
*/
@media only screen and (min-width: 1201px) {
	.lg-hidden {
		display: none;
	}
}

@media only screen and (max-width: 1200px) {

	#header-menu {
		display: none;
	}

}

@media only screen and (max-width: 960px) {

	.col-aside {
		max-width: 33.33%;
	}

	.col-4 {
		width: 50%;
	}
	.col-8 {
		width: 100%;
	}

	.md-col-3 {
		width: 25%;
	}

	.md-col-4 {
		width: 33.33%;
	}

	.md-col-6 {
		width: 50%;
	}

	.md-col-12 {
		width: 100%;
	}

	.md-flex-col {
		flex-direction: column;
	}
	.md-flex-col-reverese {
		flex-direction: column-reverse;
	}

	.md-hidden {
		display: none !important;
	}
	.md-align-center {
		text-align: center;
	}
	.md-align-left {
		text-align: left;
	}
	.md-align-right {
		text-align: right;
	}

	.md-wrapper-form {
		padding: .5em calc(var(--padding-side)/2);
	}


	.box-sidebar, .nav-category-secondary-sub {
		width: 75vw;
	}

	#header-menu {
		display: none;
	}

}

@media only screen and (max-width: 680px) {
	
	.col-aside {
		max-width: 100%;
	}

	.col-3 {
		width: 50%;
	}

	.col-4, .col-6, .col-8 {
		width: 100%;
	}

	.sm-col-1 {
		width: 8.33%;
	}

	.sm-col-2 {
		width: 16.66%;
	}
	.sm-col-3 {
		width: 25%;
	}
	.sm-col-4 {
		width: 33.33%;
	}

	.sm-col-5 {
		width: 41.66%;
	}
	.sm-col-6 {
		width: 50%;
	}
	.sm-col-7 {
		width: 58.33%;
	}
	.sm-col-8 {
		width: 66.66%;
	}
	.sm-col-9 {
		width: 75%;
	}
	.sm-col-10 {
		width: 83.33%;
	}
	.sm-col-11 {
		width: 91.67%;
	}
	.sm-col-12 {
		width: 100%;
	}

	.sm-hidden {
		display: none !important;
	}
	.sm-align-center {
		text-align: center;
	}
	.sm-align-left {
		text-align: left;
	}
	.sm-align-right {
		text-align: right;
	}

	.sm-p-1 {
		padding: calc(.5 * var(--spacer));
	}
	.sm-p-2 {
		padding: calc(1 * var(--spacer));
	}

	.sm-px-1 {
		padding-right: calc(.5 * var(--spacer));
		padding-left: calc(.5 * var(--spacer));
	}
	.sm-px-2 {
		padding-right: calc(1 * var(--spacer));
		padding-left: calc(1 * var(--spacer));
	}
	.sm-py-3 {
		padding-top: calc(1.5 * var(--spacer));
		padding-bottom: calc(1.5 * var(--spacer));
	}
	.sm-py-6 {
		padding-top: calc(4 * var(--spacer));
		padding-bottom: calc(4 * var(--spacer));
	}


	.sm-box-flex-reverse {
		flex-direction: row-reverse;
	}

	h1, .bigger {
		font-size: 1.875em;
	}
	h2 {
		font-size: 1.5em;
	}
	h3 {
		font-size: 1.33em;
	}

	.icon-md {
		height: 35px;
		width: auto;
	}
	.icon-lg {
		height: 45px;
		width: auto;
	}

	.data-row {
		flex-wrap: wrap;
	}

	/*
	header, #header-wrap {
		min-height: auto;
	}
	#header-wrap {
		padding: calc(1 * var(--spacer)) 0;
	}
	*/

	#header__logo img {
		height: 3rem;
	}
	/*
	#header-logo {
		text-align: center;
		width: auto;
		padding-right: calc(1 * var(--spacer));
  		padding-left: calc(1 * var(--spacer));
	}
	#header-logo a {
		text-align: center;
	}
	#header-logo a img {
		margin: 0 auto;
		height: 4rem;
	}
	#header-menu, #header-menu .legend {
		display: none;
	}
	#header-nav {
		height: auto;
		justify-content: flex-end;
		width: auto;
	}
	*/


	.box-sidebar {
		width: calc(100vw - 2rem);
	}
	

	#banner-main {
		background-attachment: fixed;
		flex-direction: row-reverse;
		flex-wrap: wrap-reverse;
	}


	#banner-main .swiper-wrapper {
		height: 65vh;
	}
	#banner-main .swiper-scrollbar-wrap {
		display: none;
	}

	#banner-main .pict-bg {
		position: absolute;
		top: 2rem;
		left: 1rem;
		right: 1rem;
		bottom: 33%;
		z-index: 3;
		opacity: 1;
	}

	.banner-main-swiper::before {
		top: 20vh;
	}
	.banner-main-content {
  		width: 65%;
		height: 20vh;
	}
	/*
	#banner-main-content::after {
		top: auto;
		bottom: 0;
		transform: scaleY(-1);
	}
	*/

	#banner-main .swiper-slide-content {
		font-size: 1.5em;
		padding: calc(1 * var(--spacer));
	}


	.box-thumb-page .box-thumb {
		height: auto;
		max-height: 50vh;
	}


	.icon-logo-partner {
		height: 3rem;
	}

	.section-title h1, .section-title h2, .section-title h3, .section-title-sub {
		font-size: 2.5em;
	}

	.box-gallery-grid-wide {
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: repeat(3, 8rem);
		grid-column-gap: calc(.5 * var(--spacer));
  		grid-row-gap: calc(.5 * var(--spacer));
	}

}



@media only screen and (min-width: 680px) {
	#header-wrap.header-sticky {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 890;
		animation: fade-header-sticky .5s;
	}

	/*
	#header-wrap.header-sticky #header-container {
		
	}
	*/
	#header-wrap.header-sticky #header-logo img {
		height: 3rem;
	}

	#header-wrap.header-sticky #header-nav {
		background-color: var(--color-3);
		box-shadow: 0 5px 50px 0 rgba(0,0,0,.1);
	}

	/*
	#header-wrap.header-sticky #header-menu .header-menu-sub {
		background-color: var(--color-1);
	}
	*/

	@keyframes fade-header-sticky {
		0% {
			opacity: 1; transform: translateY(-100%);
		}
		50% {
			opacity: 1;
		}
		100% {
			opacity: 1;
		}
	}

	
	#header-wrap.header-unsticky {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 890;

		box-shadow: none;

		transform: translateY(-100%);

		xanimation: fade-header-unsticky .5s;
	}

	@keyframes fade-header-unsticky {
		0% {
			opacity: 1; transform: translateY(0);
		}
		50% {
			opacity: 1;
		}
		100% {
			opacity: 1; transform: translateY(-100%);
		}
	}

}



/*
WB MAIN
*/
.wb-input-field-over {
	position: relative;
}
.wb-checkbox-button {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;

	margin: 0 0 .5rem 0;
	padding: 0 .5rem 0 0;
	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}
.wb-checkbox-button-border {
	border-bottom: 1px solid var(--color-4);
}
.wb-checkbox-button-disabled {
	opacity: .5;
}
.wb-checkbox-button label {
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	box-sizing: border-box;
}
.wb-checkbox-button label.wb-checkbox-icone {
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}
.wb-checkbox-button input {
	display: none;
}
.wb-checkbox-button .checkmark, .wb-checkbox-button .checkicon {
	min-width: .9em;
	min-height: .9em;
	padding: .3em;
	margin: 0 1em 0 0;
	border: 1px solid var(--color-4);
	background-color: var(--color-1);
	vertical-align: middle;
	display: inline-block;
	position: relative;
	border-radius: var(--border-radius-1);
}
.wb-checkbox-button .checkicon {
	padding: .75rem;
}
.wb-checkbox-button .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.wb-checkbox-button:hover .checkmark, .wb-checkbox-button:hover .checkicon {
	border-color: var(--color-checkmark);
}
.wb-checkbox-button input:checked ~ label .checkmark, .wb-checkbox-button input:checked ~ label .checkicon {
	background-color: var(--color-checkmark);
	color: #ffffff;
	border-color: transparent;
}
/*
.wb-checkbox-button input:checked ~ label img:not(.icon)  {
	filter: contrast(1000%) invert(100%);
}
*/
.wb-checkbox-button input:checked ~ label .checkmark:after {
	display: block;
}





.wb-checkbox-row {
	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}
.wb-checkbox-row label {
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	color: initial;
	width: 100%;
	box-sizing: border-box;
}
.wb-checkbox-row label.label-flex-middle {
	align-items: center;
}
.wb-checkbox-row input {
	display: none;
}
.wb-checkbox-row .checkmark {
	min-width: .9rem;
	min-height: .9rem;
	padding: .3rem;
	margin: 0 .3rem 0 0;
	border: 1px solid var(--color-4);
	background-color: var(--color-1);
	vertical-align: middle;
	display: inline-block;
	position: relative;
	border-radius: var(--border-radius-1);
}
.wb-checkbox-row .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.wb-checkbox-row:hover .checkmark {
	border-color: var(--color-checkmark);
}
.wb-checkbox-row input:checked ~ label .checkmark {
	background-color: var(--color-checkmark);
	color: #ffffff;
	border-color: transparent;
}
.wb-checkbox-row input:checked ~ label .checkmark:after {
	display: block;
}

.wb-checkbox-row .descript {
	display: none;
}
.wb-checkbox-row input:checked ~ label .descript {
	display: block;
}

.wb-disabled label {
	filter: grayscale(1);
	opacity: .3;
}
.wb-disabled .checkmark {
	display: none;
}



.wb-checkbox-picture-row {
  	display: flex;
  	flex-flow: row wrap;
	align-items: stretch;
  	justify-content: center;
}

.wb-checkbox-picture {
	margin: 0;
	padding: 0;
	-webkit-user-select: none;
  	-moz-user-select: none;
  	-ms-user-select: none;
  	user-select: none;
}
.wb-checkbox-picture label {
	padding: calc(.75 * var(--spacer));
	margin: 0;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	color: initial;
	width: 100%;

	border: 1px solid transparent;
	background-color: var(--color-1);
	border-radius: var(--border-radius-2);
	box-sizing: border-box;

	font-size: 1em;
	line-height: 1em;
	font-weight: 900;
}
.wb-checkbox-picture label.wb-horizontal {
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}
.wb-checkbox-picture input {
	display: none;
}

.wb-checkbox-picture .label-thumb {
	display: block;
	height: 3rem;
	width: auto;
	max-width: 100%;
	position: relative;
	border-radius: var(--border-radius-2);
	overflow: hidden;

	/*
	margin: 0 0 calc(.5 * var(--spacer)) 0;
	*/
}
.wb-checkbox-picture label.wb-horizontal .label-thumb {
	margin: 0 calc(.5 * var(--spacer)) 0 0;
}
.wb-checkbox-picture .label-thumb .thumb {
	object-fit: contain;
	-o-object-fit: contain;
	height: 100%;
	width: auto; 
	max-width: 100%;
	display: block;

	-webkit-filter: grayscale(100%);
  	filter: grayscale(100%);
	z-index: 100;
}
.wb-checkbox-picture .label-color {
	display: block;
	height: 4rem;
	width: 4rem;
	max-width: 100%;
	position: relative;
	border-radius: var(--border-radius-3);
	overflow: hidden;

	margin: 0 0 calc(.5 * var(--spacer)) 0;
}

.wb-checkbox-picture .checkmark {
	min-width: .9rem;
	min-height: .9rem;
	padding: .3rem;
	margin: 0;
	border: none;
	background-color: var(--color-checkmark);
	vertical-align: middle;
	display: none;
	
	border-radius: var(--border-radius-1);

	
	position: absolute;
	top: 0;
	right: 0;
	z-index: auto;

	xtransform: translate(-50%,-50%);
}
.wb-checkbox-picture .checkmark::after {
	content: "";
	position: absolute;
	display: block;
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.wb-checkbox-picture:hover label {
	box-shadow: var(--shadow-1);
}
.wb-checkbox-picture input:checked ~ label {
	background-color: var(--color-primary);
}
.wb-checkbox-picture input:checked ~ label .checkmark {
	display: block;
}











.wb-select-assist, .wb-select-field, .wb-select-transparent {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
	align-items: center;
	justify-content: stretch;
	cursor: pointer;
	position: relative;
	background-color: var(--color-1);
}
.wb-select-transparent {
	background-color: transparent;
}
.wb-select-assist {
	padding: .5em 1em;
  	border-radius: .5em;
}
.wb-select-assist:hover {
	background-color: var(--color-1);
	box-shadow: var(--shadow-1);
}
.wb-select-assist-handle {
	width: 100%;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
}
.wb-select-field {
	border-bottom: 1px solid var(--color-4);
	background-color: var(--color-1);
	border-radius: .3em;
}
.wb-select-field select {
	-webkit-appearance: none;
	-moz-appearance: none;
	border: none;
}
.wb-select-transparent select {
	background-color: transparent;
	color: inherit;
	border: none;
	padding: .1em;
	font-family: inherit;
	font-size: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.wb-select-field::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--color-5);
	pointer-events: none;
	position: absolute;
	right: .5em;
	top: calc(50% - 2px);
	z-index: auto;
}
.wb-select-transparent::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid var(--color-5);
	pointer-events: none;
}

.wb-counter-field {

}
.wb-counter-field a {
	width: 2em;
	height: 2em;
	background-color: var(--color-1);
	border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
	position: relative;
}
.wb-counter-field a img {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	filter: none;
}
.wb-counter-field a:hover {
	background-color: var(--color-2);
	border-color: var(--color-2);
}
.wb-counter-field a:hover img {
	filter: invert(1);
}
.wb-counter-field input {
	width: 1.66em;
	min-width: 1.66em;
	background-color: transparent;
	border: none;
	text-align: right;
	font-size: 1.5em;
	line-height: 1em;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0 .1em;
}
.wb-counter-field input.with-unit {
	text-align: right;
}
.wb-counter-field .wb-counter-unit {
	display: inline-block;
	margin: 0 1em 0 0;
}


.wb-search-assist {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
	align-items: stretch;
	justify-content: stretch;
	background-color: var(--color-1);
	border-radius: .33em;
	/*
	border-bottom: 1px solid var(--color-5);
	*/
	padding: .3em;
}
.wb-search-assist input {
	background-color: transparent;
	border: none;
}
.wb-search-assist-pop {

}
.wb-search-assist-option {
	border-radius: var(--border-radius-2);
	background-color: var(--color-1);
	
}
.wb-input-assist-option {
	border-bottom: 1px solid var(--color-4);

}
.wb-search-assist-option-content, .wb-input-assist-option-content {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	align-items: center;
	justify-content: stretch;
}
.wb-search-assist-option-content div, .wb-input-assist-option-content div {
	/*
	padding: .5em;
	*/
}

.wb-search-assist-option-thumb {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}
.wb-search-assist-option-thumb .thumb {
	height: 4em;
	width: auto;
	max-width: 100%;
	padding: 0;
	display: block;
	border-radius: .33em;
	background-color: var(--color-1);
	overflow: hidden;
}
.wb-search-assist-option-thumb .thumb img {
	object-fit: contain;
	-o-object-fit: contain;
    height: 100%;
	width: 100%; 
	display: block;
}

.wb-search-assist-option-thumb {

}
.wb-search-assist-option:hover, .wb-input-assist-option:hover {
	background-color: var(--color-1);
	box-shadow: 0 .25em 1em 0 rgba(0,0,0,.125);
}



.wb-select-assist-legend {
	padding: .25em 1em;
}
.wb-select-assist-preview {
	width: 100%;

	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;

	border-radius: .5em;
	min-height: 3em;
}
.wb-select-assist-pop {
	position: absolute;
	top: 100%;
	left: 0;
	right: auto;
	width: 100%;
	min-width: 250px;
	height: auto;
	
	
	z-index: 400;
	display: none;
	box-sizing: border-box;
	padding: .5em 0 0 0;
	overflow-y: hidden;
	background-color: var(--color-1);
	color: var(--color-2);
	border-radius: .5em;
	box-shadow: 0 5px 50px 0 rgba(0,0,0,.125);
}
.wb-select-assist-pop-short {
	max-height: 50vh;
}
.wb-select-assist-pop-right {
	left: auto;
	right: 0;
}
.wb-select-assist-pop .wb-checkbox-button {
	margin: 0;
	padding: .5em 1em;
	overflow: hidden;
}
.wb-select-assist-btn {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
	align-items: center;
	justify-content: space-around;
	cursor: pointer;
	padding: .5rem;
}
.wb-select-assist-btn span {
	margin: 0;
}
.wb-select-assist-pop label {
	font-size: 1em;
}
.wb-select-assist-pop p, .wb-select-assist-preview p {
	margin: 0 0 .33em 0;
}



.wb-form-field-error {
	background-color: var(--bg-error-1);
}
.wb-form-hint {
	display: block;
	position: absolute;
	top: calc(100% + .5em);
	left: 1.5em;
	z-index: 300;
	width: max-content;
	max-width: 300px;
	height: auto;
	padding: .3em 1em;
	font-size: .75em;
	background-color: var(--color-secondary);
	color: var(--color-1);
	border-radius: var(--border-radius-1);
}
.wb-form-hint::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: .5em;
	height: 0;
	width: 0;
	border: .5em solid transparent;
	border-bottom-color: var(--color-secondary);
}



.wb-select-assist, .wb-checkbox-row .checkmark, .wb-checkbox-picture label {
	-webkit-transition: all .5s ease-out 0s;
  	-moz-transition: all .5s ease-out 0s;
  	-o-transition: all .5s ease-out 0s;
	transition: all .5s ease-out 0s;
}






.wb-loading {
	position: relative;
}
.wb-loading::after {
	content: "";
	position: absolute;
	display: block;
	right: 2em;
	top: 1em;
	width: 50px;
	height: 50px;
	background-image: url(../image/ico-wait-3.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-origin: content-box;
	background-size: cover;
}



/*
SWIPER
*/
	.swiper {
		overflow: visible;
		max-width: 100vw;
	}
	.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
		position: static;
		width: 100%;
		height: 4px;
	}
	.swiper-scrollbar {
		border-radius: 1em;
		position: relative;
		touch-action: none;
		background: var(--color-3);
	}
	.swiper-scrollbar .swiper-scrollbar-drag {
		background: var(--color-primary);
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 1em;
		height: 4px;
		top: 0;
	}
	.swiper-button-next, .swiper-button-prev {
		background: var(--color-1);

		border: none;
		padding: 0;
		width: var(--swiper-navigation-size);
		height: var(--swiper-navigation-size);
		color: #010103;
		box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
		border-radius: var(--border-radius-2);
		pointer-events: all;
	}
	.swiper-button-prev {
		left: 1px;
	}
	.swiper-button-next {
		right: 1px;
	}

	.swiper-button-next::after, .swiper-button-prev::after {
		content: '';
		position: absolute;
		background: var(--color-primary);
		border-radius: 3rem;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-repeat: no-repeat;
		background-size: 50%;
		background-position: center;
		speak: never;
	}

	.swiper-button-next::after {
		background-image: url(../image/ico-sub-right-w.svg);
	}
	.swiper-button-prev::after {
		background-image: url(../image/ico-sub-left-w.svg);
	}
	.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled, .swiper-button-next:not([aria-controls]), .swiper-button-prev:not([aria-controls]) {
		opacity: 0;
	}
	.swiper-button-next, .swiper-button-prev {
		& svg {
			display: none;
		}
	}