/*

    #three is relative and size set in init.js

    depth: 

        #mycanvas           1
        #ThreeGui           2
        #datgui             10
        #MobileUI           2
        #ar                 2
        #desktopOverlay     95
        #saved              100
        #loading            100
        #ThreeOverlayer     9999
        #select_model       2


*/

@font-face {
    font-family: Akzidenz;
    font-weight: 400;
    src: url(./fonts/AkzidenzGroteskBQ-Reg.otf) format('opentype');
}
@font-face {
    font-family: Akzidenz;
    font-weight: 500;
    src: url(./fonts/AkzidenzGroteskBQ-Medium.otf) format('opentype');
}
@font-face {
    font-family: Akzidenz;
    font-weight: 700;
    src: url(./fonts/AkzidenzGroteskBQ-Bold.otf) format('opentype');
}
body{
    width:100%;height:100%;
    overflow-x:hidden;
    overflow-y:auto;
    margin:0px;padding:0px;
    background: #fff;
    font-family: 'Akzidenz', sans-serif;
    letter-spacing: .09em;
}
.rel{
    position: relative;width:100%;height:100%;
}
div,span,input,a{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}
select{
    -webkit-appearance: none; -moz-appearance: none;appearance: none;
}
#Three{
    width:100%;height:100%; /*set by init.js*/
    position: relative;
    overflow: hidden;
    /* border:4px solid #000; */
    overflow: hidden;
    box-sizing: border-box;
    padding:0px;margin:0px;
}






#mycanvas{
    width: 100%;height:100%;
    position: absolute;
    cursor: crosshair;
    overflow:hidden;
    left: 0px;
    z-index: 1;
    background: #000;
    transition: left 0.5s;
}
#arWrap {
    position: absolute;
    z-index: 10;
    right: 0px;
    transition: right 0.5s;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
#arWrap span {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}
#arIcon {
    height: 60px;
    width: auto;
}
#ThreeGui{
    background: none;
    position: absolute;
    z-index:10;
    width:300px; 
    height:auto;
    right:5px;top:5px;
    background-color: #F1F1EC;
    transition: right 0.5s;
    -moz-user-select: none;-khtml-user-select: none;-webkit-user-select: none;-ms-user-select: none;user-select: none;
}
    @media only screen and (max-width: 640px){
        #ThreeGui{
            width:250px;
            top:55px;right:0px;
        }
    }
#myimage{
    position: absolute;
    cursor: crosshair;
    overflow:hidden;
    left:0px;top:0px;
    z-index: 1;
    background:none;
    width:100%;height:100%;
}
/* 3:4 mobile css */
#mobile34Background{
    height: 200vh;
    width: 100vw;
    background-color: #E5E5E5;
}
#mobile34BackgroundTest1{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30%;
    width: 100%;
}
#indicators{
    position: absolute;
    bottom: 45px;
    height: 15px;
    width: auto;
    /* display: grid; */
    display: none;
    grid-template-columns: min-content min-content min-content min-content;
    grid-auto-flow: column;
    align-items: center;
    gap: 5px;
}
.dot{
    border: #1C1C1C 1px solid;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    order: auto;
    transition: 0.35s ease;
    /* transition-timing-function:  */
}
.selectedDot{
    border: #1C1C1C 1px solid;
    background-color: #1C1C1C;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}
#ar{
    position:absolute;
    height:38px;
    /* width: 120px; */
    float: left;
    left:15px;
    top:15px;
    z-index:2;
    padding:8px;
    text-align: center;
    border: black 1px solid;
    color: black;
    font-size:14px;
    font-weight:400;
    cursor: pointer;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: transparent;
}

        /* height:38px;
        width: 120px;
        top: -40px;
        right: 15px;
        background-color: transparent;*/

