.list-layer-description{display:none !important;}
.options-detail-content {
    width: 30%;
    padding: 0;
    position: absolute;
    top: 0px;
    left: -30vw;
	background:#fff;
	overflow-y: auto;
	-webkit-transition: 0.4s; transition: 0.4s;
	z-index:9;
}
.options-detail-content.active {
	left:0;
	-webkit-transition: 0.6s; transition: 0.6s;
}

.canvas-content{width:75%; margin-left:25%; margin-top:-1px;border-radius:0px; overflow: hidden; background:#fff;}
.canvas-content .disclaimer{font-size:11px; color:#999; text-align:center; position:absolute; bottom:5%; left:0; width:100%; background:#fff;}
.layouts-content{padding:0 5%;}
.layout-image img{
	width:100%;
	display:none;
}
.layout-image.active img{
	display:block;
}
.layout-btn{font-weight:bold; padding:3px 0; margin:5px; max-width:20%; font-size:11px; color:#999; cursor:pointer; height:50px;}
.layout-btn.active{/*font-family: 'Nexa';*/ color:#000; border-bottom:4px solid var(--main-bg-color);}

.floor-absolute{
	position: absolute;
	top:4%;
	right:-210px;
	border-left:3px solid var(--main-bg-color);
	color:var(--main-bg-color);
	font-weight:bold;
	font-size:22px;
	height:92%;
	width:190px;
	padding-left:40px;
	z-index:99;
	pointer-events:none;
}
.floor-absolute:before{
	content:'';
	width:20px;
	height:40px;
	/*background:url(../img/arrow-floor-item.svg) no-repeat left center;
	background-size:contain;*/
	position:absolute;
	left:0;
	top:20%;
	margin-top:-28px;
	background-color: var(--main-bg-color);
    -webkit-mask-image: url(../img/arrow-floor-item.svg);
    mask-image: url(../img/arrow-floor-item.svg);
}
.floor-absolute .floor-title{    
	position: absolute;
    top: 20%;
    margin-top: -26px;
	/*font-family: 'Nexa';*/
}
.floors-content b{color:#000; font-size:13px; margin-bottom:8px;}
.floor-selector{color:var(--main-bg-color); font-size:18px; font-weight:bold;}

.floor-next.disabled, .floor-prev.disabled{
	opacity:0.3;
	pointer-events: none;
}

.h-steps .step{margin:20px 0 0 0; padding:20px 15%; font-size:12px; position: relative; z-index:3; color:#4D4D4D; width:100%; height:calc(100vh - 190px); background:#F5F5F5;}
.h-steps .step .btn, .list-layer{position:relative; font-size:11px; color:#000 !important; background:transparent;  border:0 !important; width: 100%; text-align:left; margin-bottom:6px; padding:6px 30px; -webkit-transition: 0.4s; transition: 0.4s;}
.h-steps .step .btn:before, .list-layer:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid #fff;
}
.h-steps .step .btn:hover:before, .list-layer:hover:before{
	background:#92def3;
	-webkit-transition: 0.4s; transition: 0.4s;
}
.h-steps .step .btn:after, .list-layer:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 0px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--main-bg-color);
}
.h-steps .step .btn.active, .list-layer.active{background:transparent; -webkit-transition: 0.4s; transition: 0.4s;}
.h-steps .step .btn.active:before, .list-layer.active:before{
	background:var(--main-bg-color);
	-webkit-transition: 0.4s; transition: 0.4s;
}
.h-steps .step .accordion-button:focus{box-shadow:none !important;}
.h-steps .accordion-item{border:0; background:transparent;}
.h-steps label{display:block; margin:4px 0;}

.h-steps .container {
	display: block;
	position: relative;
	padding-left: 22px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color:#4D4D4D;
	line-height:1;
	margin:15px 0;
  }
  
  /* Hide the browser's default checkbox */
  .h-steps  .container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .h-steps .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 15px;
	width: 15px;
	background-color: #eee;
	opacity:0.5;
  }
  
  /* On mouse-over, add a grey background color */
  .h-steps .container:hover input ~ .checkmark {
	background-color: #ccc;
	
  }
  
  /* When the checkbox is checked, add a blue background */
  .h-steps .container input:checked ~ .checkmark {
	background-color: #ccc;
	opacity:1;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .h-steps .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .h-steps .container input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .h-steps .container .checkmark:after {
	content:'+';
	left: 3px;
	top: 0px;
	width: 5px;
	height: 10px;
	color:#000;
	font-size:16px;
  }

  .h-steps .options{border-bottom:1px solid #4D4D4D; padding-bottom:8px; margin-bottom:40px; width:80%; position:relative; cursor:pointer; -webkit-transition: 0.4s; transition: 0.4s;} 
  .h-steps .options.active{width:100%; -webkit-transition: 0.4s; transition: 0.4s;}
  .h-steps .options img{height:20px; margin-right:10px;}
  .h-steps .options:after{
	content:'';
	position:absolute;
	right:-17px;
	top:0;
	width:34px;
	height:34px;
	background:url(../img/step_icon_after.svg) no-repeat center center;
	background-size:contain;
  }

  .h-steps .furnish{border-bottom:1px solid #4D4D4D; padding-bottom:6px; margin-bottom:10px; width:80%; -webkit-transition: 0.4s; transition: 0.4s;} 
  .h-steps .furnish.active{width:100%; -webkit-transition: 0.4s; transition: 0.4s;}
  .h-steps .furnish img{height:20px; margin-right:10px;}

  .h-steps .elevations, .h-steps .share{border-bottom:1px solid #4D4D4D; padding-bottom:6px; margin-top:35px; width:80%; position:relative;  cursor:pointer;} 
  .h-steps .elevations img, .h-steps .share img{height:20px; margin-right:10px;}
  .h-steps .elevations:after, .h-steps .share:after{
	content:'';
	position:absolute;
	right:-17px;
	top:0;
	width:34px;
	height:34px;
	background:url(../img/step_icon_after.svg) no-repeat center center;
	background-size:contain;
  }

  .list-ambiente{
	font-size:11px;
	width:100%;
	/*display:none; */
	border:0; 
	z-index:5;
  }
  .list-layer{text-align:left;}
  .autofill{margin-bottom:0px; margin-top:20px; cursor:pointer; width:fit-content; /*font-family:'Nexa';*/ font-weight:bold; font-size:20px;}
  .autofill img{
	width:40px;
	height:40px;
	margin-right:8px;
	/*font-family: 'Nexa';*/
  }
  .furniture-flex{display:flex; flex-wrap: wrap; max-height: 60vh; overflow-y: auto;}
  .list-furniture{margin:8px; text-align:center; cursor:pointer;}
  .list-furniture img{height:50px; margin-bottom:8px;}

/*.nav{ position:absolute; z-index:9; top:0; left:0; padding:2% 0 0 0; align-items: start; width: 40%; margin: 0 2%; pointer-events: none;}
.logo{
	border-radius: 60px;
	border: 1px solid #999;
	background: #fff;
	margin-left: -2%;
	margin-right: 2%;
	padding: 5px 40px;
	height: fit-content;
}
.logo img{height:60px;}
.section-header .title{font-size:11px; }
.section-header h1{font-size:20px; font-weight:bolder; margin-bottom:0;}
.section-header p{margin:0;}
*/

.nav .btn.model, .nav .btn.adptable-units, .nav .btn.video{
	border-radius:30px;
	border:0px;
	padding-left:50px;
	padding-right:20px;
	margin-right:15px;
	padding-top:15px;
	padding-bottom:15px;
}
.nav .btn.model{
	background:url(../img/model_icon.svg) no-repeat 18px center #e7fbf5;
	background-size:20px 20px;
}
.nav .btn.model.active{
	background:url(../img/model_icon.svg) no-repeat 18px center #87C5B3;
	background-size:20px 20px;
}
.nav .btn.adptable-units{
	background:url(../img/adaptable_icon.svg) no-repeat 18px center #faf4e3;
	background-size:30px 30px;
	padding-left:60px;
}
.nav .btn.adptable-units.active{
	background:url(../img/adaptable_icon.svg) no-repeat 18px center #eaba6e;
	background-size:30px 30px;
	padding-left:60px;
}
.nav .btn.video{
	background:url(../img/play_btn.svg) no-repeat 18px center #fff;
	background-size:30px 30px;
	padding-left:60px;
}

.lib{
	padding:0;
}
.options-lib{
	padding:40px 0 0 5%;
	display:block;
	/*height:140px;*/
	overflow-y:auto;
}

.lib .btn{font-size:11px; font-weight:bold; background:url(../img/btn_arrow.svg) no-repeat 90% center #fff; background-size:auto 40%; color:#4D4D4D !important;  border:0 !important; border-radius:20px !important; width:70%; text-align:left;margin-bottom:6px; padding:6px 20px; -webkit-transition: 0.4s; transition: 0.4s;}
.lib .btn.active{background:url(../img/btn_arrow.svg) no-repeat 90% center #abd6eb; background-size:auto 40%;}
.furnish-form .btn-danger{
	background:url(../img/btn_arrow.svg) no-repeat 90% center #f21251;
	background-size:auto 40%;
	color:#fff !important;
	width:fit-content;
	margin-left:auto;
	padding-right:50px;
}
.furnish-form{    
  position: absolute;
  top: 150px;
  left: 5%;
  width: 102%;
  height: 70vh;
  background: #fff;
  z-index: 6;
  border-top: 0;
  border-radius: 40px;
  box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.1);
  font-size:12px;
  padding:10%;
}
.furnish-form .row{
  display:flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  height:100%;
}
.furnish-form .close{
	position:absolute;
	right:25px;
	top:15px;
	font-size:18px;
	color:#666;
	cursor:pointer;
}
.input-group-text{
	font-size:12px;
}

.furnish-lib{position: relative;}
.furnish-lib .close {
	position: absolute;
	right: 30px;
	top: 25px;
	font-size: 26px;
	color: #666;
	cursor: pointer;
	z-index: 6;
	/*font-family:'Nexa';*/
}

.plans-content{height:75vh; justify-content: center; align-items: center; padding-left:3%; padding-right:3%;}
.plans-content .slick-list{overflow: visible;}
.list-plan{margin:0 2%; border-radius:30px; overflow: hidden; cursor:pointer; -webkit-transition: 0.5s; transition: 0.5s;}
.list-plan:hover{transform: scale(1.05); -webkit-transition: 0.5s; transition: 0.5s;}
.list-plan .number{position:absolute; font-size:12px; text-align:center; line-height:23px; top:15px; right:15px; width:25px; height:25px; border-radius:50%; border:1px solid #4D4D4D; color:#4D4D4D; background:#fff; font-weight:bold;}
.list-plan .data{margin-bottom:0px;}
.list-plan h5{font-size:18px; font-weight: bold;}
.list-plan a{text-decoration: none !important; color:inherit !important;}
.list-plan .icon{font-size:12px; padding-left:8%; margin-bottom:5px; display: flex; align-items: center;}
.list-plan .icon img{height:20px; margin-right:10px;}
.list-plan .tools{ border-top:1px solid #999; padding:8px; width:90%; margin:0 5% 15px 5%;}
.list-plan .tools img{height:30px;}
.steps .step1 img{width:60%;}
.steps .step2.active.short{
	width: 150px;
}
.steps .step2 img {
	width: 60%;
  }
.steps .green{background:#B7E5A9; cursor:pointer;}


.plan-detail{padding:20px 3%; overflow-x: hidden;}


.plan-cta #brochure_link .btn{background:#EEEA91;}
.plan-cta #brochure_link .btn:hover{
	background:#F2EEC4;
}

.plan-data{color:#4D4D4D;}
.plan-title{font-size:22px; font-weight:bold; }
.plan-data .description{font-size:14px; padding-right:8%;}
.schema-data .list-material{padding:15px 40px 15px 0; align-items: center; break-inside: avoid-column;} 
.plan-img{padding-right:3%;}
.plan-img, .plan-gallery{margin-top:40px;}
.plan-img img{border-radius:20px;}

.plan-gallery .slick-track {
	display: flex;
	height: 350px;
}
.plan-gallery .slick-track .slick-slide {
	display: flex;
	height: auto;
	align-items: center;
	justify-content: center;
}

.brochure-form{
	position:fixed;
	z-index:99;
	top:0;
	height:100vh;
	background:#EDEEEF;
	box-shadow: -2px 13px 25px -4px rgba(0,0,0,0.8);
	border-radius:45px 0 0 45px;
	width:30vw;
	right:-35vw;
	-webkit-transition: 0.5s; transition: 0.5s;
	display: flex;
	flex-direction: column;
	padding:40px;
	justify-content: center;
	align-items: center;
}
.brochure-form.active{
	right:0;
	-webkit-transition: 0.5s; transition: 0.5s;
}
.brochure-form .close{
	position:absolute;
	top:25px;
	left:25px;
	cursor:pointer;
}
.brochure-form .close img{
	width:25px;
}
.brochure-form form{
	width:60%;
}
.brochure-form form input{width:100%; font-size:13px; margin:4px 0; background: transparent; border:0; box-shadow:0; border-bottom:1px solid #999;}
.brochure-form form input:focus{outline:none !important; border-bottom: 1px solid var(--main-bg-color);}
.brochure-form .btn {
	margin-top: 6vh;
	background: #263D84;
	border: 1px solid #999;
	border-radius: 30px;
	padding: 4px 10px;
	font-size: 12px;
	position: relative;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	color: #fff;
  }
.brochure-form .legal{ position:absolute; bottom:30px; left:20%; width:70%; font-size:10px; line-height:12px;}

.zoom-btns{
	position:fixed;
	right:3%;
	top:50%;	
	padding:10px 6px;
	border-radius:40px;
	background:#222;
}
.zoom-btn{width:25px; height:25px; text-align:center; line-height:25px; font-size:30px; background:#fff; border-radius:50%; margin:3px 0; cursor:pointer; user-select: none;}
#zoomOut{line-height:20px;}

.tools-btns{
	position: fixed;
    right: 3%;
    top: 50%;
    margin-right: -8px;
    margin-top: -110px;
    padding: 10px 6px;
}
.ruler-btn, .furniture-btn{
	border-radius:50%;
	background:var(--main-bg-color);
	margin-bottom:5px;	
}
.ruler-btn img, .furniture-btn img{
	width:25px; 
	height:25px;
	object-fit: contain;
	margin:10px;
	cursor:pointer;
}
.section-header .modal{
	position: absolute;
	padding-top: 50px;
	z-index:7;
}
.section-header .modal-content{
	border-radius:30px;
	-webkit-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.1);
}
.section-header .modal-header .btn-close{
	margin-top:10px;
	margin-right:5px;
}
.section-header .modal-dialog{
	width: 600px !important;
	margin-left:5% !important;
	margin-top:40px;	
}
.section-header .modal-dialog .list-layer .btn{
	
	font-size: 11px;
  	font-weight: bold;
  	background: url(../img/btn_arrow.svg) no-repeat 90% center #87C5B3;
    background-size: auto;
  	background-size: auto 40%;
	color: #4D4D4D !important;
	border: 0 !important;
	border-radius: 20px !important;
	width: fit-content;
	text-align: left;
	margin-bottom: 6px;
	padding: 6px 20px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	float:right;
	padding-right:40px;
}

.section-header .modal .btn-default{
	border:1px solid #ccc;
	border-radius:30px;
	padding:8px 10px;
	width:130%;
	background:#F0F1F2;
	font-weight:200;
}
.big-detail{
	position:absolute;
	top:0;
	right:0;
	display:none;
	z-index:8;
	padding-top:110px;
	width:93%;
}
.big-detail:before{
	content:'';
	position: absolute;
	width:7%;
	left:-7%;
	height:100%;
	background:rgba(255,255,255,0.1);
	backdrop-filter: blur(2px);
}
.big-detail-data{font-size:14px; padding-left:0 !important;}
.big-detail .card{
	border-radius:20px;
	-webkit-box-shadow: -20px 16px 28px -18px rgba(0,0,0,0.2);
	-moz-box-shadow: -20px 16px 28px -18px rgba(0,0,0,0.2);
	box-shadow: -20px 16px 28px -18px rgba(0,0,0,0.2);
	margin-left:1rem;
}
.big-detail .card .col-md-8 img{
	max-height:80%;
	object-fit: contain;
}

.big-detail .map-detail{
	position:absolute;
	bottom:0;
	left:0;
	border-radius:0 40px 0 40px;
	overflow:hidden;
	width:32%;
	height:30%;
	background:#fff;
	border:1px solid #ccc;
}
.big-detail .map-detail img{
	height:100%;
	object-fit:contain;
}
.big-detail-gallery{
	position:absolute;
	top:0;
	right:0;
	height:100vh;
	background:#fff;
	border-radius:40px 0 0 40px;
	z-index:10;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
}
.big-detail-gallery img{
	max-height:600px;
	object-fit: contain;
}
.big-detail .links{position:absolute; bottom:35px; right:2%; width:96%;}
.big-detail .btn-default{
	border:1px solid #ccc;
	border-radius:30px;
	padding:10px 20px;
	background:#F0F1F2;
	font-weight:200;
	z-index:99;
}
.big-detail-gallery .close{
	position: absolute;
	z-index: 99;
	top: 25px;
	left: 25px;
	background-color: #fff;
	border-radius: 50%;
	background-size: 40%;
	opacity:1;
	color:#4D4D4D;
	cursor:pointer;
}
.big-detail-gallery .slick-slide img{border-radius: 40px 0 40px 40px;}
.big-detail .slick-prev {
	left: 35px;
	z-index: 9;
	background: #fff;
  	border-radius: 50%;
}
.big-detail .slick-next {
	right: 35px;
	z-index: 9;
	background: #fff;
  	border-radius: 50%;
}
.modal-open{overflow: hidden;}
.modal-dialog{margin-top:-10vh;}
.modal-body img{	
	object-fit: contain;
	margin-bottom:15px;
	max-height: 35vh;
}
.modal-body .slick-prev {
	left: 10px;
	z-index:10;
}
.modal-body .slick-next {
	right: 10px;
	z-index:10;
}
.logo-close{
  background: transparent;
  border: 0;
  width: 30%;
  height: 120px;
  position: absolute;
  top: 0;
  left: -5%;
}
.canvas-content{
	position:relative;
}
.fixed-btns{
	position:fixed;
	right:20px;
	bottom:30px;
	display:flex;
	z-index:2;
}
.label-select{
	padding:8px 25px 8px 20px;
	border-radius:30px;
	background:#fff;
	font-size:12px;
	margin:0 4px;
	cursor:pointer;	
	-webkit-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.1);
	
}
.floors-select{
	margin:10px 4px 0 4px;	
}
.floors-select img{
	height:25px;	
}
.label-select img{
	height:25px;
	margin-right:10px;
}
.floors-select select{
	background:transparent;
	border:0;
}
.bthide{display:none !important;}

#ruler_select.active, .furniture-btn.active{background: #B7E5A9;}


.ambient-modal{
	position:absolute;
	top:10%;
	right:10%;
	width:300px;
	z-index:999;
	font-size:12px;
	display:none;
}
.ambient-modal .title{
	background: var(--main-bg-color);
	color:#fff;
	padding-right:5px !important;
	font-size:18px;
}
.ambient-modal .title .btn{
	color:#fff;
	font-weight:bolder;
	text-align:right;
}
.ambient-modal hr{margin-top:1px; padding-top:1px;}

.ambient-modal .ambient-content{
	border:1px solid #ccc;
	background: #fff;
}

@media screen and (min-width: 1440px) {
	
}
@media screen and (max-width:768px) {
	.main-container-f{
		flex-direction:column;
	}
	.nav{
		width:90%;
		flex-wrap: nowrap;
		flex-direction: row;
		position: relative;
	}
	.fixed-btns{position:relative; right:0; top:0; padding:10px; background:#fff;}
	.label-select, .floors-select{font-size:10px; display:flex; justify-content: center; align-items: center; padding: 8px 15px;}
	.label-select img, .floors-select img{height:20px; margin-right:8px; }
	.section-header{
		position:relative; padding:0; width:100%; margin-left:0%; background:#EDEEEF; min-height:60vh;  -webkit-transition: 0.4s; transition: 0.4s; border-radius: 0;
		-webkit-box-shadow: 0;
		-moz-box-shadow: 0;
		box-shadow: 0;
	}
	.h-steps {
		position: absolute;
		width: 95%;
		padding-top: 110px;
		padding-left: 20px;
		bottom: 0;
	}
	.logo img {
		height: 40px;
	}
	.logo {
		border-radius: 60px;
		border: 1px solid #999;
		background: #fff;
		margin-left: 0;
		margin-right: 2%;
		padding: 3px 20px;
		height: fit-content;
	}
	.nav .title {
		font-size: 11px;
		max-width: 55%;
		margin-left:10px;
	}
	.nav h1 {
		font-size: 16px;
	}
	.steps{margin-top:30px; width: 98%;}
	.steps .step {
		margin-left: 4%;
		width:33.33% !important;
	}
	.steps .step1{margin-left:0;}
	.slick-next {right: 25px !important;z-index:999;}
	.slick-prev {left: 25px !important; z-index:999;}
	.plans-content{height:75vh; margin-left:2%; justify-content: center; align-items: center; padding-left:5%; padding-right:5%; width:100vw;}
	.materials-content {
		height: auto;
		column-count: 2;
		column-fill:unset;
	}
	#brochure_link{
		position:fixed;
		bottom:8px;
		left:5%;
		right:auto;
		width:90% !important;
		display:block;
	}
	.plan-gallery .slick-track {
		display: flex;
		height: auto;
	}
	.brochure-form{width:90vw; right:-95vw;}
	.furnish, .elevations, .btns-content, .options{display:none;}
	.zoom-btns, #ruler_select{display:none !important;}
	.brochure-form{height:70vh;}
}	
@media screen and (max-width:600px) {
	
}