﻿/* MOBILE BACK */
.mobile_back {
	display:none;
}

@media all and (max-width:767px) {
	.mobile_back {
		display:block;
		margin-bottom:57px;
	}
}

/* INTRO */
.intro {
	display:flex;
	flex-wrap:wrap;
}

.intro .description,
.intro .tools {
	margin-bottom:40px;
}

.intro .description {
	width:calc(100% - (200px * 2));
	margin-left:200px;
	text-align:center;
	/**/
	padding:0 10%;
}

.intro .description h1 {
	display:inline-block;
}

.intro .description .info {
	color:#000;
	margin-top:21px;
}

.intro .description .info a {
	border-bottom:solid 1px transparent;
	/**/
	-webkit-transition:border-bottom-color 250ms ease;
	transition:border-bottom-color 250ms ease;
}

.intro .description .info a:hover {
	border-bottom-color:#000;
}

.intro .description .cont {
	margin-top:21px;
}

.intro .tools {
	width:196px;
}

.intro .tools .button {
	cursor:pointer;
	/**/
	display:inline-block;
}

/* TITLE */
.intro .tools .button .title span {
	border-bottom:solid 1px transparent;
	-webkit-transition:border-bottom-color 250ms ease;
	transition:border-bottom-color 250ms ease;
}

.intro .tools .button:hover .title span,
.intro .tools .button.open .title span {
	border-bottom:solid 1px #000;
}

.intro .tools .button:before {
	content:"";
	display:inline-block;
	width:30px;
	height:15px;
	margin-right:13px;
	background-image:url(../img/arrow.svg);
	background-repeat:no-repeat;
	/**/
	-webkit-transition:transform 250ms ease;
	transition:transform 250ms ease;
}

.intro .tools .button.open:before {
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	-o-transform:rotate(90deg);
	transform:rotate(90deg);
}

/* DOWNLOADS MOBILE */
.intro .tools .downloads_mobile {
	display:none;
	letter-spacing:initial;
	/*padding-bottom: 20px;*/
}

@media all and (max-width:767px) {
	.intro .tools .downloads_mobile {
		display:block;
	}
}


/* */
.intro .tools .downloads,
.intro .tools .related_products,
.intro .tools .productviewer {
	display: inline-block;
	clear: both;
}

.intro .tools .related_products,
.intro .tools .productviewer {
	margin-top: 35px;
}

*[data-paneltarget="downloads"] {
	margin-left:-54px;
}

*[data-paneltarget="related_products"] {
	margin-left:-81px;
}

/**/
#product .col,
#product .col_thin,
#product .col_wide {
	margin-bottom:6%;
}

#product #images .box_prop {
	cursor:pointer;
}

@media all and (max-width:767px) {
	/* no lightbox for mobile */
	#product #images .box_prop {
		cursor:default;
	}
}

/* VIDEO */
.video_product {
	margin-bottom:6%;
	width:53.38%;
	margin-left:19.7%;
}

@media all and (max-width:767px) {

	.video_product {
		margin-bottom:12%;
		width:100%;
		margin-left:0%;
	}

}

/* SHARE */
#product #images .title.share,
#lightbox .title.share {
	cursor:pointer;
	display:inline-block;
	margin-top:8px;
	position:absolute;
}

#product #images .title.share span,
#lightbox .title.share span {
	border-bottom:solid 1px transparent;
	-webkit-transition:border-bottom-color 250ms ease;
	transition:border-bottom-color 250ms ease;
}

#product #images .title.share:hover span,
#product #images .title.share.open span,
#lightbox .title.share:hover span,
#lightbox .title.share.open span {
	border-bottom:solid 1px #000;
}

/* LIGHTBOX */
#lightbox {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:12;
	-webkit-opacity:0.0;
	opacity:0.0;
	-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;
}

#lightbox .shield {
	position:fixed;
	width:100%;
	height:100%;
	background-color:rgba(255, 255, 255, 0.97);
	top:0;
	left:0;
	cursor:pointer;
}