@media only screen and (min-width : 1025px){ /*lazy solution to hover only on desktop */
    #ar:hover{
        border: 1px solid rgba(0,0,0,0.66);
        color: rgba(0,0,0,0.66);
    }
}
#shop{
    position:absolute;right:10px;bottom:10px;
    z-index:2;
    width:auto;height:auto;
    padding:6px 12px;text-align: center;
    border: 1px solid rgba(0,0,0,0.33);
    color: rgba(0,0,0,0.33);
    font-size:14px;font-weight:400;
    cursor: pointer;
    text-decoration: none !important;
    transition: right 0.5s;
}
#shop:hover{
    border: 1px solid rgba(0,0,0,0.66);
    color: rgba(0,0,0,0.66);
}
#select_model{
    background:none;
    margin: 10px;
    position: absolute;z-index: 2;
    bottom:0px;right:0px;
    width: 130px;height: 30px;
    padding:6px;
    border: 1px solid rgba(0,0,0,0.5);
    color: rgba(0,0,0);
    outline: none;
    font-size:9px;
    display: none;
}
#ThreeOverlayer{
    background: #fff;
    position: fixed;left:0px;top:0px;
    z-index:9999;
    width:100%;height:100%;
    overflow: hidden;
}

    #comingsoon{
        position: absolute;
        z-index:1001;
        text-align: center;
        font-size:16px;color:#000;
        font-weight:400;
        height: 50%;
        width: 80%;
    }
    #comingsoonImageWrap{
        display: flex;
        justify-content: center;
        align-items: center;
        width:100%;height:100%;
        z-index:1000;
        left: -100px;
        transition: width 0.5s;
    }
    #comingsoonImage{
        width:90%;height:90%;
        /* position: absolute; */
        object-fit: contain;
        opacity: 0.6;
    }
#loading{
    background: #fff8e2;
    position: absolute;
    width: 100%;height: 100%;
    font-weight: 700;font-size: 14px;
    z-index: 100;
}
#loading_text{
    position: absolute;z-index: 1;
    width:300px;height:20px;
    left: calc(50% - 150px);
    top: calc(50% - 10px);
    text-align: center;
    display: none;
    z-index: -1;
}
.lds-ring {
    display: inline-block;
    position: absolute;
    z-index: 2;
    width: 120px;
    height: 120px;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
    opacity: 0.10;
    /* border: 2px solid #000; */
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 100px;
    height: 100px;
    margin: 8px;
    border: 8px solid #000;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #000 transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
#variation_text{
    position: absolute;z-index: 500;
    width:300px;height:20px;
    left: calc(50% - 150px);
    bottom:10px;
    text-align: center;
    font-weight: 500;font-size: 16px;
    transition: left 0.5s;
    opacity: 0.5;
}
#saved{
    background: #fff8e2;
    pointer-events: none;
    position: absolute;
    width: 100%;height: 100%;
    font-weight: 700;font-size: 14px;
    z-index: 100;
    display: none;
}
    #saved_text{
        position: absolute;z-index: 1;
        width:300px;height:20px;
        left: calc(50% - 150px);top: calc(50% - 10px);
        text-align: center;
    }

#MobileMenuDummy{
    position: fixed;
    top:0;left:0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ====================================================================== * /
/* dat gui */
#datgui{
    -moz-user-select: none;-khtml-user-select: none;-webkit-user-select: none;-ms-user-select: none;user-select: none;
    position:absolute;
    z-index:10;
    width:380px;height:auto;
    top:0px;left:0px;
    /* display: none; */
}
#datgui select{
    border:1px solid #666;outline:none;
    background-color: #000;
    color:#eee;
    width:225px;
}
#datgui input[type=text]{
    color:#666;
}

/* ====================================================================== * /
/* admin info */
#adminInfo{
    -moz-user-select: none;-khtml-user-select: none;-webkit-user-select: none;-ms-user-select: none;user-select: none;
    position:absolute;
    z-index:10;
    width:auto;height:auto;
    bottom:10px;left:10px;
    background-color: #f1f1ec99;
    padding: 10px;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-auto-flow: column;
    column-gap: 20px;
    /* display: none; */
}
@media only screen and (max-width: 640px){
    #adminInfo{
        bottom:45px;
    }
}

