@import "reset.css";
@import "fonts.css";

html,
body {
	font-family: 'Helvetica Neue Light', 'Helvectica Neue', Helvetica, sans-serif;
	font-weight: 200;
	color: #fcfcfc;
	background-color: #fff;
	height: 100%;
	width: 100%;
	max-height: 780px;
	overflow: hidden;
	margin: 0;
	-ms-overflow-style: none; /* semi-hidden -ms-autohiding-scrollbar; */
}
/* INIT */
main {
	position: relative;
	height: 100%;
	max-width: 1024px;
	max-height: 758px;
	margin: 0 auto;
	overflow: scroll;
}
#configurator main::before {
	content: ' ';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	background-size: contain;
	opacity: 1;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	background: -webkit-linear-gradient(#000000, #333333); /* For Safari 5.1 to 6.0 */
	background: -o-linear-gradient(#000000, #333333); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(#000000, #333333); /* For Firefox 3.6 to 15 */
	background: linear-gradient(#000000, #333333); /* Standard syntax */
}

#intro article {
	position: relative;
	left: 0;
	right: 0;
	top: -175px;
	padding-top: 175px;
	margin-bottom: -175px;
}
.sliders {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.transparent,
.intro_slider {
	-webkit-transition: opacity .5s ease;
	-moz-transition: opacity .5s ease;
	-ms-transition: opacity .5s ease;
	-o-transition: opacity .5s ease;
	transition: opacity .5s ease;
}
.intro_slider {
	z-index: -1;
	position: absolute !important;
	top: 0;
}
.intro_slider.intro2 {
	z-index: 0;
	position: absolute !important;
	top: 0;
}
.intro_slider.owl-carousel .owl-item {
	height: 758px;
}
.intro_slide {
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	-webkit-transition: transform 4.4s .3s ease;
	-moz-transition: transform 4.4s .3s ease;
	-ms-transition: transform 4.4s .3s ease;
	-o-transition: transform 4.4s .3s ease;
	transition: transform 4.4s .3s ease;
}
.owl-item.active .intro_slide {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
.sliders .owl-carousel .owl-item img {
	display: none !important;
}
.is1 { background-image: url("../media/intro1.jpg"); }
.is2 { background-image: url("../media/intro2.jpg"); }
.is3 { background-image: url("../media/intro3.jpg"); }
.is4 { background-image: url("../media/intro4.jpg"); }
.is5 { background-image: url("../media/intro5.jpg"); }
.intro2 .is1 { background-image: url("../media/intro1_dark.jpg"); }
.intro2 .is2 { background-image: url("../media/intro2_dark.jpg"); }
.intro2 .is3 { background-image: url("../media/intro3_dark.jpg"); }
.intro2 .is4 { background-image: url("../media/intro4_dark.jpg"); }
.intro2 .is5 { background-image: url("../media/intro5_dark.jpg"); }

header {
	position: relative;
	margin-bottom: 20px;
	padding: 20px 40px 4px 40px;
	background-color: transparent;
	height: 80px;
	transition: .6s;
	transition-delay: 0.3s;
}
header.menuopen {
	background-color: #fff;
	transition: .5s;
	transition-delay: 0s;
	z-index: 10000
}
.stickyheader {
	position: fixed;
	width: 1024px;
	top: 0;
	left: 50%;
	margin-left: -512px;
	border-bottom: 1px solid #b7b7b7;
	min-height: 80px;
	height: 80px;
	z-index: 90;
	transition: 0s;
	-webkit-transform: translate3D(0,0,0);
	-webkit-transition: 0s ease-in-out
}
.page_light .stickyheader {
	background-color: #fff;
}
.scrollable{
	overflow:scroll;
	-webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
}
article {
	clear: both;
	float: left;
	width: 100%;
	position: relative;
	margin-top: 51px;
	min-height: 580px;
/* 	height: 100%; */
	color: #fff;
}
.page_light article {
	margin-top: 0px
}
.page_light article.sub {
	margin-top: 70px;
}
footer {
	position: absolute;
	right: 20px;
	bottom: 70px;
	z-index: 30;
	display: block;
	min-height: 35px;
	min-width: 300px;
}

/* LOGO */
header i.icon-logo {
	color: #fff;
	font-size: 7em;
	line-height: 52px;
	margin: -16px auto 0;
	width: 220px;
	text-align: center;
	display: block;
	transition-delay: 0.5s;
	cursor: pointer;
}
header i.icon-logo span {
	display: none
}

/* BURGER ICON */
.lines-button {
  top: 1.6rem;
  left: 2rem;
  position: relative;
  transition: .3s;
  cursor: pointer;
  user-select: none;
  height: 1.8rem;
  width: 2.3rem;
}
.lines-button:hover {
  opacity: 1;
}
.lines-button:active {
  transition: 0s;
}
.lines,
.lines::before,
.lines::after {
  display: inline-block;
  width: 1.8rem;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.lines {
  position: relative;
  top: -3px
}
.lines::before,
.lines::after {
  position: absolute;
  left: 0;
  content: '';
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.lines::before {
  top: 0.5rem;
}
.lines::after {
  top: -0.5rem;
}
.lines-button.x.close .lines {
  background: transparent;
}
.lines-button.x.close .lines::before,
.lines-button.x.close .lines::after {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 2.4rem;
}
.lines-button.x.close .lines::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.lines-button.x.close .lines::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

/* BULB */
.bulb-button {
	float: right;
	margin: -44px 30px 0 0
}
.bulb-button i {
	color: #fff;
	font-size: 2em;
	transition: .8s
}

/* LIGHT UP */
body.page_light main,
body.page_light article {
	color: #000;
	background-color: #fff;
}
header.menuopen i.icon-logo,
header.menuopen .bulb-button i,
.page_light header .bulb-button i,
.page_light header i.icon-logo {
	transition-delay: 0.2s;
	color: #666
}
header.menuopen .lines,
header.menuopen .lines::before,
header.menuopen .lines::after,
.page_light .lines,
.page_light .lines::before,
.page_light .lines::after {
	background-color: #666
}
.page_light a.btn {
	background-color: #d9d9d9;
}
.page_light a.btn:hover,
.page_light a.btn:focus {
	background-color: rgba(217, 217, 217, 0.5)
}
.page_light header .bulb-button i {
	display: none
}
.page_light header nav#subnav {
	background-color: #f2f1f2
}
.page_light header nav#subnav li.active a,
.page_light header nav#subnav li a {
	color: #666
}
.page_light header nav#subnav li.active a,
.page_light header nav#subnav li a:hover {
	color: #666;
    border-bottom: 5px solid #666;
}

/* NAVIGATION */
header nav#mainnav {
	clear: both;
	position: absolute;
	left: 0px;
	top: 80px;
	width: 100%;
	height: 100%;
	border-top: 1px solid #b7b7b7;
	z-index: 999;
	visibility: collapse;
}
header.menuopen nav#mainnav {
	visibility: visible;
}
header nav#mainnav li {
	float: left;
	position: relative;
	padding: 0;
	margin: 0;
	width: calc(25% - 1.3px); /* 255px */
	height: 0; /* 330px; */
	max-height: 0;
	display: block;
	border: 1px solid #b7b7b7;
	border-width: 0 1px 1px 0;
	background: #ebebeb;
	background: -moz-linear-gradient(top,  #ebebeb 0%, #e0e0e0 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb), color-stop(100%,#e0e0e0));
	background: -webkit-linear-gradient(top,  #ebebeb 0%,#e0e0e0 100%);
	background: -o-linear-gradient(top,  #ebebeb 0%,#e0e0e0 100%);
	background: -ms-linear-gradient(top,  #ebebeb 0%,#e0e0e0 100%);
	background: linear-gradient(to bottom,  #ebebeb 0%,#e0e0e0 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb', endColorstr='#e0e0e0',GradientType=0 );
	-webkit-box-shadow: inset 1px 1px 0px 0px rgba(255,255,255,1);
	-moz-box-shadow: inset 1px 1px 0px 0px rgba(255,255,255,1);
	box-shadow: inset 1px 1px 0px 0px rgba(255,255,255,1);
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	transition-delay: 0s;
}
header nav#mainnav li:nth-child(4n+1) {
	border-left-width: 1px;
}
header nav#mainnav li:hover {
	background: -moz-linear-gradient(top,  #e0e0e0 0%, #d3d3d3 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e0e0e0), color-stop(100%,##d3d3d3));
	background: -webkit-linear-gradient(top,  #e0e0e0 0%,##d3d3d3 100%);
	background: -o-linear-gradient(top,  #e0e0e0 0%,##d3d3d3 100%);
	background: -ms-linear-gradient(top,  #e0e0e0 0%,##d3d3d3 100%);
	background: linear-gradient(to bottom,  #e0e0e0 0%,##d3d3d3 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0e0e0', endColorstr='##d3d3d3',GradientType=0 );
}
header.menuopen nav#mainnav li {
	height: 338px;
	max-height: 338px;
	transition-delay: 0.2s;
}
header.menuopen nav#mainnav li {
	height: 338px;
	max-height: 338px;
	transition-delay: 0.2s;
}
header nav#mainnav li a {
	height: 100%;
	width: 100%;
	display: block;
	position: absolute;
}
header nav#mainnav li i {
	margin-top: 47%;
	width: 100%;
	text-align: center;
	font-size: 4em;
	zoom: 1;
	color: #555;
	display: inline-block;
	white-space: pre;
	text-shadow: 0px 2px 3px rgba(255, 255, 255, 1);
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-o-text-overflow: clip;
	text-overflow: clip;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;
}
header nav#mainnav li span {
	position: absolute;
	bottom: 20%;
	display: block;
	width: 100%;
	color: #888;
	font-size: 9pt;
	line-height: 18pt;
	text-transform: uppercase;
	text-align: center;
}
/* NAV ICONS */
header nav#mainnav li i.icon-configurator {
	font-size: 8em;
	margin-top: 38% !important;
}
header nav#mainnav li i.icon-customfit {
	font-size: 5.8em;
	margin-left: -15px;
	margin-top: 45% !important;
}
header nav#mainnav li i.icon-curves {
	font-size: 5em;
}
/* Subnav */
header nav#subnav {
	clear: both;
	position: relative;
	border-top: 1px solid #b7b7b7;
	border-bottom: 1px solid #b7b7b7;
	width: 100%;
	top: 6px;
	margin: 10px auto 0 auto;
	background-color: rgba(255, 255, 255, 0.1);
	display: inline-block;
}
header nav#subnav li {
	float: left;
	display: block;
	text-transform: uppercase;
	text-align: center;
	color: #b7b7b7;
	font-size: 0.9em;
	min-width: 22%;
}
header nav#subnav li:first-child{
	padding-left: 35px
}
header nav#subnav li:last-child {
	padding-right: 30px
}
header nav#subnav li a {
	display: inline-block;
	padding: 20px 50px 12px 50px;
	margin-right: 20px;
	white-space: nowrap;
	border-bottom: 5px solid transparent;
}
header nav#subnav li.active a,
header nav#subnav li a:hover {
	font-weight: 700;
	border-bottom: 5px solid #fff;
	color: #fff;
}
/* 2 Rows */
header nav#subnav .rows2 {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center
}
header nav#subnav .rows2 li {
	min-width: 30%;
	float: none;
	display: inline-block
}

