@font-face {
    font-family: 'Jesolo Mono';
    src: url('../fonts/Jesolo-MonoMedium.eot');
    src: url('../fonts/Jesolo-MonoMedium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Jesolo-MonoMedium.woff2') format('woff2'),
        url('../fonts/Jesolo-MonoMedium.woff') format('woff'),
        url('../fonts/Jesolo-MonoMedium.ttf') format('truetype'),
        url('../fonts/Jesolo-MonoMedium.svg#Jesolo-MonoMedium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.bounces {  
  text-align: center;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
.bounces {
  cursor: pointer;
  animation-name: bounce;
  -moz-animation-name: bounce;
}

@keyframes bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-3px);
		-ms-transform:     translateY(-3px);
		transform:         translateY(-3px)
	}
	60% {
		-webkit-transform: translateY(-8px);
		-ms-transform:     translateY(-8px);
		transform:         translateY(-8px)
	}
}

main {
 
    transition: all 2s ease;
}

a, a:active, a:focus, a:hover {
    text-decoration: none;
    color: #1a1919;
}

.slide-panel-container {
	right: -100px;
}

#account-panel.open, #information-panel.open {
	right: -20px;
}

html, body {
	height: 100%;
}

body {
	padding-top: 0;
}

.bianco {
	background: #fff;
}

.nero {
	color: #000 !important;
}

.display-block {
	display: block;
}

.relative {
	position: relative;
}

.sticky-1 {
	z-index: 1;
	position: sticky;
}

.h-101 { 
	height: 101px;	
} 


.footer {
	position: fixed; 
	bottom: 0; 
	left: 0; 
	right: 0; 
	height: 80px; 
	border-top: 1px solid #000; 
	background: #fff;
}
/*
.zoom-originale {
	cursor: url('../images/Plus_bianco.png') 30 30, auto;
}
*/
.pluszoom {
	background-image: url('../svg/Plus_bianco.svg');
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	top: 25px;
	left: 25px;
	background-size: 30px 30px;
	z-index: 999999;
}

.pluszoom:hover {
	background-image: url('../svg/Plus_nero.svg');
}

.ultrazoom {
	background-image: url('../images/Plus_nero.png');
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	top: 15px;
	left: 15px;
	background-size: 30px;
	z-index: 999999;
}


.ultrazoom:hover {
	background-image: url('../svg/Plus_nero.svg');
}

.div-ultrazoom {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	z-index: 99999999999;
	overflow: auto;
}

.ultrazoom.close {
	bottom: 150px;
	left: 150px;
	top: auto;
	right: auto;
	transform: rotate(45deg);
	position: fixed;
}

.pop {
	position: relative;
	/*max-height: 432px;*/
	overflow: hidden;
	padding-top: 66.66%;
}

.pop:hover .pluszoom {
	background-image: url('../svg/Plus_nero.svg');	
}

.pop .zoom-originale {
	
	position: absolute;
	top: 0;

	
}

#barriera { 
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 999;
}

.test-head {
	z-index: 9999;
}

.easyzoom.is-ready img {
    cursor: pointer; /*url('../images/Plus_nero.png') 30 30, auto;*/
}

/********** Animate *****************/

.animate__delay-02s {
	animation-delay: 0.2s
}
.animate__delay-04s {
	animation-delay: 0.4s
}
.animate__delay-05s {
	animation-delay: 0.5s
}
.animate__delay-06s {
	animation-delay: 0.6s
}
.animate__delay-08s {
	animation-delay: 0.8s
}
.animate__delay-10s {
	animation-delay: 1s
}
.animate__delay-12s {
	animation-delay: 1.2s
}
.animate__delay-14s {
	animation-delay: 1.4s
}
.animate__delay-16s {
	animation-delay: 1.6s
}
.animate__delay-18s {
	animation-delay: 1.8s
}
.animate__delay-22s {
	animation-delay: 2.2s
}
.animate__delay-24s {
	animation-delay: 2.4s
}

.paesaggio {
	-webkit-animation-name: paesaggoOpa;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-out;  
}

@-webkit-keyframes paesaggoOpa {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1
  }
}

.prd-opa-80:hover {
	-webkit-animation-name: prdOpa;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-out;  
}
@-webkit-keyframes prdOpa {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.8
  }
}



.arrow-animated {
	transition: all 0.2s ease;;
}


.up {
    transform: rotate(180deg);
}

