
/**
* CSS for mobile menu panel
*
**/




/**
* MENU TOGGLE
**/
#masthead #masthead-menu-toggle {
	position: absolute;
	left: 0;
	top: 0;
	z-index: auto;
	width: 50%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: flex-start;
	-ms-align-items: stretch;
	align-items: stretch;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#masthead #masthead-menu-toggle #masthead-menu-toggle-button {
	display: block;
	-webkit-flex: 0 1 400px;
	-moz-flex: 0 1 400px;
	-ms-flex: 0 1 400px;
	-o-flex: 0 1 400px;
	flex: 0 1 400px;
	-webkit-flex: 1 0 100px;
	-moz-flex: 1 0 100px;
	-ms-flex: 1 0 100px;
	-o-flex: 1 0 100px;
	flex: 1 0 100px;
	max-width: 400px;
	margin-left: 0;
	margin-right: auto;
	text-align: center;
}

#masthead #masthead-menu-toggle label {
	display: block;
	height: 156px;
	width: 69px;
	margin: 0 auto;
	background-color: #CD445B; /* Contrast color from #F25C75 */
	display: block;
	border-bottom: 7px solid #AB3246; /* Contrast color from #D2475E */
	cursor: pointer;
	text-transform: uppercase;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 17px;
	line-height: 1;
	padding-top: 66px;
	text-align: center;
	position: relative;
	z-index: 2;
}

#masthead #masthead-menu-toggle label > i {
	display: block;
	height: 3px;
	width: 39px;
	margin: 0 auto 31px auto;
	background-color: #FFFFFF;
	border-radius: 999px;
	position: relative;
	display: none;
}

#masthead #masthead-menu-toggle label > i:before,
#masthead #masthead-menu-toggle label > i:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: inherit;
	border-radius: inherit;
	position: absolute;
	left: 0;
}

#masthead #masthead-menu-toggle label > i:before {
	top: -9px;
}

#masthead #masthead-menu-toggle label > i:after {
	top: 9px;
}

#masthead #masthead-menu-toggle:after {
	content: '';
	pointer-events: none;
	opacity: 0;
	display: block;
	width: 475px;
	-webkit-flex: 0 1 475px;
	-moz-flex: 0 1 475px;
	-ms-flex: 0 1 475px;
	-o-flex: 0 1 475px;
	flex: 0 1 475px;
	height: 200px;
}



















/**
* MENU
*/
#site-navigation {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99998;
	pointer-events: none;
	-webkit-transition: left .7s cubic-bezier(.2,.4,.2,1);
	-o-transition: left .7s cubic-bezier(.2,.4,.2,1);
	transition: left .7s cubic-bezier(.2,.4,.2,1);
}

@media (prefers-reduced-motion: reduce) {
	#site-navigation {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

#site #site-navigation:focus-within {
	left: 0;
	/*pointer-events: all;*/
}

body.primary-menu-open #site #site-navigation {
	left: 0;
	/*pointer-events: all;*/
}





#site-navigation #site-navigation-block {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 80%;
	max-width: 350px;
	z-index: 3;
	overflow: hidden;
	background: #FFFFFF;
	background-image: url('../img/concrete-texture-white.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top right;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: transform .7s cubic-bezier(.2,.4,.2,1);
	-o-transition: transform .7s cubic-bezier(.2,.4,.2,1);
	transition: transform .7s cubic-bezier(.2,.4,.2,1);
	display: block;
	overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
	#site-navigation #site-navigation-block {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}
/*
#site-navigation #site-navigation-block:after {
	content: '';
	display: block;
	width: 100%;
	padding-left: 29vh;
	height: 100%;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	background-color: #9A1B1B;
	opacity: .56; /* WCAG 3:1 contrast on brightest pixels *
	opacity: .74; /* WCAG 4.5:1 contrast on brightest pixels *
	-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: skewX(-16deg);
	-ms-transform: skewX(-16deg);
	-o-transform: skewX(-16deg);
	transform: skewX(-16deg);
}*/

#site #site-navigation:focus-within #site-navigation-block {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

body.primary-menu-open #site #site-navigation #site-navigation-block {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}



#site-navigation #site-navigation-close {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	cursor: pointer;
	z-index: 1;
	opacity: 0;
	border: none;
	text-indent: -9999px;
	-webkit-transition: opacity .7s cubic-bezier(.2,.4,.2,1);
	-o-transition: opacity .7s cubic-bezier(.2,.4,.2,1);
	transition: opacity .7s cubic-bezier(.2,.4,.2,1);
	background: #000000;
}

@media (prefers-reduced-motion: reduce) {
	#site-navigation #site-navigation-close {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

#site #site-navigation:focus-within #site-navigation-close {
	opacity: .7;
	pointer-events: all;
}

body.primary-menu-open #site #site-navigation #site-navigation-close {
	opacity: .7;
	pointer-events: all;
}

#site-navigation #site-navigation-close:before,
#site-navigation #site-navigation-close:after {
	display: none;
}



#site-navigation #site-navigation-block-outer {
	width: auto;
	height: 100%;
	overflow: hidden;
	position: relative;
	pointer-events: all;
	z-index: 2;
}

#site-navigation #site-navigation-block-wrapper {
	width: 100%;
	height: 100%;
	overflow: visible;
}

#site-navigation #site-navigation-block-inner {
	position: relative;
	width: 100%;
	height: 100%;
	max-height: 100vh;
	left: 0;
	z-index: 2;
	-webkit-transition: left .7s cubic-bezier(.7,0,.3,1);
	-o-transition: left .7s cubic-bezier(.7,0,.3,1);
	transition: left .7s cubic-bezier(.7,0,.3,1);
}