#lightbox .shield:before {
	content:"";
	position:fixed;
	width:20px;
	height:20px;
	top:20px;
	right:20px;
	z-index:13;
	background-image:url(../img/close.svg);
	background-size:cover;
}

#lightbox .main {
	margin:30px auto;
	height:calc(100vh - 60px);
	position:relative;
	top:0;
	-webkit-transition:width 250ms ease;
	transition:width 250ms ease;
	/**/
	width:600px;
}

#lightbox .main .title {
	line-height:30px;
}

#lightbox .main .arrow_prev,
#lightbox .main .arrow_next {
	position:fixed;
	width:30px;
	height:15px;
	background-size:cover;
	cursor:pointer;
	top:calc(100vh / 2);
	cursor:pointer;
	/**/
	-webkit-transition:all 250ms ease;
	transition:all 250ms ease;
}

#lightbox .main .arrow_prev {
	background-image:url(../img/arrow-left.svg);
	margin-left:-77px;
}

#lightbox .main .arrow_next {
	background-image:url(../img/arrow.svg);
	/*margin-left:calc(100% + 43px);*/
	/*margin-left:calc(50% + 43px);*/
}

#lightbox .main .image_container {
	-webkit-transition:width 250ms ease, height 250ms ease;
	transition:width 250ms ease, height 250ms ease;
	width:100%;
	height:calc(100% - 60px);
	/*background-color:#000;*/
	cursor:pointer;
}

#lightbox .main .image_container .image {
	width:100%;
	height:100%;
	/**/
	background-size:contain;
	background-position:center top;
	background-repeat:no-repeat;
	/**/
	-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;
}

#lightbox.horizontal .main .arrow_prev {
	margin-left:73px;
}

/*#lightbox.horizontal .main .arrow_next {
	margin-left:calc(100% - 43px);
}*/

#lightbox .main .info {
	float:right;
	padding-top:5px;
	color:#000;
}


/* COLUMNS SYSTEM */
#product .col_thin {
	display:inline-block;
	width:calc(44%);
	vertical-align:top;
}

#product .col_thin.left {
	margin-right:6%;
}

#product .col_thin.right {
	margin-left:6%;
}

#product .col {
	vertical-align:top;
	display:inline-block;
	width:calc(50%);
}

#product .col_wide {
	display:block;
	width:100%;
}

#product .col_wide .box {
	margin-left:19.7%;
	width:53.38%;
}

#product .col_wide.left .box {
	margin-left:0;
	width:53.38%;
}

#product .col_wide.right .box {
	margin-left:46.62%;
	width:53.38%;
}

#product .col_wide .box .box_prop {
	/**/
}

#product .col.margin_top,
#product .col_thin.margin_top,
#product .col_wide.margin_top {
	margin-top:4%;
}

#product #images .more_images {
	-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;
	-webkit-opacity:0.0;
	opacity:0.0;
}

#product #images .more_images.hidden {
	display:none;
	-webkit-opacity:0.0;
	opacity:0.0;
}

#product #images_more_less {
	cursor:pointer;
	text-align:right;
	color:#000;
	font-family:'jm';
	font-size:1.25em;
	padding-bottom:5px;
}

#product #images_more_less:after {
	content:"";
	width:26px;
	height:26px;
	display:inline-block;
	margin-left:16px;
	background-image:url(../img/plus.svg);
	vertical-align:text-top;
	background-repeat:no-repeat;
	background-position:center center;
}

#product #images_more_less.less:after {
	background-image:url(../img/minus.svg);
}

/* SHARE */
#product #images *[data-panelbutton="product_share"]:before,
#lightbox *[data-panelbutton="product_share_lightbox"]:before {
	content:"";
	display:inline-block;
	width:30px;
	height:15px;
	margin-right:16px;
	background-image:url(../img/arrow.svg);
	background-repeat:no-repeat;
	/**/
	-webkit-transition:transform 250ms ease;
	transition:transform 250ms ease;
	/**/
	transform-origin:12px 5px;
}

