<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-- 0. Template ----------------------------------------------------------- --*/
*{
  user-select: none;
 
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

html{
 overscroll-behavior: none;
}

body{
  margin: 0;
  padding: 0;
	font-family: proxima-nova, sans-serif;	
  background-color: #282828;
  background: linear-gradient(45deg, #282828, #000000);
}

p, ul, li{
  font-size: 14px;
	line-height: 140%;
  margin: 5px 0;
}

h1, h2, h3, h4, h5, h6{
  margin: 0 0 10px;
  font-weight: 500;
  color: #023863;
}

#fb-root{
  display: none;
}


/*-- 1. Home ----------------------------------------------------------- --*/
.kiosk-screen{
  position: relative;
  overflow: hidden;
  max-width: 1366px;
  max-height: 1024px;
  width: 100%;
  height: 100%;
  margin: auto;
  /*border-radius: 20px;*/
}

.k-panel{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #eaeaea;
	animation: fadeInAnimationPanel ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}



#kiosk-panel-0{
  z-index: 0;
}

#kiosk-panel-0 .shader{
  background: rgb(0 0 0 / 60%);
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}

#kiosk-panel-0 .video-background{
	width: 100%;
	height: 100vh;
	background: #000;
	background: linear-gradient(45deg, #000000, #262626);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
  z-index: 1;
}

#kiosk-panel-0 .video-background iframe{
	width: 100vw;
	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
	min-height: 100vh;
	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	animation: fadeInAnimation ease 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

#kiosk-panel-0 .content{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

#kiosk-panel-0 .content &gt; div{
  
}

#kiosk-panel-0 .content img.logo{
  display: block;
  width: 400px;
  height: auto;
}

#kiosk-panel-0 .content a.button{
  color: #fff;
  display: table;
  margin: 30px auto 0;
  border: 2px solid #fff;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition-duration: .2s;
}

#kiosk-panel-0 .content a.button:hover{
  background-color: #f7901e;
  cursor: pointer !important;
}

#kiosk-panel-0.timer-refresh{
  display: block;
  z-index: 99999;
}
/*
#kiosk-panel-0.timer-refresh .content a.button{
  display: none; 
}*/



/**/
#kiosk-panel-1{
  z-index: 1;
}

#kiosk-panel-2{
  z-index: 2;
}

#kiosk-panel-3{
  z-index: 3;
}

#kiosk-panel-4{
  z-index: 4;
}


.k-panel &gt; .panel-split{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 96%;
  height: calc(100% - 70px);
  padding: 0;
}

.k-panel &gt; .panel-split .left{
  flex: 0 0 70%; 
  height: calc(100% + 70px);
  display: flex;
  align-items: center;
}

.k-panel &gt; .panel-split .left &gt; div{
  width: 100%; 
}