@media (prefers-reduced-motion: reduce) {
	#site-navigation #site-navigation-block-inner {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

#site-navigation.depth-0-open #site-navigation-block-inner { left: -100%; }
#site-navigation.depth-1-open #site-navigation-block-inner { left: -200%; }
#site-navigation.depth-2-open #site-navigation-block-inner { left: -300%; }
#site-navigation.depth-3-open #site-navigation-block-inner { left: -400%; }
#site-navigation.depth-4-open #site-navigation-block-inner { left: -500%; }
#site-navigation.depth-5-open #site-navigation-block-inner { left: -600%; }
#site-navigation.depth-6-open #site-navigation-block-inner { left: -700%; }
#site-navigation.depth-7-open #site-navigation-block-inner { left: -800%; }
#site-navigation.depth-8-open #site-navigation-block-inner { left: -900%; }



#site-navigation #site-navigation-menu {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: static;
	left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: auto;
	overflow-x: hidden;
	-webkit-flex: 0 1 auto;
	-moz-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	-o-flex: 0 1 auto;
	flex: 0 1 auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: flex-start;
	-ms-align-items: stretch;
	align-items: stretch;

}

#site-navigation #site-navigation-menu:before {
	content: '';
	display: block;
	-webkit-flex: 1 1 65%;
	-moz-flex: 1 1 65%;
	-ms-flex: 1 1 65%;
	-o-flex: 1 1 65%;
	flex: 1 1 65%;
	min-height: 120px;
}

#site-navigation #site-navigation-menu:after {
	content: '';
	display: block;
	-webkit-flex: 1 1 35%;
	-moz-flex: 1 1 35%;
	-ms-flex: 1 1 35%;
	-o-flex: 1 1 35%;
	flex: 1 1 35%;
	min-height: 50px;
}



#site-navigation ul > li {
	list-style-type: none;
	display: table;
	width: 100%;
	line-height: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	justify-content: flex-start;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	-o-flex: 0 0 auto;
	flex: 0 0 auto;
}