#product #images *.open[data-panelbutton="product_share"]:before {
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	-o-transform:rotate(90deg);
	transform:rotate(90deg);
}

#lightbox *.open[data-panelbutton="product_share_lightbox"]:before {
	-webkit-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-ms-transform:rotate(-90deg);
	-o-transform:rotate(-90deg);
	transform:rotate(-90deg);
	/**/
	transform-origin:14px 12px;
}

/* PANEL - SHARE */
*[data-paneltarget="product_share"],
*[data-paneltarget="product_share_lightbox"] {
	margin-left:-35px;
	margin-top:2px;
}

*.open[data-paneltarget="product_share_lightbox"]:before {
	margin-top:53px;
}

@media all and (max-width:767px) {
	#product .col.margin_top,
	#product .col_thin.margin_top,
	#product .col_wide.margin_top {
		margin-top:0;
	}

	#product .col_thin.left {
		margin-right:0;
	}

	#product .col_thin.right {
		margin-left:0;
	}

	#product .col,
	#product .col_thin,
	#product .col_wide {
		width:100%;
		margin:0 0 60px 0;
	}

	#product .col_wide .box {
		width:100%;
		margin-left:0;
	}

	#product .col_wide.left .box {
		margin-left:0;
		width:100%;
	}

	#product .col_wide.right .box {
		margin-left:0;
		width:100%;
	}
}

/* OUTDOOR VERSION */
#outdoor_version {
	text-align:center;
	padding:54px 0;
	border-top:solid 1px #000;
}

#outdoor_version a {
	border-bottom: solid 1px rgba(0, 0, 0, 0);
	-webkit-transition: border-bottom-color 250ms ease;
	transition: border-bottom-color 250ms ease;
}

#outdoor_version a:hover {
	border-bottom-color:#000;
}


/* PRODUCT VIEWER */
#product-viewer {
	/*padding: 54px 0;*/
	border-top: solid 1px #000;
	height: calc(100vh - 150px);
	background-color: #FFF;
	/**/
	position:relative;
}

#product-viewer iframe {
	border:0;
	width: 100%;
	height:100%;
	opacity:0;
	transition:opacity .25s ease;
}
#product-viewer iframe.loaded {
	opacity:1;
}

#product-viewer .button-fullscreen {
	cursor: pointer;
	position: absolute;
	z-index:20;
	width: 48px;
	height: 48px;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.5;
	transition: opacity .25s ease;
	margin-left: calc(100% - 48px);
	/**/
	/*margin-top:-48px;*/
}

#product-viewer .button-fullscreen:hover {
	opacity:1;
}

#product-viewer .button-fullscreen.off {
	background-image: url(../img/maximize.svg);
}

#product-viewer .button-fullscreen.on {
	background-image: url(../img/minimize.svg);
}

#product-viewer .progress-notification-area {
	position: fixed;
	z-index:14;
	/*margin-left: calc(100% - 280px - 20px);*/
	/*margin-top: -110px;*/
	right: 20px;
	bottom: 20px;
	width: 280px;
	height: 90px;
	padding: 20px 25px 25px 25px;
	background-color: #000;
	pointer-events: none;
	opacity: 1.0;
	transition: opacity .25s ease;
	-webkit-transition: all .5s ease;
}

#product-viewer .progress-notification-area.hide {
	opacity:0.0;
	transform:translateY(10px);
}

#product-viewer .progress-notification-area .text {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size:0.8em;
	margin-bottom: 10px;
}

#product-viewer .progress-notification-area .bar-container {
	width: 100%;
	height: 10px;
	background-color: #979797;
}

#product-viewer .progress-notification-area .bar-container .bar {
	height: 100%;
	background-color: #FFF;
	transition: all .25s ease;
	opacity: 1.0;
	transition: all .5s ease;
}

#product-viewer .progress-notification-area .bar-container .bar.hide {
	opacity:0;
}

