@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,500;0,600;1,200;1,400;1,500&display=swap");
@import url("https://use.fontawesome.com/releases/v5.14.0/css/all.css"); 

:root {
  --black: #000000;
  --white: #ffffff;
  --almostBlack: #111111;
  --blue: #3366ff;
  --lightBlue: #99b3ff;
  --grey: #8A897C;
  --green: #2CA58D;
  --orange: #DE6E4B;
  --red: #ef233c;
}

html {
  height: 100%;
  overflow-y: hidden;

}

body {
  background: linear-gradient(90deg, var(--almostBlack) 1%, var(--white) 100%);
  /* min-width: 1200px;
  width: auto !important;
  width: 1200px;
  min-height: 760px;
  height: 100% !important;
  height: 760px; */
  margin: 0px;
  position: relative;
}

body > * {
  user-select: none;
}

.mainDivider {
  display: flex;
  flex-direction: row;
  width: inherit;
  height: 100vh;
  margin: 0 0px 0 -15px;
}

.modelContainer {
  flex: 100%;
  position: relative;
  height: 100%;
  pointer-events: auto;
}

.menuContainer {
  position: relative;
  flex: 30%;
  background-color: transparent;
  border-radius: 4px 4px 0% 0%;
  padding-left: 20px;
  margin-left: -20px;
  z-index: 2;
  margin: 0px 8px 0 0;
  overflow: hidden;
}

.model{
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

model-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  padding-right: 30%;
}

.userInput:focus {
  outline: none !important;
}

.hidden {
  opacity: 0;
  display: none !important;
}

.visible {
  display: initial;
}

.groupSelect {
  position: absolute;
  top: 40px;
  left: 20px;
}

.menuItems {
  display: flex;
  flex-direction: column;
  font: 20px Montserrat;
  font-weight: 300;
  justify-content: space-around;
  height: fit-content;
  width: 100%;
}

.menuItem {
  padding: 15px 0 15px 20px;
  position: relative;
  transition: padding-left 0.1s ease-out;
}

.menuItem::after {
  content: url("../assets/svg/chevron-down-outline.svg");
  position: absolute;
  right: 20px;
  width: 24px;
  height: 24px;
}

.menuItem:hover {
  padding-left: 30px;
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
}

.preload *{
    transition: none !important;
}

.roomTitle {
  width: 100%;
  text-align: center;
  font: 24px Montserrat;
  font-weight: 300;
  padding: 30px 0;
}

.roomItems {
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: fit-content;
}

.roomItem {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 90%;
  margin: auto;
  font: 16px Montserrat;
  font-weight: 300;
  padding: 1.4% 0;
}

.roomItemName {
  white-space: normal;
  user-select: none;
  transition: padding-left 0.2s, transform 0.2s;
}

.roomItemName:hover {
  /* padding-left: 15px; */
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  transform: translateX(7.5px);
}

.roomItemSubtitle {
  padding-left: 5px;
  font-size: 14px;
}

.roomItemCounter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

.roomItemQuantity { 
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  user-select: none;
}

.qAmount {
  vertical-align: middle;
}

#backBtn {
  margin-top: 20px;
  border: 2px solid var(--almostBlack);
  color: var(--almostBlack);
  line-height: 55px;
  text-align: center;
}

#backBtn:hover {
  border-color: transparent;
  background-color: var(--almostBlack);
  color: var(--white);
  cursor: pointer;
}

.totalCount {
  padding: 40px 0 20px;
  font: 18px Montserrat;
  font-weight: 300;
  text-align: center;
}

#total {
  font-size: 30px;
}

.configOverlay {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  display: flex;
  /* display: none; */
  z-index: 4;
  flex-direction: column;
  -webkit-box-shadow: 0 15px 10px -6px #777;
     -moz-box-shadow: 0 15px 10px -6px #777;
          box-shadow: 0 15px 10px -6px #777;
  transition: top 0.3s;
}