.adminInfo{
    font-weight: 500;
    font-size: 10px;
    line-height: 16px;
    display: flex;
}
.adminInfoData{
    font-weight: 100;
}

/* ====================================================================== * /
/* variation buttons */
#Vari{
    position: relative;
    display: grid;
    text-align: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* grid-auto-flow: row; */
    width: 100%;height: auto;
    gap: 8px;
    /* row-gap: 15px;; */
}
.ThreeGuiVariButton{
    padding:8px;
    width: auto;
    align-items: center;
    justify-content: center;
    border: #000 1px solid;
    font-weight:400;
    letter-spacing: 0.09em;
    background-color: #FFFFFF;
    color: #000;
    font-size:10px;
    display: none;
    transition: opacity 0.15s ease, background-color 0.25s ease, color 0.25s ease;
    opacity: 1;
}

.ThreeGuiVariButton:hover{
    /* background-color: rgba(0, 0, 0, 0.5); */
    opacity: 0.65;
    cursor: pointer;
}

.ThreeGuiVariButtonSelected{
    background-color: #000;
    color: #FFF;
}

.ThreeGuiButton2{
    width: 25px;height:25px;
    padding-top: 6px;
    margin-right: 5px;margin-bottom: 5px;
    font-weight:600;
    background-color: rgba(0,0,0,0.15);
    color: #fff8e2;
    font-size:10px;text-align: center;
    display: none;
    transition: 0.1s linear;
}
.ThreeGuiButton2:hover{
    background-color: rgba(0,0,0,0.3);
    cursor: pointer;
}
@media only screen and (min-width : 1025px){ /*lazy solution to hover only on desktop */
    .ThreeGuiButton2:hover{
        background-color: rgba(0,0,0,0.3);
        cursor: pointer;
    }
}
.ThreeGuiButton2Selected{
    background-color: rgba(0,0,0,0.45);
}

/* ====================================================================== * /
/* open/closed buttons */
.AnimationsButtons{
    width:100%;height:auto;
    display: none;
}
.AnimationButton{
    display: block;
    width: 49%;height:auto;
    font-size:9px;font-weight:500;
    cursor: pointer;
    background-color: rgba(0,0,0,0.15);
    color: #fff8e2;
    padding: 6px;
    text-align: center;
    transition: 0.2s linear;
}
.AnimationButtonClosed{float: right;}
.AnimationButtonOpen{float: left;}
.AnimationButton:hover{
    background-color: rgba(0,0,0,0.30);
}

@media only screen and (min-width : 1025px){ /*lazy solution to hover only on desktop */
    .AnimationButton:hover{
        background-color: rgba(0,0,0,0.30);
    }
}
.AnimationButtonSelected{
    background-color: rgba(0,0,0,0.45);
}

/* ====================================================================== * /
/* in canvas UI */
#canvasUIWrapper{
    position: absolute;
    top: 40px;
    left: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    z-index: 5;
    transition: left 0.5s;
    opacity: 0.4;
}

#canvasUI{
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* !!!NF change back to 3 if removing camera button */
    gap: 10px 20px;
}

.canvasUILabel{
    font-size:12px;font-weight:500;
    text-align: center;
    transition: 0.2s linear;
    margin-bottom: 5px;
}

.canvasUIButtonGroup{
    display: flex;
    flex-direction: row;
    gap: 5px;
    /* transition: 0.2s linear; */
}

.canvasUIButton{
    flex: 1 1 0px;
    font-size:12px;font-weight:400;
    letter-spacing: 0.04em;
    display: flex;
    transition: 0.2s;
    text-align: center;
    outline: solid 1px black;
    cursor: pointer;
    height: 16px;
}

.canvasUIButtonText{
    font-size:10px;
    font-weight:200;
    width: 100%;
    text-align: center;
    line-height: 16px;
    /* transition: 0.2s linear; */
    /* border-bottom: 2px solid transparent; */
}

@media only screen and (max-width: 640px){
    #canvasUIWrapper{
        width: auto;
        justify-content: left;
        left: calc(50% - 160px);
    }
    .canvasUILabel, 
    .canvasUIButtonText{
        font-size:10px;
    }
}