/* 3 Rows */
header nav#subnav .rows3 li {
	min-width: 30%
}
header nav#subnav .rows3 li:first-child {
	padding-left: 50px;
	text-align: left;
}
header nav#subnav .rows3 li:last-child {
	text-align: right
}

.left { float: left }
.center { text-align: center }
.right { float: right }
*:focus { outline: none; }

/* CONTENT */
.hide { display: none !important}
.hidden { visibility: hidden !important}
.transparent { opacity: 0 !important }
.pointer { cursor: pointer }
.content_left {
	float:left;
	min-width: 45%;
	max-width: 45%;
	margin-left: 50px;
	z-index: 1;
}
.content_right {
	float: right;
	margin-right: 50px;
	max-width: 50%;
}
.configurator-overlay {
	position: inherit;
	z-index: 100;
}
.content_center {
	clear: both;
	display: block;
	width: 100%;
	text-align: center;
	padding-top: 40px;
	white-space: nowrap;
}
.content_wide {
	float: left;
	width: 90%;
	margin-left: 50px;
}
.content_full {
	position: relative;
	clear: left;
	display: block;
	margin: 0;
	width: 100%;
}
.content_wide p {
	max-width: 60%
}
article h1 {
	font-size: 1.5em;
	font-weight: 800;
	margin-bottom: 10px
}
article h3 {
	font-weight: normal;
	font-weight: 200;
	font-size: .9em
}
article p {
	font-size: .9em;
	line-height: 1.5em;
	margin-bottom: 15px
}
.content_center.intro {
	margin: 0 auto;
	padding-top: 0px;
	width: 58%;
	font-size: 1em;
	font-weight: 400;
	white-space: normal;
	display: inherit;
	position: relative;
	z-index: 2;
}
#intro article {
	min-height: 582px !important; /*566*/
}
article .intro h1 {
	margin-bottom: 40px
}
article .intro p:last-of-type {
	margin-bottom: 40px;
}
a.btn,
.btn {
	display: inline-block;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 0.3px;
	padding: 0.7em 1.2em 0.7em 5.2em;
	line-height: 1.8em;
	font: 800 0.75em/1.8em 'Helvectia Neue', Helvectia, Arial;
	text-transform: uppercase;
	color: #666;
	-o-transition: all .2s ease;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.btn.right:after {
	font-family: "GuideU";
	font-size: 30pt;
	font-weight: normal;
	vertical-align: bottom;
	margin-left: 5px;
	content: "\e610";
	display: inline-block;
	cursor: pointer;
	-moz-transform: translateX(.3em);
	-o-transform: translateX(.3em);
	-webkit-transform: translateX(.3em);
	transform: translateX(.3em);
	-o-transition: all .2s ease;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.btn.dark {
	background-color: #d9d9d9
}
.btn:hover {
	border: 1px solid rgba(255, 255, 255, 0.75);
	background-color: rgba(255, 255, 255, 0.85)
}
.btn.dark:hover {
	background-color: rgba(217, 217, 217, 0.85)
}
a.btn.right:hover:after,
a.btn.right:focus:after,
.btn.right:hover:after,
.btn.right:focus:after {
	-moz-transform: translateX(.4em);
	-o-transform: translateX(.4em);
	-webkit-transform: translateX(.4em);
	transform: translateX(.4em);
}

ul.checkmark {
	margin-top: 7px;
	padding-left:20px;
	list-style: none;
	max-width: 220px;
	margin-right: 92px; /* 115px */
}
.checkmark li {
	font-size: .9em;
	font-weight: 200;
	margin-bottom: 20px;
	line-height: 16px;
}
.checkmark li:before {
	content: "\e613";
	font-family: "GuideU";
	font-size: 14px;
	padding-right: 14px;
	margin-left: -28px;
}
#totop {
	position: fixed;
	top: 800px;
	left: 50%;
	margin-left: 420px;
	height: 50px;
	width: 50px;
	display: inline-block;
	color: #fff;
	content: " top ";
	z-index: 100;
	cursor: pointer;
	background: #fcfcfc url("../images/totop.png") no-repeat;
	background-size: 100%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
#totop.backtotop-is-visible {
	visibility: visible;
	opacity: 1;
}

/* Custom Fit */
article#customfit_carpet {
	background-color: #666;
	margin-top: 10px;
	padding-bottom: 44px;
	position: relative;
}
#customfit article {
	color: #fff;
}
#customfit .content_left {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
}
#customfit article h1 {
	margin-top: 50px;
}
.btc {
	position: absolute;
	bottom: 100px;
	left: 30px;
	z-index: 10;
}
.btc a.btn {
	color: #666;
	padding: 0.7em 1.5em .7em .5em;
	font-weight: normal;
	font-weight: 200;
	background-color: #fefefe;
}
.btc a.btn:hover,
.btc a.btn:focus {
	background-color: #fff;
}
.btn.left:before {
	font-family: "GuideU";
	font-size: 30pt;
	vertical-align: bottom;
	margin-right: 5px;
	content: "\e60f";
	display: inline-block;
	cursor: pointer;
	-o-transition: all .2s ease;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.btc .btn:hover.left:before {
	-webkit-transform: translateX(-5px);
	-moz-transform: translateX(-5px);
	-o-transform: translateX(-5px);
	transform: translateX(-5px);
}
.carpet_match {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}
.carpet_match.owl-carousel .owl-item {
	height: 634px;
}
.cm_slide {
	background-size: cover;
	background-position: center bottom;
	width: 100%;
	height: 100%;
}
.cm1 { background-image: url("../media/customfit_carpetmatch_01.jpg"); }
.cm2 { background-image: url("../media/customfit_carpetmatch_02.jpg"); }
.cm3 { background-image: url("../media/customfit_carpetmatch_03.jpg"); }
.cm4 { background-image: url("../media/customfit_carpetmatch_04.jpg"); }
.cm5 { background-image: url("../media/customfit_carpetmatch_05.jpg"); }

.fw_slider .owl-nav {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}
.fw_slider .owl-nav [class*='owl-'] {
	font-size: 2.5em;
	text-align: center;
	height: 30px;
	width: 30px;
	line-height: 38px;
	display: block;
	cursor: pointer;
	color: #fff;
/*
	vertical-align: bottom;
	background: #fff;
	color: #666;
	border-radius: 50%;
*/
	position: absolute;
	top: 42%;
	padding-bottom: 2px;
}
.fw_slider .owl-nav .owl-prev {
	left: 30px;
	padding-right: 1px
}
.fw_slider .owl-nav .owl-next {
	right: 30px;
	padding-left: 1px
}
/*
.fw_slider .owl-nav [class*='owl-']:hover {
	background: rgba(255,255,255,.8);
	color: #666;
	text-decoration: none;
}
*/
.fw_slider .owl-nav .disabled {
	 opacity: 0.5;
	 cursor: default;
}
article#customfit_brand {
	background: #666 url("../media/customfit_brandmatch_01.jpg") no-repeat center bottom;
	background-size: cover;
	margin-top: 10px;
	padding-bottom: 44px;
	position: relative;
}
#customfit_brand .btc {
	bottom: 79px
}