.dropInfo {
  width: 120%;
  display: flex;
  flex-direction: row;
}

.homeInfo {
  display: flex;
  position: relative;
  font-size: 26px;
  width: 43px;
  height: 43px;
  text-align: center;
  padding-left: 5px;
}

.homeInfo::after {
  position: absolute;
  pointer-events: none;
  background-color: var(--white);
  opacity: 0;
  transition: opacity 0.2s;
  bottom: -135px;
  left: -155px;
  border-radius: 12px;
  width: 350px;
  height: 112px;
  padding: 10px;
  padding-top: 20px;
  font: 14px Montserrat;
  box-shadow: -4px 11px 11px 0px rgba(0,0,0,0.19);
  -webkit-box-shadow: -4px 11px 11px 0px rgba(0,0,0,0.19);
  -moz-box-shadow: -4px 11px 11px 0px rgba(0,0,0,0.19);
  content: attr(data-value);
}

.homeInfo:hover:after {
  opacity: 1;
}

.homeInfo > * {
  margin: auto;
}

.mobileSupport {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  display: flex;
  /* display: none; */
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  -webkit-box-shadow: 0 15px 10px -6px #777;
     -moz-box-shadow: 0 15px 10px -6px #777;
          box-shadow: 0 15px 10px -6px #777;
  transition: top 0.3s;
  display: none;
}

.mobileMessage {
  width: 200px;
  font: 24px Montserrat;
  margin: auto;
  text-align: center;
}

#mobileLogo {
  padding-top: 30px;
  width: 100px;
  height: 100px;
  margin: auto;
}

.configMenu{
  width: 50%;
  height: 50%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.dropdownContainer {
  font: 18px Montserrat;
  font-weight: 300;
  margin: auto;
  width: 50%;
  height: 100%;
  padding-top: 10%;
}

.dropdown {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--grey);
  border-radius: 8px;
  height: 43px;
  transition: height 0.1s;
  overflow-y: hidden;
  position: relative;
}

.dropdown::after {
  content: url("../assets/svg/chevron-down-outline.svg");
  position: absolute;
  right: 20px;
  top: 10px;
  width: 24px;
  height: 24px;
  pointer-events: none;
  transition: opacity 0.1s;
}

.dropped {
  height: 169px;
}

.dropped::after {
  opacity: 0;
}

.dropLabel {
  padding: 0 0 10px 10px;
}

.dropItem {
  padding: 10px 0 10px 10px;
  font-weight: 500;
  transition: padding 0.1s;
  cursor: pointer;
  user-select: none;
}

.dropItem:hover {
  padding-left:15px;
}

.startBtn {
  margin: auto;
}

.detailTitle {
  width: 100%;
  text-align: center;
  font: 24px Montserrat;
  font-weight: 300;
  padding: 30px 0;
}

.detailDesc {
  width: 80%;
  text-align: center;
  font: 18px Montserrat;
  font-weight: 300;
  margin: auto;
  line-height: 1.6;
}

.detailPrice {
  font-size: 24px;
  padding: 50px 0px;
  font-weight: 400;
}

.countContainer {
  display: flex;
  justify-content: space-around;
  width: 55%;
  margin: auto;
}

.dAmount {
  font: 24px Montserrat;
  width: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.saveLabel {
  font: 24px Montserrat;
  padding: 20px 0 0;
  font-weight: 300;
}

.actionBtn {
  width: 160px;
  height: 55px;
  border: 2px solid var(--blue);
  background-color: transparent;
  border-radius: 4px;
  font: 16px Montserrat;
  font-weight: 600;
  color: var(--blue);
  user-select: none;
  transition: border-color 0.1s,  color 0.1s, background-color 0.1s;
  margin: auto;
}

#saveBtn {
  margin-top: 20px;
}

#saveBtn:hover {
  border-color: transparent;
  color: var(--white);
  cursor: pointer;
}

.btnHover:hover {
  border-color: transparent;
  background-color: var(--blue);
  color: var(--white);
  cursor: pointer;
}

