/* -------------------------------- 
Main content
-------------------------------- */
.ozy-folding-menu-main {
	overflow-x: hidden;
}
.ozy-folding-menu-main::before {
	/* never visible - this is used in jQuery to check the current MQ */
	display: none;
	content: 'mobile';
}
.ozy-folding-menu-main > * {
	-webkit-transition: -webkit-transform 0.5s 0.4s;
	-moz-transition: -moz-transform 0.5s 0.4s;
	transition: transform 0.5s 0.4s;
}
.ozy-folding-menu-main.fold-is-open > * {
	/* on mobile - translate .ozy-folding-menu-main content to the right when the .ozy-folding-menu-folding-panel is open */
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: -webkit-transform 0.5s 0s;
	-moz-transition: -moz-transform 0.5s 0s;
	transition: transform 0.5s 0s;
}

@media only screen and (min-width: 600px) {
	.ozy-folding-menu-main.fold-is-open > * {
		-webkit-transform: translateX(600px);
		-moz-transform: translateX(600px);
		-ms-transform: translateX(600px);
		-o-transform: translateX(600px);
		transform: translateX(600px);
	}
}

@media only screen and (min-width: 1100px) {
	.ozy-folding-menu-main::before {
		/* never visible - this is used in jQuery to check the current MQ */
		content: 'desktop';
	}
	.ozy-folding-menu-main.fold-is-open > * {
		/* reset style - on bigger devices we translate the gallery items */
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
}
.ozy-folding-menu-gallery::after {
	clear: both;
	content: "";
	display: table;
}
.ozy-folding-menu-gallery::before {
	/* this is the dark layer covering the .ozy-folding-menu-gallery when the .ozy-folding-menu-folding-panel is open */
	display: block;
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(28, 23, 38, 0.6);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
	-moz-transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
	transition: opacity 0.5s 0.4s, visibility 0s 0.9s;
}
.fold-is-open .ozy-folding-menu-gallery::before {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.5s 0s, visibility 0s 0s;
	-moz-transition: opacity 0.5s 0s, visibility 0s 0s;
	transition: opacity 0.5s 0s, visibility 0s 0s;
}
.ozy-folding-menu-item {
	width: 100%;
	height: 300px;
	text-align: center;
	list-style:none;
	padding:0;
	background-size:cover !important;	
    background-position: center center;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.ozy-folding-menu-item > a {
	display: table;
	height: 100%;
	width: 100%;
	overflow: hidden;
	cursor:pointer;	
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;	
}
.ozy-folding-menu-item > a:hover > div > div > h3,
.ozy-folding-menu-item > a:focus > div > div > h3,
.ozy-folding-menu-item > a:active > div > div > h3 {
	margin-bottom:56px;
}
.ozy-folding-menu-item > a:hover > div > div > h3:after,
.ozy-folding-menu-item > a:focus > div > div > h3:after,
.ozy-folding-menu-item > a:active > div > div > h3:after {
	height:48px;
}
.ozy-folding-menu-item > a.dark-text {
	color: #363558;
}
.ozy-folding-menu-item>a>div {
	display:table;
	position:relative;
    width: 50%;
    height: 100%;
	float:right;
	background-color: rgba(0,0,0,.7);
}
@media only screen and (min-width: 668px) {
	.ozy-folding-menu-item:nth-child(4n)>a>div, .ozy-folding-menu-item:nth-child(4n-1)>a>div{
		float:left;
	}
}
@media only screen and (max-width: 667px) {
	.ozy-folding-menu-item:nth-child(odd)>a>div {
		float: left;
	}
}
@media only screen and (max-width: 479px) {
	.ozy-folding-menu-item>a>div {
		background-color: rgba(0,0,0,.3);
	}
}
.ozy-folding-menu-item div>div {
	position:absolute;
	width:100%;
	top:50%;
	transform:translateY(-50%);
	text-align:center;
}
.ozy-folding-menu-item div>div>i {
	font-size:64px;
	line-height:64px;
}
.ozy-folding-menu-item div>div>h3 {
	position:relative;
    margin-bottom: 40px;
}
.ozy-folding-menu-item div>div>h3,
.ozy-folding-menu-item div>div>h3:after {
	-webkit-transition: all 500ms cubic-bezier(1.000, 0.005, 0.165, 1.000);
	-moz-transition: all 500ms cubic-bezier(1.000, 0.005, 0.165, 1.000);
	transition: all 500ms cubic-bezier(1.000, 0.005, 0.165, 1.000);
}
.ozy-folding-menu-item div>div>h3:after {
	content:'';
	position:absolute;
	top:100%;
	left:50%;
	transform:translateX(-50%);
	width:1px;
	height:32px;
	background-color:currentColor;	
}

@media only screen and (min-width: 1100px) {
	.ozy-folding-menu-item {
		width: 50%;
		float: left;
		height: 400px;
		-webkit-transition: -webkit-transform 0.5s 0.4s;
		-moz-transition: -moz-transform 0.5s 0.4s;
		transition: transform 0.5s 0.4s;
	}
	.fold-is-open .ozy-folding-menu-item {
		-webkit-transition: -webkit-transform 0.5s 0s;
		-moz-transition: -moz-transform 0.5s 0s;
		transition: transform 0.5s 0s;
		-webkit-transform: translateX(-400px);
		-moz-transform: translateX(-400px);
		-ms-transform: translateX(-400px);
		-o-transform: translateX(-400px);
		transform: translateX(-400px);
	}
	.fold-is-open .ozy-folding-menu-item:nth-of-type(2n) {
		-webkit-transform: translateX(400px);
		-moz-transform: translateX(400px);
		-ms-transform: translateX(400px);
		-o-transform: translateX(400px);
		transform: translateX(400px);
	}
}
/* -------------------------------- 
folding panel
-------------------------------- */
.ozy-folding-menu-folding-panel {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	overflow: hidden;
	-webkit-transition: visibility 0s 0.9s;
	-moz-transition: visibility 0s 0.9s;
	transition: visibility 0s 0.9s;
}
.ozy-folding-menu-folding-panel .fold-left, .ozy-folding-menu-folding-panel .fold-right {
	/* the :after elements of .fold-left and .fold-right are the 2 fold sides */
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
	/* enable a 3D-space for children elements */
	-webkit-perspective: 2000px;
	-moz-perspective: 2000px;
	perspective: 2000px;
}
.ozy-folding-menu-folding-panel .fold-left::after, .ozy-folding-menu-folding-panel .fold-right::after {
	/* 2 fold sides */
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform 0.5s 0.4s, background-color 0.5s 0.4s;
	-moz-transition: -moz-transform 0.5s 0.4s, background-color 0.5s 0.4s;
	transition: transform 0.5s 0.4s, background-color 0.5s 0.4s;
}
.ozy-folding-menu-folding-panel .fold-right {
	-webkit-perspective-origin: 0% 50%;
	-moz-perspective-origin: 0% 50%;
	perspective-origin: 0% 50%;
}
.ozy-folding-menu-folding-panel .fold-right::after {
	-webkit-transform-origin: right center;
	-moz-transform-origin: right center;
	-ms-transform-origin: right center;
	-o-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: translateX(-100%) rotateY(-90deg);
	-moz-transform: translateX(-100%) rotateY(-90deg);
	-ms-transform: translateX(-100%) rotateY(-90deg);
	-o-transform: translateX(-100%) rotateY(-90deg);
	transform: translateX(-100%) rotateY(-90deg);
	background-color: #c0c3c3;
}
.ozy-folding-menu-folding-panel .fold-left {
	/* on mobile only the right fold side is visible */
	display: none;
}
.ozy-folding-menu-folding-panel .fold-left::after {
	background-color: #f9fafa;
}
.ozy-folding-menu-folding-panel .cd-close {
	/* 'X' close icon */
	position: absolute;
	z-index: 1;
	display: inline-block;
	top: 10px;
	right: 20px;
	height: 44px;
	width: 44px;
	/* image replacement */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	opacity: 0;
	-webkit-transition: opacity 0.2s 0s;
	-moz-transition: opacity 0.2s 0s;
	transition: opacity 0.2s 0s;
}
.ozy-folding-menu-folding-panel .cd-close::after, .ozy-folding-menu-folding-panel .cd-close::before {
	/* lines of 'X' icon */
	content: '';
	position: absolute;
	height: 3px;
	width: 32px;
	left: 50%;
	top: 50%;
	background-color: #544173;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.ozy-folding-menu-folding-panel .cd-close::after {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.ozy-folding-menu-folding-panel .cd-close::before {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.ozy-folding-menu-folding-panel.is-open {
	visibility: visible;
	-webkit-transition: visibility 0s 0s;
	-moz-transition: visibility 0s 0s;
	transition: visibility 0s 0s;
}
.ozy-folding-menu-folding-panel.is-open .fold-right::after, .ozy-folding-menu-folding-panel.is-open .fold-left::after {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform 0.5s 0s, background-color 0.5s 0s;
	-moz-transition: -moz-transform 0.5s 0s, background-color 0.5s 0s;
	transition: transform 0.5s 0s, background-color 0.5s 0s;
}
.ozy-folding-menu-folding-panel.is-open .fold-right::after {
	background-color: #f9fafa;
}
.ozy-folding-menu-folding-panel.is-open .cd-close {
	opacity: 1;
	-webkit-transition: opacity 0.2s 0.5s;
	-moz-transition: opacity 0.2s 0.5s;
	transition: opacity 0.2s 0.5s;
}

@media only screen and (min-width: 600px) {
	.ozy-folding-menu-folding-panel {
		width: 600px;
	}
}

@media only screen and (min-width: 1100px) {
.ozy-folding-menu-folding-panel {
	left: 50%;
	right: auto;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 800px;
}
.ozy-folding-menu-folding-panel .fold-left,  .ozy-folding-menu-folding-panel .fold-right {
	width: 50%;
	float: left;
	height: 100%;
}
.ozy-folding-menu-folding-panel .fold-right {
	/* change perspective-origin so that the 2 fold sides have the same vanishing point */
	-webkit-perspective-origin: 0% 50%;
	-moz-perspective-origin: 0% 50%;
	perspective-origin: 0% 50%;
}
.ozy-folding-menu-folding-panel .fold-right::after {
	-webkit-transform-origin: right center;
	-moz-transform-origin: right center;
	-ms-transform-origin: right center;
	-o-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: translateX(-100%) rotateY(-90deg);
	-moz-transform: translateX(-100%) rotateY(-90deg);
	-ms-transform: translateX(-100%) rotateY(-90deg);
	-o-transform: translateX(-100%) rotateY(-90deg);
	transform: translateX(-100%) rotateY(-90deg);
}
.ozy-folding-menu-folding-panel .fold-left {
	display: block;
	/* change perspective-origin so that the 2 fold sides have the same vanishing point */
	-webkit-perspective-origin: 100% 50%;
	-moz-perspective-origin: 100% 50%;
	perspective-origin: 100% 50%;
}
.ozy-folding-menu-folding-panel .fold-left::after {
	-webkit-transform-origin: left center;
	-moz-transform-origin: left center;
	-ms-transform-origin: left center;
	-o-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: translateX(100%) rotateY(90deg);
	-moz-transform: translateX(100%) rotateY(90deg);
	-ms-transform: translateX(100%) rotateY(90deg);
	-o-transform: translateX(100%) rotateY(90deg);
	transform: translateX(100%) rotateY(90deg);
}
}
.ozy-folding-menu-fold-content {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	padding: 4em 2em;
	visibility: hidden;
	-webkit-transition: visibility 0s 0.4s;
	-moz-transition: visibility 0s 0.4s;
	transition: visibility 0s 0.4s;
}
.is-open .ozy-folding-menu-fold-content {
	overflow-y: auto;
	visibility: visible;
	-webkit-transition: visibility 0s 0.5s;
	-moz-transition: visibility 0s 0.5s;
	transition: visibility 0s 0.5s;
}

.ozy-folding-menu-fold-content.single-page>h2 {
	text-align: center;
}
.ozy-folding-menu-fold-content.single-page>h3 {
	text-align: center;
	font-size: 24px !important;
	font-weight: 300 !important;
	font-style: italic;
	padding-bottom: 20px;	
}
.ozy-folding-menu-fold-content.single-page>svg {
	display: block;
	max-width: 115px;
	margin: 15px auto 20px auto;
}
.ozy-folding-menu-fold-content.single-page>div {
	display: flex;
	border-bottom: 1px dotted currentColor;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.ozy-folding-menu-fold-content.single-page>div>div {
	width: 75%;
	float: left;
}
.ozy-folding-menu-fold-content.single-page>div>div>h4 {
	font-size: 14px !important;
	font-weight: 700 !important;
}
@media only screen and (min-width: 1100px) {
	.ozy-folding-menu-fold-content.single-page>div>div>h4[data-popimg] {
		cursor:default;
	}
	.ozy-folding-menu-fold-content.single-page>div>div>h4[data-popimg]:before {
		display: inline-block;
		font-family: "ozythemes";
		content: "\e27b";
		padding-right: 10px;
		vertical-align: text-top;	
	}
	#folding-menu-pop-img{
		display: none;
		position:fixed;
		width:400px;
		padding: 15px;
		background-color:#fff;
		z-index:99999;
		-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
		-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);
		box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.15);	
	}
	#folding-menu-pop-img>img {
		max-width: 100%;
		max-height: 100%;
	}
	#folding-menu-pop-img>h4 {
		padding-top: 15px;
		text-align: center;	
	}
}
.ozy-folding-menu-fold-content.single-page>div>div>p {
	font-size: 12px !important;
	line-height: 1.3em !important;
}
.ozy-folding-menu-fold-content.single-page>div>div:last-child {
	width: 20%;
    margin-left: 5%;
	text-align: right;
}
.ozy-folding-menu-fold-content.single-page>div>div>span {
	display: inline-block;
	width: min-content;
	margin-top: 10px;	
    float: right;
    clear: both;
}
.ozy-folding-menu-fold-content.single-page>div>div>span.price {
	width: 100%;
	font-weight: 700;	
}
.ozy-folding-menu-fold-content.single-page>div>div>span.label {
	font-size: 10px !important;
	font-style: italic;
    padding: 0 8px;
}

@media only screen and (min-width: 1100px) {
	.ozy-folding-menu-fold-content {
		padding: 4em;
	}
}