#product-viewer .progress-notification-area .bar-container.idle {
	background-repeat: repeat;
	animation: progress-bar-stripes 1s linear infinite;
	background-image: linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
	background-size: 1rem 1rem;
	transition: none;
}

@keyframes progress-bar-stripes {
	from {
		background-position: 1rem 0;
	}

	to {
		background-position: 0 0;
	}
}


#product-viewer .temp {
	display: block;
	margin-top: -46px;
}

#product-viewer .temp .pdf-generate {
	cursor: pointer;
	position: absolute;
	z-index: 2013;
	margin-top: 10px;
	background-color: #FFF;
	opacity: 1;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
	user-select:none;
}

#product-viewer .temp .pdf-generate.disabled {
	pointer-events:none;
	opacity:0.3;
}

/*#product-viewer .temp .pdf-generate > div {
	cursor: pointer;
	display:inline-block;*/
	/*position: absolute;*/
	/*z-index:2014;*/
/*	margin-top: 10px;*/
	/*background-color: #FFF;
}*/

/*#product-viewer .temp .pdf-generate > div:hover {
	background-color:#F00;
}
*/

/* SUGGESTED COVERINGS */
#suggested_materials {
	text-align:center;
	padding:54px 0;
	border-top:solid 1px #000;
}

#suggested_materials h2 {
	display:inline-block;
}

#suggested_materials ul.materials {
	display:flex;
	justify-content:center;
	margin-top:28px;
	align-items:flex-start;
}

#suggested_materials ul.materials li {
	display:inline-block;
	padding:0 10px;
}

#suggested_materials ul.materials.multiline {
	flex-wrap:wrap;
	justify-content:space-between;
}

#suggested_materials ul.materials.multiline li {
	width:20%;
}

#suggested_materials ul.materials li a,
#suggested_materials ul.materials li span {
	border-bottom:solid 1px transparent;
	-webkit-transition:color 250ms ease, border-bottom-color 250ms ease;
	transition:color 250ms ease, border-bottom-color 250ms ease;
}

#suggested_materials ul.materials li a.selected,
#suggested_materials ul.materials li a:hover,
#suggested_materials ul.materials li span.selected,
#suggested_materials ul.materials li span:hover {
	color:#000;
	border-bottom-color:#000;
	cursor:pointer;
}

#suggested_materials_loading {
	overflow:hidden;
	/**/
	-webkit-opacity:1.0;
	opacity:1.0;
	-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;
}

#suggested_materials_loading:before {
	content:"";
	width:32px;
	height:32px;
	display:inline-block;
	margin:0 auto;
	background:transparent url(../img/loading.png) no-repeat;
	background-size:32px 32px;
	margin-top:28px;
	/**/
    -webkit-animation-name:spin;
    -moz-animation-name:spin;
    -ms-animation-name:spin;
	-webkit-animation:spin 4s linear infinite;
	-moz-animation:spin 4s linear infinite;
	animation:spin 4s linear infinite;
}

#suggested_materials_loading.error {
	margin-top:28px;
	height:32px;
}

#suggested_materials_loading.error:before {
	display:none;
}

#suggested_materials_loading.hidden {
	height:0;
	-webkit-opacity:0.0;
	opacity:0.0
}

@media all and (max-width:1023px) {
	.intro .description {
		margin-left:0;
		width:calc(100% - 200px);
		text-align:inherit;
		padding:0;
	}

	#suggested_materials ul.materials.multiline li {
		width: 30%;
	}
}

@media all and (max-width:767px) {
	#suggested_materials ul.materials {
		margin-top:-4px;
		flex-direction:column;
	}

	#suggested_materials ul.materials li,
	#suggested_materials ul.materials.multiline li {
		margin-top:15px;
		display:block;
		width:100%;
	}
}

