@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 {
    --entrance: #f94144;
    --bedroom: #f3722c;
    --secondBedroom: #f8961e;
    --guestRoom: #f9844a;
    --bathroom: #f9c74f;
    --guestBathroom: #90be6d;
    --livingRoom: #43aa8b;
    --kitchen: #4d908e;
    --office: #577590;
    --dressingroom: #277da1;
    --seconddressingroom: #E01A4F;
    --terrace: #2ec4b6;
    --garage: #C6DBF0;
    --garden: #C7EFCF;
    --black: #000000;
    --white: #ffffff;
    --almostBlack: #111111;
    --blue: #3366ff;
    --lightBlue: #99b3ff;
    --grey: #8A897C;
    --green: #2CA58D;
    --orange: #DE6E4B;
    --red: #ef233c;

    --chevron: url("../assets/svg/chevron-up-solid.svg");
  
}

/* html {
  position: fixed;
} */

#dressingroom{
    background-color: var(--entrance) ;
}

#bedroom {
    background-color: var(--bedroom) ;
}

#secondbedroom {
    background-color: var(--secondBedroom) ;
}

#guestroom {
    background-color: var(--guestRoom) ;
}

#bathroom {
    background-color: var(--bathroom) ;
}

#guestbathroom {
    background-color: var(--guestBathroom) ;
}

#livingroom {
    background-color:var(--livingRoom) ;
}

#kitchen {
    background-color: var(--kitchen) ;
}

#office {
    background-color: var(--office);
}

#entrance {
    background-color: var(--dressingroom) ;
}

#terrace {
    background-color: var(--terrace) ;
}

#garage {
  background-color: var(--garage);
}

#seconddressingroom {
  background-color: var(--seconddressingroom);
}

#garden {
  background-color: var(--garden);
}

body {
    position: relative;
    margin:  0;
    height: 100%;
}

.scrollContainer {
    /* overflow-y: scroll; */
    max-height: 100vh;
    width: 100%;
    height: 100%;
    margin: 0;
}

.page {
    width: 100%;
    height: fit-content;
    /* overflow-y: scroll; */
    min-height: 100vh;

    flex: none;
    font: 48px Montserrat;
}

.itemContainer {
    width: 100%;
    justify-content: center;
    padding-bottom: 10%;
}

.item {
    width: 90%;
    background-color: white;
    border-radius: 16px;
    margin:  20px auto;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
    0 2px 2px rgba(0,0,0,0.12), 
    0 4px 4px rgba(0,0,0,0.12), 
    0 8px 8px rgba(0,0,0,0.12),
    0 16px 16px rgba(0,0,0,0.12);
}

.itemName {
    width: 100%;
    padding: 10px 0 0;
    font: 20px Montserrat;
    font-weight: 600;
    text-align: center;
}

.itemOptions {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
}

.itemDescription {
    font-size: 14px;
    width:  90%;
    margin: auto;
    padding: 10px 0;
    text-align: center;
}

.iOption {
    width: 34%;
    text-align: center;
    font-size: 21px;
    padding: 10px 0;
}

.quantity {
    background-color: white;
}

.quantity > span {
    height: fit-content;
}

.qControl {
    background-color: black;
    color: white;
    transition: color 0.1s, background-color 0.1s;
}

.qControl:active {
    background-color: white;
    color: black;
}

.totalContainer {
    position: fixed;
    bottom: -96vh;
    width: 100%;
    height: 100vh;
    padding: 3% 0;
    text-align: center;
    font: 24px Montserrat;
    background-color: white;
}

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

.scrollable {
  pointer-events: all !important;
}

.invis {
    visibility: hidden;
}

.pageHeader {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    font: 28px Montserrat;
    padding-top: 10px;
    width: 90%;
    margin: auto;
}

.hMenu {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100vh;
    overflow-y: scroll;
    background-color: white;
    z-index: 2;
    transition: transform 0.15s;
}

.hMenuFocus {
    transform: translateX(100%);
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}

.selectContainer {
    padding: 12% 0;
    
}

.pageSelect {
    border-bottom: 1px solid grey;
    width: 80%;
    margin: auto;
    padding: 10px 0 10px 5px;
    font: 18px Montserrat;
    transition: background-color 0.05s;
}