/* Ecrart de padding entre item : 13.763778516423px *

#site-navigation ul > li:nth-child(1):nth-last-child(1) { padding-right: 73px; }

#site-navigation ul > li:nth-child(1):nth-last-child(2) { padding-right: 67px; }
#site-navigation ul > li:nth-child(2):nth-last-child(1) { padding-right: 81px; }

#site-navigation ul > li:nth-child(1):nth-last-child(3) { padding-right: 67px; }
#site-navigation ul > li:nth-child(2):nth-last-child(2) { padding-right: 81px; }
#site-navigation ul > li:nth-child(3):nth-last-child(1) { padding-right: 94px; }

#site-navigation ul > li:nth-child(1):nth-last-child(4) { padding-right: 58px; }
#site-navigation ul > li:nth-child(2):nth-last-child(3) { padding-right: 72px; }
#site-navigation ul > li:nth-child(3):nth-last-child(2) { padding-right: 85px; }
#site-navigation ul > li:nth-child(4):nth-last-child(1) { padding-right: 99px; }

#site-navigation ul > li:nth-child(1):nth-last-child(5) { padding-right: 53px; }
#site-navigation ul > li:nth-child(2):nth-last-child(4) { padding-right: 67px; }
#site-navigation ul > li:nth-child(3):nth-last-child(3) { padding-right: 80px; }
#site-navigation ul > li:nth-child(4):nth-last-child(2) { padding-right: 94px; }
#site-navigation ul > li:nth-child(5):nth-last-child(1) { padding-right: 108px; }

#site-navigation ul > li:nth-child(1):nth-last-child(6) { padding-right: 49px; }
#site-navigation ul > li:nth-child(2):nth-last-child(5) { padding-right: 63px; }
#site-navigation ul > li:nth-child(3):nth-last-child(4) { padding-right: 76px; }
#site-navigation ul > li:nth-child(4):nth-last-child(3) { padding-right: 90px; }
#site-navigation ul > li:nth-child(5):nth-last-child(2) { padding-right: 104px; }
#site-navigation ul > li:nth-child(6):nth-last-child(1) { padding-right: 118px; }

#site-navigation ul > li:nth-child(1):nth-last-child(7) { padding-right: 44px; }
#site-navigation ul > li:nth-child(2):nth-last-child(6) { padding-right: 58px; }
#site-navigation ul > li:nth-child(3):nth-last-child(5) { padding-right: 71px; }
#site-navigation ul > li:nth-child(4):nth-last-child(4) { padding-right: 85px; }
#site-navigation ul > li:nth-child(5):nth-last-child(3) { padding-right: 99px; }
#site-navigation ul > li:nth-child(6):nth-last-child(2) { padding-right: 113px; }
#site-navigation ul > li:nth-child(7):nth-last-child(1) { padding-right: 126px; }

#site-navigation ul > li:nth-child(1):nth-last-child(8) { padding-right: 39px; }
#site-navigation ul > li:nth-child(2):nth-last-child(7) { padding-right: 53px; }
#site-navigation ul > li:nth-child(3):nth-last-child(6) { padding-right: 66px; }
#site-navigation ul > li:nth-child(4):nth-last-child(5) { padding-right: 80px; }
#site-navigation ul > li:nth-child(5):nth-last-child(4) { padding-right: 94px; }
#site-navigation ul > li:nth-child(6):nth-last-child(3) { padding-right: 108px; }
#site-navigation ul > li:nth-child(7):nth-last-child(2) { padding-right: 121px; }
#site-navigation ul > li:nth-child(8):nth-last-child(1) { padding-right: 135px; }

#site-navigation ul > li:nth-child(1):nth-last-child(9) { padding-right: 35px; }
#site-navigation ul > li:nth-child(2):nth-last-child(8) { padding-right: 49px; }
#site-navigation ul > li:nth-child(3):nth-last-child(7) { padding-right: 62px; }
#site-navigation ul > li:nth-child(4):nth-last-child(6) { padding-right: 76px; }
#site-navigation ul > li:nth-child(5):nth-last-child(5) { padding-right: 90px; }
#site-navigation ul > li:nth-child(6):nth-last-child(4) { padding-right: 104px; }
#site-navigation ul > li:nth-child(7):nth-last-child(3) { padding-right: 117px; }
#site-navigation ul > li:nth-child(8):nth-last-child(2) { padding-right: 131px; }
#site-navigation ul > li:nth-child(9):nth-last-child(1) { padding-right: 145px; }

#site-navigation ul > li:nth-child(1):nth-last-child(10) { padding-right: 30px; }
#site-navigation ul > li:nth-child(2):nth-last-child(9)  { padding-right: 44px; }
#site-navigation ul > li:nth-child(3):nth-last-child(8)  { padding-right: 57px; }
#site-navigation ul > li:nth-child(4):nth-last-child(7)  { padding-right: 71px; }
#site-navigation ul > li:nth-child(5):nth-last-child(6)  { padding-right: 85px; }
#site-navigation ul > li:nth-child(6):nth-last-child(5)  { padding-right: 99px; }
#site-navigation ul > li:nth-child(7):nth-last-child(4)  { padding-right: 112px; }
#site-navigation ul > li:nth-child(8):nth-last-child(3)  { padding-right: 126px; }
#site-navigation ul > li:nth-child(9):nth-last-child(2)  { padding-right: 140px; }
#site-navigation ul > li:nth-child(10):nth-last-child(1) { padding-right: 154px; }

#site-navigation ul > li:nth-child(1):nth-last-child(11) { padding-right: 25px; }
#site-navigation ul > li:nth-child(2):nth-last-child(10) { padding-right: 39px; }
#site-navigation ul > li:nth-child(3):nth-last-child(9)  { padding-right: 52px; }
#site-navigation ul > li:nth-child(4):nth-last-child(8)  { padding-right: 67px; }
#site-navigation ul > li:nth-child(5):nth-last-child(7)  { padding-right: 80px; }
#site-navigation ul > li:nth-child(6):nth-last-child(6)  { padding-right: 94px; }
#site-navigation ul > li:nth-child(7):nth-last-child(5)  { padding-right: 107px; }
#site-navigation ul > li:nth-child(8):nth-last-child(4)  { padding-right: 121px; }
#site-navigation ul > li:nth-child(9):nth-last-child(3)  { padding-right: 135px; }
#site-navigation ul > li:nth-child(10):nth-last-child(2) { padding-right: 149px; }
#site-navigation ul > li:nth-child(11):nth-last-child(1) { padding-right: 163px; }

#site-navigation ul > li:nth-child(1):nth-last-child(12) { padding-right: 20px; }
#site-navigation ul > li:nth-child(2):nth-last-child(11) { padding-right: 34px; }
#site-navigation ul > li:nth-child(3):nth-last-child(10) { padding-right: 47px; }
#site-navigation ul > li:nth-child(4):nth-last-child(9)  { padding-right: 61px; }
#site-navigation ul > li:nth-child(5):nth-last-child(8)  { padding-right: 75px; }
#site-navigation ul > li:nth-child(6):nth-last-child(7)  { padding-right: 89px; }
#site-navigation ul > li:nth-child(7):nth-last-child(6)  { padding-right: 102px; }
#site-navigation ul > li:nth-child(8):nth-last-child(5)  { padding-right: 116px; }
#site-navigation ul > li:nth-child(9):nth-last-child(4)  { padding-right: 130px; }
#site-navigation ul > li:nth-child(10):nth-last-child(3) { padding-right: 144px; }
#site-navigation ul > li:nth-child(11):nth-last-child(2) { padding-right: 158px; }
#site-navigation ul > li:nth-child(12):nth-last-child(1) { padding-right: 171px; }

#site-navigation ul > li:nth-child(1):nth-last-child(13) { padding-right: 15px; }
#site-navigation ul > li:nth-child(2):nth-last-child(12) { padding-right: 29px; }
#site-navigation ul > li:nth-child(3):nth-last-child(11) { padding-right: 42px; }
#site-navigation ul > li:nth-child(4):nth-last-child(10) { padding-right: 56px; }
#site-navigation ul > li:nth-child(5):nth-last-child(9)  { padding-right: 70px; }
#site-navigation ul > li:nth-child(6):nth-last-child(8)  { padding-right: 84px; }
#site-navigation ul > li:nth-child(7):nth-last-child(7)  { padding-right: 97px; }
#site-navigation ul > li:nth-child(8):nth-last-child(6)  { padding-right: 111px; }
#site-navigation ul > li:nth-child(9):nth-last-child(5)  { padding-right: 125px; }
#site-navigation ul > li:nth-child(10):nth-last-child(4) { padding-right: 139px; }
#site-navigation ul > li:nth-child(11):nth-last-child(3) { padding-right: 153px; }
#site-navigation ul > li:nth-child(12):nth-last-child(2) { padding-right: 166px; }
#site-navigation ul > li:nth-child(13):nth-last-child(1) { padding-right: 180px; }

#site-navigation ul > li:nth-child(1):nth-last-child(14) { padding-right: 11px; }
#site-navigation ul > li:nth-child(2):nth-last-child(13) { padding-right: 25px; }
#site-navigation ul > li:nth-child(3):nth-last-child(12) { padding-right: 38px; }
#site-navigation ul > li:nth-child(4):nth-last-child(11) { padding-right: 52px; }
#site-navigation ul > li:nth-child(5):nth-last-child(10) { padding-right: 66px; }
#site-navigation ul > li:nth-child(6):nth-last-child(9)  { padding-right: 80px; }
#site-navigation ul > li:nth-child(7):nth-last-child(8)  { padding-right: 93px; }
#site-navigation ul > li:nth-child(8):nth-last-child(7)  { padding-right: 107px; }
#site-navigation ul > li:nth-child(9):nth-last-child(6)  { padding-right: 121px; }
#site-navigation ul > li:nth-child(10):nth-last-child(5) { padding-right: 135px; }
#site-navigation ul > li:nth-child(11):nth-last-child(4) { padding-right: 149px; }
#site-navigation ul > li:nth-child(12):nth-last-child(3) { padding-right: 162px; }
#site-navigation ul > li:nth-child(13):nth-last-child(2) { padding-right: 176px; }
#site-navigation ul > li:nth-child(14):nth-last-child(1) { padding-right: 190px; }

#site-navigation ul > li:nth-child(1):nth-last-child(15) { padding-right: 8px; }
#site-navigation ul > li:nth-child(2):nth-last-child(14) { padding-right: 22px; }
#site-navigation ul > li:nth-child(3):nth-last-child(13) { padding-right: 35px; }
#site-navigation ul > li:nth-child(4):nth-last-child(12) { padding-right: 49px; }
#site-navigation ul > li:nth-child(5):nth-last-child(11) { padding-right: 63px; }
#site-navigation ul > li:nth-child(6):nth-last-child(10) { padding-right: 77px; }
#site-navigation ul > li:nth-child(7):nth-last-child(9)  { padding-right: 90px; }
#site-navigation ul > li:nth-child(8):nth-last-child(8)  { padding-right: 104px; }
#site-navigation ul > li:nth-child(9):nth-last-child(7)  { padding-right: 118px; }
#site-navigation ul > li:nth-child(10):nth-last-child(6) { padding-right: 132px; }
#site-navigation ul > li:nth-child(11):nth-last-child(5) { padding-right: 146px; }
#site-navigation ul > li:nth-child(12):nth-last-child(4) { padding-right: 159px; }
#site-navigation ul > li:nth-child(13):nth-last-child(3) { padding-right: 173px; }
#site-navigation ul > li:nth-child(14):nth-last-child(2) { padding-right: 187px; }
#site-navigation ul > li:nth-child(15):nth-last-child(1) { padding-right: 201px; }



#site-navigation ul.primary-menu > li:last-child:nth-child(n+3) {
	margin-top: 48px;
}

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(3) { padding-right: 64px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(2) { padding-right: 77px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(1) { padding-right: 91px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(4) { padding-right: 55px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(3) { padding-right: 68px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(2) { padding-right: 82px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(1) { padding-right: 96px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(5) { padding-right: 50px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(4) { padding-right: 63px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(3) { padding-right: 77px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(2) { padding-right: 91px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(1) { padding-right: 104px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(6) { padding-right: 46px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(5) { padding-right: 59px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(4) { padding-right: 73px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(3) { padding-right: 87px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(2) { padding-right: 101px; }
#site-navigation ul.primary-menu > li:nth-child(6):nth-last-child(1) { padding-right: 113px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(7) { padding-right: 41px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(6) { padding-right: 54px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(5) { padding-right: 68px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(4) { padding-right: 82px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(3) { padding-right: 96px; }
#site-navigation ul.primary-menu > li:nth-child(6):nth-last-child(2) { padding-right: 109px; }
#site-navigation ul.primary-menu > li:nth-child(7):nth-last-child(1) { padding-right: 137px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(8) { padding-right: 36px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(7) { padding-right: 49px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(6) { padding-right: 63px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(5) { padding-right: 77px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(4) { padding-right: 91px; }
#site-navigation ul.primary-menu > li:nth-child(6):nth-last-child(3) { padding-right: 104px; }
#site-navigation ul.primary-menu > li:nth-child(7):nth-last-child(2) { padding-right: 118px; }
#site-navigation ul.primary-menu > li:nth-child(8):nth-last-child(1) { padding-right: 146px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(9) { padding-right: 32px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(8) { padding-right: 45px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(7) { padding-right: 59px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(6) { padding-right: 73px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(5) { padding-right: 87px; }
#site-navigation ul.primary-menu > li:nth-child(6):nth-last-child(4) { padding-right: 100px; }
#site-navigation ul.primary-menu > li:nth-child(7):nth-last-child(3) { padding-right: 114px; }
#site-navigation ul.primary-menu > li:nth-child(8):nth-last-child(2) { padding-right: 128px; }
#site-navigation ul.primary-menu > li:nth-child(9):nth-last-child(1) { padding-right: 154px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(10) { padding-right: 27px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(9)  { padding-right: 40px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(8)  { padding-right: 54px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(7)  { padding-right: 68px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(6)  { padding-right: 82px; }
#site-navigation ul.primary-menu > li:nth-child(6):nth-last-child(5)  { padding-right: 95px; }
#site-navigation ul.primary-menu > li:nth-child(7):nth-last-child(4)  { padding-right: 109px; }
#site-navigation ul.primary-menu > li:nth-child(8):nth-last-child(3)  { padding-right: 123px; }
#site-navigation ul.primary-menu > li:nth-child(9):nth-last-child(2)  { padding-right: 137px; }
#site-navigation ul.primary-menu > li:nth-child(10):nth-last-child(1) { padding-right: 163px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(11) { padding-right: 22px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(10) { padding-right: 35px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(9)  { padding-right: 49px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(8)  { padding-right: 63px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(7)  { padding-right: 77px; }
#site-navigation ul.primary-menu > li:nth-child(6):nth-last-child(6)  { padding-right: 90px; }
#site-navigation ul.primary-menu > li:nth-child(7):nth-last-child(5)  { padding-right: 104px; }
#site-navigation ul.primary-menu > li:nth-child(8):nth-last-child(4)  { padding-right: 118px; }
#site-navigation ul.primary-menu > li:nth-child(9):nth-last-child(3)  { padding-right: 132px; }
#site-navigation ul.primary-menu > li:nth-child(10):nth-last-child(2) { padding-right: 146px; }
#site-navigation ul.primary-menu > li:nth-child(11):nth-last-child(1) { padding-right: 173px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(12) { padding-right: 17px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(11) { padding-right: 30px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(10) { padding-right: 44px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(9)  { padding-right: 58px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(8)  { padding-right: 72px; }
#site-navigation ul.primary-menu > li:nth-child(6):nth-last-child(7)  { padding-right: 85px; }
#site-navigation ul.primary-menu > li:nth-child(7):nth-last-child(6)  { padding-right: 99px; }
#site-navigation ul.primary-menu > li:nth-child(8):nth-last-child(5)  { padding-right: 113px; }
#site-navigation ul.primary-menu > li:nth-child(9):nth-last-child(4)  { padding-right: 127px; }
#site-navigation ul.primary-menu > li:nth-child(10):nth-last-child(3) { padding-right: 141px; }
#site-navigation ul.primary-menu > li:nth-child(11):nth-last-child(2) { padding-right: 154px; }
#site-navigation ul.primary-menu > li:nth-child(12):nth-last-child(1) { padding-right: 182px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(13) { padding-right: 12px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(12) { padding-right: 25px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(11) { padding-right: 39px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(10) { padding-right: 53px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(9)  { padding-right: 66px; }
#site-navigation ul.primary-menu > li:nth-child(6):nth-last-child(8)  { padding-right: 80px; }
#site-navigation ul.primary-menu > li:nth-child(7):nth-last-child(7)  { padding-right: 94px; }
#site-navigation ul.primary-menu > li:nth-child(8):nth-last-child(6)  { padding-right: 108px; }
#site-navigation ul.primary-menu > li:nth-child(9):nth-last-child(5)  { padding-right: 122px; }
#site-navigation ul.primary-menu > li:nth-child(10):nth-last-child(4) { padding-right: 136px; }
#site-navigation ul.primary-menu > li:nth-child(11):nth-last-child(3) { padding-right: 149px; }
#site-navigation ul.primary-menu > li:nth-child(12):nth-last-child(2) { padding-right: 163px; }
#site-navigation ul.primary-menu > li:nth-child(13):nth-last-child(1) { padding-right: 191px; }

#site-navigation ul.primary-menu > li:nth-child(1):nth-last-child(14) { padding-right: 8px; }
#site-navigation ul.primary-menu > li:nth-child(2):nth-last-child(13) { padding-right: 21px; }
#site-navigation ul.primary-menu > li:nth-child(3):nth-last-child(12) { padding-right: 35px; }
#site-navigation ul.primary-menu > li:nth-child(4):nth-last-child(11) { padding-right: 49px; }
#site-navigation ul.primary-menu > li:nth-child(5):nth-last-child(10) { padding-right: 63px; }
#site-navigation ul.primary-menu > li:nth-child(6):nth-last-child(9)  { padding-right: 76px; }
#site-navigation ul.primary-menu > li:nth-child(7):nth-last-child(8)  { padding-right: 90px; }
#site-navigation ul.primary-menu > li:nth-child(8):nth-last-child(7)  { padding-right: 104px; }
#site-navigation ul.primary-menu > li:nth-child(9):nth-last-child(6)  { padding-right: 118px; }
#site-navigation ul.primary-menu > li:nth-child(10):nth-last-child(5) { padding-right: 132px; }
#site-navigation ul.primary-menu > li:nth-child(11):nth-last-child(4) { padding-right: 145px; }
#site-navigation ul.primary-menu > li:nth-child(12):nth-last-child(3) { padding-right: 159px; }
#site-navigation ul.primary-menu > li:nth-child(13):nth-last-child(2) { padding-right: 173px; }
#site-navigation ul.primary-menu > li:nth-child(14):nth-last-child(1) { padding-right: 202px; }
*/