.k-panel &gt; .panel-split .left .house{
  position: relative;
  overflow: hidden;
  margin-top: -20px;
  height: 80%;
  box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.k-panel &gt; .panel-split .left .house img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.k-panel &gt; .panel-split .left .house.exterior img{
  object-position: 50% 60%;
}

.k-panel &gt; .panel-split .left .house.interior img{
  object-position: 50% 80%;
}

.k-panel &gt; .panel-split .left .house img.next{
  opacity: 0;
  transition-duration: .4s;
}

.k-panel &gt; .panel-split .left .house img.next.active{
  opacity: 100;
}




.k-panel &gt; .panel-split .left .kitchen-information-popup{
  position: absolute;
  bottom: 20px;
  left: 20px;
}


.kitchen-information-popup .kip-button{
  position: relative;
  z-index: 2;
  height: 30px;
  width: 30px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  cursor: pointer !important;
  background-color: #023863;
  box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
}

.kitchen-information-popup .kip-button img{
  pointer-events: none !important;
  position: relative !important;
  display: block !important;
  width: 15px !important;
  height: 15px !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
}

.kitchen-information-popup.active .kip-button{
  background-color: #f78e1f;
}

.kitchen-information-popup .kip-infos{
  display: none;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 430px;
  background: #fff;
  text-align: left;
  border-radius: 15px;
  box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
}


.kitchen-information-popup .kip-infos h3{
  font-size: 12px; 
  font-weight: 600;
  margin: 5px 0 10px;
}

.kitchen-information-popup .kip-infos p,
.kitchen-information-popup .kip-infos li{
  font-size: 12px;
  font-weight: 500;
}

.kitchen-information-popup.active  .kip-infos{
  display: block;
}
.kitchen-information-popup.active  .kip-infos .kip-info{
  display: none;
}
.kitchen-information-popup.active  .kip-infos .kip-info.active{
  display: block;
}

.kitchen-information-popup.active  .kip-infos .kip-info &gt; div{
  padding: 25px 35px;
}

.kitchen-information-popup.active  .kip-infos .kip-info .kip-info-description ul{
  padding-left: 14px;
}



.kitchen-information-disclaimer{
  opacity: 0;
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
  text-align: right;
  transition-duration: .3s;
}

.kitchen-information-disclaimer.active{
  opacity: 1;
}

.kitchen-information-disclaimer p{
  margin: 0;
  font-size: 12px;
  text-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
}













.k-panel &gt; .panel-split .right{
  flex: 0 0 30%;
}

.k-panel &gt; .panel-split .right &gt; div{
  padding: 0 5% 0 10%;
}

.k-panel .house-selections .intro{
  text-align: left;
} 

.k-panel .house-selections .intro h2{

}

.k-panel .house-selections .selections{
  display: flex;
  flex-wrap: wrap;
}

.k-panel .house-selections .selections h3{
  margin: 15px 0 5px;
  text-align: left;
  font-size: 14px;
  flex: 0 0 100%;
}

.k-panel .house-selections .selections h3:first-of-type{
  margin-top: 0; 
}

.k-panel .house-selections .selections .selection{
  display: flex;
  flex-wrap: wrap;
  background-color: #fff; 
  border-radius: 40px;
  text-align: left;
  font-size: 14px;
  align-items: center;
  margin: 2px;
  padding: 10px 20px;
  border: 2px solid #fff;
  transition-duration: .2s;
  flex: 0 0 100%;
  flex: 0 0 calc(50% - 48px);
}

.k-panel .house-selections .selections .selection.disable-click{
  pointer-events: none !important;
}


.k-panel .house-selections .selections .selection:hover{
  background-color: #fff;
  cursor: pointer !important;
  border-color: #023863;
}

.k-panel .house-selections .selections .selection.active{
  background-color: #fff; 
  border-color: #f78e1f;
}

.k-panel .house-selections .selections .selection .scheme{
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #f78f1f;
  margin: 0 12px 0 0;
}



.k-panel .house-selections .selections .selection p{
  display: flex;
  align-items: center;
  font-size: 12px;
  margin: 0;
  text-align: left;
}

.k-panel .house-selections .selections .selection p span.colour-circle{
  display: inline-flex;
  width: 15px;
  height: 15px;
  background-color: #c5c5c5;
  border-radius: 50%;
}

.k-panel .house-selections .selections .selection p span.colour-name{
  display: inline-flex;
  margin: 1px 0 0 5px;
}

.k-panel .house-selections .selections .selection.selection-exterior[data-colour-name="Sand"] span.colour-circle{background-color: #ebdfb7;}




.k-panel .house-selections .selections .selection.selection-exterior[data-colour-name="Desert"] span.colour-circle{background-color: #d07965;}
.k-panel .house-selections .selections .selection.selection-exterior[data-colour-name="Dusk"] span.colour-circle{background-color: #efefef;}
.k-panel .house-selections .selections .selection.selection-exterior[data-colour-name="Forest"] span.colour-circle{background-color: #c9b6a0;}
.k-panel .house-selections .selections .selection.selection-exterior[data-colour-name="Smoke"] span.colour-circle{background-color: #dbc9bf;}
.k-panel .house-selections .selections .selection.selection-exterior[data-colour-name="Storm"] span.colour-circle{background-color: #535954;}
.k-panel .house-selections .selections .selection.selection-exterior[data-colour-name="Tidal"] span.colour-circle{background-color: #ddd7d4;}

.k-panel .house-selections .selections .selection.selection-interior[data-colour-scheme="Chic"] span.colour-circle{background-color: #886d69;}
.k-panel .house-selections .selections .selection.selection-interior[data-colour-scheme="Organic"] span.colour-circle{background-color: #dfd0c9;}
.k-panel .house-selections .selections .selection.selection-interior[data-colour-scheme="Coastal"] span.colour-circle{background-color: #ddd8da;}
.k-panel .house-selections .selections .selection.selection-interior[data-colour-scheme="Scandinavian"] span.colour-circle{background-color: #c0afa4;}
.k-panel .house-selections .selections .selection.selection-interior[data-colour-scheme="Urban"] span.colour-circle{background-color: #A08A8D;}
.k-panel .house-selections .selections .selection.selection-interior[data-colour-scheme="Industrial"] span.colour-circle{background-color: #3e3631;}





.k-panel .panel-switch-buttons{
  position: absolute;
  bottom: 80px;
  right: 50px;
  display: flex;
  align-items: center;
}

.k-panel .panel-switch-back-button{
  padding-right: 10px;
}

.k-panel .panel-switch-back-button img{
  display: block;
  width: 30px;
  height: 30px;
}

.k-panel .panel-switch-next-button{
  color: #fff;
  border-radius: 30px;
  font-size: 12px;
  margin: 0;
  padding: 2px;
  height: 30px;
  width: 70px;
  background: #023863;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
}

.k-panel .panel-switch-next-button.view-summary{
  width: 110px;
}


/*-- 1. Select Floorplan --*/
#kiosk-panel-1.k-panel &gt; .panel-split{
  width: 100%;
}


/*-- 2. Select Exterior --*/

.k-panel.k-panel-exterior .house-selections-exterior .selections{

}

.k-panel.k-panel-exterior .house-selections-exterior .selections &gt; .facade{
 /* display: flex;
  flex-wrap: wrap;
  flex: 0 0 150px;
  margin: 0 15px 0 0;*/
}

.k-panel.k-panel-exterior .house-selections-exterior .selections &gt; .colour{
  flex: 0 0 auto;
}


/* settings */
.k-panel.k-panel-exterior .house-selections-exterior[data-garage-size="Single"] .selection-exterior:not([data-garage-size="Single"]),
.k-panel.k-panel-exterior .house-selections-exterior[data-garage-size="Double"] .selection-exterior:not([data-garage-size="Double"]){
  display: none;
}

.k-panel.k-panel-exterior .house-selections-exterior[data-design-name="Traditional"] .selection-exterior:not([data-design-name="Traditional"]),
.k-panel.k-panel-exterior .house-selections-exterior[data-design-name="Vogue"] .selection-exterior:not([data-design-name="Vogue"]),
.k-panel.k-panel-exterior .house-selections-exterior[data-design-name="Contemporary"] .selection-exterior:not([data-design-name="Contemporary"]),
.k-panel.k-panel-exterior .house-selections-exterior[data-design-name="Classic"] .selection-exterior:not([data-design-name="Classic"]){
  display: none;
}
/**/












/*
#kiosk-panel-1 .video-background{
	width: 100%;
	height: 100vh;
	background: #000;
	background: linear-gradient(45deg, #000000, #262626);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
  z-index: 1;
}

#kiosk-panel-1 .video-background iframe{
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh; 
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	animation: fadeInAnimationIFrameVideo ease 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

*/



/*-- Panel Upgrades --*/
#kiosk-panel-4 .introduction{
  margin: 100px auto 20px;
  max-width: 500px;
  width: 100%;
}

#kiosk-panel-4 .introduction h2{
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}



#kiosk-panel-4 .upgrades-panel-horizontal-swipe{
  padding: 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  /* white-space: nowrap; */
  -ms-overflow-style: none;
  scrollbar-width: none;
}


#kiosk-panel-4 .upgrades-panel-horizontal-swipe &gt; div {
  width: 1366px;
  display: flex;
  flex-wrap: nowrap;
  padding: 0 3%;
  height: 100%;
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade{
  overflow: hidden;
  flex: 0 0 300px;
  width: 300px;
  height: 430px;
  margin: 15px;
  border-radius: 20px;
  background-color: #fff;
  background: none;
  box-shadow: 2px 2px 10px rgb(0 0 0 / 10%);
  box-shadow: inset 0 0 0 5px #fff;
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade.spacer{
  background: none;
  pointer-events: none;
  opacity: 0;
  flex: 0 0 100px;
  width: 100px;  
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade img.product-upgrade-photo{
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade &gt; div{
  padding: 20px; 
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade .content{
  margin: 15px 0 0;
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade .content h3{
  text-align: left;
  margin: 0 0 10px 20px;
  font-weight: 600;
  font-size: 15px;
}


#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade .content .upgrades-title-description{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2px 0;
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade .content .upgrades-title-description .description{
  flex: 0 0 20px;
  height: 35px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  cursor: pointer !important;
  padding-left: 10px;
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade .content .upgrades-title-description .description img{
  width: 10px;
  height: 10px;
  display: block;
  background: #023863;
  border-radius: 50%;
  padding: 5px;
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade .content .upgrades-title-description  a.pu-title{
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 40px;
  text-align: left;
  font-size: 12px;
  align-items: center;
  box-shadow: 2px 2px 2px rgb(0 0 0 / 5%);
  margin: 2px;
  padding: 10px 20px;
  border: 2px solid #f1f1f1;
  transition-duration: .2s;
  flex: auto;
  color: #023863;
  font-size: 12px;
  cursor: pointer !important;
}

#kiosk-panel-4 .upgrades-panel-horizontal-swipe .product-upgrade .content a.pu-title.active{
  color: #f78e1f;
  background-color: #fff;
  border-color: #f78e1f;
}


.fancybox-container .pi-description{
  width: 800px;
  height: auto;
  border-radius: 30px;
  box-shadow: 2px 2px 2px rgb(0 0 0 / 5%);
}

.fancybox-container .pi-description .fancybox-button{
  opacity: 1;
}

.fancybox-container .pi-description h2{  
/*  border-bottom: 2px solid #d9d9d9;
  padding-bottom: 10;
  margin-bottom: 15px;*/
  color: #fff;
  background: #023863;
  margin: -15px 0 30px 0;
  height: 30px;
  font-size: 12px;
  display: flex;
  align-items: center;
  text-align: left;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 50px;
  width: max-content;
}

.fancybox-container .pi-description h3{
  margin-top: -15px;
  font-size: 16px;
  font-weight: 600;
}

.fancybox-container .pi-description ul{
  margin: 0;
  padding-left: 15px;
}

.fancybox-container .pi-description .fancybox-button.fancybox-close-small{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #023863;
  width: 30px;
  height: 30px;
  padding: 5px;
  padding: 0;
  top: 30px;
  right: 30px;
}

.fancybox-container .pi-description .fancybox-button.fancybox-close-small svg{
  background-color: #023863;
  color: #fff;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.fancybox-container .pi-description table{
  border-collapse: collapse;
  margin: 15px 0;
}

.fancybox-container .pi-description table tr{

}

.fancybox-container .pi-description table tr td{
  padding: 5px 10px;
  border: 1px solid #eeeeee;
}










/*-- Progress Bar --*/
#progressbar{
  position: absolute;
  top: 20px;
  left: 30%;

  margin: 0 auto;
  height: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  transition-duration: .5s;
}

#progressbar.active{
  pointer-events: all;
  left: 50px;

}

#progressbar.active a{
  color: #023863;
}

#progressbar a{
  position: relative;
  color: #cacaca;
  display: inline-block;
  font-size: 12px;
  margin: 0;
  padding: 10px 15px;
  font-weight: 600;
  cursor: pointer !important;
  transition-duration: .2s;
}

#progressbar a:first-of-type{
  margin-left: 0; 
}

#progressbar a:last-of-type{
  margin-right: 0; 
}

#progressbar a.active{
  color: #f78e1f;
}

#progressbar a:hover:after{
  content: "";
  background: #f78e1f;
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/*-- Summary --*/
#summary{
  position: absolute;
  top: 22px;
  right: 50px;
  margin: 0 auto;
  height: 30px;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  transition-duration: .5s;
  opacity: 0;
}

#summary a{
  font-size: 12px;
  color: #fff;
  background-color: #f78e1f;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 20%);
  margin: 2px;
  border-radius: 40px;
  cursor: pointer !important;
  transition-duration: .5s;
  padding: 4px;
  height: 35px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}

#summary a:hover{

  cursor: pointer !important;
}

#summary a.active{
  background-color: #023863;
  width: 35px;
}

#summary .price-from{
  position: relative;
  color: #F78E21;
  display: inline-block;
  font-size: 14px;
  margin: 0;
  padding: 10px 15px;
  font-weight: 500;
  cursor: pointer !important;
  transition-duration: .2s;
}

#summary.active{
  opacity: 1;
  pointer-events: all;
}

/*-- Summary Popup --*/
.fancybox-container{
  max-width: 1366px;
  max-height: 1024px;
  left: 0;
  right: 0;
  margin: auto;
}

.fancybox-bg {
  background: rgb(255 255 255 / 20%);
}

.fancybox-button.fancybox-close-small{
  background-color: #f78e1f;
  color: #fff;
  padding: 10px;
  border-radius: 30px;
  top: 10px;
  right: 10px;
  transition-duration: .2s;
}

.fancybox-button.fancybox-close-small svg{
  background-color: #f78e1f;
  color: #fff;
}



#kiosk-panel-toolbar-summary{
  top: -150%;
  height: calc(100% - 50px);
  height: 100%;
}

#kiosk-panel-toolbar-summary.active{
  top: 0; 
  /*box-shadow: 0 200px 100px rgb(0 0 0 / 30%);*/
  z-index: 14 !important;
}

#kiosk-panel-toolbar-summary .panel{
  height: 100%;
}