.down {
    transform: rotate(360deg);
}
/*
@keyframes collapse-icon-animation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}

@keyframes collapse-icon-animation-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}*/

/*********** navigation **********/

.main-navigation {
	box-shadow: none;
	background-color: unset;
}
.position-fixed.w-100.main-navigation.sticky {
	background: #fff;
}
.sticky .back {
    margin-top: 0;
    margin-bottom: 10px;
}
.main-navigation > .site-padding {
	height: unset;
}
.main-navigation > .site-padding .container-fluid {
	padding-top: 32px;
	padding-bottom: 0;
}
.main-navigation.sticky > .site-padding {
	height: unset;	
}
.main-navigation.sticky > .site-padding .container-fluid {
	transform: none;
}
.main-navigation__logo-container {
	height: 70px;
}

.link-nav > a {
    font-size: 16px;
    line-height: 16px;
    padding: 0 8px;
    transition: 0.3s;
}

.link-nav > a.active, .link-nav > a:hover {
	color: #adadac;	
}

/*********** padding **********/

.padding-top-135 {
    padding-top: 135px !important;
}

.padding-top-33 {
	padding-top: 33px;
}

.padding-bottom-40 {
	padding-bottom: 40px;
}
.padding-bottom-100 {
	padding-bottom: 1000px;
}

/*********** margin top **********/

.margin-top-12 { 
	margin-top: 12px; 
}

.margin-top-16 { 
	margin-top: 16px; 
}

.margin-top-20 {
	margin-top: 20px;
}

.margin-top-25 {
	margin-top: 25px;
}
.margin-top-28 {
	margin-top: 28px;
}

.margin-top-30 {
	margin-top: 30px;
}

.margin-top-36 {
	margin-top: 30px;
}

.margin-top-40 {
	margin-top: 40px;
}
.margin-top-45 {
	margin-top: 45px;
}

.margin-top-55 {
	margin-top: 55px;
}

.margin-top-60 {
	margin-top: 60px;
}

.margin-top-65 {
	margin-top: 65px;
}

.margin-top-76 {
	margin-top: 76px;
}

.margin-bottom-40 {
	margin-bottom: 40px;
}

/*********** margin bottom **********/

.margin-bottom-5 { 
	margin-bottom: 5px; 
}

.margin-bottom-45 {
	margin-bottom: 45px;
}

/********************** titoli *****************/

.title-1, .title-2, .title-3, .title-4 {
	font-family: Plain, sans-serif;
	color: #000;
}

.title-1 {
	font-size: 25px;
	line-height: 30px;
}
.title-2 {
	font-size: 20px;
	line-height: 24px;
}
.title-3 {
	font-size: 14px;
	line-height: 17px;
}

.title-4 {
	font-size: 12px;
	line-height: 14px;
}

.sub-title-2, .sub-title-3 {
	font-family: 'Jesolo Mono';
	font-size: 12px;
	line-height: 14px;
}

.sub-title-2 {
	color: #ADADAC;
} 

.sub-title-3 {
	color: #000000;
}

/********************** paragrafi  **********************/

.paragrafo-1, .paragrafo-2 {
	text-align: left;
	color: #000000;	
}

.paragrafo-1 {
	font-family: Plain, sans-serif;
	font-size: 14px;
	line-height: 19px;
}
.paragrafo-2 {
	font-family: 'Jesolo Mono';
	font-size: 12px;
	line-height: 14px;
}


/********************** posizione pulsanti  *****************/

.forniture {
	left: 30%;
	top: 35%;
}
.guarcino {
	bottom: 22%;
	left: 13%;
	line-height: 14px !important;
	width: 112px;
}
.eos {
	bottom: 44%;
	left: 39%;
}
.touch {
	bottom: 59%;
	left: 48%;
}
.texte {
	top: 28%;
	left: 63%;
}
.flooring {
	bottom: 27%;
	left: 64%;
}
.plana {
	bottom: 9%;
	left: 54%;
}

/********************** input *****************/

.input-brand {
    height: 76px;
    margin-bottom: 0;
}

/********************** btn *****************/

.btn-ntd {
	border-radius: 100px;
	height: 30px;
	width: 93px;
	border: 1px solid #000000;
	background: #FFFFFF;
	font-family: 'Jesolo Mono';
	font-size: 12px;
	color: #000000;
	opacity: 1;
  	transition: 0.3s;
  	display: inline-block;
  	line-height: 20px;
}
.btn-neo {
	border-radius: 100px;
	height: 30px;
	width: 110px;
	border: 1px solid #000000;
	background: #FFFFFF;
	font-family: 'Jesolo Mono';
	font-size: 12px;
	color: #000000;
	opacity: 1;
  	transition: 0.3s;
  	display: inline-block;
  	line-height: 20px;
}