#site-navigation li.back-item > .site-navigation__submenu-label,
#site-navigation a,
#site-navigation li > span,
#site-navigation li > .site-navigation__submenu-label > span.label-aria-focus {
	text-decoration: none;
	display: block;
	position: relative;
	pointer-events: all;
	text-align: left;
	display: table-cell;
	z-index: 1;
	text-transform: uppercase;
	line-height: 0;
	font-weight: 400;
	font-size: 18px;
	font-size: 1.125rem;
	color: #1f1f1f;
	padding: 17px 10px 17px 0px;
	width: 100%;
	flex-basis: 100%;
	text-align: center;
	outline: 0;
}

#site-navigation li > a,
#site-navigation li > span {
	-webkit-flex: 1 1 100%;
	-moz-flex: 1 1 100%;
	-ms-flex: 1 1 100%;
	-o-flex: 1 1 100%;
	flex: 1 1 100%;
}

#site-navigation li.back-item > .site-navigation__submenu-label {
	aspect-ratio: auto;
}

#site-navigation li > .site-navigation__submenu-label > span.label-aria-focus {
	color: transparent;
	white-space: nowrap;
	position: absolute;
}

#site-navigation li.back-item > .site-navigation__submenu-label > span.label-aria-focus {
	padding: 0;
	width: 0;
	display: inline-block;
	outline: 0 !important;
}