@media all and (max-width:767px) {
	/* INFO */
	.intro .description {
		width:100%;
	}

	.intro .tools {
		margin-right:calc(100% - 196px);
	}

	.intro .description .cont {
		margin-top:0;
	}

	.intro .tools .button.open:before {
		transform-origin:12px 5px;
	}

	.intro .tools .downloads {
		display:none;
	}

	.intro .tools .related_products {
		margin-top: 4px;
	}

	.intro .tools .productviewer {
		margin-top: 0px;
	}

	*[data-paneltarget="downloads"] {
		margin-left:-60px;
	}

	*[data-paneltarget="related_products"] {
		/*margin-left:15px;*/
		margin-left:193px;
	}

	*[data-paneltarget="related_products"][data-panelmode="0"]:before {
		right:auto;
	}
}




/* MATERIALS SELECTOR */
#materials_selector {
	border-top:solid 1px #000;
	padding-top:16px;
}

#materials_selector .header,
#materials_selector .indications {
	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	justify-content:space-between;
	font-family:'jm';
}

#materials_selector .header .half,
#materials_selector .indications .half {
	width:calc(50% - 8px);
	/**/
	margin-bottom:5px;
}

#materials_selector .indications .half {
	padding:45px 0 41px 0;
}

#materials_selector .indications .half span {
	cursor:pointer;
}

@media all and (max-width:767px) {
	#materials_selector .indications.fabrics .half:last-child {
		display:none;
	}
	#materials_selector .indications.materials .half:first-child {
		display:none;
	}
}

#materials_selector .header .block {
	display:block;
	background-color:#B0B0B0;
	color:#000;
	/**/
	padding:25px 35px 26px 52px;
	height:98px;
	overflow:hidden;
}

#materials_selector .header .half.active .block {
	background-color:#343430;
	color:#979797;
}

#materials_selector .header .block h3,
#materials_selector .indications .block h3,
#materials_selector .header .block .subtitle
#materials_selector .indications .block .subtitle {
	font-size:1.25em;
}

#materials_selector .header .block .subtitle {
	color:#FFF;
	font-size:1.25em;
	margin-top:1px;
}

#materials_selector .half.active:after {
	content:"";
    width:18px;
    height:13px;
    display:block;
    /*margin-top:-13px;*/
    background-image:url(../img/menu-corner.svg);
    background-size:cover;
    position:absolute;
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
	opacity:0.9;
}

/* FABRICS ROOTS */
#materials_selector .roots {
	float:right;
	margin-top:-5px;
	font-size:1.25em;
}

#materials_selector .roots li {
	display:inline-block;
	margin-right:30px;
	text-align:center;
}

#materials_selector #ms_fabrics .roots li {
	cursor:pointer;
}

#materials_selector .roots li:last-child {
	margin-right:0;
}

#materials_selector .roots li img {
	height:40px;
}

#materials_selector .roots li img.on {
	-webkit-filter:invert(100%);
	filter:invert(100%);
	position:absolute;
	-webkit-opacity:0.0;
	opacity:0.0;
	-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;
}

#materials_selector .roots li img.off {
	-webkit-opacity:1.0;
	opacity:1.0;
}

#materials_selector .roots li path {
    fill:red;
}

#materials_selector .roots li div {
	margin-top:-1px;
	-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;
}

#materials_selector #ms_fabrics .roots li div {
	opacity:0.3;
}

/* alt */
#materials_selector #ms_fabrics .roots li.selected div {
	opacity:1.0;
}

#materials_selector #ms_fabrics .roots li.selected img.on {
	-webkit-opacity:0.75;
	opacity:0.75;
}

#materials_selector #ms_fabrics .roots li:hover div {
	opacity:0.75;
}

#materials_selector .roots li:hover img.on {
	-webkit-opacity:0.30;
	opacity:0.30;
}

/*@media all and (max-width:1024px) and (min-width:768px) {
	#materials_selector .roots li {
		display:block;
		margin-right:0;
	}

	#materials_selector .roots li img {
		display:none;
	}
}*/

@media all and (max-width:560px) {
	#materials_selector .roots {
		display:none;
	}
}