.btn-ntd:hover, .btn-neo:hover {
	opacity: 0.65;
	border: 1px solid #606060;
}

.btn-newh {
	min-height: 30px;
	padding: 10px 15px;
	line-height: 14px;
	font-size: 16px;
	border: 1px solid #000;
	color: #000;
	background: #fff;
	font-family: Plain, sans-serif;
	display: inline-block;
	/*transition: 0.3s;*/
	position: absolute;
	border-radius: 0px;
}
.btn-newh:hover {
 	background: #000;
	color: #fff;
}

.btn-stay {
	width: 140px !important;
	margin: 45px 15px;
}

/******************* lightbox *****************/
.modal-backdrop.show {
    opacity: 0.9;
}
.modal-backdrop {
	background-color: #fff;
}
.modal-content {
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	background-color: unset;	
}
.modal-body {
	padding: 0;
}
.modal-footer {
	padding: 0;
	justify-content: flex-start;
}
.modal-footer span {
	display: inline-block;
	margin-left: 20px;
}


/******************* panel *****************/
#account-panel.open, #information-panel.open {
	visibility:visible;
	z-index:6;
	transition:z-index 0s
}
#account-panel.open .slide-panel-container__panel, #information-panel.open  .slide-panel-container__panel {
	transform:translateX(0)
}

.btn--close--account, .btn--close--information {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='utf-8'?%3E%3C!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Livello_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 82.8 72.9' style='enable-background:new 0 0 82.8 72.9;' xml:space='preserve'%3E%3Cpolygon points='83.1,2.8 80.4,-0.2 41.4,33.8 2.4,-0.2 -0.2,2.8 38.4,36.5 -0.2,70.1 2.4,73.1 41.4,39.1 80.4,73.1 83.1,70.1 44.5,36.5 '/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}

.input-brand.textarea {
    height: unset;
    margin-top: 55px;
}

.input-brand.textarea textarea {
	resize: vertical;
	border: 1px solid #1a1919;
	height: 300px;
	font-size: 1.5em;
	color: #000 !important;
	padding: 10px;
}

/******************* Accordion *****************/
.card {
	border-bottom: 1px solid #000 !important;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	padding-bottom: 12px;
	padding-top: 12px;
}

.card-header {
	background: unset;
	border: none;
	padding: 0;
	cursor: pointer;
}

.card-body {
	padding: 0;
} 

.arrow-accordion {
	position: absolute;
	right: 1.9vw;
}

/****** eschi *******/


.esci, .esci-cdgspa, .esci-logout {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #fff url('../svg/Paesaggio.svg') center center / 100%;
	z-index: 1;
	display: none;
	opacity: 0;
	transition: 0.3s;
}

.esci.show, .esci-cdgspa.show, .esci-logout.show {
	opacity: 1;
}



.cestino {
    display: inline-block;
    position: absolute;
    right: 0;
    top: -3px;
}





#paesaggio {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.back {
	font-family: 'Jesolo Mono';
	font-size: 12px;
	color: #000000;
	margin-top: 15px;
	display: block;
	opacity: 1;
	transition: 0.3s;
	padding-left: 12px;
	position: relative;
}
.back img {
	position: absolute;
	left: 0;
	top: 3px;
}
.back:hover {
	color: #000;
	opacity: 0.65;
}

/*
.col-2.margin-top-40:last-child {
    padding-right: 1.9vw;
}
.col-2.margin-top-40:first-child {
    padding-left: 1.9vw;
}

.col-2.margin-top-40.first {
    padding-left: 1.9vw;
}
.col-2.margin-top-40 {
    padding-right: 1vw;
    padding-left: 1vw;
}
.col-2.margin-top-40.last {
    padding-right: 1.9vw;
}

 .pdl-1 { 
 	padding-left: 1vw;
 }
 
 .pdr-1 { 
 	padding-right: 1vw;
 }

*/


.img-64 {
	height: 64px;	
}

.img-1600 {
	
	display: block;
	padding-top: 75%;
	width: 85px;
	margin-bottom: 10px;
	
}