.actionBtn:active {
  transform: translateY(1px);
}

.checkContainer {
  display: flex;
  flex-direction: row;
  height: 30px;
}

.auxCheck {
  border: 1px solid;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.1s, background-color 0.1s;
  margin-top: 1.5px;
  cursor: pointer;
}

.auxCheck::before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18px' height='18px' fill='none' stroke-width='2px' stroke='transparent' stroke-linecap='round' viewBox='0 0 21 21'%3E%3Cpolyline points='5 10.75 8.5 14.25 16 6'%3E%3C/polyline%3E%3C/svg%3E");
  top: -1.25px;
  left: -1.5px;
  
}

.auxCheck:active {
  transform: translateY(1px);
}

.checked {
  border-color: var(--blue);
  background-color: var(--blue);
  fill: var(--white);
}

.checked::before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18px' height='18px' fill='none' stroke-width='2px' stroke='white' stroke-linecap='round' viewBox='0 0 21 21'%3E%3Cpolyline points='5 10.75 8.5 14.25 16 6'%3E%3C/polyline%3E%3C/svg%3E");
  top: -1.25px;
  left: -1.5px;
  
}

.checkLabel {
  padding-left: 5px;
}

.logoContainer {
  width: 101%;
}

.picLogo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

.active {
  border-color: var(--white);
  pointer-events: none;
}

.overlayHidden {
  top: -1400px;
  -webkit-animation: cssHide 0s ease-in 0.4s forwards;
  -moz-animation: cssHide 0s ease-in 0.4s forwards;
  animation: cssHide 0s ease-in 0.4s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes cssHide {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes cssHide {
  to {
    visibility: hidden;
  }
}

.HotspotRoom {
  width: 28px;
  height: 28px;
  border-radius: 48px;
  border: 4px solid var(--white);
  background-color: var(--blue);
  transition: width 0.2s, height 0.2s, box-shadow 0.2s;
  cursor: pointer;
}



.Hotspot {
  width: 28px;
  height: 28px;
  border-radius: 48px;
  border: 4px solid var(--blue);
  transition: width 0.2s, height 0.2s, box-shadow 0.2s, border-color 0.2s, background-color 0.2s;
  cursor: pointer;
  overflow: hidden;
  background-color: transparent;
  position: relative;
  z-index: 1;
  mix-blend-mode: hue;
}

.Hotspot:active {
  transform: translateY(1px);
}

.Hotspot:hover {
  width: 170px;
  height: 60px;
  background-color: var(--lightBlue);
  border-color: transparent;
  z-index: 3;
}

.Hotspot:focus{
  width: 28px;
  height: 28px;
  background-color: var(--blue);
  border:none;
  z-index: 2;
  color: var(--white);
  border-color: var(--blue);
}

.Hotspot:focus > .HotspotAnnotation {
  display: none;
}

.Hotspot:hover > .HotspotAnnotation{
  opacity: 1;
  transition: opacity 0.4s ease-in;
  z-index: 3;
}

.HotspotAnnotation {
  text-overflow:unset;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0s;
  color: var(--white);
  font: 14px Montserrat;
}

.HotspotRoom:hover {
  width: 40px;
  height: 40px;
          box-shadow: -1px 3px 26px -12px var(--blue);
  -webkit-box-shadow: -1px 3px 26px -12px var(--blue);
     -moz-box-shadow: -1px 3px 26px -12px var(--blue);
}

.HotspotRoom:active {
  transform: translateY(1px);
}

.HotspotRoomAnnotation {
  display: none;
}

.menuScroll {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
}

.roomItemButton {
  width: 25px;
  height: 25px;
  background-color: transparent;
  border: none;
  font: 24px Montserrat;
  font-weight: 500;
  color: var(--almostBlack);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  user-select: none;
  transition: background-color 0.2s, color 0.2s;
}

.roomItemButton:hover {
  background-color: var(--almostBlack);
  color: var(--white);
}

.roomItemButton:active {
  transform: translateY(1px);
}

.detailButton {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  font: 28px Montserrat;
  font-weight: 500;
  color: var(--almostBlack);
  transition: border 0.1s, border-color 0.1s, color 0.2s, background-color 0.2s;
  cursor: pointer;
}

.detailButton:hover{
  background-color: var(--almostBlack);
  color: var(--white);
}

.detailButton:active {
  transform: translateY(1px);
}

.cartContainer {
  position: absolute;
  left: -290px;
  top: 110px;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: baseline;
  transition: transform 0.2s;
  border: none;
}

.cartButton {
  
  width: 40px;
  height: 30px;
  font: 16px Montserrat;
  background-color: var(--white);
  color: var(--black);
  border: none;
  transition: background-color 0.2s, color 0.2s, opacity 0.2s, width 0.2s;
  padding: 5px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.cartButton:hover {
  width: 50px;
}

.cartContainer:focus {
  transform: translateX(260px);
}

.cartList {
  padding-left: 50px;
  width: 250px;
  background-color: var(--white);
  border-radius: 8px;
  font: 14px Montserrat;
  max-height: 70vh;
  overflow-y: scroll;
  scrollbar-width: none;
  border-top-right-radius: 0;
}

.cartList::-webkit-scrollbar {
  display: none;
}

.listRoom {
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0;
}

.listItem {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.odd {
  font-weight: 300;
}

.even {
  font-weight: 400;
}

.auxBtn {
  width: 45px;
  height: 45px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background-color: transparent;
  font-size: 16px;
  color: var(--blue);
  position: relative;
  overflow: hidden;
  
  transition: padding 0.2s, border-color 0.2s, color 0.2s, background-color 0.2s;
  margin-right: 5px;
  cursor: pointer;
}

.padding {
  padding-right: 90px;
}

.auxBtn:hover {
  border-color: transparent;
  color: var(--almostBlack);
  background-color: var(--blue);

}


#homeBtn:hover:after {
  color: var(--almostBlack)
}

#homeBtn::after {
  position: absolute;
  content: attr(data-value);
  font: 14px Montserrat;
  left: 35px;
  top: 11px;
  opacity: 1;
  color:var(--blue);
  transition: opacity 0.2s ease-in;
}

#garageBtn {
  border-color: var(--orange);
  color: var(--orange);
}

#garageBtn:hover {
  border-color: transparent;
  background-color: var(--orange);
  color: var(--almostBlack);
}