/* Mounting */
#mounting main {
	overflow-y: hidden;
}
#mounting .content_wide {
	float: none;
	clear: both;
	margin-bottom: -20px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	width: 70%;
}
.mounting {
	margin-top: 30px
}
.box_mount {
	float: left;
	width: 175px;
	height: 175px;
	margin-top: 60px;
	margin-right: 24px;
}
.box_mount:last-child {
	margin-right: 0
}
.box_mount .mount {
	display: block;
	height: 175px;
	width: 175px;
	background: none;
	background-color: #f0f0f0;
	transition: margin-top .3s, height .3s, width .3s;
	-moz-transition: margin-top .3s, height .3s, width .3s;
	-webkit-transition: margin-top .3s, height .3s, width .3s;
	-o-transition: margin-top .3s, height .3s, width .3s;
}
.box_mount.active {
	width: 300px;
	height: 300px;
	margin-top: 0;
	transition: margin-top .3s, height .3s, width .3s;
	-moz-transition: margin-top .3s, height .3s, width .3s;
	-webkit-transition: margin-top .3s, height .3s, width .3s;
	-o-transition: margin-top .3s, height .3s, width .3s;
}
.box_mount.active .box,
.box_mount.active .mount {
	float: left;
	position: relative;
	background: none;
	background-color: #f0f0f0;
	border: 1px solid #c3c3c3;
	width: 300px;
	height: 300px;
	display: block;
	margin-bottom: 15px;
	transition: margin-top .3s, height .3s, width .3s;
	-moz-transition: margin-top .3s, height .3s, width .3s;
	-webkit-transition: margin-top .3s, height .3s, width .3s;
	-o-transition: margin-top .3s, height .3s, width .3s;
/*
	transition: background-size .3s;
	-moz-transition: background-size .3s;
	-webkit-transition: background-size .3s;
	-o-transition: background-size .3s;
*/
}
.mount {
	position: relative;
}
.thumb {
	height: 175px;
	width: 175px;
	display: block;
	background-repeat: no-repeat;
/* 	background-position: center bottom; */
	background-size: 100%;
	transition: height .3s, width .3s, opacity .3s 50ms ease-in-out;
}
.thumb.tn1 {
	background-image: url("../images/mounting_measure_bw.png");
}
.thumb.tn2 {
	background-image: url("../images/mounting_cut_bw.png");
}
.thumb.tn3 {
	background-image: url("../images/mounting_sticky_tape_bw.png");
}
.thumb.tn4 {
	background-image: url("../images/mounting_position_bw.png");
}
.full_mount {
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: top .4s .4s ease-in-out, opacity .2s ease-in-out;
}
.box_mount.active .thumb {
	height: 300px;
	width: 300px;
	opacity: 0;
	background-size: 100%; /* 135 */
	transition: background .3s, height .3s, width .3s, opacity .4s;
}
.box_mount.active .thumb.tn3,
.box_mount.active .thumb.tn4 {
	background-size: 100%;
}
.box_mount.active .full_mount {
	transition: opacity .3s 40ms ease-in-out;
	transition-delay: .1s;
	opacity: 1;
	display: block;
}
.box_mount p {
	clear: both;
	font-size: 0.8em;
	max-width: 265px;
	margin: 15px 0 -5px 35px;
	opacity: 0;
	transition-property: opacity;
	transition-duration: .1s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
.box_mount p.title,
.box_mount.active p {
	opacity: 1;
	transition-duration: .3s;
	transition-delay: .3s;
}
.box_mount p.title strong {
	font-size: 1em;
	text-transform: uppercase;
	margin-left: 0px;
}
.icon_number {
	border-radius: 50%;
	background-color: #000;
	color: #fff;
	font-weight: 800;
	font-size: 1em;
	padding: .2em .6em .25em .6em;
	margin-left: -34px;
	margin-right: 7px
}

/* Curves */
#curves article .content_left {
	margin-top: 70px
}
#curves .preload-images {
	background: url("../images/curves_customized.png") no-repeat -9999px -9999px;
	background: url("../images/curves_passage_shift_curved1.png") no-repeat -9999px -9999px,
				url("../images/curves_passage_shift_curved2.png") no-repeat -9999px -9999px,
				url("../images/curves_passage_shift_diagonal1.png") no-repeat -9999px -9999px,
				url("../images/curves_passage_shift_diagonal2.png") no-repeat -9999px -9999px,
				url("../images/curves_passage_shift_rectangular1.png") no-repeat -9999px -9999px,
				url("../images/curves_passage_shift_rectangular2.png") no-repeat -9999px -9999px;
}
#curves.curves_standard article,
#curves article#curves_standard {
	background: url("../images/curves_customized1.png") no-repeat -9999px -9999px,
				url("../images/curves_customized2.png") no-repeat -9999px -9999px,
				url("../images/curves_customized3.png") no-repeat -9999px -9999px;
	background: transparent url("../images/curves_standard.png") no-repeat 35% center;
	margin-top: 0;
	background-size: 85%;
}
#curves.curves_customized #subnav,
#curves #curves_customized #subnav {
	border-bottom: 1px solid #000
}
#curves.curves_customized article,
#curves article#curves_customized {
	color: #fff;
	background-color: #000 !important;
	margin-top: 0;
	-webkit-transition: background 1s ease;
	transition: background 1s ease;
	background: url("../images/curves_customized1.png") no-repeat;
	background: url("../images/curves_customized2.png") no-repeat -9999px -9999px,
				url("../images/curves_customized3.png") no-repeat -9999px -9999px;
}
#curves.curves_customized article.t1,
#curves article#curves_customized.t1 {
	background: #000 url("../images/curves_customized1.jpg") no-repeat left top;
	background-size: 101% 102%;
}
#curves.curves_customized article.t2,
#curves article#curves_customized.t2 {
	background: #000 url("../images/curves_customized2.jpg") no-repeat left top;
	background-size: 100% 102%;
}
#curves.curves_customized article.t3,
#curves article#curves_customized.t3 {
	background: #000 url("../images/curves_customized3.jpg") no-repeat left top;
	background-size: 101% 102%;
}
#curves .tiles {
	position: relative;
	top: 180px;
	clear: both;
	float: none;
	margin: 0 auto;
	width: 920px;
	display: block;
	text-align: center;
}
#curves .tile {
	display: inline-block;
	height: 200px;
	width: 200px;
	box-shadow: inset 0 0 0 1px #dedede;
	margin: 0 10px;
}
#curves .tile:hover,
#curves .tile.active {
	box-shadow: inset 0 0 0 5px #dedede;
}
#curves .tile.t1 {
	background: transparent url("../images/curves_customized1.png") no-repeat center center;
	background-size: 73%;
}
#curves .tile.t2 {
	background: transparent url("../images/curves_customized2.png") no-repeat center center;
	background-size: 73%;
}
#curves .tile.t3 {
	background: transparent url("../images/curves_customized3.png") no-repeat center center;
	background-size: 73%;
}

.page_light article#curves_passage_shift.sub { margin-top: 0 !important }

#curves.curves_passage_shift article > div,
#curves article#curves_passage_shift > div {
	min-height: 584px;
	width: 100%;
	display: block;
	margin-top: 0px; /* -50 */
}
@-webkit-keyframes zoomIn {
	0% { opacity: 0 }
  100% { opacity: 1 }
}
@keyframes zoomIn {
	0% { opacity: 0 }
  100% { opacity: 1 }
}
@-webkit-keyframes zoomOut {
	0% { opacity: 1 }
  100% { opacity: 0 }
}
@keyframes zoomOut {
	0% { opacity: 1 }
  100% { opacity: 0 }
}
.zoomin {
	animation: zoomIn;
	-moz-animation: zoomIn;
	-webkit-animation: zoomIn;
	animation-duration: 2s;
	-moz-animation-duration: 2s;
	-webkit-animation-duration: 2s;
}
.zoomout {
	animation: zoomOut;
	-moz-animation: zoomOut;
	-webkit-animation: zoomOut;
	animation-duration: .4s;
	-moz-animation-duration: .4s;
	-webkit-animation-duration: .4s;
}
.curved_content {
	background: transparent url("../images/curves_passage_shift_curved1.png") no-repeat 50% 75%;
	background-size: 100%;
	margin-top: 0;
}
.curved_content.curved {
	background: transparent url("../images/curves_passage_shift_curved2.png") no-repeat 50% 68% !important;
	background-size: 100% !important;
	margin-top: 0;
}
.diagonal_content {
	background: transparent url("../images/curves_passage_shift_diagonal1.png") no-repeat 50% 75%;
	background-size: 100%;
	margin-top: 0;
}
.diagonal_content.diagonal {
	background: transparent url("../images/curves_passage_shift_diagonal2.png") no-repeat 50% 65% !important;
	background-size: 100% !important;
	margin-top: 0;
}
.rectangular_content {
	background: transparent url("../images/curves_passage_shift_rectangular1.png") no-repeat 50% 75%;
	background-size: 100%;
	margin-top: 0;
}
.rectangular_content.rectangular {
	background: transparent url("../images/curves_passage_shift_rectangular2.png") no-repeat 50% 68.2% !important;
	background-size: 100% !important;
	margin-top: 0;
}
#curves.curves_passage_shift .content_right,
#curves #curves_passage_shift .content_right {
	text-transform: uppercase;
	font-size: .8em;
	margin-top: 60px;
}
#curves.curves_passage_shift .content_right i,
#curves #curves_passage_shift .content_right i {
	font-size: 2.5em;
	vertical-align:middle;
	line-height: 0em;
}
.curves_customized article,
article#curves_customized {
	background: transparent url("../images/curves_customized1.jpg") no-repeat left top;
	background-size: 100%
}
.fixedfooter {
	position: fixed;
	top: 668px;
	width: 1024px;
	max-width: 1024px;
	z-index: 70;
}
.fixedfooter.foot-nav-filler {
	display: none;
}
nav#foot ul {
	margin-top: -50px;
	width: 100%;
	height: 50px;
	display: block;
}
nav#foot li {
	background-color: #d9d9d9;
	border-right: 1px solid #fff;
	padding: 0px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: .7em;
	line-height: 14px;
	float:left;
	width: 33.2%
}
nav#foot li:first-child {
	margin-left: 1px;
}
nav#foot li:hover,
nav#foot li.active {
	background-color: #999;
}
nav#foot li:hover a {
	color: #fff;
}
nav#foot a:link,
nav#foot a:visited {
	width: 100%;
	color: #666;
	display: inline-block;
	padding: 20px 0px;
}
nav#foot a:hover,
nav#foot a:active,
nav#foot .active a {
	color: #fff;
	font-weight: 800
}

/* technical data */
#certificates .content_wide p:last-child,
#certificates .content_wide h2,
#technical_data .content_wide p:last-child,
#technical_data .content_wide h2 {
	margin-bottom: 30px
}
.data {
	background-color: #f7f7f7;
	padding-bottom: 40px;
	display: inline-block
}

.data p {
	margin: 10px 50px;
	font-size: .8em
}
.datarow {
	clear: both;
	white-space: nowrap;
	padding: 10px 50px 10px 50px;
	font-size: .9em;
	font-family: 'Helvetica Neue Light',Helvetica, Arial, sans-serif;
}
.datarow .r1 {
	display: inline-block;
	text-align: right;
	width: 100px;
	height: 34px;
	line-height: 34px;
	margin-right: 30px
}
.datarow .r2 {
	display: inline-block;
	width: 270px;
	line-height: 24px;
	vertical-align: top
}
.datarow .r2:last-child {
	width: 250px;
}
.datarow.first {
	padding-top: 30px;
	margin-bottom: 0px;
}
.datarow.first.fixed {
	background-color: #f7f7f7;
	display: block;
	margin-bottom: 0;
	max-width: 924px;
	padding-bottom: 0;
	padding-top: 20px;
	position: fixed;
	top: 125px;
}
.datarow .r3 {
	display: inline-block;
	text-align: left;
	width: 120px;
	height: 34px;
	margin-right: 20px;
	white-space: normal;
	vertical-align: top;
}
.datarow .r3 span{
	line-height: 20px !important;
	position: relative;
	top: -3px;
}
.datarow .r4 {
	display: inline-block;
	text-align: left;
	width: 75px;
	height: 34px;
	padding: 0;
	margin: 0;
	margin-right: 20px;
	vertical-align: top;
}
.data .left {
	max-width: 80%;
}
#color_strip {
	float: left;
	margin-top: 10px;
	margin-left: 60px;
	width: 83px;
}
#color_boxes {
	float: left;
	margin-left: 45px;
	margin-top: 10px
}
#color_boxes li {
	float: left;
	text-align: left;
	width: 185px;
	height: 40px;
	margin: 0 1px 1px 0;
	padding-bottom: 10px;
	color: #fff;
	font-size: .9em;
	line-height: 20px;
	white-space: nowrap
}
#color_boxes li p {
	font-size: .8em;
	margin: 10px 20px
}
.t30 { margin-top: 30px }
.t50 { margin-top: 50px }
.l150 {margin-left: 150px }