#kiosk-panel-toolbar-summary .summary-panel-title{
  position: absolute;
  top: 20px;
  left: 30px;
  font-weight: 700;
  font-size: 20px;
}






#summary-panel{
  display: flex;
  align-items: center;
  height: calc(100% - 40px);
  height: 100%;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  /* white-space: nowrap; */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#summary-panel &gt; div{
  display: flex;
  flex-wrap: nowrap;
  height: calc(100% - 140px);
}

#summary-panel .sm-panel{
  position: relative;
  height: calc(100% - 50px);
}

/*
#summary-panel .sm-panel h3{
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 12px;
  color: #f78e1f;
}
*/

#summary-panel .summary-floorplan{
  flex: 0 0 500px;
  width: 500px;
  border-right: 2px solid #ececec;
}

#summary-panel .summary-floorplan .sm-panel-introduction{
  position: absolute;
  top: 0;
  left: 0;
}

#summary-panel .summary-floorplan .sm-panel-introduction h3{
  position: relative;
}

#summary-panel .summary-floorplan img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.1);
}

#summary-panel .summary-details .summary-house-tables{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 40px 0;
}

#summary-panel .summary-details .summary-house-table{
}

#summary-panel .summary-details .summary-house-table.sht1{
  flex: 0 0 220px;
  width: 220px;
}