.canvasUIButton:hover{
    opacity: 0.5;
}

.canvasUIButton:active{
    opacity: 1;
    transition: 0.05s linear;
}

.canvasUIButtonSelected{
    background-color: #000;
    color: #FFF8E2;
    /* border-bottom: 2px solid; */
}

/* ====================================================================== * /
/* mobile canvas UI arrows*/
#wrapperMobileUI{
    /* padding-top: 50px; */
    position: absolute;
    top: 0;
    height: 100%; /*needs to be set to height of canvas*/
    width: 100%;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#introOverlay{
    position: absolute;
    opacity: 1;
    cursor: pointer;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 96;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}

#introOverlayBackground{
    position: absolute;
    opacity: 1;
    cursor: pointer;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 95;
    background-color: rgba(255, 255, 255, 0.6);
    transition: opacity 0.5s;
}

#promptDesktopUIWrapper{
    pointer-events: none;
    z-index: 90;
    position: absolute;
    width: 100%;
    height: 100%;
    display: none; /*set to flex to show*/
    align-items: center;
    justify-content: center;
    transition: left 0.5s;
}

.promptDesktopUI{
    font-size: 24px;line-height: 30px;
    font-weight: 500;
    text-align: center;
    animation-name: introPulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.promptOverlayUI{
    font-size: 24px;line-height: 30px;
    font-weight: 500;
    text-align: center;
    animation-name: introPulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes introPulse {
    from {
      opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
    to {
      opacity: 0.4;
    }
  }

.mobileUI{
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#titleMobileUI{
    font-weight: 700;font-size: 20px;
    width: 100%;
    bottom: 75px;
    text-align: center;
    animation-name: fadeOpacity;
    animation-duration: 2s;
    opacity: 0;
    position: absolute;
}

@keyframes fadeOpacity {
    0% {opacity: 0;}
    20% {opacity: 1;}
    40% {opacity: 1;}
    80% {opacity: 0;}
}

.arrowMobileUI{
    /* background-color: rgba(192, 192, 192, 0.534); */
    height: 100%;
    width: 50px;
    pointer-events: all;
    opacity: 0.5;
    transition: opacity 0.5s;
}
.arrowMobileUI:active{
    opacity: 1;
}

#leftMobileUI,#rightMobileUI{
    display: none;
}

/* ====================================================================== * /
/* grid buttons */
.GridButtons,.VisualizeButtons{
    width:100%;height:auto;
}
.GridButton,.VisualizeButton{
    display: block;float:left;
    width: 32%;height:auto;
    font-size:8px;font-weight:500;
    cursor: pointer;
    background-color: rgba(0,0,0,0.15);
    color: #fff8e2;
    padding: 6px;
    text-align: center;
    transition: 0.2s linear;
}

.gridSpan2{
    grid-column: 2 / 4;
}

.GridButton:hover,.VisualizeButton:hover{
    background-color: rgba(0,0,0,0.30);
}

@media only screen and (min-width : 1025px){ /*lazy solution to hover only on desktop */
    .GridButton:hover,.VisualizeButton:hover{
        background-color: rgba(0,0,0,0.30);
    }
}
.GridButtonSelected,.VisualizeButtonSelected{
    background-color: rgba(0,0,0,0.45);
}
.GridButtonM,.GridButtonF,.VisualizeObject,.VisualizeParty{
    margin-left:3px;
}

/* ====================================================================== * /
/* material preview, floating */
#MatPrev{
    position: absolute;
    left: -146px;
    top: 0px; /* set by js */
    width: 130px;height: 130px;
    /* background-size: cover; */
    /* background-color: #eee; */
    opacity: 0;
    transition: opacity 0.15s linear;
    pointer-events: none;
}
#MatTitle{
    margin-top: 140px;
    font-family: 'Akzidenz', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.09em;
}

#ThreeGuiUI{
    display: flex;
    flex-direction: column;
    margin: 25px;
    /* background-color: coral; */
    letter-spacing: 0.04em;
    margin-top: 40px;
}