/* Filler */
.f15,
.f30,
.f45,
.f70 {
	display: block;
	height: 6px;
	width: 78px;
	background-color: #666;
	margin: 2px 0 0 10px;
}
.f30 { height: 9px; }
.f45 { height: 12px; }
.f70 { height: 15px;}
.data_cp {
	display: block;
	width: 120px;
	height: 40px;
	background: transparent url("../images/data_cp.png") no-repeat;
	background-size: 100%;
	margin: 0 0 0 -5px
}

/* data: airplanes */
.cert p {
	padding: 0 50px;
	margin-bottom: 50px
}
.cert table {
	margin: 0 0 60px 50px;
	padding-right: 50px;
	border-spacing: 0;
	border-collapse: collapse;
	margin-bottom: 60px
}
.cert thead th {
	text-transform: uppercase;
	vertical-align: text-top;
	font-size: .9em;
	padding-bottom: 10px
}
th.col1 {
	width: 200px;
	text-align: center;
}
th.col6 {
	text-align: left;
	padding-left: 50px;
}
.cert tbody td {
	padding: 2px 10px 0;
	border: 1px solid #c5c5c5;
	border-width: 1px 0 0 0;
	line-height: 43px;
	vertical-align: inherit
}
.cert tbody tr:last-child td {
	border-bottom: 1px solid #c5c5c5
}
.cert td i {
	color: #6ac419;
}
.cert td.col1 {
	width: 140px;
	text-align: right;
}
.cert td.col2 {
	width: 100px;
	text-align: left;
	font-size: .9em;
	font-weight: 400;
	padding-left: 20px;
}
.col3,
.col4,
.col5 {
	width: 115px;
	text-align: center;
}
.col4 {
	text-align: center;
}
.col5 {
	width: 105px;
	text-align: center;
}
.cert td.col6 {
	text-align: left;
	padding-left: 80px;
	width: 160px;
}
.cert tbody tr:nth-child(odd) {
	background-color: #f7f7f7;
}
.cert tbody tr:nth-child(even) {
	background-color: transparent ;
}

.cert thead.snapped {
	background-color: #fff;
	padding: 10px 0 0;
	border-bottom: 1px solid #c5c5c5;
}
.cert thead.snapped th.col1 {
	width: 288px;
}
.cert thead.snapped th.col3,
.cert thead.snapped th.col4 {
	width: 133px;
}
.cert thead.snapped th.col5 {
	width: 123px;
}
.cert thead.snapped th.col6 {
	width: 199px;
}
.at {
	display: inline-block;
	margin-top: 0px;
	margin-bottom: -5px;
}
.a318 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -65px top 0px;
	background-size: 85% auto;
	height: 20px;
	width: 100%;
}
.a319 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -65px top -20px;
	background-size: 85% auto;
	height: 20px;
	width: 100%;
}
.a320 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -60px top -40px;
	background-size: 85% auto;
	height: 21px;
	width: 100%;
}
.a321 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -49px top -59px;
	background-size: 85% auto;
	height: 22px;
	width: 100%;
}
.a330 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -18px top -78px;
	background-size: 85% auto;
	height: 26px;
	width: 100%;
}
.a340 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -18px top -105px;
	background-size: 85% auto;
	height: 26px;
	width: 100%;
}
.a350 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -11px top -132px;
	background-size: 85% auto;
	height: 27px;
	width: 100%;
}
.a380 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -4px top -159px;
	background-size: 85% auto;
	height: 38px;
	width: 100%;
	margin-bottom: -11px;
	margin-top: 2px;
}
.b717 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -76px top -198px;
	background-size: 85% auto;
	height: 16px;
	width: 100%;
}
.b737 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -51px top -210px;
	background-size: 85% auto;
	height: 22px;
	width: 100%;
}
.b747 {
	background: url('../images/certificates_airplanes.png')	no-repeat right 0px top -232px;
	background-size: 85% auto;
	height: 29px;
	width: 100%;
	margin-bottom: -9px
}
.b757 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -28px top -262px;
	background-size: 85% auto;
	height: 25px;
	width: 100%;
}
.b767 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -23px top -288px;
	background-size: 85% auto;
	height: 27px;
	width: 100%;
}
.b777 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -19px top -315px;
	background-size: 85% auto;
	height: 29px;
	width: 100%;
}
.b787 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -26px top -345px;
	background-size: 85% auto;
	height: 27px;
	width: 100%;
}
.md80 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -48px top -373px;
	background-size: 85% auto;
	height: 13px;
	width: 100%;
	margin-bottom: auto
}
.crj {
	background: url('../images/certificates_airplanes.png')	no-repeat right -52px top -387px;
	background-size: 85% auto;
	height: 15px;
	width: 100%;
	margin-bottom: auto
}
.cseries {
	background: url('../images/certificates_airplanes.png')	no-repeat right -47px top -402px;
	background-size: 85% auto;
	height: 22px;
	width: 100%;
}
.dhc8q400 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -63px top -425px;
	background-size: 85% auto;
	height: 14px;
	width: 100%;
	margin-bottom: auto
}
.emb170 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -44px top -439px;
	background-size: 85% auto;
	height: 22px;
	width: 100%;
}
.emb190 {
	background: url('../images/certificates_airplanes.png')	no-repeat right -44px top -461px;
	background-size: 85% auto;
	height: 22px;
	width: 100%;
}

/* Optimized */
.at2 {
	display: inline-block;
	margin-top: 0px;
	margin-bottom: -5px;
	background: url('../images/certificates_airplanes2.png')	no-repeat right 0 top 0px;
	background-size:auto;
}
.at2.a318 {
	background-position: right 0 top 0px;
	height: 20px;
	width: 100%;
}
.at2.a319 {
	background-position: right 0 top -20px;
	height: 19px;
	width: 100%;
}
.at2.a320 {
	background-position: right 0 top -39px;
	height: 18px;
	width: 100%;
}
.at2.a321 {
	background-position: right 0 top -57px;
	height: 19px;
	width: 100%;
}
.at2.a330 {
	background-position:  right 0 top -76px;
	height: 25px;
	width: 100%;
}
.at2.a340 {
	background-position:  right 0 top -102px;
	height: 25px;
	width: 100%;
}
.at2.a350 {
	background-position:  right 0 top -127px;
	height: 26px;
	width: 100%;
}
.at2.a380 {
	background-position:  right 0 top -154px;
	height: 37px;
	width: 100%;
	margin-bottom: -11px;
	margin-top: 2px;
}
.at2.b717 {
	background-position:  right 0 top -191px;
	height: 12px;
	width: 100%;
}
.at2.b737 {
	background-position:  right 0 top -202px;
	height: 22px;
	width: 100%;
}
.at2.b747 {
	background-position:  right 0 top -224px;
	height: 28px;
	width: 100%;
	margin-bottom: -9px
}
.at2.b757 {
	background-position:  right 0 top -253px;
	height: 25px;
	width: 100%;
}
.at2.b767 {
	background-position:  right 0 top -278px;
	height: 27px;
	width: 100%;
}
.at2.b777 {
	background-position:  right 0 top -305px;
	height: 28px;
	width: 100%;
}
.at2.b787 {
	background-position:  right 0 top -333px;
	height: 27px;
	width: 100%;
}
.at2.md80 {
	background-position:  right 0 top -360px;
	height: 14px;
	width: 100%;
	margin-bottom: auto
}
.at2.crj {
	background-position:  right 0 top -374px;
	height: 15px;
	width: 100%;
	margin-bottom: auto
}
.at2.cseries {
	background-position:  right 0 top -389px;
	height: 21px;
	width: 100%;
}
.at2.dhc8q400 {
	background-position:  right 0 top -410px;
	height: 15px;
	width: 100%;
	margin-bottom: auto
}
.at2.emb170 {
	background-position:  right 0 top -425px;
	height: 21px;
	width: 100%;
}
.at2.emb190 {
	background-position:  right 0 top -446px;
	height: 21px;
	width: 100%;
}

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
	.at2 {
		background-image: url('../images/certificates_airplanes@2x.png') !important;
		background-size: cover;
		width: 83% !important;
	}
	.at2.a319 { height: 18px }
	.at2.a330 { height: 26px }
	.at2.a340 { height: 26px }
	.at2.a350 { background-position: right 0 top -128px; }
	.at2.a380 { background-position: right 0 top -155px; }
	.at2.b717 { background-position: right 0 top -193px; height: 11px }
	.at2.b737 { background-position: right 0 top -205px; height: 21px }
	.at2.b747 { background-position: right 0 top -226px; height: 29px }
	.at2.b757 { background-position: right 0 top -255px; }
	.at2.b767 { background-position: right 0 top -280px; }
	.at2.b777 { background-position: right 0 top -307px; }
	.at2.b787 { background-position: right 0 top -336px; }
	.at2.md80 { background-position: right 0 top -363px; }
	 .at2.crj { background-position: right 0 top -377px; }
  at2.cseries { background-position: right 0 top -392px; height: 22px }
.at2.dhc8q400 { background-position: right 0 top -414px; height: 14px }
  .at2.emb170 { background-position: right 0 top -428px; }
  .at2.emb190 { background-position: right 0 top -449px; }
}
}