/* STATUS */
#materials_selector .header .half.active .block h3 {
	color:#FFF;
}

#materials_selector .header .half.active .block .subtitle {
	color:#979797;
}

#materials_selector .header .half.enabled .block {
	cursor:pointer;
}

#materials_selector .header .half.disabled .block h3,
#materials_selector .header .half.disabled .block .subtitle {
	color:#979797;
}

@media all and (max-width:1024px) {

	#materials_selector .header,
	#materials_selector .indications {
		display:flex;
		flex-direction:column;
		flex-wrap:nowrap;
		justify-content:space-between;
	}


	#materials_selector .header .half,
	#materials_selector .indications .half {
		width:100%;
	}
}






/* GENERAL	*/
.stp1,
.stp2,
.stp3 {
	margin-bottom:67px;
}

.stp1 {
	width:100%;
}

/* give a shade to white block*/
/*.stp1 .color#color_3331 {
	-webkit-box-shadow:0 0 1px 0 rgba(128,128,128,0.25);
	box-shadow:0 0 1px 0 rgba(128,128,128,0.25);
}*/

/* manage color "Fantasia" */
.stp1 .color#color_3713 {
	background-color:#FFF;
	background-image:url(../img/fantasia.png);
	background-size:cover;
	background-repeat:no-repeat;
}

/**/
.stp1 .color.selected,
.stp1 .color:hover,
.stp1 .color#color_3331.selected,
.stp1 .color#color_3331:hover,
.stp1 .image.selected,
.stp1 .image:hover,
.stp2 li.selected .img,
.stp2 li:hover .img,
#available_materials .stp1 ul.selected li.selected .image {
	-webkit-box-shadow:inset 0 0 0 10px #242424;
	box-shadow:inset 0 0 0 10px #242424;
}

.stp1 .color,
.stp2 ul li .img,
#available_materials .stp1 ul li .image {
	-webkit-transition:all 250ms ease;
	transition:all 250ms ease;
}

.stp2 .title,
.stp3 .title {
	margin-top:20px;
	margin-bottom:55px;
}

/*#available_materials .stp1 .title {
	margin-top:9px;
	margin-bottom:23px;
	border-bottom:solid 1px transparent;
	display:inline-block;
	/ ** /
	-webkit-transition:border-bottom-color 250ms ease;
	transition:border-bottom-color 250ms ease;
}*/

#available_materials .stp1 li:hover .title,
#available_materials .stp1 li.selected .title {
	border-bottom-color:#000;
}

/* CONTAINERS */
#suggested_materials_container,
#available_fabrics,
#available_materials {
	overflow:hidden;
	width:100%;
}

#suggested_materials_container {
	text-align:initial;
}

/* MOVERS */
#suggested_materials_container .mover,
#available_fabrics .mover,
#available_materials .mover {
	position:relative;
	display:flex;
	/**/
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-content:flex-start;
}

#available_materials .mover {
	margin-bottom:40%;
}

/* available_fabrics - STP1 */
#available_fabrics .stp1 ul {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:flex-start;
	align-content:flex-start;
	/**/
	width:calc(100% + 15px);
}

#available_fabrics .stp1 ul li {
	display:inline-block;
	/*min-width:35px;*/
	height:104px;	/* 144 */
	margin-right:15px;
	margin-bottom:15px;
	cursor:pointer;
	/**/
	width:3%;
	box-sizing:border-box;
	/**/
	-webkit-transition:all 250ms ease;
	transition:all 250ms ease;
}

#available_fabrics .stp1 ul li.nullify {
	margin-right:0;
}

@media all and (max-width:767px) {
	#available_fabrics .stp1 ul li {
		height:72px;
	}
}


/* suggested_materials */
#suggested_materials_container .stp2 .title {
	-webkit-opacity:0.0;
	opacity:0.0;
}



/* available_materials */
#available_materials .stp1 ul {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:flex-start;
	width:calc(100% + 16px);
}
#available_materials .stp1 ul li {
	display:inline-block;
	box-sizing:border-box;
	width:25%;
	cursor:pointer;
	/**/
	-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;
}