.pageSelect:active {
    background-color: #00000044;
}

.configOverlay {
    background-color: white;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    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;
z-index: 10;
transition: opacity 0.2s;
bottom: -135px;
left: -260px;
border-radius: 12px;
width: 300px;
height: 112px;
padding: 10px;
padding-top: 20px;
font: 13px 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;
}

.configMenu{
width: 70%;
height: 50%;
margin: auto;
display: flex;
flex-direction: column;
/* overflow: hidden; */
}

.dropdownContainer {
font: 18px Montserrat;
font-weight: 300;
margin: auto;
width: 90%;
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 auto 3% auto !important;

}


.desktopLabel {
  font: 12px Montserrat;
  padding: 0 0 0 0 !important;
  font-weight: 300;
  margin: 3px auto 17%;
}

.logoContainer {
width: 101%;
}

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

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

.hidden {
    display: none;
}

.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;
-webkit-tap-highlight-color: rgba(0,0,0,0);

}

.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);
}

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

.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;
}



.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;
}
}

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

.langOption {
font: 14px Montserrat;
padding: 10px;
cursor: pointer;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}

.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;
}

  .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;
  }

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

  .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;
  }

  .pageTitle {
      max-width: 280px;
      text-align: center;
  }
  
  .buttonContainer {
      width: 100%;
      display: flex;
      justify-content: center;
  }

  .finBtn {
      border-color: var(--blue);

  }

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

  .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;
  }

  #consentLabel {
    padding-top: 1px;
    width: 60%;
    font: 14px Montserrat;
    font-weight: 300;
  }
  
  #consentContainer {
    padding-top: 10px;
    height: fit-content;
  }

  .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;
    margin-top: 20px;
  }

  .auxBtn:active {
    border-color: transparent;
    color: var(--white);
    background-color: var(--blue);
  
  }

  .auxBtn:active::after {
    color: white;
  }

  .saveBtn {
    border-radius: 8px;
    font: 16px Montserrat;
    width: 100px;
    font-weight: 600;
    position: relative;
  }
  
  .roSend {
    width: 120px !important;
  }
  
  .saveBtn{
    padding-right: 30px;
  }
  
  .saveBtn::after {
    position: absolute;
    top: 12px;
    right: 15px;
    content: '\f1d8';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--blue);
    opacity: 0;
    transition: opacity 0.1s;
  }
  
  #pdfBtn {
    width: 180px;
  }
  
  #pdfBtn:after {
    content: '\f15c';
    top: 11px;
  }
  
  .saveBtn:after {
    opacity: 1;
  }
  
  .saveBtn:active {
    transform: translateY(1px);
  }

  .saveButtons {
      padding-bottom: 30%;
  }

  .saveMenuContainer {
      width: 90%;
      margin: auto;
  }

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

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

  .sent { 
      border-color: transparent;
  }

  .sent::after {
    opacity: 0;
  }
  
  button:active {
      outline: none;
      -webkit-tap-highlight-color: rgba(0,0,0,0);

  }

  button:focus {
      outline: none;
      -webkit-tap-highlight-color: rgba(0,0,0,0);

  }

  .totalContainer {
    transition: transform 0.2s;
    pointer-events: none;
  }

  .totalContainerFocused {
    transform: translateY(-60vh);
    box-shadow: rgba(0, 0, 0, 0.56) 0px -30px 70px 4px;
    box-shadow: rgba(0, 0, 0, 0.7) 0px -10px 70px 4px;
    pointer-events: all;

    outline: none;
  }

  .cartList {
    margin: 5vh auto 0;
    padding-bottom: 20px;
    width: 90%;
    background-color: var(--white);
    font: 14px Montserrat;
    max-height: 55vh;
    overflow-y: scroll;
    scrollbar-width: none;
    text-align: start;
  }
  
  .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;
  }

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

  .cartChev {
    transition: transform 0.1s;
  }

  .rotate {
    transform: rotate(180deg);
  }

  .tOption {
    pointer-events: all;
    transition: transform 0.1s;
  }

  .tOption:active {
    transform: translateY(2px);
  }

  .totalAmount {
    font: 18px Montserrat;
    font-weight: 300;
  }

  #total {
    font-size: 24px;
    font-weight: 300;
  }
