@keyframes accordian-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes accordian-slide {
  0% {
    max-height: 20px;
    overflow: hidden;
  }
  100% {
    max-height: 200px;
    overflow: hidden;
  }
}
@keyframes accordian-slide {
  0% {
    max-height: 20px;
    overflow: hidden;
  }
  100% {
    max-height: 200px;
    overflow: hidden;
  }
}
@keyframes accordian-slide-up {
  0% {
    max-height: 200px;
  }
  100% {
    max-height: 0px;
  }
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fullscreen-button-holder {
  position: absolute;
  top: 35px;
  left: 35px;
  z-index: 500;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .fullscreen-button-holder {
    top: 80px;
  }
}
.fullscreen-button-open {
  position: relative;
  width: 30px;
  height: 30px;
  left: -15px;
  top: -15px;
  background-image: url('./image/fullscreen_open.svg');
  background-size: 30px 30px;
  display: none;
  transition: 10ms ease-in;
  -webkit-tap-highlight-color: transparent;
}
.fullscreen-button-open:hover {
  width: 34px;
  height: 34px;
  background-size: 34px 34px;
  left: -17px;
  top: -17px;
}
.fullscreen-button-open.active {
  display: block;
}
.fullscreen-button-close {
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 30px;
  height: 30px;
  left: -15px;
  top: -15px;
  background-image: url('./image/fullscreen_close.svg');
  background-size: 30px 30px;
  display: none;
  transition: 10ms ease-in;
}
.fullscreen-button-close:hover {
  width: 34px;
  height: 34px;
  background-size: 34px 34px;
  left: -17px;
  top: -17px;
}
.fullscreen-button-close.active {
  display: block;
}
.scene-selector-container {
  height: 50px;
  width: 195%;
  overflow: hidden;
  margin-bottom: 1px;
  pointer-events: auto;
  position: absolute;
  top: -70px;
  right: 0;
  left: -200px;
  display: flex;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .scene-selector-container {
    height: 45px;
    width: 100%;
    top: -400px;
    right: unset;
    left: unset;
    background: #fff;
  }
  .scene-selector-container::after {
    content: url("./image/menu_arrow_dark.png");
    transition: all 0.25s ease-out;
    transform: scale(0.7) rotate(0deg) translateY(15px);
    margin-right: 20px;
  }
  .scene-selector-container.active {
    animation: accordian-slide 0.5s ease-in-out;
  }
  .scene-selector-container.active::after {
    content: '';
    transition: all 0.25s ease-out;
    transform: scale(0.7) rotate(180deg) translateY(15px);
  }
  .scene-selector-container.active > div {
    animation: accordian-opacity 0.7s ease-in-out;
  }
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .scene-selector-container {
    height: 40px;
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
  }
  .scene-selector-container.active {
    display: flex;
    flex-direction: column;
  }
  .scene-selector-container.active .last {
    animation: accordian-slide 0.5s ease-in-out;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .scene-selector-container.active {
    display: unset;
  }
}
.scene-selector-container.active {
  height: auto;
}
.scene-selector-title {
  height: 40px;
  width: 140%;
  line-height: 41px;
  background: #e5e5e5;
  color: #000000;
  padding-left: 40px;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 10pt;
  text-transform: uppercase;
  pointer-events: none;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .scene-selector-title {
    height: 45px;
    line-height: 45px;
    background: #fff;
  }
  .scene-selector-title.active::after {
    content: url("./image/menu_arrow_dark.png");
    transition: all 0.25s ease-out;
    transform: scale(0.7) rotate(180deg) translateY(2px);
    margin-right: 20px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .scene-selector-title::after {
    content: '';
    transition: all 0.25s ease-out;
    transform: scale(0.7) rotate(0deg) translateY(2px);
    margin-right: 20px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .scene-selector-title {
    opacity: 0;
    position: absolute;
    display: none;
  }
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .scene-selector-title {
    pointer-events: unset;
    padding-left: 20px;
  }
}
.scene-selector-button {
  width: 90%;
  height: 40px;
  line-height: 40px;
  background: #e5e5e5;
  cursor: pointer;
  padding-left: 20px;
  text-transform: uppercase;
}
.scene-selector-button.active {
  text-decoration: underline;
  text-underline-position: under;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 10pt;
}
.scene-selector-button:hover {
  text-decoration: underline;
  text-underline-position: under;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .scene-selector-button {
    display: none;
  }
  .scene-selector-button.active {
    text-decoration: unset;
    text-underline-position: unset;
    display: block;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .scene-selector-button {
    cursor: pointer;
    height: 45px;
    line-height: 45px;
    background: none;
    text-align: right;
    padding-right: 10px;
  }
  .scene-selector-container.active .scene-selector-button {
    text-align: center;
  }
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .scene-selector-button {
    background: none;
    padding-left: 5px;
    text-align: center;
  }
  .scene-selector-button.last::after {
    content: '' !important;
    transition: all 0.25s ease-out;
    transform: scale(0.7) rotate(180deg) translateY(2px);
  }
  .scene-selector-button::after {
    content: url("./image/menu_arrow_dark.png");
    transition: all 0.25s ease-out;
    transform: scale(0.7) rotate(0deg) translateY(2px);
    position: absolute;
    padding-left: 5px;
  }
  .scene-selector-container.active .scene-selector-button::after {
    content: url("./image/menu_arrow_dark.png");
    transition: all 0.25s ease-out;
    transform: scale(0.7) rotate(180deg) translateY(4px) translateX(-2px);
    position: absolute;
  }
}
.social-sharing-container {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 205px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .social-sharing-container {
    width: 160px;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .social-sharing-container {
    position: initial;
    width: 100%;
  }
}
.social-sharing-holder {
  position: absolute;
  right: 15px;
  bottom: 30px;
  height: 35px;
  width: calc(100% - 15px);
  overflow: hidden;
  border: #fff solid 2px;
  box-sizing: border-box;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .social-sharing-holder {
    height: 25px;
    width: calc(100% - 30px);
    border: #000 solid 1px;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .social-sharing-holder {
    position: relative;
    left: calc(50% - 130px);
    bottom: initial;
    height: 40px;
    width: 260px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: #000 solid 1px;
  }
}
.social-sharing-stripe {
  position: absolute;
  left: 0px;
  height: 35px;
  width: 200%;
  transition: left 250ms ease-out;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10pt;
  line-height: 31px;
  text-align: center;
  background: none;
  pointer-events: none;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .social-sharing-stripe {
    height: 25px;
    line-height: 25px;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .social-sharing-stripe {
    height: 40px;
    font-size: 10.5pt;
    line-height: 39px;
  }
}
.social-sharing-stripe.title {
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
  background: none;
  color: #fff;
  pointer-events: auto;
  cursor: pointer;
  padding-left: 12px;
}
.social-sharing-stripe.title::after {
  content: url('./image/menu_arrow_light.png');
  transition: all 0.25s ease-out;
  transform: scale(0.7) rotate(-90deg) translateY(-18px);
  margin-right: 20px;
  float: right;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .social-sharing-stripe.title {
    color: #000;
  }
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait) {
  .social-sharing-stripe.title {
    padding-left: 0px;
  }
  .social-sharing-stripe.title::after {
    content: url('./image/menu_arrow_dark.png');
    transition: all 0.25s ease-out;
    transform: scale(0.5) rotate(-90deg) translateY(4px);
    float: right;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .social-sharing-stripe.title {
    padding-left: unset;
  }
  .social-sharing-stripe.title::after {
    content: '';
  }
}
.social-sharing-stripe.active {
  left: -100%;
  background: #fff;
}
.social-sharing-platform-item-holder {
  position: absolute;
  width: 100%;
  background: none;
  color: #fff;
  z-index: 6;
  display: flex;
  justify-content: center;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .social-sharing-platform-item-holder {
    padding-left: 10px;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .social-sharing-platform-item-holder {
    padding-left: 24px;
  }
}
.social-sharing-platform-item {
  position: relative;
  float: left;
  width: 25px;
  height: 25px;
  margin: 5px;
  background-size: 25px;
  cursor: pointer;
  transition: ease-out;
}
.social-sharing-platform-item.facebook {
  background-image: url('./image/social_facebook.png');
  opacity: 0;
}
.social-sharing-platform-item.facebook.active {
  opacity: 1;
}
.social-sharing-platform-item.pinterest {
  background-image: url('./image/social_pinterest.png');
  opacity: 0;
}
.social-sharing-platform-item.pinterest.active {
  opacity: 1;
}
.social-sharing-platform-item.houzz {
  background-image: url('./image/social_houzz.png');
  opacity: 0;
}
.social-sharing-platform-item.houzz.active {
  opacity: 1;
}
.social-sharing-platform-item.twitter {
  background-image: url('./image/social_twitter.png');
  opacity: 0;
}
.social-sharing-platform-item.twitter.active {
  opacity: 1;
}
.social-sharing-platform-item.email {
  background-image: url('./image/social_email.png');
  opacity: 0;
}
.social-sharing-platform-item.email.active {
  opacity: 1;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .social-sharing-platform-item {
    width: 23px;
    height: 23px;
    margin: 1px;
    background-size: 23px;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .social-sharing-platform-item {
    width: 36px;
    height: 36px;
    margin: 2px;
    background-size: 36px;
  }
}
.social-sharing-email-container {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: calc(100% - 220px);
  height: 100%;
  z-index: 1;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .social-sharing-email-container {
    width: calc(100% - 180px);
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .social-sharing-email-container {
    width: 100%;
    height: 400px;
  }
}
.social-sharing-email-form {
  position: relative;
  width: 300px;
  height: 250px;
  background: #fff;
  pointer-events: auto;
  left: calc(50% - 150px);
  top: calc(50% - 125px);
  visibility: hidden;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 10pt;
}
.social-sharing-email-form.active {
  visibility: visible;
}
.social-sharing-email-form label {
  display: inline-grid;
  font-size: 1em;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  text-transform: uppercase;
}
.social-sharing-email-form label input {
  height: 35px;
  font-size: 25px;
  line-height: 35px;
  padding: 0 10px;
  box-sizing: border-box;
  width: 100%;
  margin-top: 5px;
}
.social-sharing-email-form form {
  display: flex;
  flex-direction: column;
}
.social-sharing-email-button-close {
  color: #666;
  cursor: pointer;
  padding: 5px 10px;
  text-align: end;
}
.social-sharing-email-form-validation {
  color: #ff0000;
}
.social-sharing-email-form-submit {
  width: 100%;
  height: 35px;
  cursor: pointer;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 10pt;
  line-height: 30px;
  text-align: center;
  color: black;
  background: #e5e5e5;
  border: 1px solid black;
  border-left: none;
  border-right: none;
}
.social-sharing-email-title,
.social-sharing-email-form__validation--email {
  padding: 10px 20px 10px;
  margin: 0;
}
.social-sharing-email-form__validation--email {
  height: 18px;
  padding: 10px 20px;
}
.social-sharing-email-title {
  margin-bottom: 5px;
}
.social-sharing-privacy-statement {
  display: none;
}
.item-thumb {
  width: 50px;
  height: auto;
  border-radius: 6px;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 200ms ease-out;
}
.filter-holder .item-thumb {
  border-radius: 0;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .item-thumb {
    width: 30px;
    height: 30px;
    border-radius: 4px;
  }
}
.item-thumb.active {
  opacity: 1;
}
/*-- BA SPECIFIC --*/
.item-name {
  margin: 0;
  display: inline-flex;
}
.menu-background {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100px;
  height: 100%;
  overflow: hidden;
  background: #fff;
  display: none;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .menu-background {
    display: inline;
    width: 180px;
  }
}
div#tooltip {
  position: absolute;
  left: 0;
  top: 0;
  height: 26px;
  text-transform: uppercase;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10pt;
  font-size: 8.5pt;
  text-align: center;
  line-height: 26px;
  color: black;
  background-color: white;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom: 1px solid #f4f4f4;
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.25);
  transition: opacity 150ms ease-out 50ms, box-shadow 150ms ease-out;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}
div#tooltip::after {
  content: "";
  position: absolute;
  margin-left: inherit;
  right: 30px;
  top: -5px;
  z-index: 40;
  width: 10px;
  height: 10px;
  background-color: white;
  transform: rotate(45deg);
}
div#tooltip img {
  display: none;
  width: 150px;
  height: 150px;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  div#tooltip {
    display: none;
    height: 0;
    width: 0;
  }
}
.configuration__elements__components__filters {
  display: none;
  width: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  background-color: #2dcc70;
  cursor: initial;
}
.horizontal .configuration__elements__components__filters {
  position: absolute;
  top: 22.22%;
  height: 22.22%;
  padding: 0 5%;
}
.horizontal .configuration__elements__components__filters li {
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  background-color: #fff;
  color: #000000;
  border: 1px solid #2dcc70;
  padding: 0 20px;
  transition: background 200ms ease-out;
  cursor: hand;
  z-index: 50;
  text-transform: initial;
}
.horizontal .configuration__elements__components__filters li.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: white;
}
@media (hover:hover) {
  .horizontal .configuration__elements__components__filters li:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: white;
  }
}
.horizontal .configuration__elements__components__filters li.active::after {
  content: "";
  position: absolute;
  left: 40%;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  clear: both;
}
.horizontal .configuration__elements__components__filters li.disabled {
  background-color: #dedede;
  color: #fff;
  cursor: not-allowed;
  pointer-events: none;
}
.horizontal .configuration__elements__components__filters li.configuration__elements__components__filters--hide_button {
  margin-left: auto;
  color: #fff;
  background-color: transparent;
}
.vertical .configuration__elements__components__filters {
  display: none;
}
.subfilter_door_style_classic {
  background-size: 50px;
  background-image: url("../image/subfilter_door_style_classic.png");
}
.subfilter_door_style_omni {
  background-size: 50px;
  background-image: url("../image/subfilter_door_style_omni.png");
}
.subfilter_door_style_spectra {
  background-size: 50px;
  background-image: url("../image/subfilter_door_style_spectra.png");
}
/* BA specific */
.component_filter {
  background-color: none !important;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .component_filter .collection__title {
    padding-left: 40px !important;
  }
}
.menu-container {
  position: absolute;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.menu-container.horizontal {
  bottom: 0px;
  left: 0px;
  padding: 0;
  width: 100%;
  height: 15%;
  min-height: 160px;
  max-height: 200px;
  transform: translateY(77.88%);
}
.menu-container.horizontal.active {
  transform: translateY(0);
  margin-top: -3%;
  height: 120%;
}
.menu-container.vertical {
  top: 70px;
  bottom: 85px;
  right: 0px;
  width: 220px;
  z-index: 40;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .menu-container.vertical {
    position: initial;
    width: 100%;
  }
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .menu-container.vertical {
    top: 0px;
    width: 180px;
    bottom: 65px;
  }
}
.remote-mode .menu-container.vertical {
  top: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.menu-container.vertical.active {
  transform: translateX(0);
}
.configuration__items {
  /*display:inline-table;*/
  display: block;
  position: absolute;
  bottom: 2px;
  /*transform: translateY(200px);*/
  margin-bottom: -100px;
  transition: transform 200ms ease-in-out, margin-bottom 200ms ease-out;
  overflow-x: auto;
  overflow-y: hidden;
  z-index: 10;
}
.configuration__items.active {
  /*transform: translateY(0);*/
  margin-bottom: 0;
  z-index: 20;
}
#configuration__elements {
  position: relative;
  pointer-events: auto;
}
.horizontal #configuration__elements {
  height: 100%;
}
#configuration__elements__components {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #000;
}
.horizontal #configuration__elements__components {
  display: flex;
  height: 22.22%;
  padding: 0 5%;
}
.horizontal #configuration__elements__components li.configuration__elements__components__active_component {
  display: none;
}
.vertical #configuration__elements__components {
  /* @media @tablets {
      // iOS specific hack, when our element is transferred to -webkit-overflow-scroll we lose the ability to render
      // outside the element (we're trying to shift the svg into the margin but apple says no)
      // https://stackoverflow.com/questions/7808110/css3-property-webkit-overflow-scrollingtouch-error // https://github.com/scottjehl/Device-Bugs/issues/14 // instead we just render the only icon that disappears on us
      // background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path fill="%2327ae60" d="M0 0h60v60H0z"/><path fill="none" stroke="%23fff" stroke-width="2" d="M18.6 22.3H40v5H18.6zM30 27.5h20v5H30zm0-10.4h20v5H30zM19.3 32.7H40v5H19.3zm.7 10.4h20v5H20zm0-31.2h20v5H20zM10 27.5h20v5H10zm0-10.4h20v5H10zM30 38h20v4.9H30zm-20 0h20v4.9H10z"/></svg>');
      // background-repeat: no-repeat;
      // background-position: top 240px left;
      // background-size: 60px;
    } */
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical #configuration__elements__components {
    border: none;
    background-color: #fff;
  }
}
.vertical #configuration__elements__components li {
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
.vertical #configuration__elements__components li a {
  -webkit-tap-highlight-color: transparent;
}
.vertical #configuration__elements__components li.configuration__elements__components_active_component {
  width: 100%;
  height: 59px;
  background-color: #ffffff;
  color: white;
  line-height: 65px;
  padding: 0 20px;
  box-sizing: border-box;
  display: none;
}
.vertical #configuration__elements__components li.configuration__elements__components_active_component em {
  left: 0px;
  position: absolute;
  padding: 0 25px;
  cursor: hand;
}
@media (hover:hover) {
  .vertical #configuration__elements__components li.configuration__elements__components_active_component em:hover {
    margin-top: 1px;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical #configuration__elements__components li.configuration__elements__components_active_component {
    display: none;
  }
}
.vertical #configuration__elements__components ul {
  position: relative;
}
.remote-mode .vertical #configuration__elements__components li.configuration__elements__components__active_component {
  display: none;
}
.remote-mode .vertical #configuration__elements__components ul {
  margin: 0;
  overflow-y: initial;
}
.configuration__elements__components__component {
  background-color: #fff;
  transition: background 150ms ease-out, color 150ms ease-out, margin-top 200ms ease-out;
  cursor: hand;
  color: #000000;
  -webkit-overflow-scrolling: touch;
}
.horizontal .configuration__elements__components__component {
  display: flex;
  padding: 0 20px;
  margin-top: 0.2%;
  margin-right: 2px;
  align-items: center;
  text-align: center;
}
.horizontal .configuration__elements__components__component.active {
  -webkit-animation: background 0.2s cubic-bezier(0.05, 0.71, 0.18, 0.97);
  animation: background 0.2s cubic-bezier(0.05, 0.71, 0.18, 0.97);
  padding-right: 0px;
}
.horizontal .configuration__elements__components__component.active::after {
  content: '';
  position: relative;
  left: -50%;
  bottom: -50%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  clear: both;
  z-index: 100;
  margin-top: 10px;
}
.horizontal .configuration__elements__components__component.active .configuration__elements__components__filters {
  display: flex;
}
.vertical .configuration__elements__components__component--group .configuration__elements__components__component {
  display: none;
}
.vertical .configuration__elements__components__component--group .configuration__elements__components__component > a.collection__title {
  display: none;
}
.vertical .configuration__elements__components__component--group .configuration__elements__components__component.active {
  display: block;
  margin-left: 0;
  height: initial;
  border-left: none;
  overflow: auto;
  width: 100%;
}
.vertical .menu-hinter .configuration__elements__components__component > a {
  background-color: #ffffff;
  padding-right: 260px;
  background-position-x: 272px;
  left: -260px;
  color: white;
  transition: padding 200ms ease-out, background-position 200ms ease-out, left 200ms ease-out, color 100ms linear 100ms;
}
.vertical .configuration__elements__components__component > a {
  top: initial !important;
  color: black;
  padding-left: 18px;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10pt;
  text-transform: uppercase;
  transition-duration: 0.25s;
  cursor: pointer;
  height: 37px;
  left: 0;
  line-height: 37px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  background: #c3c4c7;
  margin-bottom: 1px;
  overflow: hidden;
  position: relative;
}
.vertical .configuration__elements__components__component > a::after {
  content: url('./image/menu_arrow_dark.png');
  transition: all 0.5s ease-out;
  transform: scale(0.7) rotate(0deg) translateY(2px);
  margin-right: 20px;
  float: right;
}
.vertical .configuration__elements__components__component > a svg {
  display: none;
}
@media (hover:hover) {
  .vertical .configuration__elements__components__component > a:hover {
    background: #e5e5e5;
    left: 0;
    transition: none;
    padding-right: unset;
    background-position-x: 12px;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .vertical .configuration__elements__components__component > a {
    height: 40px;
    line-height: 40px;
    font-size: 10.5pt;
  }
}
.vertical .configuration__elements__components__component > a:focus {
  pointer-events: none;
}
.vertical .configuration__elements__components__component.active {
  width: 100%;
  box-sizing: border-box;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical .configuration__elements__components__component.active {
    width: 100%;
    margin: 0;
    height: auto;
    overflow-y: hidden;
    max-height: auto;
  }
}
.vertical .configuration__elements__components__component.active .configuration__elements__components__items {
  display: block;
}
.vertical .configuration__elements__components__component.active > a {
  color: black;
  background: #e5e5e5;
}
.vertical .configuration__elements__components__component.active > a::after {
  content: url('./image/menu_arrow_dark.png');
  transition: all 0.25s ease-out;
  transform: scale(0.7) rotate(180deg) translateY(2px);
  margin-right: 20px;
}
.remote-mode .configuration__elements__components__component > a {
  z-index: 20;
}
@media (hover:hover) {
  .remote-mode .configuration__elements__components__component > a:hover {
    background-color: #e6e6e6;
  }
}
.remote-mode .configuration__elements__components__component.active {
  width: calc(100% - 60px);
}
.remote-mode .configuration__elements__components__component.active .configuration__elements__components__items {
  display: block;
}
@media (hover:hover) {
  .horizontal .configuration__elements__components__component:hover {
    background-color: #ffffff;
    color: white;
    margin-top: 0;
  }
}
.horizontal .configuration__elements__components__component.active {
  background-color: #ffffff;
  color: white;
  margin-top: 0;
}
/* Manta specific */
.filter-holder {
  display: inline;
  padding: 0 !important;
  margin: 0 !important;
}
.filter-holder .js-select-item {
  border-radius: 0;
}
.filter-holder-ul {
  display: inline;
  position: relative;
  padding: 0 !important;
  margin: 0 !important;
}
.configuration__elements__components__items {
  display: none;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  text-align: left;
  cursor: initial;
  -webkit-overflow-scrolling: touch;
}
.horizontal .configuration__elements__components__items {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 55.66%;
  padding: 0 20%;
  transform: translateX(0);
  transition: transform 200ms ease-in-out;
  width: 100%;
  white-space: nowrap;
}
.horizontal .configuration__elements__components__items .configuration__elements__components__items__description {
  color: black;
  display: inline-block;
  height: 100%;
  max-width: 0px;
  width: 0px;
  top: 0;
  overflow: hidden;
  padding: 5%;
  white-space: initial;
  vertical-align: top;
  transition: max-width 100ms ease-out;
}
.horizontal .configuration__elements__components__items .configuration__elements__components__items__description form {
  position: absolute;
  bottom: 0;
}
.horizontal .configuration__elements__components__items .configuration__elements__components__items__description label {
  display: block;
}
.horizontal .configuration__elements__components__items a.collection__title {
  display: none;
}
.horizontal .configuration__elements__components__items.active {
  display: inline-block;
}
.horizontal .configuration__elements__components__items.active .configuration__elements__components__items__description {
  max-width: 100px;
  width: 100px;
}
.horizontal .configuration__elements__components__items li {
  display: inline-block;
  margin-right: 0.25%;
  border-bottom: 1px solid #000000;
  cursor: pointer;
  transition: border-bottom 200ms ease-out;
  height: 85%;
  position: relative;
  top: 10%;
  bottom: 5%;
}
.horizontal .configuration__elements__components__items li a {
  display: inline-block;
}
.horizontal .configuration__elements__components__items li::after {
  opacity: 0;
  content: '';
  position: absolute;
  transition: opacity 200ms ease-out 0.2s;
}
.horizontal .configuration__elements__components__items li.hidden {
  display: none;
}
.horizontal .configuration__elements__components__items li img {
  box-sizing: border-box;
  height: 100%;
  width: auto;
}
.vertical .configuration__elements__components__items {
  max-height: 50px;
  padding: 11px;
  margin-bottom: 1px;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical .configuration__elements__components__items {
    padding: 10px;
  }
}
.vertical .configuration__elements__components__items.remote-mode {
  margin: 0 10px 0 80px;
}
.vertical .configuration__elements__components__items.active {
  display: block;
  position: absolute;
  top: 0;
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10;
  animation: accordian-slide 0.5s ease-out;
}
.remote-mode .vertical .configuration__elements__components__items.active {
  max-height: initial;
  position: relative;
}
.vertical .configuration__elements__components__items.active > li {
  display: inline-block;
}
.vertical .configuration__elements__components__items.active > li.collection__title,
.vertical .configuration__elements__components__items.active > li a.collection_title {
  color: #000000;
}
.vertical .configuration__elements__components__items.active > li.collection__title::after,
.vertical .configuration__elements__components__items.active > li a.collection_title::after,
.vertical .configuration__elements__components__items.active > li.collection__title a.collection_title::after,
.vertical .configuration__elements__components__items.active > li a.collection_title a.collection_title::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path fill="none" stroke="%2327ae60" stroke-miterlimit="10" stroke-width="2" d="M30 25H20"/></svg>');
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter {
  padding: 8px 8px 6px 8px;
  -webkit-tap-highlight-color: transparent;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li {
  display: inline-block;
  width: 50%;
  text-align: left;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li input[type='radio'] {
  width: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li input[type='radio'] + label {
  display: inline-block;
  margin-left: -2em;
  padding-left: 2em;
  padding-right: 1em;
  cursor: hand;
  cursor: inherit;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li input[type='radio'] + label > span {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 1.2em;
  border: 1px solid #dedede;
  border-radius: 1.2em;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li input[type='radio']:checked + label > span > span {
  margin-left: 25px;
  vertical-align: middle;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li input[type='radio']:checked + label > span {
  background-color: black;
  box-shadow: inset 0 0 0 4px #fff;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter__title {
  display: none;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter {
  width: 80px;
  height: 30px;
  cursor: pointer;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter.hidden {
  display: none;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter {
    width: 70px;
  }
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter input[type='radio'] + label {
  width: 50px;
  height: 25px;
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter input[type='radio'] + label > span span {
  margin-left: 25px;
  vertical-align: middle;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours {
  width: auto;
  cursor: hand;
  cursor: pointer;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours input[type='radio']:not(old) + label {
  overflow: hidden;
  width: 2em;
  height: 3em;
  padding-right: 1.5em;
  padding-left: 0;
  margin-left: 0;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours input[type='radio']:not(old) + label {
    width: 8vw;
    height: 12vw;
    padding-right: 4.5vw;
  }
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours input[type='radio']:not(old) + label > span {
  height: 1.8em;
  width: 1.8em;
  margin: 0.5em;
  border-radius: 3em;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours input[type='radio']:not(old) + label > span {
    height: 8vw;
    width: 8vw;
    margin: 2vw;
    border-radius: 8vw;
  }
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours input[type='radio']:not(old):checked + label > span > span {
  width: 2.4em;
  height: 2.4em;
  margin: -0.3em;
  border-radius: 2em;
  border: 1px solid #ffffff;
  background-color: transparent;
  box-sizing: border-box;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours input[type='radio']:not(old):checked + label > span > span {
    height: 12vw;
    width: 12vw;
    margin: -2vw;
    border-radius: 12vw;
    border-width: 4px;
  }
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours span.red {
  background: red;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours span.blue {
  background: blue;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours span.white {
  background: white;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours span.black {
  background: black;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--colours span.brown {
  background: brown;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none !important;
}
.vertical .configuration__elements__components__items ul.configuration__elements__components__items__sub_filter li.configuration__elements__components__items__sub_filter--finish {
  display: pink;
}
.vertical .configuration__elements__components__items .configuration__elements__components__items__description {
  display: none;
}
.vertical .configuration__elements__components__items li {
  display: none;
  cursor: pointer;
  transition: border-bottom 200ms ease-out;
  position: relative;
  text-align: center;
}
.vertical .configuration__elements__components__items li.js-select-item,
.vertical .configuration__elements__components__items li.js-select-filter {
  width: 44.2px;
  height: auto;
  border-radius: 6px;
  margin: 7px 8px;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.vertical .configuration__elements__components__items li.js-select-item span,
.vertical .configuration__elements__components__items li.js-select-filter span {
  display: none;
}
.vertical .configuration__elements__components__items li.js-select-item img,
.vertical .configuration__elements__components__items li.js-select-filter img {
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical .configuration__elements__components__items li.js-select-item,
  .vertical .configuration__elements__components__items li.js-select-filter {
    width: 43px;
    height: 30px;
    border-radius: 4px;
    margin: 4px 5px;
  }
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .vertical .configuration__elements__components__items li.js-select-item,
  .vertical .configuration__elements__components__items li.js-select-filter {
    width: 50px;
    margin: 9px 10px;
  }
}
.remote-mode .vertical .configuration__elements__components__items li.js-select-item,
.remote-mode .vertical .configuration__elements__components__items li.js-select-filter {
  width: 29%;
}
.vertical .configuration__elements__components__items li.js-select-item.active::after,
.vertical .configuration__elements__components__items li.js-select-filter.active::after {
  content: '';
  position: absolute;
  left: 37px;
  top: -6px;
  width: 18px;
  height: 18px;
  background-image: url('./image/itemactivehighlight.png');
  background-size: 18px;
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .vertical .configuration__elements__components__items li.js-select-item.active::after,
  .vertical .configuration__elements__components__items li.js-select-filter.active::after {
    left: 35px;
    top: -4px;
    width: 11px;
    height: 11px;
    background-size: 11px;
  }
}
.vertical .configuration__elements__components__items li.js-select-filter {
  width: 29.2%;
}
.vertical .configuration__elements__components__items li.collection__title,
.vertical .configuration__elements__components__items li a.collection_title {
  display: none;
  line-height: 50px;
  height: 50px;
  cursor: hand;
  text-align: left;
  padding: 0 5px;
  color: #0d0d0d;
}
.vertical .configuration__elements__components__items li.collection__title span,
.vertical .configuration__elements__components__items li a.collection_title span {
  color: #000000;
}
.vertical .configuration__elements__components__items li.collection__title::after,
.vertical .configuration__elements__components__items li a.collection_title::after {
  opacity: 1;
  transform: rotate(0);
  right: 5px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M30 25H20m5 5V20" fill="none" stroke="%2327ae60" stroke-miterlimit="10" stroke-width="2"/></svg>');
  background-size: 50px;
  width: 50px;
  height: 50px;
}
.vertical .configuration__elements__components__items li.hidden {
  display: none;
}
.vertical .configuration__elements__components__items li img {
  box-sizing: border-box;
  width: auto;
  width: 100%;
  height: auto;
  transform: scale(1);
  border-radius: 6px;
}
/*---- BA SEPCIFIC ----*/
.configuration__elements__components__items.js-select-item.Handles .configuration__elements__components__items__sub_filter {
  display: none;
}
.configuration__elements__components__items.filter-holder-ul.active {
  max-height: 150px;
  overflow-y: auto;
}
.configuration__elements__components__component.Handles.hidden {
  display: none;
}
.zoom-controller-holder {
  position: absolute;
  left: 20px;
  z-index: 500;
  display: initial;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .zoom-controller-holder {
    display: none;
  }
}
.zoom-controller-out {
  position: absolute;
  top: 110px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url("./image/zoom_out.svg");
  background-size: 30px 30px;
}
.zoom-controller-in {
  position: absolute;
  top: 70px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url("./image/zoom_in.svg");
  background-size: 30px 30px;
}
.configurator__gesture-hinter {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 30;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  opacity: 1;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .configurator__gesture-hinter {
    height: 400px;
  }
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .configurator__gesture-hinter {
    padding-right: 190px;
  }
}
.configurator__gesture-hinter.configurator__gesture-hinter--hidden {
  opacity: 0;
}
.configurator__gesture-hinter p {
  vertical-align: middle;
  color: #fff;
  font-size: 4em;
  text-shadow: #000 2px 2px 1px;
  text-align: center;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .configurator__gesture-hinter p {
    font-size: 2.2em;
  }
}
@media only screen and ( min-width: 768px ) and (max-width : 1024px) and (orientation: landscape) , only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  .configurator__gesture-hinter p {
    font-size: 3em;
  }
}
.configurator__hotspot-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .configurator__hotspot-holder {
    height: 400px;
  }
}
.configurator__hotspot-holder img {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.configurator__hotspot-holder img:hover {
  background-color: #00000045;
  border-radius: 50px;
}
.configurator__interaction-surface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  .configurator__interaction-surface {
    height: 400px;
  }
}
/* responsive breakpoints */
html {
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#configurator {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10pt;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  #configurator {
    height: initial;
  }
}
#configurator.full-screen .menu-container {
  display: none;
}
#configurator.full-screen .configurator__hotspot-holder {
  display: none;
}
#stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.remote-mode #stage {
  display: none;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ) {
  #stage {
    position: initial;
    height: 400px;
  }
}
#stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  background-image: radial-gradient(ellipse farthest-corner at 50% 50%, #ffffff 20%, #ddd 60%);
}
.shop-mode #stage canvas {
  height: 100% !important;
}
#stage.moving canvas {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
#stage.moving svg#marker-canvas g {
  pointer-events: none;
}
#stage svg#marker-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
}
#stage svg#marker-canvas g {
  pointer-events: auto;
  cursor: pointer;
}
#stage svg#marker-canvas g .marker-cls-1 {
  fill: rgba(0, 0, 0, 0.2);
}
#stage svg#marker-canvas g .marker-cls-2 {
  fill: white;
  stroke: white;
}
#stage svg#marker-canvas g .marker-cls-3 {
  fill: black;
}
#stage svg#marker-canvas g .marker-cls-4 {
  fill: white;
  font-family: 'brandon-grotesque', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10pt;
}
#stage svg#marker-canvas g.active .marker-cls-1,
#stage svg#marker-canvas g:hover .marker-cls-1 {
  fill: rgba(255, 255, 255, 0.2);
}
#stage svg#marker-canvas g.active .marker-cls-2,
#stage svg#marker-canvas g:hover .marker-cls-2 {
  fill: white;
  stroke: white;
}
#stage svg#marker-canvas g.active .marker-cls-3,
#stage svg#marker-canvas g:hover .marker-cls-3 {
  fill: black;
}
@media only screen and ( max-width: 767px ) and ( orientation: portrait ), only screen and ( min-width: 768px ) and (max-width : 1024px) and ( orientation: portrait), only screen and ( max-width : 767px) and ( orientation: landscape ) {
  #stage svg#marker-canvas {
    display: none;
  }
}
html {
  visibility: visible;
  opacity: 1;
}