/* Case Studies */
header nav#subnav li span.nouppercase {
	text-transform: none;
}
#changeto .content_full {
	padding-top: 30px;
}
.step {
	position: relative;
	display: inline-block;
	margin-left: 40px;
	margin-bottom: 40px;
	cursor: pointer;
	opacity: .4
}
.howto1 {
	display: block;
	background: url('../images/howtochange.png') no-repeat 0 0;
	width: 908px;
	height: 93px;
	background-size: 100%;
}
.howto2 {
	display: block;
	background: url('../images/howtochange.png') no-repeat 0 -100px;
	width: 907.5px;
	height: 93.5px;
	background-size: 100%;
}
.howto3 {
	display: block;
	background: url('../images/howtochange.png') no-repeat 0 -200px;
	width: 907.5px;
	height: 131px;
	background-size: 100%;
}
.howto3.active {
	display: block;
	background: url('../images/howtochange.png') no-repeat 0 -351px;
	width: 907.5px;
	height: 131px;
	background-size: 100%;
}
.step .howto {
	font-weight: 800;
	top: -10px;
	left: 38%;
	position: relative;
}
.step.active {
	cursor: auto;
	opacity: 1;
	transition: opacity .3s ease;
}
.step.active .howto { opacity: 1 }

/* Contact Form */
article#tech_contact {
	min-height: 534px
}
.contactform {
	width: 40%;
	margin: 30px auto;
	text-align: left;
}
.contactform p {
	margin-bottom: 7px;
}
.contactform > p {
	width: 85%;
	margin-bottom: 30px
}
.contactform label { display: none }
.contactform input[type="text"],
.contactform input[type="email"],
.contactform textarea {
	font-family: "Helvetica Neue";
	font-size: .9em;
	width: 95%;
	border: 1px solid #e0e0e0;
	background-color: #f5f5f5;
	color: #666;
	padding: 10px;
	-webkit-appearance: none;
	-webkit-border-radius:0;
    border-radius:0;
}
.contactform textarea {
	margin-top: 2px;
	height: 90px
}
.contactform input[type="text"]:focus,
.contactform input[type="email"]:focus,
.contactform textarea:focus {
	border: 1px solid #a7a7a7;
	background-color: #ebebeb;
	transition: all 0.2s ease
}
.contactform .newsletter label::before, .contactform .newsletter label::after {
	font-family: "GuideU";
	font-size: 30px;
	position: absolute;
	top: -1px;
	left: 6px;
	cursor: pointer
}
.contactform .newsletter label {
	display: block;
	position: relative;
	padding-left: 40px;
	font-size: .9em
}
.contactform .newsletter label::before {
	content: "\e60e";
	opacity: 1;
}
.contactform .newsletter label::after {
	content: "\e60d";
	opacity: 0.5;
	max-width: 0;
	overflow: hidden;
	transition: all .2s;
}
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"]:checked + label::after {
	max-width: 25px;
	opacity: 1;
}
input[type="checkbox"]:checked + label::before {
	opacity: 0;
	transition-delay: .2s
}
.contactform p.newsletter {
	margin-top: -5px;
}
.contactform .send {
	text-align: center;
	margin-top: 40px;
}
input[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 10px 5em;
	margin: 0;
	position: relative;
	width: 150px;
}
.contactform .error input[type="text"],
.contactform .error input[type="email"],
.contactform .error textarea {
	border: 1px solid #dd0519;
}

#configurator main,
#intro main {
	background-color: #000
}
#configurator article{
	margin-top: 68px; /* 50, 58 */
	min-height: 567px; /* 576 */
}

.prev-view, .next-view {
  position: absolute;
  font-size: 40px;
  top: 200px;
  z-index: 9999;
}
.prev-view {
  left: 50px;
}
.next-view {
  right: 50px;
}

/* Colors */
#conf-color .content_right {
	margin-right: 70px;
}
#colors .owl-controls {
	position: absolute;
	width: 60%;
	left: 50%;
	top: 30px;
	margin-left: -30%;
	margin-top: 395px;
}
#colors .owl-controls .color-prev,
#colors .owl-controls .color-next {
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	text-align: center;
	margin: 0;
	padding: 5px;
	z-index: 3;
    height: 36px;
    width: 36px;
}
#colors .owl-controls .color-prev {
}
#colors .owl-controls .color-next {
	margin-left: 80%
}
#colors .owl-nav i {
	position: relative;
	top: -10px;
	line-height: 50px;
	font-size: 2.8em;
	cursor: pointer
}
#configurator.color .fixedfooter { display: none }

/* Floor */
.floor nav#foot li {
/* 	box-shadow: inset 0 0 0 1px #fff; */
	border: 1px solid #fff;
	margin: -2px 0 0 0;
	width: 24.80%;
	background-color: #999
}
.floor nav#foot li.active {
	box-shadow: inset 0 0 0 4px #fff;
}
.floor nav#foot li:hover a {
	color: #fff;
	box-shadow: inset 0 0 0 4px #fff;
}
.floor nav#foot a:link,
.floor nav#foot a:visited {
	display: inline-block;
	padding: 20px 0;
	color: #fff
}
.floor nav#foot a:hover,
.floor nav#foot a:active,
.floor nav#foot .active a {
	color: #fff;
	font-weight: 800
}
.floor ul.checkmark {
	margin-right: 10px;
	max-width: 220px;
}
.nav_carpet1 {
	background: #dedede url("../images/carpet_nav.jpg") no-repeat 0 -70px;
	width: 100%;
	background-size: 100%
}
.nav_carpet2 {
	background: #dedede url("../images/carpet_nav.jpg") no-repeat 0 0;
	width: 100%;
	background-size: 100%
}
.nav_carpet3 {
	background: #dedede url("../images/carpet_nav.jpg") no-repeat 0 -140px;
	width: 100%;
	background-size: 100%
}
.nav_carpet4 {
	background: #dedede url("../images/carpet_nav.jpg") no-repeat 0 -210px;
	width: 100%;
	background-size: 100%
}
.floor nav#foot li a {
	color: #fff;
}

/* Customfit */
.customfit_btn {
	position: absolute;
	bottom: 185px;
	right: 50px;
	z-index: 100;
	width: 110px;
	text-align: center;
}
.fullscreen .customfit_btn {
	bottom: 90px;
}
.customfit_btn i {
	color: #fff;
	font-size: 3.6em;
}
.customfit_info_btn {
	position: absolute;
	width: 200px;
	height: 70px;
	padding: 10px;
	background: #fff;
	color: #000;
	right: 50px;
	bottom: 305px;
	z-index: 100;
	font-size: .9em;
}
.fullscreen .customfit_info_btn {
	bottom: 210px;
}
.customfit_info_btn:after {
	border-color: transparent #fff;
	border-style: solid;
	border-width: 0 0 40px 20px;
	bottom: -30px;
	content: "";
	display: block;
	position: absolute;
	right: 30px;
	width: 0;
}
.customfit_info_btn a {
	font-weight: bold;
	text-transform: uppercase
}
.customfit_info_btn a:after {
	font-family: "GuideU";
	font-size: 30pt;
	font-weight: normal;
	vertical-align: top;
	line-height: 12pt;
	content: "\e610";
	display: inline-block;
	cursor: pointer;
	-moz-transform: translateX(.1em);
	-o-transform: translateX(.1em);
	-webkit-transform: translateX(.1em);
	transform: translateX(.1em);
	-o-transition: all .2s ease;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.customfit_info_btn a:hover:after {
	-moz-transform: translateX(.3em);
	-o-transform: translateX(.3em);
	-webkit-transform: translateX(.3em);
	transform: translateX(.3em);
}

/* NTF Floor */
.carpet_btn {
	position: absolute;
	bottom: 180px;
	left: 40px;
	z-index: 100;
	width: 100px;
	text-align: center;
}
.carpet_btn i {
	color: #fff;
	font-size: 3.6em;
}
.carpet_btn span,
.customfit_btn span,
.change_color_btn span {
	font-size: .8em;
	text-transform: uppercase;
	display: inline-block;
	margin-top: 10px;
}
#carpetcolors {
	position: absolute;
	bottom: 200px;
	right: 200px;
	width: 155px;
	height: 60px;
	max-height: 60px;
	z-index: 100;
	-o-transition: all .2s ease;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.fullscreen .carpet_btn,
.fullscreen #carpetcolors {
	bottom: 230px;
}
.half-opacity {
	opacity: 0.5;
}
#carpetcolors .owl-stage-outer {
	max-height: 60px
}
#carpetcolors:after {
	display: block;
	content: "Change color";
	text-transform: uppercase;
	font-size: .8em;
	margin-top: 2px;
	text-align: center;
}
.carpetcolor_choice {
	display: block;
	width: 50px;
	height: 50px;
	box-shadow: inset 0 0 0 1px #fff;
}
#carpetcolors .owl-controls i.dark {
	color: #000 !important
}
#carpetcolors .active.center .carpetcolor_choice {
	box-shadow: inset 0 0 0 4px #fff;
}
#carpetcolors .owl-controls {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 164px
}
#carpetcolors.owl-carousel .owl-controls .owl-nav .owl-prev {
	width: 50px;
	max-width: 50px;
}
#carpetcolors .owl-controls .owl-next {
	position: absolute;
	right: 10px;
	top: 0px;
}
#carpetcolors .owl-nav i {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 2.8em;
}