#ThreeMaterialUI{
    /* margin-top: 30px; */
}
.ThreeGuiText{
    width:100%;height:auto;
    font-weight: 500;
    font-size:12px;
    /* margin-bottom: 5px;margin-top: 10px; */
    padding-bottom: 7px;
    margin-bottom: 14px;
    border-bottom: 1px solid;
}
@media only screen and (max-width: 640px){
    .ThreeGuiText{
        width:100%;height:auto;
        font-weight: 500;
        font-size:10px;
        /* margin-bottom: 5px;margin-top: 10px; */
        padding-bottom: 2px;
        margin-bottom: 10px;
        border-bottom: 1px solid;
    }
}

#HideShowUI{
    position: absolute;
    width:50%;height:auto;
    float: right;
    font-weight: 500;
    font-size:12px;
    /* letter-spacing: 0.09em; */
    /* border: 1px solid rgba(0,0,0,0); */
    border: none;
    color: rgba(0,0,0,0.33);
    padding:2px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F1F1EC;
    box-sizing: border-box;
}
/* #HideShowUI:hover{
    color: rgba(0,0,0,0.66);
} */


@media only screen and (max-width: 640px){
    #HideShowUI{
        height:38px;
        width: 120px;
        top: -40px;
        right: 15px;
        background-color: transparent;
        border: black 1px solid;
        font-size: 14px;
        font-weight: 400;
        color: black;
    }
    .buttonPressed{
        background-color: rgba(0,0,0,0.66) !important;
        border: 1px solid rgba(0,0,0,0.66) !important;
        color: #F1F1EC !important;
    }
}

@media only screen and (min-width : 1025px){ /*lazy solution to hover only on desktop */
    #HideShowUI:hover{
        /* border: 1px solid rgba(0,0,0,0.66); */
        color: rgba(0,0,0,0.66);
    }
}

.ThreeGuiButtonRow{
    display: flex;
    column-gap: 14px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 640px){
    .ThreeGuiButtonRow{
        column-gap: 10px;
        margin-bottom: 8px;
    }
}

.ThreeGuiButtonWrap{
    width: 100%;
}

.ThreeGuiButton,.ThreeGuiButtonBlank{
    opacity: 1;
    padding-bottom: 100%;
    /* border: #000 1.5px solid; */
    transition: 0.1s linear;
    box-shadow: inset 0 0 0 1px #7D7D7D;
}

.ThreeGuiButtonSelected{
    box-shadow: inset 0 0 0 3px #000;
}
.ThreeGuiButton:hover{
    opacity: 0.9;
    transition: 0.15s linear;
    cursor: pointer;
}

@media only screen and (min-width : 1025px){ /*lazy solution to hover only on desktop */
    .ThreeGuiButton:hover{
        transition: 0.15s linear;
        cursor: pointer;
    }
}

.ThreeGuiButtonBlank{
    background-color: rgba(0,0,0,0.033);
    box-shadow: inset 0 0 0 1.5px #7D7D7D11;
}

#Walnut{
    background-color: rgb(75, 61, 36);
}
#wAsh{
    background-color: rgb(160, 113, 39);
}
#wOak{
    background-color: rgb(207, 183, 141);
}
#Black{
    background-color: rgb(51, 51, 51);
}
#White{
    background-color: rgb(207, 207, 207);
}
#Green{
    background-color: rgb(79, 112, 87);
}
#warning{
    position: absolute;
    z-index: 100;
    width:300px;height:100px;
    left: calc(50% - 150px);
    top: calc(50% - 50px);
    background-color: #fff;
    border-radius: 5px;
    display: none;
}
.VariLabel{
    width:100%;height:auto;
    font-weight: 500;font-style: normal;font-size:12px;
    margin-bottom: 8px;margin-top: 8px;
    opacity: 0.66;
}
#v1{
    color: rgb(49, 49, 49);
}
#arLink{
    width: 50px;
    height: 50px;
    margin-left: -2px;
    margin-top: 10px;
}
#quoteWrap{
    cursor: pointer;
    /* margin: 20px 50px; */
    padding: 0px 25px;
    line-height: 11px;
    margin-top: 63px;
    margin-left: 5px;
    background-color: black;
    float: left;
    color: white;
    font-family: 'Akzidenz', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 10px;
    /* border: 1px solid rgb(202, 202, 202); */
}