#garageBtn::after{
  position: absolute;
  content: attr(data-value);
  font: 14px Montserrat;
  left: 35px;
  top: 11px;
  opacity: 1;
  color:var(--orange);
  transition: opacity 0.2s ease-in;
}

#garageBtn:hover:after {
  color: var(--almostBlack)
}

#gardenBtn {
  border-color: var(--green);
  color: var(--green);
}

#gardenBtn:hover {
  background-color: var(--green);
  color: var(--almostBlack);
}

#gardenBtn::after {
  position: absolute;
  content: attr(data-value);
  font: 14px Montserrat;
  left: 30px;
  top: 11px;
  opacity: 1;
  color:var(--green);
  transition: opacity 0.2s ease-in;
}

#gardenBtn:hover:after {
  color: var(--almostBlack)
}

.clearGroup{ 
  position: absolute;
  top: 40px;
  right: 20px;
}

.feedbackGroup{ 
  position: absolute;
  bottom: 18.5px;
  right: 20px;
}

#feedbackBtn {
  border-color: var(--white);
  color: var(--white);
}

#feedbackBtn > * {
  height: 24px;
  width: 24px;
  font-size: 24px;
}

#feedbackBtn:hover {
  color: var(--almostBlack);
  background-color: var(--white);
  padding-right: 105px;
}

#feedbackBtn::after {
  position: absolute;
  content: "Feedback";
  font: 14px Montserrat;
  left: 35px;
  top: 11px;
  opacity: 0;
  color:var(--almostBlack);
  transition: opacity 0.1s;
}