.floor_ntf ul.checkmark {
	margin-right: 60px;
	max-width: 200px;
}
.floor_ntf a[rel="lightbox"] {
	margin-top: 20px;
}
.floor_ntf nav#foot ul {
	width: 100%;
	display: block;
	background-color: #303d5f;
}
.floor_ntf nav#foot li {
	float:left;
	width: 49.8%;
	box-shadow: inset 0 0 0 1px #fff;
	padding: 0;
	margin: 0;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: .7em;
	line-height: 14px;
}
.floor_ntf nav#foot li:nth-child(1) {
	background-color: #303d5f
}
.floor_ntf nav#foot li:nth-child(2) {
	background-color: #5a5d63
}
/* .floor_ntf nav#foot li:hover, */
.floor_ntf nav#foot li.active {
	box-shadow: inset 0 0 0 5px #fff;
}
.floor_ntf nav#foot li:hover a {
	color: #fff;
}
.floor_ntf nav#foot a:link,
.floor_ntf nav#foot a:visited {
	display: inline-block;
	padding: 20px 0px;
	color: #fff
}
.floor_ntf nav#foot a:hover,
.floor_ntf nav#foot a:active,
.floor_ntf nav#foot .active a {
	color: #fff;
	font-weight: 800
}
#ntf_detail {
	display: block;
	clear: both;
	color: #333;
	width: 924px;
	max-width: 924px;
	height: 80vh;
	max-height: 525px;
	position: relative;
	top: 196px;
	left: 50%;
	margin-left: -462px;
	background: #fff url("../images/ntf_floor_detail.png") no-repeat center 80%;
	background-size: 95%
}
#ntf_detail .content_left {
	background: transparent;
	margin-top: 70px
}
#ntf_detail .content_left h1 {
	margin-bottom: 20px;
	font-size: 1.6em;
}
#ntf_detail .content_left p {
	line-height: 1.5em
}

/* Filler */
.filler_table li {
	display: inline-block;
	width: 70px;
	vertical-align: bottom;
	text-align: center;
	font-size: .7em;
	margin-top: 15px
}
.filler_table li span {
	background-color: #fff;
	display: block;
	height: 5px;
	width: 100%;
	margin-bottom: 0px
}
.filler_table li.fill2 span {
	height: 8px;
}
.filler_table li.fill3 span {
	height: 10px;
}
.filler_table li.fill4 span {
	height: 12px;
}
.filler_table li.highlight span {
	background-color: #a2aeb9
}
.fill_2 p, .fill_3 p, .fill_4 p {
	max-width: 300px
}
.filler nav#foot ul {
	width: 100%;
	display: block;
}
.filler nav#foot li {
	float:left;
	width: 25%;
	box-shadow: inset 0 0 0 1px #d9d9d9;
	border: 1px solid #666;
	border-width: 0 0 0 1px;
	background-color: #d9d9d9;
	padding: 0;
	margin: 0 0 0 -1px;
	color: #fff;
	text-align: center;
	font-size: .7em;
	line-height: 14px;
}
.filler nav#foot li.active {
	box-shadow: inset 0 0 0 5px #fff;
	background-color: #999
}
.filler nav#foot li:hover a {
	color: #fff;
	box-shadow: inset 0 0 0 5px #fff;
	background-color: #999
}
.filler nav#foot a:link,
.filler nav#foot a:visited {
	text-transform: capitalize;
	display: inline-block;
	padding: 20px 0px;
	color: #666
}
.filler nav#foot a:hover,
.filler nav#foot a:active,
.filler nav#foot .active a {
	color: #fff;
	font-weight: 800
}
.filler ul.checkmark {
	margin-right: 30px;
	max-width: 200px;
}
.filler .carpet_btn {
	bottom: 180px;
	width: 140px;
	left: 30px;
}
.fullscreen .filler .carpet_btn {
	bottom: 100px
}
.filler_height_info {
	position: absolute;
	bottom: 50px;
	font-size: .9em;
	text-align: center;
	width: 500px;
	left: calc(50% - 250px);
	z-index: 12;
}

/* COLORS */
.color_choice {
	position:relative;
	display: inline-block;
	width: 75px;
	height: 280px !important;
	margin: 0;
	top: 40px;
	background-image: url("../images/bg_color_slide.png");
	background-repeat: repeat-y;
	background-size: 100%;
	transition: height 0.1s ease-in-out;
	transition: top 0.1s ease-in-out;
}
.color_choice::before {
	-webkit-transition: background-image 1s ease-in-out;
	transition: background-image 1s ease-in-out;
}
.color_choice.middle {
	height: 325px !important;
	top: 22px;
	transition: top 0.2s ease-in-out;
}
.color_choice.big {
	height: 360px !important;
	top: 0px;
	transition: top 0.3s ease-in-out;
}
.colorname {
	margin: 20px 0 0 0;
	text-transform: uppercase;
	font-weight: 400;
	font-size: .8em;
	position: absolute;
	text-align: center;
	width: 100%;
	bottom: 40px;
}

/* Protector */
.carpetprotector nav#foot ul {
	width: 100%;
	display: block;
}
.carpetprotector nav#foot li {
	float:left;
	width: 19.9%;
	box-shadow: inset 0 0 0 1px #d9d9d9;
	border: 1px solid #666;
	border-width: 0 0 0 1px;
	background-color: #d9d9d9;
	padding: 0;
	margin: 0 0 0 0px;
	color: #fff;
	text-align: center;
	font-size: .7em;
	line-height: 14px;
}
.carpetprotector nav#foot li.active {
	box-shadow: inset 0 0 0 5px #fff;
}
.carpetprotector nav#foot li:hover a {
	color: #fff;
	box-shadow: inset 0 0 0 5px #fff;
}
.carpetprotector nav#foot a:link,
.carpetprotector nav#foot a:visited {
	text-transform: capitalize;
	display: inline-block;
	padding: 20px 0px;
	color: #fff
}
.carpetprotector nav#foot a:hover,
.carpetprotector nav#foot a:active,
.carpetprotector nav#foot .active a {
	color: #fff;
	font-weight: 800
}
.carpetprotector ul.checkmark {
	margin-right: 30px;
	max-width: 200px;
}
.carpetprotector .carpet_btn {
	bottom: 180px;
	width: 140px;
	left: 30px;
}
.fullscreen .carpetprotector .carpet_btn {
	bottom: 100px;
}

#ressources article {
/* 	height: 645px; */
	padding-bottom: 0px;
	margin-top: 0;
}
#ressources article .content_media {
	min-height: 100.01%;
	height: calc(100% + 1px);
	width: 90%;
	max-width: 90%;
	display: inline-table;
	margin-left: 50px;
	margin-top: 70px;
}
ul.gallery {
	margin: 10px 0 15px -25px;
}
ul.gallery li {
	display: inline-block;
	margin: 0 0 25px 25px;
}
ul.gallery a {
	position: relative;
	display: block;
	width: 205px;
	height: 205px;
	border: 1px solid #e5e5e5;
}
ul.gallery a img {
	display: block;
	min-width: 205px;
	min-height: 205px;
	top: 0;
	left: 0;
}
.caption {
	position: absolute;
	text-align: right;
	display: block;
	width: 100%;
	height: 30px;
	left: 0px;
	bottom: 0px;
	background-color: rgba(255, 255, 255, 0.5);
}
.caption:after {
	font-family: 'GuideU';
	content: "\e60c";
	color: #000;
	font-size: 20pt;
	line-height: 34px;
	margin-right: 2px;
}
.caption.dark {
	background-color: #e5e5e5;
}
ul.gallery a:hover .caption:after {
	font-size: 23pt;
}
/* Media Slides */
.gallery_sliders {
	position: relative;
	z-index: 1;
	margin-top: 10px;
	margin-bottom: -10px;
}
.gallery_slider {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1
}
.close_slider {
	position: absolute;
	right: 30px;
	top: 30px;
	color: #fff;
	font-size: 20pt;
	display: block;
	z-index: 3;
	cursor: pointer;
}
.close_slider.darken {
	color: #000;
}
.close_slider.darken + .fw_slider .owl-nav [class*='owl-'] {
	color: #000;
}
.fullscreen .close_slider {
	top: 40px;
}
.gallery_slider.owl-carousel .owl-item {
	height: 635px;
}
.g_slide {
	background-size: cover;
	background-position: center top;
	width: 100%;
	height: 100%;
}

.g1 .gs1 { background-image: url("../media/curves_curved_detail.png"); background-position: center center }
.g1 .gs2 { background-image: url("../media/curves_curved.png"); background-position: center center  }
.g1 .gs3 { background-image: url("../media/curves_diagonal_detail.png"); background-position: center center }
.g1 .gs4 { background-image: url("../media/curves_diagonal.png"); background-position: center center }
.g1 .gs5 { background-image: url("../media/curves_rectangular_detail.png"); background-position: center center }
.g1 .gs6 { background-image: url("../media/curves_rectangular.png"); background-position: center center }

.g2 .gs1 { background-image: url("../media/custom1.jpg"); }
.g2 .gs2 { background-image: url("../media/custom2.jpg"); }
.g2 .gs3 { background-image: url("../media/custom3.jpg"); }

.g3 .gs1 { background-image: url("../media/guideu_ressources_01.jpg"); }
.g3 .gs2 { background-image: url("../media/guideu_ressources_02.jpg"); }
.g3 .gs3 { background-image: url("../media/guideu_ressources_03.jpg"); }
.g3 .gs4 { background-image: url("../media/guideu_ressources_04.jpg"); }
.g3 .gs5 { background-image: url("../media/guideu_ressources_05.jpg"); }
.g3 .gs6 { background-image: url("../media/guideu_ressources_06.jpg"); }
.g3 .gs7 { background-image: url("../media/guideu_ressources_07.jpg"); }
.g3 .gs8 { background-image: url("../media/guideu_ressources_08.jpg"); }
.g3 .gs9 { background-image: url("../media/guideu_ressources_09.jpg"); }
.g3 .gs10 { background-image: url("../media/guideu_ressources_10.jpg"); }
.g3 .gs11 { background-image: url("../media/guideu_ressources_11.jpg"); }
.g3 .gs12 { background-image: url("../media/guideu_ressources_12.jpg"); }
.g3 .gs13 { background-image: url("../media/guideu_ressources_13.jpg"); }
.g3 .gs14 { background-image: url("../media/guideu_ressources_14.jpg"); }
.g3 .gs15 { background-image: url("../media/guideu_ressources_15.jpg"); }
.g3 .gs16 { background-image: url("../media/guideu_ressources_16.jpg"); }
.g3 .gs17 { background-image: url("../media/guideu_ressources_17.jpg"); }
.g3 .gs18 { background-image: url("../media/guideu_ressources_18.jpg"); }
.g3 .gs19 { background-image: url("../media/guideu_ressources_19.jpg"); }
.g3 .gs20 { background-image: url("../media/guideu_ressources_20.jpg"); }
.g3 .gs21 { background-image: url("../media/guideu_ressources_21.jpg"); }
.g3 .gs22 { background-image: url("../media/guideu_ressources_22.jpg"); }