#shop_canvas{
    position: relative;
    max-width:1400px;
    overflow:hidden;
}
#shop_container{
    max-width:1400px;height: auto;
    /* overflow-y: scroll; */
    font-size:100px;
    margin:0px auto;
}
.shop_template_img{
    width: 100%;display: block;
}










/* quote form */
/* ================================================================== */
#QuoteButton{
    /* width:150px;  */
    height: 33px;
    font-size:12px;
    color:#fff;
    background-color:#000;
    border: 1px solid #000;
    /* padding:5px; */
    margin-top:20px;
    text-align: center;
    font-weight:400;
    letter-spacing: 0.09em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s ease, background-color 0.25s ease, color 0.25s ease;
}
#QuoteButton:hover{
    cursor: pointer;
    opacity: 0.65;
    /* color:#000;background-color:#fff8e2; */
}
#QuoteDarken{
    position: absolute;
    z-index:999;
    width:100%;height:100%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor:alias;
    display: none;
}
#Quote{
    box-sizing: border-box;
    width:360px;
    height:auto;
    /* min-height:545px; */
    overflow: hidden;
    padding:20px;
    background-color: #fff;
    border: 1px solid #000;
    position: absolute;
    z-index:1000;
    left:calc(50% - 180px);
    /* top:calc(50vh - 250px);  */
    display: none;
}
    .QuoteVertSpace{
        width:100%;height:10px;
    }
    #QuoteClose{
        position: relative;
        z-index: 1;
        top:0px;right:0px;
        float: right;
        margin-top:10px;
        background-image: url("images/closeX_thin.png");
        background-size: 14px 14px;
        width:14px;height:14px;
        cursor: pointer;
    }
    #QuoteTellMe{
        font-size:14px;color:rgb(80, 80, 80);;
        font-weight:200;
        width:100%;height:auto;
        margin-top: 10px;
    }
    #QuoteItemName{
        font-size:11px;color:#000;
        font-weight:800;
        width:100%;height:auto;
        margin-top: 8px;
        margin-bottom: 10px;
    }
    .QuoteInput{
        font-size:9px;color:#000;
        border: 1px solid #000;
        width:100%;height:2rem;
        padding:8px;
        background-color: #F5F5F5;
        box-sizing: border-box;
        margin-top:0.875rem;
        outline: none;
    }
    .QuoteTextarea{
        font-size:9px;color:#000;
        font-family: 'Montserrat', sans-serif;
        border: 1px solid #000;
        width:100%;height:100px;
        padding:8px;
        background-color: #F5F5F5;
        box-sizing: border-box;
        margin-top:0.875rem;
        outline: none;
        resize: none;
    }
    #QuoteSubText{
        font-size:10px;line-height:16px;
        color:rgb(80, 80, 80);
        font-weight:200;
        width:100%;height:auto;
        margin-top:1rem;
        text-align:center;
    }
    #QuoteSubmitButton{
        width:40%;margin-left:30%;
        font-size:10px;
        color:#fff;background-color:#000;
        border: 1px solid rgb(80, 80, 80);
        /* padding:6px 0px; */
        height: 32px;
        line-height: 31px;
        margin-top:1rem;
        text-align: center;
        font-weight:200;
        box-sizing: border-box;
    }
    #QuoteSubmitButton:hover{
        cursor: pointer;
        color:#000;background-color:#fff;
    }
    #QuoteSubmitted{
        position: absolute;
        z-index:1000;
        text-align: center;
        width:400px;height:24px;
        left: calc(50% - 200px);
        top: calc(50% - 12px);
        font-size:18px;color:#000;
        font-weight:800;
        display: none;
    } 