#summary-panel .summary-details .summary-house-table.sht2,
#summary-panel .summary-details .summary-house-table.sht3{
  flex: 0 0 280px;
  width: 280px;
}

#summary-panel .summary-details h4{
  font-weight: 700;
  font-size: 30px;
  margin: 0 0 5px;
}

#summary-panel .summary-details .summary-house-table &gt; div{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 1px solid #cfcfcf;
  min-height: 30px;
  justify-content: space-between;
  overflow: hidden;
}

#summary-panel .summary-details .summary-house-table p{
  padding: 5px 0;
  margin: 0;
  line-height: 110%;
}

#summary-panel .summary-details .summary-house-table p.house-sm-val{
  color: #023863;
  text-align: right;
}

#summary-panel .summary-details .summary-house-table.sht-upgrades p.house-sm-val span{
  color: #999999;
  text-decoration: line-through;
}

#summary-panel .summary-details .summary-house-table.sht-upgrades p.house-sm-val span.optionSelected{
  color: #023863;
  text-decoration: none;
}

#summary-panel .summary-details .summary-house-cta a#summary-send-enquiry{
  background-color: #f78f1f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  height: 45px;
  width: 145px;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

#summary-panel .summary-details .summary-house-cta a#summary-save-selections{
  font-size: 12px;
  color: #023863;
}

#summary-panel .summary-details .summary-house-cta a#summary-save-selections span{
  border-bottom: 2px solid #023863;
  padding: 0 5px 2px;
}

#summary-panel .summary-details .summary-house-photos{
  display: flex;
  flex-wrap: nowrap;
  margin: 0 0 15px;
}

#summary-panel .summary-details .summary-house-photos a{
  display: block;
  flex: 0 0 500px;
  width: 500px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 15px 0 0;
}

#summary-panel .summary-details .summary-house-photos a img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#summary-panel .summary-details .summary-house-photos a#summary-photo-exterior img{
  object-position: 50% 60%;
}

#summary-panel .summary-details .summary-house-photos a#summary-photo-interior img{
  object-position: 50% 70%;
}

#summary-panel .summary-details #design-introduction{
  max-width: 870px;
}

#summary-panel .summary-details{
  margin: 0;
  display: flex;
  text-align: left;
  align-items: center;
}

#summary-panel .summary-details &gt; div{
  width: 100%;
  height: 490px;
}

#summary-panel .summary-details.sd-1{
  flex: 0 0 860px;
  width: 860px;
}

#summary-panel .summary-details.sd-1 &gt; div{
  padding: 0 30px 0 0;
}

#summary-panel .summary-details.sd-2{
  flex: 0 0 1090px;
  width: 1090px;  
}

#summary-panel .summary-details.sd-2 &gt; div{
  padding: 0 30px; 
}

#summary-panel .summary-details .summary-design-name{
  font-weight: 700;
  font-size: 35px;
}