/* PDF */
.pdf_thumbs {
	clear: both;
	float: left;
	width: 960px;
	margin: 50px 0 -25px 0;
	display: block;
}
ul.pdfs {
	margin: 0 0 0 -60px;
}
ul.pdfs li {
	display: inline-block;
	vertical-align:top;
	margin: 0 0 50px 60px;
}
ul.pdfs a {
	position: relative;
	display: block;
	width: 175px;
	height: auto;
	border: 1px solid #e5e5e5;
}
ul.pdfs p {
	max-width: 175px;
	font-size: .7em;
	padding: 5px 0 0 0
}
ul.pdfs a img {
	display: block;
	top: 0;
	left: 0;
}
#ressources object {
	margin-top: -40px;
	width: 1024px;
	height: 10000px
}
.pdfview {
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	height: 624px;
	width: 1024px;
}

/* Video */
.play_vid {
	position: relative;
	z-index: 2;
	top: 18px;
}
.play_vid i {
	font-size: 3em;
	color: rgba(255,255,255,0.8);
	position: absolute;
	width: 100%;
	text-align: center;
	top: 48%;
	left: 0;
}
.play_vid a:hover i {
	color: #fff
}
.video_file {
	position: absolute;
	left: 0;
	top: auto;
	text-align: center;
	z-index: 1;
	width: 100%;
	height: auto;
}
/* old layout */
.video_thumbs {
	clear: both;
	float: left;
	width: 960px;
	margin: 50px 0 -25px 0;
	display: block;
}
ul.videos {
	margin: 0 0 0 -20px;
}
ul.videos li {
	display: inline-block;
	vertical-align:top;
	margin: 0 0 50px 20px;
}
ul.videos a {
	position: relative;
	display: block;
	width: 450px;
	height: auto;
}
ul.videos p {
	max-width: 450px;
	font-size: .8em;
	padding: 5px 0 0 0
}
ul.videos a img {
	display: block;
	top: 0;
	left: 0;
}
ul.videos i {
	font-size: 3em;
	color: rgba(255,255,255,0.8);
	position: absolute;
	width: 100%;
	text-align: center;
	top: 42%
}
ul.videos li:hover i {
	color: #fff
}
video_ {
   width:100%;
   max-width:900px;
   height:auto;
   margin-top: 10px;
/*    margin-left: -3px */
}
.video-popup {
	width: auto;
	max-width: 900px;
	margin: 0 auto;
}

/* Advantages */
#advantages .content_wide ul {
	margin: 50px auto 0 160px;
	width: 80%;
}
#advantages .content_wide ul li {
	width: 38%;
	margin-bottom: 18px;
	font-size: .75em;
	margin-left: -50px;
	margin-right: 150px;
	float: left;
	height: 40px;
	display: inline;
	vertical-align: middle;
	line-height: 2em;
	padding-left: 60px;
	padding-top: 10px;
	background: transparent url('../images/usp_icons.png') no-repeat;
	background-size: 50px auto;
}
#advantages .content_wide ul li:nth-child(even){
	margin-right: 0px;
}
#advantages .content_wide ul li:after {
	content: "\e613";
	font-family: "GuideU";
	font-size: 1em;
	margin-left: 12px;
	color: green;
}
#advantages .content_wide ul li.usp-nonelectrical {
	background-position: 0px 0px;
}
#advantages .content_wide ul li.usp-scratch_protection{
	background-position: 0px -60px;
}
#advantages .content_wide ul li.usp-curved {
	background-position: 0px -120px;
}
#advantages .content_wide ul li.usp-stc {
	background-position: 0px -180px;
}
#advantages .content_wide ul li.usp-onepiece {
	background-position: 0px -240px;
}
#advantages .content_wide ul li.usp-floor {
	background-position: 0px -300px;
}
#advantages .content_wide ul li.usp-lightweight {
	background-position: 0px -360px;
}
#advantages .content_wide ul li.usp-filler {
	background-position: 0px -420px;
}
#advantages .content_wide ul li.usp-resistant {
	background-position: 0px -480px;
}
#advantages .content_wide ul li.usp-tape {
	background-position: 0px -540px;
}
#advantages .content_wide ul li.usp-contour {
	background-position: 0px -600px;
}


/* LIGHTS OFF */
main.inverted .color_choice {
	background: transparent url("../images/colors/color_picker_night.png") no-repeat;
	background-size: 100%;
}
main.inverted::before {
	opacity: 0.3
}
main.inverted .fixedfooter::before,
main.inverted #carpetcolors::before {
	content: "";
	background-color: rgba(0,0,0,.4);
	width: 100%;
	height: 100%;
}

/* Fullscreen mode */
.fullscreen main{
	max-height: 768px !important;
	height: 100%;
}
.fullscreen .stickyheader {
	padding-top: 15px;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1.0, 1.0);
	transform: translateZ(0) scale(1.0, 1.0);
}
.fullscreen header nav#mainnav {
	top: 95px;
}
.fullscreen article {
	min-height: 645px;
}
#intro.fullscreen article {
	min-height: 583px !important;
}
#configurator.fullscreen article {
	min-height: 574px;
}
#configurator.fullscreen .content_left,
#configurator.fullscreen .content_right{
	margin-top: 0px /* 20px */
}
.fullscreen footer {
	bottom: 20px
}
.fullscreen .carpet_btn {
	bottom: 90px;
}
.fullscreen #carpetcolors {
	bottom: 106px;
}
.fullscreen.filler .carpet_btn {
	bottom: 90px;
}
.fullscreen .filler_height_info p {
	margin-bottom: 30px;
}
.fullscreen #ntf_detail {
	top: 194px;
	max-height: 538px;
}
.fullscreen #ntf_detail .content_left {
	margin-top: 75px;
}

/* AppCache preloader */
.progress-bar {
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.95);
	width: 100vw;
	height: 100vh;
	width: 100%;
	height: 100%;
	overflow: hidden;
	vertical-align: bottom;
	text-align: center;
	z-index: 10000;
}
.progress-bar i.icon-logo {
	color: #fff;
	font-size: 7em;
	line-height: 52px;
	margin: 30% auto 25px auto;
	text-align: center;
	display: block;
	transition-delay: 0.5s;
}
.progress-bar progress {
	background-color: transparent;
	color: #00a299; /* IE */
	border: 0;
	width: 50%;
	height: 18px;
	border-radius: 9px;
/* 	margin-top: 30% */
}
.progress-bar progress::-webkit-progress-bar {
	background-color: transparent;
	border-radius: 9px;
}
.progress-bar progress::-webkit-progress-value {
	background: transparent; /*#00a299;*/
/* 	background: rgba(172,250,175,1); */
	background: -moz-linear-gradient(left, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(172,250,175,1)), color-stop(100%, rgba(31,172,187,1)));
	background: -webkit-linear-gradient(left, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	background: -o-linear-gradient(left, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	background: -ms-linear-gradient(left, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	background: linear-gradient(to right, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#acfaaf', endColorstr='#1facbb', GradientType=1 );
	border-radius: 9px;
}
.progress-bar progress::-moz-progress-bar {
	background: transparent;
/* 	background: rgba(172,250,175,1); */
	background: -moz-linear-gradient(left, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(172,250,175,1)), color-stop(100%, rgba(31,172,187,1)));
	background: -webkit-linear-gradient(left, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	background: -o-linear-gradient(left, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	background: -ms-linear-gradient(left, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	background: linear-gradient(to right, rgba(172,250,175,1) 0%, rgba(31,172,187,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#acfaaf', endColorstr='#1facbb', GradientType=1 );
	border-radius: 9px
}
.progress-bar .message {
	margin-top: -19px
}
.progress-bar #progress-message {
	text-align: right;
	padding: 10px 5px;
	line-height: 20px;
	font-size: 1em;
	color: #00a299;
	height: 18px;
}
.progress-bar #progress-message.cchange {
	color: #29656e
}


/* Desktop fixes */
@media screen and (min-width: 1025px) {
	main { min-height: 758px }
	footer { bottom: 20px }
	.icon_number { 	padding: .4em .5em .3em .5em; }
	.filler .carpet_btn { bottom: 90px; width: 140px }
	.floor .carpet_btn,
	.floor_ntf .carpet_btn,
	.carpetprotector .carpet_btn,
	.customfit_btn { bottom: 90px }
	#carpetcolors { bottom: 106px }
	#ntf_detail { top: 183px }
	#colors .owl-controls { top: 18px }
	.progress-bar i.icon-logo { margin-top: 20% }
	.progress-bar .message { margin-top: -18px }
	.colorname { bottom: 47px } /* 57 */
	#curves .tiles { top: 120px }
}

/* Rotate device info */
@media all and (orientation:portrait) {
    #rotate_device {
         display: block;
         position: absolute;
         top: 0;
         left: 0;
         height: 100vh;
         width: 100vw;
         background: rgba(0,0,0,0.95) url("../images/rotate_device.png") no-repeat 50% 45%;
         background-size: 20%;
         overflow: hidden;
         z-index: 10000;
       	-webkit-overflow-scrolling: auto;
    }
}


/* iPad Pro Portrait */
@media only screen
and (min-device-width : 1024px) and (max-device-width : 1024px)
and (min-device-height : 1366px) and (max-device-height : 1366px)
and (min-width: 1024px) and (max-width: 1024px) {}

/* iPad Pro landscape */
@media only screen
and (min-device-width : 1024px) and (max-device-width : 1024px)
and (min-device-height : 1366px) and (max-device-height : 1366px)
and (min-width: 1366px) and (max-width: 1366px) {

}


@media only screen
and (min-device-width : 1024px)
and (max-device-width : 1366px)
and (-webkit-min-device-pixel-ratio: 2) {
body {
	max-height: 100vh;
	height: 100vh
}
main {
	min-height: 100vh;
	max-height: 100vh;
	max-width: 100vw;
}
header {
	padding-left: 0px;
	padding-right: 0px;
}
.intro_slider.owl-carousel .owl-item {
	height: 960px;
}
.fullscreen .intro_slider.owl-carousel .owl-item {
	height: 1024px;
}
#intro article {
	padding-top: 250px
}
#intro footer {
	bottom: 40px;
}
.fullscreen #intro footer {
	bottom: 20px;
}
.stickyheader {
	width: 100vw;
	left: 0;
	margin-left: auto;
	margin-right: auto;
}
#intro article {
	min-height: 740px !important
}
header nav#mainnav li {
	width: 340.1px;
}
/*
header.menuopen nav#mainnav li {
	height: 439px !important;
	max-height: 439px !important;
}
*/
.fixedfooter {
	max-width: 100vw;
	width: 100%
}
#colors .owl-controls {
	top: 120px;
}
p.colorname {
	bottom: 115px;
}
.fullscreen p.colorname {
	bottom: 210px;
}
#configurator.fullscreen article {
	min-height: 836px;
}
.prev-view, .next-view {
	top: 300px;
}
.customfit_info_btn {
	bottom: 210px;
}
.floor nav#foot li {
	width: 24.85%
}
.nav_carpet1 {
	background-position: 0 -90px
}
.nav_carpet3 {
	background-position: 0 -180px
}
.nav_carpet4 {
	background-position: 0 -270px
}
#configurator article {
	min-height: 740px;
}
.render .layer-0, .layer-1, .layer-2, .layer-3, .layer-4, .layer-5, .layer-6 {
	height: 825px !important;
	width: 100vw !important;
	background-size: cover !important
}
.page_light article {
 	min-height: 782px;
}
.fullscreen.page_light article {
 	min-height: 836px;
}
.carpet_match.owl-carousel .owl-item,
.gallery_slider.owl-carousel .owl-item {
	height: 826px
}
.fullscreen .carpet_match.owl-carousel .owl-item,
.fullscreen .gallery_slider.owl-carousel .owl-item {
	height: 890px
}
.fullscreen article#customfit_brand {
	margin-top: 20px;
}
.fw_slider .owl-nav [class*='owl-'] {
	top: 48%;
}
#curves article {
	min-height: 836px;
}
#curves.curves_passage_shift article > div, #curves article#curves_passage_shift > div {
	min-height: 800px;
}
#advantages .content_wide ul li {
	margin-bottom: 35px;
}
.box_mount,
.box_mount .box, .box_mount .mount,
.box_mount .thumb {
	width: 250px;
	height: 250px;
}
.box_mount.active,
.box_mount.active .box, .box_mount.active .mount,
.box_mount.active .thumb,
img.full_mount{
	width: 400px;
	height: 400px;
}
.box_mount.active .thumb {
	overflow: hidden
}
#case_studies article {
	min-height: 800px
}
#case_studies .content_full {
	padding-top: 80px
}
.step {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px
}
#ressources article {
	height: 836px;
	margin-top: 24px;
}
#ressources.fullscreen article {
	height: 876px;
}
#totop {
	margin-left: inherit;
	left: 94%;
}
#changeto .content_full {
	padding-top: 80px
}
.play_vid {
	top: 9px;
}
.fullscreen .play_vid {
	top: 0;
}
.fullscreen .gallery_sliders {
	margin-top: 0;
}
.play_vid img {
	width: 100%;
}
.fullscreen .play_vid img {
	min-height: 100%;
}
.video_file {
	top: 50px;
}
}