#site-navigation .site-navigation__submenu-label:focus-visible > span.label-aria-focus span,
#site-navigation li.back-item > .site-navigation__submenu-label:focus-visible > span.back-item-label,
#site-navigation a:focus-visible span {
	outline: 2px dotted #FFF;
	outline-offset: 4px;
}

#site-navigation a[href="#"],
#site-navigation a[href="#"] > span,
#site-navigation li > span,
#site-navigation li > span > span {
	pointer-events: none;
}

#site-navigation li.back-item > .site-navigation__submenu-label > span.back-item-label,
#site-navigation a > span,
#site-navigation li > span > span {
	position: relative;
	display: inline-block;
	color: inherit;
}

#site-navigation li.back-item > .site-navigation__submenu-label > span.back-item-label,
#site-navigation a > span,
#site-navigation li > span > span,
#site-navigation li > .site-navigation__submenu-label > span.label-aria-focus span {
	line-height: 1;
	display: inline-block;
}

#site-navigation li.menu-item-has-children > span > span {
	padding-left: 10px;
}

#site-navigation li.menu-item-has-children > span > span:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	border: 6px solid transparent;
	border-left-color: currentColor;
	border-left-width: 8px;
	margin-left: 12px;
	margin-top: -8px;
	margin-bottom: -4px;
	opacity: 0.85;
}