#summary-panel .summary-details ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#summary-panel .summary-details ul li{
  display: inline-flex;
  margin: 0 20px 0 0;
}

#summary-panel .summary-details ul li span{
  margin: 0 6px 0 0;
  font-size: 15px;
  color: #999999;
}

#summary-panel .summary-details ul li img{
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

#summary-panel #summary-form{
  flex: 0 0 600px;
  width: 600px;
  margin: 0;
  display: flex;
  text-align: left;
  align-items: center;
}

#summary-panel #summary-form &gt; div{
  width: 100%;
  height: 490px;
}

#summary-panel #summary-form form{
  background: #fff;
  padding: 20px 30px;
  border-radius: 10px;
}

#summary-panel #summary-form form .freeform-label{
  font-size: 12px;
  margin: 0 0 5px;
}

#summary-panel #summary-form form .freeform-label.interested_finance{
  display: flex;
  align-items: center;
}


#summary-panel #summary-form form input,
#summary-panel #summary-form form select,
#summary-panel #summary-form form textarea{
  padding: 10px;
  height: 30px;
  font-size: 12px;
  background-color: #fff;
  border: 1px solid #ccc;
}

#summary-panel #summary-form form select{
  height: 40px;
  font-size: 12px;
}

#summary-panel #summary-form form .freeform-row.hidden:not(.show){
  position: absolute !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#summary-panel #summary-form form .freeform-row .freeform-column{
  padding: 5px 0;
  margin: 0 10px;
}

#summary-panel #summary-form form button[type="submit"]{
  position: relative;
  overflow: hidden;
  background-color: #f78f1f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  height: 45px;
  width: 145px;
  margin-right: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: none;
}

.input-group-one-line label{
	display: flex !important;
	align-items: center;
	font-size: 12px;
  }

  .input-group-one-line label input{
	height: 10px !important;
  }



    /*
#summary-panel #summary-form form button[type="submit"]:before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
      120deg,
      rgba(255,255,255, 0) 30%,
      rgba(255,255,255, .8),
      rgba(255,255,255, 0) 70%
  );
  top: 0;
  left: -100px;
  animation: shine 2s infinite linear;
  opacity: 50;
}

@keyframes shine {
  0% {left: -100px}
  20% {left: 100%}
  100% {left: 100%}
}
*/

.freeform-form-has-errors{
  color: #f30000;
  font-size: 12px;
  margin: 0 -5px;
}

#summary-panel #summary-form form .freeform-row .freeform-column .freeform-errors,
#summary-panel #summary-form form .freeform-row .freeform-column .ff-errors{
  color: #f30000;
  font-size: 12px;
  margin: 0;
}




#summary-panel .summary-spacer{
  display: block;
  width: 50px;
  flex: 0 0 50px;
}













































/*-- Toolbar --*/
#toolbar{
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10%;
  height: 70px;
  width: 100%;
  z-index: 17;
  /*box-shadow: 0 -2px 30px rgb(0 0 0 / 20%);*/

  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInAnimationToolbarPanel ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
  border-radius: 20px 20px 0 0;
}

#toolbar &gt; div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 30px;
}

#toolbar .logo img{
  display: block;
  height: 20px;
  width: auto;
}

#toolbar .buttons{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

#toolbar .buttons a{
  display: block;
  width: 35px;
  height: 35px;
  padding: 0 3px;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer !important;
  transition-duration: .2s;
}

#toolbar .buttons a#button-home{background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-home.png);}
#toolbar .buttons a#button-inspiration-gallery{background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-gallery.png);}
#toolbar .buttons a#button-location{background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-location.png);}  
#toolbar .buttons a#button-information{background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-information.png);}  
#toolbar .buttons a#button-contact{background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-phone.png);}


#toolbar .buttons a#button-home.active,
#toolbar .buttons a#button-home:hover{
  background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-home-blue.png);
}

#toolbar .buttons a#button-inspiration-gallery.active,
#toolbar .buttons a#button-inspiration-gallery:hover{
  background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-gallery-blue.png);
}

#toolbar .buttons a#button-location.active,
#toolbar .buttons a#button-location:hover{
  background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-location-blue.png);
}

#toolbar .buttons a#button-information.active,
#toolbar .buttons a#button-information:hover{
  background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-information-blue.png);
}

#toolbar .buttons a#button-contact.active,
#toolbar .buttons a#button-contact:hover{
  background-image: url(https://fairmontfirst.com.au/images/fairmont-first/kiosk/kiosk-icon-phone-blue.png);
}


.toolbar-panel .toolbar-cta a.toolbar-cta-button{
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  width: 120px;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  background-color: #f78e1f;
  box-shadow: 2px 2px 5px rgb(0 0 0 / 10%);
  transition-duration: .5s;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 40px;
  cursor: pointer !important;
}


.toolbar-panel .toolbar-panel-horizontal-swipe{
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  height: 100%;
}


/*-- Toolbar Panels --*/
.toolbar-panel{
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;

  /*
	animation: fadeInAnimationPanel ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
  */
  display: block;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  transition-duration: .8s;
  background-color: #eaeaea;
  /*box-shadow: 0 -100px 100px rgb(0 0 0 / 10%);*/
  top: 150%;
}

.toolbar-panel .toolbar-panel-close{
  position: absolute;
  top: 30px;
  right: 30px;
}


.toolbar-panel .toolbar-panel-close img{
  display: block;
  width: 50px;
  height: auto;
}

.toolbar-panel.active{
  z-index: 16;
  top: 0;
  pointer-events: all;
}

.toolbar-panel .introduction{
  margin: 50px auto 0;
  max-width: 500px;
  width: 100%;
}