/* COLORS */
.inverted_color {
	background-color: #acfaaf;
}
.inverted_color.txt {
	color: #3be1b8;
}
.inverted_color_bg {
	background: transparent url("../images/colors/color_picker_night.png") no-repeat !important;
	background-size: 100%
}
.natural {
	background-color: #e4ecc7;
}
.natural.txt {
	color: #e4ecc7;
}
.natural_bg {
	background: transparent url("../images/colors/color_picker_natural.png") no-repeat;
	background-size: 100%
}
.oceantint {
	background-color: #54cbc3;
}
.oceantint.txt {
	color: #54cbc3;
}
.oceantint_bg {
	background: transparent url("../images/colors/color_picker_ocean_tint.png") no-repeat;
	background-size: 100%
}
.glacierblue {
	background-color: #1facbb;
}
.glacierblue.txt {
	color: #1facbb;
}
.glacierblue_bg {
	background: transparent url("../images/colors/color_picker_glacier_blue.png") no-repeat;
	background-size: 100%
}
.darkyellow {
	background-color: #fbd660;
}
.darkyellow.txt {
	color: #fbd660;
}
.darkyellow_bg {
	background: transparent url("../images/colors/color_picker_dark_yellow.png") no-repeat;
	background-size: 100%
}
.specialamber {
	background-color: #e9ab72;
}
.specialamber.txt {
	color: #e9ab72;
}
.specialamber_bg {
	background: transparent url("../images/colors/color_picker_special_amber.png") no-repeat;
	background-size: 100%
}
.silvergrey {
	background-color: #b3adb3;
}
.silvergrey.txt {
	color: #b3adb3;
}
.silvergrey_bg {
	background: transparent url("../images/colors/color_picker_silver_grey.png") no-repeat;
	background-size: 100%
}
.emeraldgreen {
	background-color: #00817d;
}
.emeraldgreen.txt {
	color: #00817d;
}
.emeraldgreen_bg {
	background: transparent url("../images/colors/color_picker_emerald_green.png") no-repeat;
	background-size: 100%
}
.indigo {
	background-color: #1d4896;
}
.indigo.txt {
	color: #1d4896;
}
.indigo_bg {
	background: transparent url("../images/colors/color_picker_indigo.png") no-repeat;
	background-size: 100%
}
.turqoise {
	background-color: #00a299;
}
.turqoise.txt {
	color: #00a299;
}
.turqoise_bg {
	background: transparent url("../images/colors/color_picker_turqoise.png") no-repeat;
	background-size: 100%
}
.springgreen {
	background-color: #00ca82;
}
.springgreen.txt {
	color: #00ca82;
}
.springgreen_bg {
	background: transparent url("../images/colors/color_picker_spring_green.png") no-repeat;
	background-size: 100%
}
.purpuredawn {
	background-color: #d78292;
}
.purpuredawn.txt {
	color: #d78292;
}
.purpuredawn_bg {
	background: transparent url("../images/colors/color_picker_purpure_dawn.png") no-repeat;
	background-size: 100%
}
.tulippurple {
	background-color: #694ca2;
}
.tulippurple.txt {
	color: #694ca2;
}
.tulippurple_bg {
	background: transparent url("../images/colors/color_picker_tulip_purple.png") no-repeat;
	background-size: 100%
}
.pinkcorinne {
	background-color: #d04d54;
}
.pinkcorinne.txt {
	color: #d04d54;
}
.pinkcorinne_bg {
	background: transparent url("../images/colors/color_picker_pink_corinne.png") no-repeat;
	background-size: 100%
}
.jasmine {
	background-color: #d15113;
}
.jasmine.txt {
	color: #d15113;
}
.jasmine_bg {
	background: transparent url("../images/colors/color_picker_jasmine.png") no-repeat;
	background-size: 100%
}
.royalblue {
	background-color: #2f5b95;
}
.royalblue.txt {
	color: #2f5b95;
}
.royalblue_bg {
	background: transparent url("../images/colors/color_picker_royal_blue.png") no-repeat;
	background-size: 100%
}
.silkysilver {
	background-color: #747e80;
}
.silkysilver.txt {
	color: #747e80;
}
.silkysilver_bg {
	background: transparent url("../images/colors/color_picker_silky_silver.png") no-repeat;
	background-size: 100%
}
.titaniumgrey {
	background-color: #41585f;
}
.titaniumgrey.txt {
	color: #41585f;
}
.titaniumgrey_bg {
	background: transparent url("../images/colors/color_picker_titanium_grey.png") no-repeat;
	background-size: 100%
}
.creambrown {
	background-color: #b19d92;
}
.creambrown.txt {
	color: #b19d92;
}
.creambrown_bg {
	background: transparent url("../images/colors/color_picker_cream_brown.png") no-repeat;
	background-size: 100%
}
.sunnyorange {
	background-color: #d09d39;
}
.sunnyorange.txt {
	color: #d09d39;
}
.sunnyorange_bg {
	background: transparent url("../images/colors/color_picker_sunny_orange.png") no-repeat;
	background-size: 100%
}
.desertbrown {
	background-color: #a67f55;
}
.desertbrown.txt {
	color: #a67f55;
}
.desertbrown_bg {
	background: transparent url("../images/colors/color_picker_desert_brown.png") no-repeat;
	background-size: 100%
}

/* Protectors */
.cp_none {
	background-color: #999 !important;
}
.cp_blue {
	background-color: #4e80bd !important
}
.cp_grey {
	background-color: #7f7f7f !important
}
.cp_black {
	background-color: #000000 !important
}
.cp_warmgrey {
	background-color: #887f82 !important
}
.cp_slategrey {
	background-color: #797e86 !important
}


/* CONFIGURATOR PART HERE */
.filler-overlay,
.floor-overlay {
  position: absolute;
  z-index: 200;
  height: 522px;
}

#conf-filler #render {
  width: 1024px;
  /*height: 720px;*/
  margin: 0 auto;
  /*padding-top: 40px;*/
}

.render .layer-0,
.layer-1,
.layer-2,
.layer-3,
.layer-4,
.layer-5,
.layer-6 {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  height: 576px;
  width: 1024px;
  background-size: contain;
  background-repeat: no-repeat;
}

.render .layer-0 {
  z-index: 10;
}

.render .layer-1 {
  z-index: 20;
}

.render .layer-2 {
  z-index: 30;
}

.render .layer-3 {
  z-index: 40;
}

.render .layer-4 {
  z-index: 50;
}

.render .layer-5 {
  z-index: 60;
}

.render .layer-6 {
	z-index: 70;
}

#load-screen,
#fade-screen {
  /*width: 100%;*/
  /*height: 100%;*/
  /*position: fixed;*/
  /*top: 0;*/
  /*left: 0;*/
  clear: both;
  float: left;
  width: 100%;
  position: relative;
  margin-top: 51px;
  min-height: 590px;
  background-color: rgb(10, 10, 10);
  z-index: 9999;
}

#fade-screen {
  z-index: 9998;
  display: none;
}

.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #f9f9f9;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  }
  40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}