#available_materials .stp1 ul li .image {
	width:calc(100% - 16px);
	/*height:144px;*/
	/*background-size:cover;*/
	/**/
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 80%;
}

#available_materials .stp2 .arrow_back_title {
	cursor:pointer;
}


/* STP2 */
.stp2 {
	width:40%;
	display:inline-block;
	-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;
}

.stp2 ul {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-content:flex-start;
}

.stp2 ul li {
	width:33.3333%;
	text-align:initial;
	padding:0;
	padding-right:40px;
	box-sizing:border-box;
	cursor:pointer;
}

@media all and (max-width:1024px) {
	.stp2 ul li {
		width:50%;
	}

	#available_materials .stp1 ul li {
		width: 33.33%;
	}
}

@media all and (max-width:767px) {
	.stp2 ul li {
		width:45%;
		padding-right:0;
	}

	#available_materials .stp1 ul li {
		width: 50%;
	}
}

.stp2 ul li .img {
	width:100%;
	/*max-width:153px;
	max-height:153px;*/
	background-size:cover;
}

.stp2 .texts {
	/*line-height: 24px;
	height: 72px;
	font-size: 1.25em;*/
	/**/
	/*line-height: 24px;*/
	height: 88px;
	font-size: 1.00em;
	line-height:22px;
}

.stp2 .texts .name {
	color:#000;
	font-family:'jm';
	margin-top:8px;
	/*display:inline-block;*/
	border-bottom:solid 1px transparent;
	/**/
	/*-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;*/
}

/*.stp2 li:hover .texts .name,
.stp2 li.selected .texts .name {
	border-bottom-color:#000;
}*/

/* icons - Tissue, Leather, Outdoor */
.stp2 ul li.fr_2303:before,
.stp2 ul li.fr_2913:before,
.stp2 ul li.fr_3861:before {
	content:"";
	display:block;
	position:absolute;
	z-index:2;
	width:50px;
	height:30px;
	margin:18px 0 0 18px;
	-webkit-filter:invert(100%);
	filter:invert(100%);
	/**/
	background-size:contain;
	background-repeat:no-repeat;
	background-position:left top;
}

/* Tissue */
.stp2 ul li.fr_2303:before {
	background-image:url(../img/icon_full_2303.svg);
}

/* Leather */
.stp2 ul li.fr_2913:before {
	background-image:url(../img/icon_full_2913.svg);
}

/* Leather */
.stp2 ul li.fr_3861:before {
	background-image:url(../img/icon_full_3861.svg);
}

/* selected */
.stp1 ul.selected li,
.stp2 ul.selected li {
	-webkit-opacity:0.5;
	opacity:0.5;
}

.stp1 ul.selected li.selected,
.stp2 ul.selected li.selected {
	-webkit-opacity:1.0;
	opacity:1.0;
}



/* STP3 */
.stp3 {
	width:60%;
	display:inline-block;
	/**/
	-webkit-transition:opacity 250ms ease;
	transition:opacity 250ms ease;
	/**/
	/*background-color:#FFF0F0;*/
}

.stp3 .right {
	float:right;
}

.stp3 .right * {
	display:inline-block;
	vertical-align:top;
}

.stp3 .right .icon {
	height:40px;
	width:auto;
	margin-right:26px;
	margin-top:12px;
}

.stp3 .img {
	background-size:cover;
	background-repeat:no-repeat;
}

.stp3 .data {
	/**/
}

.stp3 .data .docs {
	float:right;
	width:50%;
}

.stp3 .data .main {
	display:inline-block;
}

.stp3 .data .feats {
	display:inline-block;
	width:46%;
	vertical-align:top;
	padding-right:20px;
	box-sizing:border-box;
}

.stp3 .data .feats .label {
	color:#000;
}

.stp3 .data .feats .value {
	margin-bottom:23px;
}