.toolbar-panel .introduction h2{
  font-size: 30px;
  font-weight: 900;
  margin: 0;
}

.toolbar-panel .introduction p{
  color: #023863;
}





/*-- Toolbar Panel Inspiration Gallery --*/
#kiosk-panel-toolbar-inspiration-gallery{

}



#kiosk-panel-toolbar-inspiration-gallery .inspiration-gallery{
  display: flex;
  flex-wrap: nowrap;
  padding: 40px 0;
  height: calc(100% - 350px);
}

#kiosk-panel-toolbar-inspiration-gallery .inspiration-gallery .photo{
  flex: 0 0 30%;
  height: 100%;
  margin: 0 .5%;
  border-radius: 5px;
  overflow: hidden;
}

#kiosk-panel-toolbar-inspiration-gallery .inspiration-gallery .photo a img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#kiosk-panel-toolbar-inspiration-gallery .inspiration-gallery .photo.stack{
  display: flex;
  flex-wrap: wrap;
}

#kiosk-panel-toolbar-inspiration-gallery .inspiration-gallery .photo.stack a{
  display: block;
  flex: 0 0 100%;
  height: 48.5%;
  border-radius: 10px;
  overflow: hidden;
}

#kiosk-panel-toolbar-inspiration-gallery .inspiration-gallery .photo.stack a:first-of-type{
  margin-bottom: 3%; 
}

/*-- Toolbar Location --*/
#kiosk-panel-toolbar-location .introduction{
  max-width: 440px;
}

#kiosk-panel-toolbar-location .toolbar-panel-horizontal-swipe &gt; div{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}

#kiosk-panel-toolbar-location .display-home{
  flex: 0 0 48%;
  white-space: normal;
  text-align: left;
}

#kiosk-panel-toolbar-location .display-home .display-home-photo{
  position: relative;
}

#kiosk-panel-toolbar-location .display-home .display-home-photo img.dh-facade{
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: 50% 100%;
  border-radius: 10px;
  margin: 15px 0;
}

#kiosk-panel-toolbar-location .display-home .display-home-photo img.dh-floorplan{
  display: block;
  width: auto;
  height: 220px;
  position: absolute;
  bottom: -80px;
  right: 0;
}



#kiosk-panel-toolbar-location .display-home .display-home-content h2{
  margin: 0;
}




/*-- Toolbar Information --*/



#kiosk-panel-toolbar-Information .introduction{
  max-width: 440px;
}

#kiosk-panel-toolbar-Information .toolbar-panel-horizontal-swipe &gt; div{
  display: flex;
  flex-wrap: nowrap;
}

#kiosk-panel-toolbar-Information .how-panel{
  flex: 0 0 450px;
  width: 450px;
  margin: 10px 50px;
  overflow: hidden;
  white-space: normal;
  text-align: left;
}

#kiosk-panel-toolbar-Information .how-panel.spacer{
  flex: 0 0 50px;
  width: 50px;
}

#kiosk-panel-toolbar-Information .how-panel img{
  display: block;
  width: 250px;
  height: auto;
  margin: 0;
}

#kiosk-panel-toolbar-Information .how-panel h3{
  font-weight: 600;
  margin: 10px 0;
}

#kiosk-panel-toolbar-Information .how-panel p{
  font-size: 15px;
  color: #023863;
}



/*-- Toolbar Contact  --*/
#kiosk-panel-toolbar-contact .toolbar-panel-horizontal-swipe &gt; div{
  display: flex;
  flex-wrap: nowrap;
  padding: 80px 30px 0;
}

#kiosk-panel-toolbar-contact .contact-panel{
  flex: 0 0 31.33%;
  margin: 1%;
  white-space: normal;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px #00000012;
  border-radius: 30px;
  text-align: left;
}

#kiosk-panel-toolbar-contact .contact-panel &gt; div{
  padding: 40px 40px 30px 40px;
}

#kiosk-panel-toolbar-contact .contact-panel img.cp-photo{
    display: block;
    width: 220px;
    height: auto;
    margin: -120px auto 10px;
}

#kiosk-panel-toolbar-contact .contact-panel h3.cp-name{
  font-weight: 600; 
  margin: 0;
}

#kiosk-panel-toolbar-contact .contact-panel p.cp-title{
  margin: 0 0 20px; 
}

#kiosk-panel-toolbar-contact .contact-panel .cp-phone,
#kiosk-panel-toolbar-contact .contact-panel .cp-email{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  color: #000000 !important;
  text-decoration: none !important;
}

#kiosk-panel-toolbar-contact .contact-panel .cp-phone img,
#kiosk-panel-toolbar-contact .contact-panel .cp-email img{
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

#kiosk-panel-toolbar-contact .contact-panel .cp-qr{
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 30px 0 0;
}

#kiosk-panel-toolbar-contact .contact-panel .cp-qr svg{
  display: block;
  height: 100%;
  width: 100%;
}