#site-navigation li.back-item > .site-navigation__submenu-label > span.back-item-label {
	white-space: nowrap;
}
/*
#site-navigation li.back-item > .site-navigation__submenu-label > span.back-item-label:after,
#site-navigation a > span:before,
#site-navigation li > span > span:before {
	content: '';
	display: block;
	position: absolute;
	left: -33px;
	top: 50%;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	width: 4px;
	height: 0;
	padding: 0;
	background-color: #E20028;
}

#site-navigation li.back-item > label:hover > span:after,
#site-navigation li.back-item > label:focus > span:after,
#site-navigation a:hover > span:before,
#site-navigation a:focus > span:before,
#site-navigation li:hover > a[href="#"] > span:before,
#site-navigation li:focus > a[href="#"] > span:before {
	width: 100%;
}

#site-navigation li:focus-within > a[href="#"] > span:before {
	width: 100%;
}
*/
#site-navigation li.current-product_cat-ancestor > a,
#site-navigation li.current-menu-item > a,
#site-navigation li.current-menu-parent > a,
#site-navigation li.current-menu-ancestor > a,
#site-navigation li.current-page-item > a,
#site-navigation li.current-page-parent > a,
#site-navigation li.current-page-ancestor > a,
#site-navigation li.current-product_cat-ancestor > span,
#site-navigation li.current-menu-item > span,
#site-navigation li.current-menu-parent > span,
#site-navigation li.current-menu-ancestor > span,
#site-navigation li.current-page-item > span,
#site-navigation li.current-page-parent > span,
#site-navigation li.current-page-ancestor > span {
	color: var(--theme-color);
	font-weight: 700;
}

#site-navigation li.current-product_cat-ancestor > a > span:before,
#site-navigation li.current-menu-item > a > span:before,
#site-navigation li.current-menu-parent > a > span:before,
#site-navigation li.current-menu-ancestor > a > span:before,
#site-navigation li.current-page-item > a > span:before,
#site-navigation li.current-page-parent > a > span:before,
#site-navigation li.current-page-ancestor > a > span:before,
#site-navigation li.current-product_cat-ancestor > span > span:before,
#site-navigation li.current-menu-item > span > span:before,
#site-navigation li.current-menu-parent > span > span:before,
#site-navigation li.current-menu-ancestor > span > span:before,
#site-navigation li.current-page-item > span > span:before,
#site-navigation li.current-page-parent > span > span:before,
#site-navigation li.current-page-ancestor > span > span:before {
	height: 100%;
	padding-top: 10px;
	padding-bottom: 8px;
	top: -10px;
}

#site-navigation li.back-item > .site-navigation__submenu-label > span.back-item-label:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	border: 6px solid transparent;
	border-right-color: currentColor;
	border-right-width: 8px;
	margin-right: 12px;
	margin-top: -8px;
	margin-bottom: -4px;
	opacity: 0.85;
}
/*
#site-navigation li.back-item > .site-navigation__submenu-label > span.back-item-label:before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid #858585;
	border-bottom: 2px solid #858585;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	position: relative;
	top: 50%;
	left: 0;
	margin-left: 2px;
	margin-right: 8px;
	margin-top: -4px;
}
/*
#site-navigation li.back-item > .site-navigation__submenu-label > span.back-item-label:before {
	-webkit-transform: translateX(.04em) rotate(135deg);
	-ms-transform: translateX(.04em) rotate(135deg);
	-o-transform: translateX(.04em) rotate(135deg);
	transform: translateX(.04em) rotate(135deg);
	margin-right: 8px;
	margin-left: 5px;
}

#site-navigation li > .site-navigation__submenu-label > span.label-aria-focus span:after {
	border-right-color: transparent;
	border-bottom-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
	#site-navigation li.menu-item-has-children > a[href="#"] > span:after,
	#site-navigation li.menu-item-has-children > span > span:after {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

#site-navigation li.back-item > .site-navigation__submenu-label:hover > span.back-item-label:before,
#site-navigation li.back-item:hover > .site-navigation__submenu-label > span.back-item-label:before {
	margin-right: 13px;
	margin-left: 0;
}

#site-navigation li.back-item > .site-navigation__submenu-label:focus-visible > span.back-item-label:before,
#site-navigation li.back-item:focus-visible > .site-navigation__submenu-label > span.back-item-label:before {
	margin-right: 13px;
	margin-left: 0;
}

#site-navigation li.menu-item-has-children > a[href="#"]:hover > span:after,
#site-navigation li.menu-item-has-children:hover > a[href="#"] > span:after,
#site-navigation li.menu-item-has-children > span:hover > span:after,
#site-navigation li.menu-item-has-children:hover > span > span:after {
	margin-left: 13px;
}

#site-navigation li.menu-item-has-children > a[href="#"]:focus-visible > span:after,
#site-navigation li.menu-item-has-children:focus-visible > a[href="#"] > span:after,
#site-navigation li.menu-item-has-children > span:focus-visible > span:after,
#site-navigation li.menu-item-has-children:focus-visible > span > span:after {
	margin-left: 13px;
}
*/