.stp3 .data .cont {
	display:inline-block;
	width:54%;
	vertical-align:top;
}



/* RESPONSIVE */
@media all and (max-width:767px) {

	/* 2 STEPS */
	#suggested_materials_container .mover,
	#available_fabrics .mover,
	#available_materials .mover {
		width: 300%;
		flex-wrap: nowrap;
		/**/
		position: relative;
		-webkit-transition: margin-left 250ms ease;
		transition: margin-left 250ms ease;
	}

	#suggested_materials_container .mover {
		width: 200%;
	}

	/* 3 STEPS */
	#available_fabrics .mover .stp1,
	#available_fabrics .mover .stp2,
	#available_fabrics .mover .stp3,
	#available_materials .mover .stp1,
	#available_materials .mover .stp2,
	#available_materials .mover .stp3 {
		width: 33.3333%;
	}

	#suggested_materials_container .mover .stp1,
	#suggested_materials_container .mover .stp2,
	#suggested_materials_container .mover .stp3 {
		width: 50%;
	}

	/**/
	#available_materials .stp1 .box_prop.horizontal_2_13 {
		/*padding: 120% 0 0 0;*/
	}

	#available_materials .stp1 .title {
		margin: 10px 0 20px 0;
		padding-left: 0;
		background-image: none;
	}

	#available_materials .stp1 ul li .title {
		font-size: initial;
	}

	/* hide headers */
	#suggested_materials_container .mover .stp2 .title.arrow_title {
		display: none;
	}

	#suggested_materials_container .mover .stp3 .mobile_control {
		content: "";
		display: block;
		position: absolute;
		cursor: pointer;
		/**/
		background-image: url(../img/close_white.svg);
		background-repeat: no-repeat;
		background-size: 20px 20px;
		background-position: center center;
		/**/
		z-index: 10;
		width: 20px;
		height: 20px;
		right: 10px;
	}

	#suggested_materials_container .mover .stp3 .img.box_prop {
		margin-top: 30px;
	}

	/* PAGING - 1 */
	#suggested_materials_container .mover.page1 {
		margin-left: -100%;
	}

	#available_fabrics .mover.page1,
	#available_materials .mover.page1 {
		margin-left: -100%;
	}

	/* PAGING - 2 */
	#available_fabrics .mover.page2,
	#available_materials .mover.page2 {
		margin-left: -200%;
	}

	#available_fabrics .mover .stp3 .mobile_control,
	#available_materials .mover .stp3 .mobile_control {
		content: "";
		display: block;
		position: absolute;
		cursor: pointer;
		/**/
		background-image: url(../img/close_white.svg);
		background-repeat: no-repeat;
		background-size: 20px 20px;
		background-position: center center;
		/**/
		z-index: 10;
		width: 20px;
		height: 20px;
		right: 10px;
	}

	#available_fabrics .mover .stp3 .img.box_prop,
	#available_materials .mover .stp3 .img.box_prop {
		margin-top: 30px;
	}


	/* DOCS */
	.stp3 .data .docs {
		color: #FFF;
	}

	/* MAIN */
	.stp3 .data .main {
		color: #FFF;
	}

	.stp3 .right,
	.stp3 .title {
		display: none;
	}

	.stp3 .arrow_title, .stp3 .arrow_back_title {
		background-image: url(../img/arrow-white.svg);
	}

	/* STP3 - BACKGROUND-COLOR */
	.stp3 {
		background-color: #000;
		color: #B0B0B0;
		padding: 10px;
		/**/
		margin-top: 98px;
	}

	#suggested_materials_container .mover .stp3{
		margin-top:0;
	}
	.stp3 .data .feats .label {
		color:#FFF;
	}
}

@media all and (max-width:848px) {
	/* DOCS - FULL WIDTH */
	.stp3 .data .docs {
		display:block;
		margin-bottom: 0;
		float: none;
		width: 100%;
	}

	/* FULL WIDTH*/
	.stp3 .data .main {
		width:100%;
	}
}