@keyframes fadeInAnimationIFrameVideo {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeInAnimationIFramePanel {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeInAnimationToolbarPanel {
	0% {
		opacity: 0;
    transform: translateY(50px);
	}
	100% {
		opacity: 1;
    transform: translateY(0px);
	}
}



/*-- Z. Animation Elements --------------------------------------------------------------------*/
.animate{
  position: relative;
}

.bounce-up.in-view.animate,
.slide-from-left.in-view.animate,
.slide-from-right.in-view.animate,
.fadein.in-view.animate{
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

/*-- animation: bounce up--*/
.bounce-up.animate {
  opacity: 0;
  
  /*-- transition --*/
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  
  /*-- transform --*/
  -moz-transform: translate3d(0px, 50px, 0px);
  -webkit-transform: translate3d(0px, 50px, 0px);
  -o-transform: translate(0px, 50px);
  -ms-transform: translate(0px, 50px);
  transform: translate3d(0px, 100, 0px);
  
  /*-- visibility --*/
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-- animation: slide from left --*/
.slide-from-left.animate {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transform: translate3d(-50px, 0px, 0px);
  -webkit-transform: translate3d(-50px, 0px, 0px);
  -o-transform: translate(-50px, 0px);
  -ms-transform: translate(-50px, 0px);
  transform: translate3d(-50px, 0px, 0px);
}

/*-- animation: slide from right --*/
.slide-from-right.animate {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transform: translate3d(50px, 0px, 0px);
  -webkit-transform: translate3d(50px, 0px, 0px);
  -o-transform: translate(50px, 0px);
  -ms-transform: translate(50px, 0px);
  transform: translate3d(50px, 0px, 0px);
}

@media (max-width: 768px){
  .animate{
    overflow: hidden;
  }
}

.delay-1 {transition-delay: 0.05s !important;}
.delay-2 {transition-delay: 0.10s !important;}
.delay-3 {transition-delay: 0.15s !important;}
.delay-4 {transition-delay: 0.20s !important;}
.delay-5 {transition-delay: 0.25s !important;}
.delay-6 {transition-delay: 0.30s !important;}




/*-- 2.1 Page Designs ----------------------------------------------------------- --*/

#page_designs_content{
	/*background-color: #f9f9f9;*/
	/*background: linear-gradient(0deg, white 0%, #f2f2f2 10%, #f2f2f2 90%, white 100%);*/
}

#page_designs_content .shade-left,
#page_designs_content .shade-right{
  position: absolute;
  width: 3%;
  height: 100%;
  top: 0;
  z-index: 2;
}

#page_designs_content .shade-left{
  background: linear-gradient(90deg, #eaeaea 30%, transparent);
  left: 0;
}

#page_designs_content .shade-right{
  background: linear-gradient(270deg, #eaeaea 30%, transparent);
  right: 0;
}

#page_designs_content &gt; div.main{
	padding: 10px 0;	
  overflow-x: auto;
  overflow-y: hidden;
  /*white-space: nowrap;*/
  
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

#page_designs_content &gt; div.main::-webkit-scrollbar {
  display: none;
}



#page_designs_content &gt; div.shader_bot{
	/*height: 200px;
	background-color: #f9f9f9;
	background: linear-gradient(0deg, #fff, #f9f9f9);*/
}





.designs_filter{
	margin: 0 1% 30px;
	display: flex;
	flex-wrap: wrap;
}

.designs_filter &gt; div.width{
	margin: 0 15px 30px 0;
}

.designs_filter &gt; div.sort a{

}

.designs_filter h3{
  color: #f7901e;
	margin: 0 0 15px;	
	font-size: 22px;
}

.designs_filter .controls{
	display: inline-block;
	margin: 0;
}

.designs_filter .controls a{
	display: inline-block;
	background: #f7f7f7;
	box-shadow: 2px 2px 15px #0000001c;
	padding: 5px 8px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition-duration: .2s;
}

.designs_filter .controls a:hover,
.designs_filter .controls a.active{
	color: #f7901e;
	background: #fff;
}

.designs_filter .controls a:first-of-type{
	border-radius: 30px 0 0 30px;
}

.designs_filter .controls a:last-of-type{
	border-radius: 0 30px 30px 0;
}




/**/

.designs{
  width: 1366px;
	display: flex;
	flex-wrap: nowrap;
  padding: 0 3%;
  height: 100%;
  align-items: center;
}

.designs.show_only_10m .design.lot_width_12{
	flex: 0;
	margin: 0;
	opacity: 0;
	display: none;
}

.designs.show_only_12m .design.lot_width_10{
	flex: 0;
	margin: 0;
	opacity: 0;
	display: none;
}

.designs .design{
	background-color: #f8f8f8;
	flex: 0 0 300px;
  height: 500px;
	margin: 0 12px;
	box-shadow: 2px 2px 10px #00000012;
	overflow: hidden;
	opacity: 1;
	border-radius: 10px;
}

.designs .design:first-of-type{
  margin-left: 0; 
}

.designs .design:last-of-type{
  margin-right: 0; 
}

.slickDesignsFloorPlans{

	width: 100%;
	height: 100%;
      padding: 10px 0;

}

.slickDesignsFloorPlans &gt; div{

}

.slickDesignsFloorPlans .slick-list{
	width: 100%;
	height: 100%;
  overflow: hidden;
}

.slickDesignsFloorPlans .slick-list .slick-track{
	width: 100%;
	height: 100%;

}

.slickDesignsFloorPlans .slick-list .slick-track .slick-slide{

	width: 100%;
	height: 100%;
}