#feedbackBtn:hover:after {
  opacity: 1;
}

#clearBtn {
  border-color: var(--red);
  color: var(--red);
}

#clearBtn:hover {
  color: var(--almostBlack);
  background-color: var(--red);
  padding-right: 70px;
}

#clearBtn::after {
  position: absolute;
  content: attr(data-value);
  font: 14px Montserrat;
  left: 25px;
  top: 3px;
  opacity: 0;
  color:var(--almostBlack);
  transition: opacity 0.1s;
}

#clearBtn:hover:after {
  opacity: 1;
}

.dataInput {
  width: 80%;
  max-width: 300px;
  padding: 5px 0;
  margin: 5px 0;
  border: none;
  font: 16px Montserrat;
  font-weight: 300;
  background-color: transparent;
  border-bottom: 1px solid var(--almostBlack);
  transition: border-color 0.2s, border-width 0.2s;
}

.dataInput:focus {
  outline: none;
  border-color: var(--blue);
}

.dataInput:-internal-autofill-selected {
  background-color: transparent !important;
}

.dataInput:-webkit-autofill {
  background-color: transparent;
}

.saveMenu {
  margin: auto;
}

.saveBtn {
  border-radius: 8px;
  font: 16px Montserrat;
  width: 100px;
  font-weight: 600;
  position: relative;
}

.roSend {
  width: 120px !important;
}

.saveBtn:hover {
  padding-right: 30px;
  color: var(--white);
}

.saveBtn::after {
  position: absolute;
  top: 12px;
  right: 15px;
  content: '\f1d8';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.1s;
}

#pdfBtn {
  width: 180px;
}

#pdfBtn:after {
  content: '\f15c';
  top: 11px;
}

.saveBtn:hover:after {
  opacity: 1;
}

.saveBtn:active {
  transform: translateY(1px);
}

.inputContainer {
  margin-bottom: 20px;
}

.saveButtons {
  margin-bottom: 100px;
}

.invalid {
  border-color: var(--red);
}

.sent {
  border: none !important;
}

.sent:hover {
  border: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  color: var(--blue) !important;
  cursor: default !important
}

.sent:hover:after {
  opacity: 0 !important;
}

#subLabel {
  font-size: 16px;
  padding: 10px 0 20px;
}

#spaceLabel{
  padding-bottom: 20px;
}

#consentLabel {
  padding-top: 1px;
  width: 60%;
  font: 14px Montserrat;
  font-weight: 300;
}

#consentContainer {
  padding-top: 10px;
  height: fit-content;
}

input:-webkit-autofill
{
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.watermarkContainer {
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 241.6px;
  height: 37.5px;
  pointer-events: none;
}

.watermark {
  height: inherit;
  width: inherit;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}

.langSelect {
  position: absolute;
  z-index: 4;
  right: 150px;
  top: 20px;
  display: flex;
  width: 100px;
  flex-direction: row;
  justify-content: space-around;
}

.langOption {
  font: 18px Montserrat;
  padding: 10px;
  cursor: pointer;
}

.langActive {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -25px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -25px inset;
}


@media(max-width: 1366px) {
  
  .roomItemSubtitle{
    display: none;
  }

  .roomItemName{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .detailDesc {
    font-size: 14px;
  }

  .detailPrice {
    font-size: 18px;
  }

  .menuItem {
    font-size:18px;
    padding: 2.5% 0 2.5% 20px;
  }
  .saveLabel {
    font-size: 22px;
  }

  #subLabel {
    font-size: 14px;
  }
}

@media(max-height: 767px) {
  .detailPrice {
    padding: 30px 0;
  }

  .saveButtons {
    margin-bottom: 50px;
  }

  #backBtn {
    margin-bottom: 20px;
  }

  #sendBtn {
    margin-top: 10px;
  }
}


/* @media(max-width: 1023px) {
  .mobileSupport {
    display: flex;
  }
} */