.eos-prop {
	width: 85px; 
	height: 64px;
}
.eos-title {
	width: 85px;
	word-break: break-word;
}


 .mdl-1 { 
 	display: inline-block;
 }
 
.saved {
	position: fixed;
	z-index: 999999;
	left: auto;
	right: 30px;
	bottom: 100px;
	height: 30px;
	width: 93px;
	border: 1px solid #adadac;
	text-align: center;
	font-size: 12px;
	font-family: 'Jesolo Mono';
	line-height: 30px;
	border-radius: 100px;
	color: #ADADAC;
	opacity: 0;
	transition: 0.3s;
} 
 
.saved.show {
	opacity: 1;
} 
 
.pad h2 {
	margin-top: 2px;
} 
 
@media  (max-width: 1024px) { 
	/*.link-nav > a {
    	font-size: 13px;
	}*/
	
	.link-nav > a {
		padding: 0;
	}
	.link-nav {
	    height: 35px;
        margin-left: 10px;
	}
	
	.pad h2 {
		margin-top: 5px;
	}
	
}

@media only screen and (min-device-width: 310px) 
                   and (max-device-width: 840px) 
                   and (orientation: landscape) {

	.main-navigation__logo {
		width: 70px;
	}
	.title-1 {
	    font-size: 20px;
	    line-height: 25px;
	}
}

.margin-top-t {
	margin-top: 12px;
}

@media (max-width: 1300px) {
	.margin-top-t {
		margin-top: 12px;
	}
}

@media (max-width: 1440px) {
	
	.mdl-1, .pdr-1, .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-phablet, .col-phablet-1, .col-phablet-2, .col-phablet-3, .col-phablet-4, .col-phablet-5, .col-phablet-6, .col-phablet-7, .col-phablet-8, .col-phablet-9, .col-phablet-10, .col-phablet-11, .col-phablet-12, .col-phablet-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto, .col-xxl, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl-auto {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.row, .row-prd {
	    margin-right: -8px !important;
	    margin-left: -8px !important;
	}
	
}

@media (min-width: 1440px) {
	
	 .mdl-1, .pdr-1, .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-phablet, .col-phablet-1, .col-phablet-2, .col-phablet-3, .col-phablet-4, .col-phablet-5, .col-phablet-6, .col-phablet-7, .col-phablet-8, .col-phablet-9, .col-phablet-10, .col-phablet-11, .col-phablet-12, .col-phablet-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto, .col-xxl, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl-auto {
		padding-right: 9px !important;
		padding-left: 9px !important;
	}
	.row, .row-prd {
	    margin-right: -9px !important;
	    margin-left: -9px !important;
	}
	
}

@media (min-width: 1920px) {
	
	 .mdl-1, .pdr-1, .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-auto, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md-auto, .col-phablet, .col-phablet-1, .col-phablet-2, .col-phablet-3, .col-phablet-4, .col-phablet-5, .col-phablet-6, .col-phablet-7, .col-phablet-8, .col-phablet-9, .col-phablet-10, .col-phablet-11, .col-phablet-12, .col-phablet-auto, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto, .col-xxl, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl-auto {
		padding-right: 12px !important;
		padding-left: 12px !important;
	}
	.row, .row-prd {
	    margin-right: -12px !important;
	    margin-left: -12px !important;
	}
	
	.title-1 {
		font-size: 28px;
		line-height: 34px;
	}
	.title-2 {
		font-size: 22px;
		line-height: 27px;
	}
	.title-3 {
		font-size: 15px;
		line-height: 18px;
	}
	
	.title-4 {
		font-size: 13px;
		line-height: 15px;
	}
	
	.sub-title-2, .sub-title-3 {
		font-family: 'Jesolo Mono';
		font-size: 13px;
		line-height: 15px;
	}
	
	.paragrafo-1 {
		font-family: Plain, sans-serif;
		font-size: 18px;
		line-height: 18px;
	}
	.paragrafo-2 {
		font-family: 'Jesolo Mono';
		font-size: 13px;
		line-height: 15px;
	}
	
	
	.btn-ntd {
		font-size: 13px;
		line-height: unset;
	}
	
	.btn-neo {
		font-size: 13px;
		line-height: unset;
	}
	
	.btn-newh {
		font-size: 17px;
		line-height: unset;
	}
	
	.img-1600 {
		width: 150px;
	}

	.img-64 {
		height: 120px;	
	}
	
	.eos-prop {
		width: 125px; 
		height: 92px;
	}
	.eos-title {
		width: 125px;
	}
}