.slickDesignsFloorPlans ul.slick-dots{
	position: absolute;
	bottom: 0;
	width: 100%;
  padding: 0;
	display: flex;
	align-items: center;
	list-style-type: none;
	justify-content: center;
  height: 35px;
  width: max-content;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.slickDesignsFloorPlans ul.slick-dots li a{
	margin: 0;
	cursor: pointer;
	transition-duration: .2s;
	font-weight: 600;
	font-size: 14px;
  padding: 10px;
}

.slickDesignsFloorPlans ul.slick-dots li:after{
	content: "/";
	color: #cdcdcd;
	margin: 0;
}

.slickDesignsFloorPlans ul.slick-dots li:last-of-type:after{
	display: none;
}

.slickDesignsFloorPlans ul.slick-dots li.slick-active a{
	color: #f7901e;	
}

.slickDesignsFloorPlans ul.slick-dots li a:hover{
	/*color: #003963;*/
}

.slickDesignsFloorPlans .slick-arrow.slick-prev,
.slickDesignsFloorPlans .slick-arrow.slick-next{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0 !important;
	background: none;
	border: none;
	width: 22px;
	height: 22px;
	position: absolute;
	bottom: 27px;
	cursor: pointer !important;
}

.slickDesignsFloorPlans .slick-arrow.slick-prev:after,
.slickDesignsFloorPlans .slick-arrow.slick-next:after{
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.slickDesignsFloorPlans .slick-arrow.slick-prev{
	left: 40px;
}

.slickDesignsFloorPlans .slick-arrow.slick-next{
	right: 40px;
}

.slickDesignsFloorPlans .slick-arrow.slick-prev:after{
	background-image: url("https://fairmontfirst.com.au/images/icons/icon-arrow-blue-left.svg");
}

.slickDesignsFloorPlans .slick-arrow.slick-next:after{
	background-image: url("https://fairmontfirst.com.au/images/icons/icon-arrow-blue-right.svg");
}


.designs .design .floorplan{
	position: relative;
	/*background: #f8f8f8;*/
	height: 400px;
	min-height: 400px;
	max-height: 100%;
  margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	overflow: hidden;
}

.designs .design .floorplan .cover-left,
.designs .design .floorplan .cover-right{
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 10;
}

.designs .design .floorplan .cover-left{
  left: 0;
}

.designs .design .floorplan .cover-right{
  right: 0; 
}


.designs .design .floorplan .photo{
  position: relative;
  height: 450px;
	width: 100%;
	margin: 0 auto;
	object-fit: contain;
	border: none;
	text-align: center;
}

.designs .design .floorplan .photo a &gt; img{
  position: relative;
	height: 100%;
	max-height: 380px;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
  z-index: 2;
}


.designs .design .floorplan .photo a .loading{
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  width: 100%;
}

.designs .design .floorplan .photo a .loading img{
  display: block;
  width: 30px;
  height: 30px;
}

.designs .design .floorplan .price,
.designs .design .floorplan .link{
	position: absolute;
	bottom: 0;
	width: 100%;
	font-size: 0;
	color: #f8f8f8;
	height: 15%;
	margin: 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.designs .design .floorplan .banner_width{
	z-index: 1;
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	padding: 13px;
	width: 50px;
	height: 40px;
	text-align: right;	
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 100% 100%;
}

.designs .design .floorplan .banner_on_display{
	left: 10px;
	position: absolute;
	top: 5px;
	margin: 5px 0 2px;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 10px;
	color: #fff;
	font-weight: 600;
	background: #003963;
	z-index: 10;
	text-decoration: none;
	transition-duration: .2s;
}

.designs .design .floorplan .banner_on_display:hover{
	background: #004c85;
}

.designs .design .floorplan .banner_width.lot_width_10{
	/*background-image: url("https://fairmontfirst.com.au/images/fairmont-first/blob-width-light-blue.svg");*/
}

.designs .design .floorplan .banner_width.lot_width_12{
	/*background-image: url("https://fairmontfirst.com.au/images/fairmont-first/blob-width-light-blue.svg");*/
}

/*
.designs .design .floorplan .banner_width.lot_width_10,
.designs .design .floorplan .banner_width.lot_width_12{
	background-image: url("https://fairmontfirst.com.au/images/fairmont-first/blob-width-grey.svg");
}*/

.designs .design .floorplan .banner_width p{
	position: relative;
	margin: 0;
	color: #a1a1a1;
	font-size: 14px;
	font-weight: 500;
	margin-top: 3px;
}

.designs .design .floorplan .banner_width p span.plus{
	position: absolute;
	font-size: 10px;
	top: -5px;
	right: -6px;
	font-weight: 500;
}

.designs .design .floorplan-photos a {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition-duration: .2s;
  pointer-events: none;
}

.designs .design .floorplan-photos a.active{
  opacity: 100; 
}

.designs .design .floorplan-photos a img{
  height: 400px;
  width: auto;
}

/**/

.designs .design .floorplan-variants{
  position: absolute;
  bottom: 0;
  width: 100%;
}

.designs .design .floorplan-variants a.floorplan-variant{
  font-size: 12px;
  color: #003963;
  font-weight: 600;
  display: inline-flex;
  height: 30px;
  width: 50px;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition-duration: .2s;
}

.designs .design .floorplan-variants a.floorplan-variant.active{
  color: #f7901e;
}

.designs .design .info{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 30px;
  background-color: #fff;
}

.designs .design .info .info_name h2{
	color: #003963;
	margin: 0;
  text-align: left;
}

.designs .design .info .info_name p.price{
	color: #f7901e;
	margin: 0;	
}

.designs .design .info .info_button .button{
	margin: 0;
  color: #fff;
  background: #f7911e;
  font-size: 12px;
  text-shadow: 2px 2px 5px #00000024;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 30px;
  cursor: pointer !important;
}

.designs .design .info .info_button .button:hover{
  cursor: pointer !important;
}

.designs .design-spacer{
  flex: 0 0 200px;
  width: 200px;
  height: 100%;
  display: block;
}





@media (min-width: 768px){

	
	.designs_filter .controls a{
		padding: 20px;
		font-size: 15px;
	}
	
}


@media (min-width: 1000px){
	.designs_filter &gt; div.width{
		margin: 0 30px 0 0;
	}
}


@media (min-width: 1100px){

}





</pre></body></html>