/**
* SOUS-MENU
**/

#site-navigation li > .sub-menu-block {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 100%;
	top: 0;
	-webkit-transform: none!important;
	-ms-transform: none!important;
	transform: none!important;
	padding: 0;
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity 0s linear .7s;
	-o-transition: opacity 0s linear .7s;
	transition: opacity 0s linear .7s;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}

#site-navigation li > .sub-menu-block > .sub-menu-block-inner {
	height: 100%;
	width: 100%;
	display: table;
	position: relative;
	left: 0;
	top: auto;
	border: none;
	background-color: transparent;
	z-index: auto;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: left .7s cubic-bezier(.7,0,.3,1);
	-o-transition: left .7s cubic-bezier(.7,0,.3,1);
	transition: left .7s cubic-bezier(.7,0,.3,1);

	-webkit-flex: 1 1 100%;
	-moz-flex: 1 1 100%;
	-ms-flex: 1 1 100%;
	-o-flex: 1 1 100%;
	flex: 1 1 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: flex-start;
	-ms-align-items: stretch;
	align-items: stretch;
}

#site-navigation li > .sub-menu-block > .sub-menu-block-inner:before {
    display: none;
}

#site-navigation li > .sub-menu-block:before {
	display: none;
}
/*
#site-navigation li > .sub-menu-block > .sub-menu-block-inner > ul {
	display: table-cell;
	vertical-align: middle;
	padding: 0;
	position: static;
	height: 100%;
	max-height: 100vh;
	overflow: auto;
	overflow-x: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-flex: 0 0 auto;
	-moz-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	-o-flex: 0 0 auto;
	flex: 0 0 auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: flex-start;
	-ms-align-items: stretch;
	align-items: stretch;
}
*/
#site-navigation li > .sub-menu-block > .sub-menu-block-inner:before,
#site-navigation li > .sub-menu-block > .sub-menu-block-inner:after {
	content: '';
	display: block;
	min-height: 30px;
	-webkit-flex: 1 1 50%;
	-moz-flex: 1 1 50%;
	-ms-flex: 1 1 50%;
	-o-flex: 1 1 50%;
	flex: 1 1 50%;
}


/* Bouton Sous-menu */

#site-navigation li > .site-navigation__submenu-label {
	padding: 0;
	line-height: 0;
	position: relative;
	text-align: right;
	display: inline-block;
	display: table-cell;
	width: auto;
	cursor: pointer;
	pointer-events: all;
	z-index: 2;
	width: auto;
	height: 100%;
	outline: 0;
	aspect-ratio: 1/1;
	-webkit-flex: 0 0 0px;
	-moz-flex: 0 0 0px;
	-ms-flex: 0 0 0px;
	-o-flex: 0 0 0px;
	flex: 0 0 0px;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background-color: transparent;
	background-image: none;
	background: none;
}

#site-navigation li > .site-navigation__submenu-label .submenu-toggle {
	display: inline-block;
	width: 50px;
	height: auto;
	min-height: 100%;
	padding: 15px 0 15px 0;
	line-height: 1.12rem;
	color: transparent;
	text-indent: -9999px;
	/*position: absolute;
	left: 0;
	top: 0;*/
	text-align: right;
	cursor: pointer;
}

@supports (aspect-ratio: 1/1) {
	#site-navigation li > .site-navigation__submenu-label .submenu-toggle {
		width: auto;
		aspect-ratio: 1/1;
	}
}

#site-navigation li > a[href="#"] ~ .site-navigation__submenu-label,
#site-navigation li > span ~ .site-navigation__submenu-label {
	aspect-ratio: auto;
}

#site-navigation li > a[href="#"] ~ .site-navigation__submenu-label .submenu-toggle,
#site-navigation li > span ~ .site-navigation__submenu-label .submenu-toggle {
	position: absolute;
	aspect-ratio: auto;
	right: 0;
	width: 80vw;
	top: 0;
	/*max-width: 85vw;
	width: calc(50vw - 327px);
	aspect-ratio: auto;
	max-width: calc(85vw - min(-107.52951965955px, max(-5.9738621077267vw, -13.763778516423vh)));
	width: calc(calc(50vw - 327px) - min(-107.52951965955px, max(-5.9738621077267vw, -13.763778516423vh)));*/
}


/*
#site-navigation li > .site-navigation__submenu-label .submenu-toggle:before {
	content: '';
	display: block;
	width: 1px;
	height: 70%;
	position: absolute;
	left: 0;
	top: 15%;
	background-color: #721623;
	opacity: .3;
}

#site-navigation li > a[href="#"] ~ .site-navigation__submenu-label .submenu-toggle:before {
	display: none;
}
*/

#site-navigation li > a + .site-navigation__submenu-label .submenu-toggle:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	border: 6px solid transparent;
	border-left-color: #1f1f1f;
	border-left-width: 8px;
	opacity: 0.85;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -4px;
	margin-top: -6px;
}
/*
#site-navigation li > .site-navigation__submenu-label .submenu-toggle:after {
	content: '';
	display: block;
	position: absolute;
	border-right: 2px solid #858585;
	border-bottom: 2px solid #858585;
	width: 8px;
	height: 8px;
	top: 50%;
	left: 50%;
	margin-left: -4px;
	margin-top: -4px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#site-navigation li > a[href="#"] ~ .site-navigation__submenu-label .submenu-toggle:after,
#site-navigation li > span ~ .site-navigation__submenu-label .submenu-toggle:after {
	right: 25.5px;
	left: auto;
	margin-left: 0;
}
/*
#site-navigation li > .site-navigation__submenu-label:hover .submenu-toggle:after,
#site-navigation li > .site-navigation__submenu-label:focus .submenu-toggle:after {
	border-color: #A91427;
}

#site-navigation li.back-item > .site-navigation__submenu-label > span:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	border-left: 3px solid currentColor;
	border-bottom: 3px solid currentColor;
	width: 10px;
	height: 10px;
	margin-right: 15px;
	margin-top: -2px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
*/









/**
* HOMEPAGE OPEN
*
@media screen and (min-width: 1770px) {

	body.page-template-homepage label[for="menu-mobile-open-chk"] {
		display: none!important;
	}

	body.page-template-homepage #header-label-menu-mobile {
		display: none!important;
	}

	body.page-template-homepage #menu-mobile-open-chk ~ #site #site-navigation #site-navigation-block {
		pointer-events: all;
	}

	#site-navigation {
		max-width: 85%;
		width: 400px;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		-o-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: box-shadow .7s cubic-bezier(.2,.4,.2,1), transform .7s cubic-bezier(.2,.4,.2,1);
		-o-transition: box-shadow .7s cubic-bezier(.2,.4,.2,1), transform .7s cubic-bezier(.2,.4,.2,1);
		transition: box-shadow .7s cubic-bezier(.2,.4,.2,1), transform .7s cubic-bezier(.2,.4,.2,1);
		-webkit-box-shadow: 0 0 7px -7px rgba(0,0,0,.4);
		box-shadow: 0 0 7px -7px rgba(0,0,0,.4);
		background: -moz-linear-gradient(top, rgba(255,255,255,1) 15%, rgba(255,255,255,.5) 65%, rgba(255,255,255,0) 100%),
					-moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 35%, rgba(255,255,255,1) 85%),
					-moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%),
					-moz-linear-gradient(left, rgba(255,255,255,.5) 0%, rgba(255,255,255,.5) 100%);
		background: -webkit-linear-gradient(top, rgba(255,255,255,1) 15%, rgba(255,255,255,.5) 65%, rgba(255,255,255,0) 100%),
					-webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 35%, rgba(255,255,255,1) 85%),
					-webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%),
					-webkit-linear-gradient(left, rgba(255,255,255,.5) 0%, rgba(255,255,255,.5) 100%);
		background: linear-gradient(to bottom, rgba(255,255,255,1) 15%, rgba(255,255,255,.5) 65%, rgba(255,255,255,0) 100%),
					linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 35%, rgba(255,255,255,1) 85%),
					linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%),
					linear-gradient(to right, rgba(255,255,255,.5) 0%, rgba(255,255,255,.5) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
		background-repeat: repeat-x, repeat-x, no-repeat, repeat;
		-webkit-background-size: auto 24%, auto 37%, 100% 100%, 100% 100%;
		background-size: auto 24%, auto 37%, 100% 100%, 100% 100%;
		background-position: top 6px center, bottom center, top 6px left, center center;
	}

	#site #site-navigation:focus-within {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		-webkit-box-shadow: 7px 0 7px -7px rgba(0,0,0,.4);
		box-shadow: 7px 0 7px -7px rgba(0,0,0,.4);
	}

	body.page-template-homepage #menu-mobile-open-chk ~ #site #site-navigation,
	#menu-mobile-open-chk:checked ~ #site #site-navigation {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
		-webkit-box-shadow: 7px 0 7px -7px rgba(0,0,0,.4);
		box-shadow: 7px 0 7px -7px rgba(0,0,0,.4);
	}
	
	body.page-template-homepage #site-navigation {
		pointer-events: all;
	}

	#site #site-navigation:focus-within #site-navigation-block {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: transparent;
		background-image: none;
		background: none;
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		max-width: none;
	}

	#site-navigation #site-navigation-block,
	#menu-mobile-open-chk:checked ~ #site #site-navigation #site-navigation-block {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: transparent;
		background-image: none;
		background: none;
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		max-width: none;
	}

	#site-navigation:before {
		right: 0px;
		left: auto;
		-webkit-transition: right .7s cubic-bezier(.2,.4,.2,1);
		-o-transition: right .7s cubic-bezier(.2,.4,.2,1);
		transition: right .7s cubic-bezier(.2,.4,.2,1);
	}

	#site #site-navigation:focus-within:before {
		right: -80px;
	}

	body.page-template-homepage #menu-mobile-open-chk ~ #site #site-navigation:before,
	#menu-mobile-open-chk:checked ~ #site #site-navigation:before {
		right: -80px;
	}

}

*/
