
@font-face {
    font-family: MonumentGroteskRegular;
    src: url('fonts/MonumentGroteskRegular.ttf');
    }
    body.custom_font{
    font-family: MonumentGroteskRegular; /* no .ttf */
    }

    
    @font-face {
    font-family: MonumentGroteskBold;
    src: url('fonts/MonumentGroteskBold.ttf');
    }
    body.custom_font{
    font-family: MonumentGroteskBold; /* no .ttf */
    }
    
    
    @keyframes animShowFromLeft {
        0%   { transform: translateX(150%);}
        100%  { transform: translateX(0%);}
    }
    
    @keyframes animHideFromLeft {
    /*  transition: all 0.4s ease-out;*/
        0%   { transform: translateX(0%);}
        100%  { transform: translateX(150%);}
    }

    @keyframes animShowFromRight {
        0%   { transform: translateX(150%);}
        100%  { transform: translateX(0%);}
    }
    @keyframes animHideFromRight {
    /*  transition: all 0.4s ease-out;*/
        0%   { transform: translateX(0%);}
        100%  { transform: translateX(150%);}
    }
    
    @keyframes animationOpacityHide {
        0%   { opacity:1;}
        100%  { opacity:0;}
    }
    
    @keyframes animationOpacityShow {
    
        0%   { opacity:0;}
        25%   { opacity:1;}
        50%   { opacity:1;}
        75%   { opacity:0;}
        100%  { opacity:1;}
    }
    
    body {
        height: 100%;
        margin: 0;
        padding: 0;
        font-family: arial;
        font-size: 1em;
        width: 100%;
        height: 100%;
        background-color: #fffff;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
    }
    
    
    @media (min-width: 769px) {
        .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background:  linear-gradient(rgb(120, 120, 120) 48.74%, rgb(116, 112, 112) 56.72%, rgb(159, 157, 157) 88.24%);
        z-index: 9999;
        padding-top: 25%;
        color: rgb(70, 70, 70);
        font-family:sans-serif;
        font-size:1em;
        text-align: center;
        }	
        .preloader-icon
        {
        position: relative;
        width: 100%;
        height: 100%;
        animation: shake 7.5s infinite;
        }	@keyframes shake
        {
        0% { transform: translate(1px, -1px) rotate(0deg);}
        10% { transform: translate(1px, -3px) rotate(-1deg);}
        20% { transform: translate(1px, -5px) rotate(-3deg);}
        30% { transform: translate(1px, -7px) rotate(0deg);}
        40% { transform: translate(1px, -9px) rotate(1deg);}
        50% { transform: translate(1px, -11px) rotate(3deg);}
        60% { transform: translate(1px, -9px) rotate(0deg);}
        70% { transform: translate(1px, -7px) rotate(-1deg);}
        80% { transform: translate(1px, -5px) rotate(-3deg);}
        90% { transform: translate(1px, -3px) rotate(0deg);}
        100% { transform: translate(1px, -1px) rotate(-1deg);}
        }
   
        .arrow-open-close {
        position:relative;
        width:15px;
        height:10px;
        cursor:pointer;
        top: 0.2em;
        &:before, &:after {
            transition: 0.15s all ease-in-out;
            position:absolute;
            content: '';
            width:54%;
            height:1px;
            background:black;
            top:49%;
            border-radius: 5px;
        }

        &:before {
            transform:rotate(-150deg);
            left:0;
        }
        &:after {
            transform:rotate(150deg);
            right:0;
        }
        }

        .toggle-btn {
            cursor:pointer;
            width: 94%;
            max-width:100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            height: 2.5em;
            padding-left: 1em;
            background: #8E494914;
            border-radius: 1em;
            margin: 0.3em 0 0em 0.7em;
            margin-left: 0.7em;
            padding-right: 1em;
            padding-bottom: 0.7em;

        .arrow-open-close {
            flex-shrink: 0;
            margin: 6px 0px 0 3em;
        }
        .toggle-wording {
            float:left;
            font-size:0.8em;
            color: black;
            flex-grow: 1;
            height: 2em;
            line-height: 1em;
            vertical-align: middle;
            font-family: MonumentGroteskBold;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-start;
            text-align: center;
        }

            &.hide-toggle {
            .arrow-open-close {
            &:before {
                transform:rotate(-210deg);
                left:0;
            }
            &:after {
                transform:rotate(210deg);
                right:0;
            }
            }
            }
        }

        

        .arrow-open-closeMain {
        position:relative;
        width:15px;
        height:10px;
        cursor:pointer;
        top: -0.2em;
        &:before, &:after {
            transition: 0.15s all ease-in-out;
            position:absolute;
            content: '';
            width:54%;
            height:1px;
            background:black;
            top:49%;
            border-radius: 5px;
        }

        &:before {
            transform:rotate(-150deg);
            left:0;
        }
        &:after {
            transform:rotate(150deg);
            right:0;
        }
        }

        .toggle-btnMain {
            cursor:pointer;
            width: 94%;
            max-width:100%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            height: 2.5em;
            padding-left: 1em;
            background: #8E494914;
            border-radius: 1em;
            margin: 0.3em 0 0em 0.7em;
            margin-left: 0.7em;
            padding-right: 1em;

        .arrow-open-closeMain {
            flex-shrink: 0;
            margin: 6px 0px 0 3em;
        }
        .toggle-wordingMain {
            float:left;
            font-size:0.8em;
            height: 2em;
            line-height: 1em;
            vertical-align: middle;
            color: black;
            flex-grow: 1;
            font-family: MonumentGroteskBold;
        }

            &.hide-toggleMain {
            .arrow-open-closeMain {
            &:before {
                transform:rotate(-210deg);
                left:0;
            }
            &:after {
                transform:rotate(210deg);
                right:0;
            }
            }
            }
        }

    
        .Coverdiv{
                display: none;
                position: absolute;
                width: 169px;
                height: 2.3em;
                overflow: hidden;
                background-color:  #dadada;
                border-radius: 3em;
                z-index: 30;
                opacity: 0.8;
                margin-left: 0em;
            }
        /* CSS for the loader element */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background:  white;
            z-index: 9999;
            padding-top: 25%;
            color: rgb(70, 70, 70);
            font-family:sans-serif;
            font-size:1em;
            text-align: center;
        }
        #subloader {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            z-index: 9999;
            display: block; 
        }
        .loaderSpin {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #356b4d;
            border-radius: 50%;
            animation: spin 2s linear infinite;
            z-index: 9999;
            display: block; 
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
            
    
        .vertical-text {
        transform: rotate(-90deg);
        transform-origin: left top 0;
        float: left;
        }
    
        html, body {
            overflow: auto;
    
            /* For Chrome, Safari and Opera */
            ::-webkit-scrollbar {
                width: 12px;
            }
            ::-webkit-scrollbar-track {
                background: #e0e0e0;
            }
            ::-webkit-scrollbar-thumb {
                background: #6969dd;
            }
            ::-webkit-scrollbar-thumb:hover {
                background: #555;
            }
    
            /* For Firefox */
            scrollbar-color: #6969dd #e0e0e0;
            scrollbar-width: thin;
        }
    
    
    
    
    
        #c {
        width: 100%;
        height: 100%;
        display: block;
        margin-top: 8em;
        position: absolute;
        }
    
    
        #container {
        position: absolute;
        width: 73vw;
        height: 100vh;
        overflow: hidden;
        z-index: -100;
        margin-top: 0em;
        background-color: #ffffff;
        }
    
    
    
        #Info {
            transform-origin: center;
        }
        #NameWallMounting,#NameAddVisit {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .mac-os #NameAddVisit {
            height: 0.8em; 
            
        }
        .mac-os #NameWallMounting {
            height: 0.8em; 
            
        }

        #menuS {
            width: auto;
        }


        #HintPanel {
            z-index: 100;
        }

        #menuHeight{
            padding-bottom: 0.7em;
        }
        
        @keyframes beat{
            to { transform: scale(1.3); }
        }
        @keyframes changeColor {
            0% {
              background-color: #fff;
            }
         
            50% {
              background-color: #72a186;
            }
         
            100% {
              background-color: #fff;
            }
        }
        

        #InfoWindow {
            position: fixed;
            overflow-y: hidden;
            left: auto;
            padding: 1.7em 1.7em 2.8em 2.8em;
            width: auto;
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            background-color: #ffffff;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            color: #3c3c3c;
            overflow-y: scroll;
            overflow-x: hidden;
            z-index: 5;
            font-family: MonumentGroteskRegular;
            font-size: 0.9em;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }    
        #InfoWindow::-webkit-scrollbar-track {
            background: #fff;
        }

        #buttonsAddVisit {
            display: flex;
        }
        #buttonAddVisit {
            display: flex;
        }

        #LinksVideo {
            height: 100%;
            overflow-y: scroll;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            padding-right: 2em;
        }
        #BlockVideo{
            display:flex; 
            flex-direction: row;
        }
        #youtubePlayer{
            width: 576px;
            height: auto;
        }
    

        #closeHelpInfo{
            right: 0em;
            top: -0.6em;
            position: relative;
        }

        #HelpInfo{
            width: 100%;
            height: 100%;
            background-color: #86868670;
            z-index: 100;
            position: fixed;
            display: none;
            align-items: center;
            justify-content: center;
        }
    
        .popup-container {
            width: 100%;
            height: 100%;
            background-color: #47474770;
            z-index: 100;
            position: fixed;
            display: none;
            align-items: center;
            justify-content: center;
        }
        #KeppYpurDesign{
            font-size: 1em; 
            font-family: 'MonumentGroteskBold'; 
            margin-top: 43px;
        }
        #HeadsUp{
            width: 34em; 
            justify-content: center; 
            text-align: center;
        }
        #ClosePanelHeadsUp{
            margin-left: 30em;
            margin-top: -1em;
            margin-bottom: -1em;
        }

        .email-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 3em;
            border-radius: 2em;
            width: 33em;
        }
        #sendEmailButton {
            white-space: nowrap;
            border-radius: 0 5em 5em 0em;
            height: 3.2em;
            width: 22em;
            font-size: 0.7em;
            line-height: 1;
            padding: 0.4em 0em 1.5em 0em;
            border: 1px solid #356b4d;
            text-align: center;
        }

        .popup-info-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 2.4em;
            border-radius: 2em;
            max-width: 31vw;
            width: auto;
            max-height: 83vh;
            font-family: MonumentGroteskRegular;
            text-align: center;
        }

        input[type="email"] {
            font-size: 0.7em;
            padding: 0.8em 2em 0.7em 1.2em;
            text-align: left;
            width: 100%;
            margin: 0;
            background-color: #fff;
            background-size: cover;
            border: 1px solid #356b4d;
            border-radius: 30px 0px 0px 30px;
            color: #000;
        }
    
        #headerPopupImage {
            width: 100%;
            position: relative;
            top: 50%;
            left: 50%;
            transform: translate(-50%, 0%);
        }

        
    
    
    
        #PopUpClickWindow {
            right: 24vw;
            margin-top: 16em;
            width: 14.2em;
            height: auto;
            background-color: rgba(235, 235, 235, 0.5);
            border: 1px solid rgb(197, 201, 205);
            border-radius: 0.5em 0.5em 0.5em 0.5em;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
            color: #000000;
            font-size: 0.7em;
            font-family: monospace;
            top: auto;
            position: fixed;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 1em;
            overflow-y: auto;
            text-align: center;
        }
    
        #ClickInfo{
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            width: 100%;
            align-items: center;
            height: 5.2em;
        } 
    
    
        a:link {
            color: black;
            font-family: MonumentGroteskBold;
        }
    
        a:visited {
            color: black;
            font-family: MonumentGroteskBold;
        }
        a:hover {
            color: #38734c;
            text-decoration: underline;
            font-family: MonumentGroteskBold;
        }
        a:active {
            color: #38734c;
            font-family: MonumentGroteskBold;
        }  
    
    
    
    
        #mainMenu {
        position: fixed;
        width: 21em;
        height: 85vh;
        overflow-x: hidden;
        z-index: 10;
        margin-top: 0em;
        background-color: rgb(197, 201, 205);
        right: 2vw;
        border-radius: 0 0 0.5em 0.5em;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        }
    
        #TopPanel {
            position: fixed;
            right: 0vw;
            width: 27vw;
            height: 12vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 2em;
            align-items: flex-start;
            background-color: #fff;
            color: #000;
            font-size: 1.12em;
            z-index: 10;
            font-family: MonumentGroteskBold;
            box-shadow: rgba(0, 0, 0, 0.1) 00px 10px 20px 10px, rgba(0, 0, 0, 0.05) 0px 4px 6px 0px;

        }

        #TopEnd{
            width: 90%;
        }

        .flexFiller {
            flex-grow: 1;
        }

        #productName {
            margin-top: 0.4em;
            display: flex;
            flex-direction: row;
            height: 6vh;
            line-height: 5vh;
        }

        #subProductName {
            font-family: MonumentGroteskRegular;
            margin-left: 0.2em;
        }

        

        #OpenaButtonsPanel{
            width: 155px;
            background-color: #356b4d;
            color: white;
            border-radius: 15px;
            font-size: 0.8em;
            justify-content: center;
            padding-right: 0.7em;
            font-family: MonumentGroteskRegular;
        }
    
        #productPrice{
            font-family: MonumentGroteskBold;
            color: #000;
            font-size: 2.2vw;
            height: 7vh;
            line-height: 2.2vh;
        }
    
        #MiddlePanel {
            display: flex;
            position: fixed;
            flex-direction: column;
            align-items: center;
            z-index: 11;
            margin-top: 12vh;
            padding-right: 0.6em;
            right: 0vw;
            width: 27vw;
            height: 76vh;
            color: #000;
            background-color: #fff;
            font-family: MonumentGroteskRegular;
            font-size: 1.3em;
            scrollbar-width: thin; /* width of the entire scrollbar */
            scrollbar-color: #e9e9ed #f1f1f1; /* thumb and track color */
            overflow-y: scroll; /* make vertical scrollbar always visible */
            overflow-x: hidden; /* make vertical scrollbar always visible */
            box-shadow: rgba(0, 0, 0, 0.1) 0px 15px 15px 0px, rgba(0, 0, 0, 0.05) 0px 10px 10px -0px;
        }
        #MiddlePanelProduct1 {
            transform: translateX(0%);
        }

        /* For webkit browsers like Chrome and Safari */
        #MiddlePanel::-webkit-scrollbar {
            width: 10px; /* Width of the vertical scrollbar */
        }
    
        #MiddlePanel::-webkit-scrollbar-track {
            background: #fff; /* Color of the tracking area */
        }
    
        #MiddlePanel::-webkit-scrollbar-thumb {
            background: #e9e9ed; /* Color of the scroll thumb */
            width: 7px;
            border: 3px solid transparent;
            border-radius: 100px;
            /* background-clip: content-box; */
        }
    
        #MiddlePanel::-webkit-scrollbar-thumb:hover {
            background: #356b4d; /* Color of the scroll thumb on hover */
        }
    
    
        #BottomPanel {
            position: fixed;
            right: 0vw;
            width: 27vw;
            height: 12vh;
            z-index: 12;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            background-color: #fff;
            color: white;
            top: 88vh;
            font-size: 1.2vw;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;

        }
        #SubBottomPanel{
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            width: 100%;
            flex-grow: 1;
        }
    
    
        .speech {
            left: 53.4em;
            font-size: 0.7em;
            color: #000;
            background: #dfe9e4;
            position: fixed;
            padding: 12px;
            border-radius: 10px;
            margin-top: 5.4em;
            max-width: 39em;
            
        }
        .speech::after {
            content: "";
            border: 10px solid transparent;
            position: absolute;
        }
        .right.speech::after {
            border-left-color: #dfe9e4;
            border-top: 0;
            top: -1px;
            left: 9em;
            margin-left: 4em;
            transform: rotate(45deg);
        }
        
        .subMiniTextGray {
            opacity:0.5; 
            font-size: 0.8em; 
            margin: 0;
        }
    
        .rowSection{
            width: 94%;
            align-content: center;
            align-items: center;
            display: flex;
            flex-direction: column;
            height: auto;
            transition: all .7s;
            margin-left: 0.7em;
            margin-right: 1em;
            border-radius: 0 0 1em 1em ;
            padding-left: 1em;
            padding-right: 1em;
            
            &.hidden {
                height: 0;
                transition: all .7s;
            } 
            
            
        }

        .subMenu {
            width: 94%;
            padding-left: 1em;
            margin-left: 1.4em;
            margin-right: 1em;
            border-radius: 0 0 1em 1em;     
        }

        .divFullWidth {
            width: 100%;
        }
    
        .miniSubSection {
            width: 71%;
            align-content: center;
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 25%;
            font-size: 0.66em;
        }
    
        .insideSection {
            position: relative;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            height: 5vh;
            width: 100%;
        }
    
        .insideSectionLeft {
            position: relative;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            height: 4vh;
            width: 95%;
            margin-top: 0.2em;
        }
    
        .mainDivider {
        width: 84%;
        border-top: 1px solid #c5c9cd;
    
        }
    
        .minorDivider {
            width: 85%;
            border-top: 1px solid #c5c9cd;
            margin: 0.5em;
        }
    
        /*❗️*/
        #subMenuVerticalPart {
            margin-left: 4.6em;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #subMiddlePanel {
            width: 100%;
            height: 66vh;
            display: flex;
            flex-direction: row;
        }

        /* #VertPartInputProduct1, #VertPartInputProduct2, #VertPartInputProduct3, #VertPartInputProduct4 {
            margin-top: -0.5em;
            margin-right: -0.7em;
        } */


        .iconButton{
            width:auto; 
            height:16px; 
            margin-right: 0.2em;
        }
        .mac-os .iconButton {
            margin-top: 0.8em; /* Only for macOS */
        }
       
        #buttonWallMounting, #buttonAddVisit {
            align-items: center;
        }
        #MainSubMenus {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            align-items: flex-start;
            height: max-content;
            width: 100%;
        }
        .dimensionName {
            width: 11em;
            height: 2em;
            line-height: 1em;
            font-size: 0.8em;
            background-color: transparent;
            border: none;
            display: inline-block;
            cursor: text;
            pointer-events: none;
            align-items: center;
            position: relative;
            text-align: left;
        }
        .dimensionNameLong {
            width: 9em;
            height: 2em;
            line-height: 1em;
            font-size: 0.8em;
            background-color: transparent;
            border: none;
            display: inline-block;
            cursor: text;
            pointer-events: none;
            align-items: center;
            position: relative;
        }
        .nameHeight{
            padding-left: 1em;
        }
        .menuVertPart {
            display: none; 
            flex-direction: row;
            justify-content: space-between; 
            height:2em; 
            width: 100%
        }
        .menuWallMounting {
            display: none; 
            flex-direction: row;
            justify-content: space-between; 
            height:auto; 
            width: 100%
        }
        .dimensionNameBold {
            width: auto;
            height: 2em;
            line-height: 1em;
            margin-left: 0.5em;
            font-size: 0.8em;
            background-color: transparent;
            border: none;
            display: flex;
            flex-direction: row;
            cursor: text; 
            pointer-events: none;  
            font-family: MonumentGroteskBold;
            color: #000;
        }
        .dimensionNameDouble {
            display: flex;
            align-items: center;
            flex-direction: row;
            width: 100%;
            justify-content: flex-start;
        }
    
        .dimensionMenu {
            display: flex;
            flex-direction: column;
            height: 100%;
            justify-content: flex-start;
        }

        #menuAddVisit{ 
            display: flex; 
            margin-top: -2.5em; 
            flex-direction: row; 
            justify-content: end; 
            height: 2.5em; 
            background:none; 
            border-radius:1em 1em 1em 1em;
        }
    
        #arrowAndMenuContainer {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            align-items: self-start;
            height: max-content;
            width: 26%;
        }
    
        .arrow-btn {
            display: none;
        }
    
        
        .SectionWidth {
            color: #000;
            font-size: 0.8em;
            text-align: center;
            width: 4em;
            height: 2.8em;
            background-color: #dfe9e4;
            background-size: cover;
            padding: 0.4em;
            line-height: 1em;
            font-family: MonumentGroteskBold;
        }
        .SectionWidthShelf {
            color: #000;
            font-size: 0.8em;
            text-align: center;
            width: 7em;
            height: 2.5em;
            background-color: rgb(255, 255, 255);
            background-size: cover;
            border: 1px solid #d9dcde;
            padding: 0.4em;
        }
    
        .SectionWidthMain{
            margin-right: 1.6em;
        }
        p{
            margin: 0;
        }
    
        input {
        text-align:center;
        width: 17em;
        color:#000000;
        }
    
        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin: 0;
        } 
    
        .button-87 {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 10vw;
            height: 32px; 
            position: relative;
            transition: background-color 0.5s, border-color 0.5s;
            color: white;
            border: 1px solid #356b4d;
            border-radius: 2em; 
            font-family: 'MonumentGroteskBold', sans-serif;
            font-size: 0.9em;
            cursor: pointer;
            user-select: none;
            background-color: #356b4d;
            box-sizing: border-box; 
            overflow: hidden; 
            bottom: 0%;
            top: auto;
            margin: 0vh;
            padding: 12px 11px;
        }
        .mac-os .button-87 {
            padding-bottom: 1.5em; /* Only for macOS */
        }
        .button-87:hover {
            background-position: right center;
            /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
        }
        .button-87:active {
            transform: scale(0.95);
        }

        .button88 {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            vertical-align: middle;
            width: 45%;
            height: 22px;
            top: auto;
            position: relative;
            transition: 0.5s;
            color: white;
            border: 1px solid #356b4d;
            border-radius: 5em;
            font-family: MonumentGroteskRegular;
            cursor: pointer;
            user-select: none;
            font-size: 13px;
            background-color: #356b4d;
            bottom: 0%;
            top: auto;
            margin: 0vh;
            padding: 6px 11px;

        }
        .mac-os .button88 {
            padding-bottom: 1.4em; /* Only for macOS */
        }
        .button88:hover {
            background-position: right center;
            color: #fff;
            text-decoration: none;
            transform: scale(1);
        }
    
    

    
    
    
        #HorizontalPartition_Column2{
        display: none;
        }
        #Doors_Column2{
        display: none;
        }
    
        #HorizontalPartition_Column3{
        display: none;
        }
        #Doors_Column3{
        display: none;
        }
    
        #additionalButtonsPanel{
            position: fixed;
            top: 2.3em;
            left: 22em;
            width: 60em;
            height: 1em;
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            color: black;
            font-size: 0.8em;
            z-index: 10;
            font-family: MonumentGroteskRegular;
        }

        #AddMobileVersionForButtonsPanel {
            display: none;
            position: fixed;
            top: 9vh;
            left: 0;
            width: 32px;
            height: 22px;
            background-color: #f5f5f5;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            color: black;
            font-size: 0.6em;
            z-index: 10;
        }
        .additionalButtons{
            height: 2.4em;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        #TopZoomSliderPanel {
            display: none;

        }

        #ReturnButton{
            left: 4em;
            top: 1.6em;
            width: auto;
            height: 2.3em;
            color: #356b4d;
            justify-content: center;
            font-size: 0.8em;
            z-index: 10;
            font-family: MonumentGroteskRegular;
            cursor: pointer;
            display: flex;
            position: fixed;
            justify-content: space-between;
            flex-direction: column;
        }

        .miniDivider{
            width: 100%;
            border-top: 1px solid #000;
        }

        #Logo {
            left: 4em;
            top: 1.6em;
            width: 8em;
            height: 2em;
            position: fixed;
            cursor: pointer;
            display: flex;
            flex-direction: row;
            justify-content: space-around;
        }
        #LogoImage {
            display: block;
            width: 10em;
        }

        #subMenuAdditionalFeatures {
            padding-right: 0;
            margin-left: 0;
            width: 105%;
        }

    
        .colorSection {
            position: relative;
            display: grid;
            align-items: center;
            width: 60%;
            margin-top: 1em;
            margin-bottom: 1em;
            margin-right: 0.5em;
            grid-template-columns: repeat(7, 15%);
        }

        #menuCarcassColour {
            width: 100%;
        }
        #menuFrontFacadesColour {
            width: 100%;
        }
    
        .c-button-round {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #fff;
            background-size: cover;
            border: 1px solid #edf0f0;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            cursor: pointer;
            margin: 0.1em;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
            font-size: 0.7em;
        }
    
        .c-button-round:hover {
        border-color: #356B4D;
        }
    
        .info-button-round {
            width: 14px;
            height: 14px;
            margin-right: 0.3em;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-size: cover;
            border: 1px solid #356b4d;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            cursor: pointer;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
            font-size: 0.7em;
            z-index: 100;
            pointer-events: auto;
        }
        .mac-os .info-button-round {
            margin-top: 1.3em; 
        }


    
        .color-button-rounded {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.8vw;
            height: 1.8vw;
            border-radius: 35px;
            background-color: #fff;
            background-size: cover;
            border: 1px solid #edf0f0;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            cursor: pointer;
            margin: 0.1em;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
            font-size: 0.7em;
        }
    
        .color-button-rounded:hover {
        border-color: #356B4D;
        }

        .colorsPanel{
            width: 13em;
            display: flex;
            margin-left: 2.5em;
            min-width: 11.5em;
            grid-gap: 0.1em;
            flex-direction: row;
            justify-content: end;
        }
    
        .choosenColor {
            font-size: 0.8em;
            height: 1.8em;
            text-align: right;
            width: 9em;
            line-height: 0.7em;
        }
    
        /* INPUT  rounded NUMBER */
        .Inputdimention {
            position: relative;
            display: flex;
            flex-direction: row;
            width: auto;
            color: grey;
            justify-content: center;
            align-items: center;
            height: 5vh;
            margin: 0em -0.8em 0.9em 0;
        }
        #checkboxDoorHandle, #checkboxRecessedBack {
            width: 5em; 
            margin: 0;
        }

        .buttonright{
            background: #dfe9e4 !important;
            margin-top: -1em;
        }
        .buttonright::before{
            
            width: 7px;
            height: 4px;
            cursor: pointer;
            display: block;
        }
   
        .buttonleft{
            background: #dfe9e4 !important;
            margin-top: -1em;
        }
        .buttonleft::before{
           
            background: #dfe9e4 !important;
            width: 7px;
            height: 4px;
            cursor: pointer;
            display: block;
        }
    
    
        .input-container {
            position: relative;
            display: flex;
            flex-direction: row;
        }

        .input-container .suffix {
            position: absolute;
            right: 1px;
            top: 58%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #000;
            font-size: 0.6em;
            font-family: 'MonumentGroteskBold', sans-serif;
        }
        .input-container .suffix2 {
            position: absolute;
            right: 1px;
            top: 58%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #000;
            font-size: 0.6em;
            font-family: 'MonumentGroteskBold', sans-serif;
        }

        input[type='text'] {
            margin: 0;
            color: #000;
            font-size: 0.8em;
            width: 4em;
            height: 2.5em;
            background-color: #fff;
            background-size: cover;
            border: 1px solid #d9dcde;
        }
    
    
        input[type="number"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: textfield;
        margin: 0;
        color: #000;
        font-size: 0.8em;
        width: 35px;
        height: 43px;
        background: none;
        border: 0px solid #d9dcde;
        border-radius: 0;
        font-family: 'MonumentGroteskBold', sans-serif;
        margin-right: 11px;
        }
    
        input[type="number"]:hover {
        border-color: none;
        }
        input[type="number"]:focus {
        outline: none;
        }
    
        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
        }
    
        input[type="checkbox"], input[type="radio"] {
            margin: 0 0 0 !important;
        }
    
        .number-input {
        border: 0;
        display: inline-flex;
        }
    
        .number-input,
        .number-input * {
        box-sizing: border-box;
        }
    
        .number-input button {
        outline:none;
        -webkit-appearance: none;
        background-color: transparent;
        border: none;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        cursor: pointer;
        margin: 0;
        position: relative;
        box-shadow: 0px 0px 1px #474747;
        border-radius: 50%;
    
        }
    
        .number-input button:before,
        .number-input button:after {
        display: inline-block;
        position: absolute;
        content: '';
        width: 1rem;
        height: 2px;
        background-color: #212121;
        transform: translate(-50%, -50%);
        }
        .number-input button.plus:after {
        transform: translate(-50%, -50%) rotate(90deg);
        }
    
        .number-input input[type=number] {
        font-family: 'MonumentGroteskBold', sans-serif;
        max-width: 5rem;
        padding: .5rem;
        border: none;
        border-width: 0 2px;
        font-size: 2rem;
        height: 3rem;
        font-weight: bold;
        text-align: center;
        color:#9be3df;
        }

        .buttonright2, .buttonleft2 {
            height: 2.5em;
            width: 2.5em;
            font-size: 0.8em;
            color: #000;
            background: none;
            font-family: 'MonumentGroteskBold', sans-serif;
        }

        .buttonright3, .buttonleft3 {
            height: 22px;
            width: 48px;
            font-size: 0.8em;
            color: #000;
            background: white;
            font-family: 'MonumentGroteskBold', sans-serif;
            border-radius: 5em 0 0 5em;
            border: 0.5px solid black;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }

        .buttonleft3 {
            border-radius:  0 5em 5em 0 ;
        }
      
    
        
    
        
        /** Custom Select **/
        .custom-select-wrapper {
        position: relative;
        display: inline-block;
        user-select: none;
        }
        .custom-select-wrapper select {
        display: none;
        }
        .custom-select {
            position: relative;
            display: inline-block;
            color: #000;
            font-size: 0.8em;
            width: 19em;
            border-radius: 10em;
            background-color: rgb(255, 255, 255);
            background-size: cover;
            border: 2px solid #edf0f0;
            height: 3em;
            margin-right: 1.3em;
            padding-left: 1em;
        }
        .custom-select-trigger {
        position: relative;
        display: block;
        width: 130px;
        padding: 0 84px 0 22px;
        font-size: 22px;
        font-weight: 300;
        color: #fff;
        line-height: 60px;
        background: #5c9cd8;
        border-radius: 4px;
        cursor: pointer;
        }
        .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px; height: 10px;
        top: 50%; right: 25px;
        margin-top: -3px;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg) translateY(-50%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
        }
        .custom-select.opened .custom-select-trigger:after {
        margin-top: 3px;
        transform: rotate(-135deg) translateY(-50%);
        }
        .custom-options {
        position: absolute;
        display: block;
        top: 100%; left: 0; right: 0;
        min-width: 100%;
        margin: 15px 0;
        border: 1px solid #b5b5b5;
        border-radius: 4px;
        box-sizing: border-box;
        box-shadow: 0 2px 1px rgba(0,0,0,.07);
        background: #fff;
        transition: all .4s ease-in-out;
    
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-15px);
        }
        .custom-select.opened .custom-options {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
        }
        .custom-options:before {
        position: absolute;
        display: block;
        content: '';
        bottom: 100%; right: 25px;
        width: 7px; height: 7px;
        margin-bottom: -4px;
        border-top: 1px solid #b5b5b5;
        border-left: 1px solid #b5b5b5;
        background: #fff;
        transform: rotate(45deg);
        transition: all .4s ease-in-out;
        }
        .option-hover:before {
        background: #f9f9f9;
        }
        .custom-option {
        position: relative;
        display: block;
        padding: 0 22px;
        border-bottom: 1px solid #b5b5b5;
        font-size: 18px;
        font-weight: 600;
        color: #b5b5b5;
        line-height: 47px;
        cursor: pointer;
        transition: all .4s ease-in-out;
        }
        .custom-option:first-of-type {
        border-radius: 4px 4px 0 0;
        }
        .custom-option:last-of-type {
        border-bottom: 0;
        border-radius: 0 0 4px 4px;
        }
        .custom-option:hover,
        .custom-option.selection {
        background: #f9f9f9;
        }
    
    
        .LeftPanel {
            position: fixed;
            overflow-y: hidden;
            margin-top: 12vh;
            right: 0vw;
            width: 27vw;
            height: 76vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #fff;
            border: 0px solid #c5c9cd;
            overflow-x: hidden;
            z-index: 15;
            font-family: MonumentGroteskRegular;
            font-size: 1.3em;
            max-height: 76vh;
        }
    
        .scrollDiv {
            width: 100%;
            overflow-y: scroll; 
            overflow-x: hidden; 
            scrollbar-width: thin; 
            scrollbar-color: #e9e9ed #f1f1f1; 
            top: 1vh;
            position: relative;
            padding-right: 1em;
            margin-left: 0em;
        }
    
        /* For webkit browsers like Chrome and Safari */
        .scrollDiv::-webkit-scrollbar {
        width: 10px; /* Width of the vertical scrollbar */
        }
    
        .scrollDiv::-webkit-scrollbar-track {
        background: #fff; /* Color of the tracking area */
        }
    
        .scrollDiv::-webkit-scrollbar-thumb {
        background: #e9e9ed; /* Color of the scroll thumb */
        width: 7px;
        border: 3px solid transparent;
        border-radius: 100px;
        /* background-clip: content-box; */
        }
    
        .scrollDiv::-webkit-scrollbar-thumb:hover {
        background: #356b4d; /* Color of the scroll thumb on hover */
        }
    
    
       

        [id^="VerticalSection"] {
            transform: translateX(150%);
        }
        
    
    
        #ClosePanel{
            position: relative;
            width: 100%;
            height: 1em;
            top: 0;
            display: flex;
            flex-direction: row-reverse;
        }
        #ClosePanelLeftMain{
            position: relative;
            width: 100%;
            height: 1em;
            top: 0;
            display: flex;
            flex-direction: row-reverse;
        }
        .closeButton {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            overflow: hidden;
            outline: none;
            cursor: pointer;
            margin: 0em 0 0 0;
        }
    
        .closebuttonleft {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            overflow: hidden;
            outline: none;
            cursor: pointer;
        }
    
        .DoorPanel{
            width: 100%;
            display: flex;
            overflow: hidden;
            min-width: 4em;
            justify-content: space-between;
            flex-direction: row;
            margin: 0.7em 0em 0.7em 0em;
            height: auto;
        }
    
        .dimensionNameLeft {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            width: 15.4em;
            font-size: 0.76em;
            text-align: left;
            margin: 0.4em;
            color: #000;
        }
    
        .removeDoor {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            vertical-align: middle;
            width: 7.5vw;
            height: 2em;
            top: auto;
            position: relative;
            transition: 0.5s;
            color: #b91010;
            border: 1px solid #b91010;
            border-radius: 5em;
            font-family: MonumentGroteskRegular;
            cursor: pointer;
            user-select: none;
            font-size: 0.75em;
            background-color: #fff;
            margin: 0 0 1em 0em;
            
        }
        .mac-os .removeDoor {
            padding-bottom: 1em; /* Only for macOS */
        }
    
        .dimensionNameLeftSub{
            width: 100%;
            font-size: 0.7em;
            text-align: left;
            margin: 0.4em;
            margin-left: 1.2em;
            color: #a7aaad;
        }
        .c-button-rounded {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            background-size: cover;
            border: 1.5px solid #c5c9cd;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            cursor: pointer;
            margin: 0.1em;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1 );
        }
        .c-button-rounded:hover {
            border-color: #356b4d;
        }
        .doorbutton{
            color: #000;
            font-size: 0.4em;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: auto;
            margin: 1em;
        }
        .c-button-rounded-spec {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            border-radius: 22%;
            background-color: #ffffff;
            background-size: cover;
            border: 1px solid #c5c9cd;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            margin: 0.1em;
        }
    
    
    
        /* RANGE CSS */
        .containerRange{
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 0.2em;
        }
        input[type="range"]{
            position: relative;
            -webkit-appearance: none;
            -moz-appearance: none;
            display: block;
            width: 80%;
            height: 2px;
            background-color: #000000;
            border-radius: 3px;
            outline: none;
        }
        input[type="range"]::-webkit-slider-runnable-track{
            height: 2px;
            display: block;
            width: 80%;
            background-color: #000000;
            border-radius: 3px;
            outline: none;
        }
    
        input[type="range"]::-moz-track{
            height: 2px;
        }
        input[type="range"]::-moz-range-progress {
            background-color: #000000; 
            height: 2px;
        }
        input[type="range"]::-moz-range-track {  
            background-color: #BBB;
            height: 2px;
        }
        /* IE*/
        input[type="range"]::-ms-fill-lower {
            background-color: #000000; 
            height: 2px;
        }
        input[type="range"]::-ms-fill-upper {  
            background-color: #BBB;
            height: 2px;
        }
        input[type="range"]::-ms-track{
            appearance: none;
            height: 2px;
        }
        input[type="range"]::-webkit-slider-thumb{
            -webkit-appearance: none;
            border: none;
            height: 8px;
            width: 8px;
            border-radius: 50%;
            background: #000000;
            cursor: pointer;
            margin-top: -3px;
        }
        input[type="range"]::-moz-range-thumb{
            -webkit-appearance: none;
            height: 8px;
            width: 8px;
            background-color: #000000;
            border: 1px solid #000000;
            border-radius: 50%;
            cursor: pointer;
            margin-top: -6px;
        }
        input[type="range"]::-moz-range-thumb:hover {
            border-color: #000000;
            }
        input[type="range"]::-ms-thumb{
            appearance: none;
            height: 8px;
            width: 8px;
            border-radius: 50%;
            cursor: pointer;
            margin-top: -6px;
            border: none;
        }
        input[type="range"]:active::-webkit-slider-thumb{
            background-color: #000000;
            border-color: #356b4d;
        }
    
        input[type="range"]::-webkit-slider-runnable-track::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: calc(50% - 5px);
            height: 100%;
            background-color: #356B4D;
        }
    
        input[type="range"]::-webkit-slider-runnable-track::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: calc(50% - 5px);
            height: 100%;
            background-color: #BBB;
        }
    
    
    
    
    
    
    
        sup { 
            font-variant-position: super;
        }
    
        .AddRemove {
        width: 2em;
        font-size: 0.8em;
        color: #b0b3b5;
        }
    
        /* SWITCH  */
        .Coverdiv{
            display: none;
            position: absolute;
            width: 100px;
            height: 1.35em;
            overflow: hidden;
            background-color:  #e9e9ed;
            border: 0px solid #000;
            border-radius: 3em;
            z-index: 30;
            opacity: 0.8;
        }

        

        #button1 .knobs:before {
            content: "Off";
            position: absolute;
            top: 1px;
            left: 0.6px;
            width: 52px;
            height: 1.5em;
            color: #fff;
            font-size: 0.8em;
            font-family: MonumentGroteskRegular;
            text-align: center;
            line-height: 0.2;
            padding: 8px;
            background-color: #356B4D;
            border-radius: 20px;
            border: 2px solid #356B4D;
            transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
            
          }
          .mac-os #button1 {
            padding-top: 0em;
        }
        
        .mac-os #button1 .knobs:before {
            padding-top: 0em;
        }
          
          #button1 .checkbox:checked + .knobs:before {
            content: "On";
            font-family: MonumentGroteskRegular;
            left: 48px;
            height: 1.5em;
          }
          /* .mac-os #button1 .checkbox:checked + .knobs:before {
            padding-bottom: 1em; 
          } */
          
          #button1 .checkbox:checked ~ .layer {
            background-color: #fff;
          }
          
          #button1 .knobs,
          #button1 .knobs:before,
          #button1 .layer {
            transition: 0.6s ease all;
          }
        
        
    
        
        .button-cover,
        .knobs,
        .layer {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }
        
        .button {
            position: relative;
            width: 5.5em;
            height: 1.4em;
            overflow: hidden;
            background-color: ##dfe9e4 !important;
            box-shadow: 0px 0px 0px 0px;
        }
        
        .button.r,
        .button.r .layer {
            border-radius: 100px;
        }

        
        .button.b2 {
            border-radius: 2px;
        }
        
        .checkbox {
            position: relative;
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
            opacity: 0;
            cursor: pointer;
            z-index: 3;
        }
        
        .knobs {
            z-index: 2;
        }
        
        .layer {
            width: 100%;
            background-color: #fff;
            transition: 0.9s ease all;
            z-index: 1;
            height: 1.3em;
            border: 1px solid #000;
        }
    
    
        
       
        #button0 {
            margin-left: 3.4em;
            }
    
    
    }
    
    /* 📱 mobileCSS */
    @media screen and (max-width: 900px) {
    
        /* For Chrome, Safari and Opera */
         ::-webkit-scrollbar {
            display: none;
        }
      
    
    
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background:  linear-gradient(rgb(120, 120, 120) 48.74%, rgb(116, 112, 112) 56.72%, rgb(159, 157, 157) 88.24%);
            z-index: 9999;
            padding-top: 25%;
            color: rgb(70, 70, 70);
            font-family:sans-serif;
            font-size:1em;
            text-align: center;
        }	
        .preloader-icon {
            position: relative;
            width: 100%;
            height: 100%;
            animation: shake 7.5s infinite;
        }	@keyframes shake
        {
            0% { transform: translate(1px, -1px) rotate(0deg);}
            10% { transform: translate(1px, -3px) rotate(-1deg);}
            20% { transform: translate(1px, -5px) rotate(-3deg);}
            30% { transform: translate(1px, -7px) rotate(0deg);}
            40% { transform: translate(1px, -9px) rotate(1deg);}
            50% { transform: translate(1px, -11px) rotate(3deg);}
            60% { transform: translate(1px, -9px) rotate(0deg);}
            70% { transform: translate(1px, -7px) rotate(-1deg);}
            80% { transform: translate(1px, -5px) rotate(-3deg);}
            90% { transform: translate(1px, -3px) rotate(0deg);}
            100% { transform: translate(1px, -1px) rotate(-1deg);}
        }
          
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background:  white;
            z-index: 9999;
            padding-top: 25%;
            color: rgb(70, 70, 70);
            font-family:sans-serif;
            font-size:1em;
            text-align: center;
        }
        #subloader {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            z-index: 9999;
            display: block; 
        }
        .loaderSpin {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid #356b4d;
            border-radius: 50%;
            animation: spin 2s linear infinite;
            z-index: 9999;
            display: block; 
        }

        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
            
        .vertical-text {
        transform: rotate(-90deg);
        transform-origin: left top 0;
        float: left;
        }
        
        html, body {
            overflow: auto;
            width: 100%;
            height: 100%;
            /* For Chrome, Safari and Opera */
            ::-webkit-scrollbar {
                display: none;
            }
            
            /* For Firefox */
            scrollbar-width: none;
        }
    
        #appCanvas {
            width: 100%;
            height: 100%;
            display: block;
            margin-top: 0em;
            position: absolute;
        }
    
        .toggle-btn {
            height: 2.6em;
            line-height: 1em;
            min-width: fit-content;
            display: inline;
            text-align: center;
            white-space: nowrap;
            white-space: normal;
            font-size: 1em;
            border: 0.7px solid gray;
            border-radius: 3em;
            margin: 0 0.2em 0.2em 0;
    
            .arrow-open-close {
                float:left;
                margin: 3px 10px 0 3em;
                display: none;
            }
            .toggle-wording {
                float:left;
                color: black;
                width: max-content;
                font-family: MonumentGroteskRegular;
                padding: 0em 1em 0 1em;
            }
    
                &.hide-toggle {
                .arrow-open-close {
                &:before {
                    transform:rotate(-210deg);
                    left:0;
                }
                &:after {
                    transform:rotate(210deg);
                    right:0;
                }
                }
            }
        }

        .arrow-open-closeMain {
        position:relative;
        width:15px;
        height:10px;
        cursor:pointer;
        top: -0.2em;
        &:before, &:after {
            transition: 0.15s all ease-in-out;
            position:absolute;
            content: '';
            width:54%;
            height:1px;
            background:black;
            top:49%;
            border-radius: 5px;
        }

        &:before {
            transform:rotate(-150deg);
            left:0;
        }
        &:after {
            transform:rotate(150deg);
            right:0;
        }
        }

        .toggle-btnMain {
        cursor:pointer;
        width:100%;
        max-width:100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 2.5em;
        padding-left: 0.8em;
        

        .arrow-open-closeMain {
            flex-shrink: 0;
            margin: 6px 6px 0 3em;
        }
        .toggle-wordingMain {
            float:left;
            font-size:0.8em;
            color: black;
            flex-grow: 1;
            font-family: MonumentGroteskBold;
            
        }

            &.hide-toggleMain {
            .arrow-open-closeMain {
            &:before {
                transform:rotate(-210deg);
                left:0;
            }
            &:after {
                transform:rotate(210deg);
                right:0;
            }
            }
            }
        }
    
    
        .dimensionNameContainer {
            display: flex;
            flex-wrap: nowrap;
            width: calc(100% - 5em); /* Subtracts the width of the arrow buttons (change this value to match your arrows) */
            position: relative;
        }
        
        .arrow-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 2em;
            width: 2.5em;
            cursor: pointer;
            border: 1px solid #d9dcde;
            margin-left: -0.1em;
            background-color: #e9e9ed;
        }
        
        .arrow-btn:first-child {
            left: 0; /* Stick to the left */
        }
        
        .arrow-btn:last-child {
            right: 0; /* Stick to the right */
        }
    
    
    
        .buttonmenuMobile {
            display: hide;
        }
            
    
        
        #c {
        width: 100%;
        height: 100%;
        display: block;
        margin-top: 8em;
        position: absolute;
        }
    
    
        #container {
        position: absolute;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        z-index: 1;
        margin-top: 0em;
        /* background: linear-gradient(rgba(72, 112, 166, 1), rgba(43, 55, 94, 1) 52.94%, rgba(27, 54, 101, 1) 87.39%) */
        background: linear-gradient(rgba(255, 255, 255, 1) 48.74%, rgba(252, 252, 252, 1) 56.72%, rgba(228, 228, 228, 1) 88.24%)
        }
    
    
        #Info {
            transform-origin: center;
        }

        #HintPanel {
            z-index: 100;
            right: 0;
        }

        #menuHeight{
            padding-bottom: 0em;
        }
        #menuDepth{
            height: 16vh;
        }

        #NameWallMounting,#NameAddVisit {
            display: inline;
            height: 1.6em;
            line-height: 0.6em;
        }
        
        @keyframes beat{
            to { transform: scale(1.3); }
        }
        @keyframes changeColor {
            0% {
              background-color: #fff;
            }
         
            50% {
              background-color: #72a186;
            }
         
            100% {
              background-color: #fff;
            }
        }
        
        
    
        
        #InfoWindow {
            position: fixed;
            left: auto;
            padding: 1.7em 1.8em 1em 1.7em;
            width: 90%;
            height: auto;
            max-height: 75vh;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            background-color: #ffffff;
            border: 1px solid #c5c9cd;
            border-radius: 0em;
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
            color: #3c3c3c;
            overflow-y: hidden;
            overflow-x: hidden;
            z-index: 5;
            font-family: MonumentGroteskRegular;
            font-size: 0.9em;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        #LinksVideo {
            height: 55vh;
            display: grid;
            flex-direction: column;
            justify-content: space-around;
            position: relative;
            overflow-y: scroll;
            margin-top: 1em;
        }
        #LinksVideo::-webkit-scrollbar {
            -webkit-appearance: none;
        }      
        #LinksVideo::-webkit-scrollbar:vertical {
            width: 11px;
        }      
        #LinksVideo::-webkit-scrollbar-thumb {
            border-radius: 8px;
            border: 2px solid white; /* should match background, can't be transparent */
            background-color: #c5c9cd;
        }
        
        #BlockVideo{
            display: flex;
            flex-direction: column-reverse;
            height: 65vh;
        }
        #youtubePlayer{
            width: 100%;
            height: 183px;
            position: sticky;
            top: 0;
        }
    
    
        #closeHelpInfo{
            right: 0em;
            top: -0.6em;
            position: relative;
        }
        #HelpInfo{
            width: 100%;
            height: 100%;
            background-color: #86868670;
            z-index: 100;
            position: fixed;
            display: none;
            align-items: center;
            justify-content: center;
        }
    
    
        .popup-container {
            width: 100%;
            height: 100%;
            background-color: #47474770;
            z-index: 100;
            position: fixed;
            display: none;
            align-items: center;
            justify-content: center;
        }

        #savedProduct {
            width: 29em;
            justify-content: center;
            text-align: center;
            font-size: 1em;
        }

        #KeppYpurDesign{
            font-size: 1em; 
            font-family: 'MonumentGroteskBold'; 
            margin-top: 43px;
        }
        #HeadsUp{
            width: 38em; 
            justify-content: center; 
            text-align: center;
        }
        #ClosePanelHeadsUp{
            margin-left: 30em;
            margin-top: 0em;
            margin-bottom: 0em;
        }
        #close_RemaidersForFavoritesContainer{
            margin-top: -1em;
        }
        
        .email-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 1em;
            border-radius: 2em;
            width: 74vw;
        }
        #emailForm {
            position: sticky;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            height: 28vw;
            width: 100%;
            padding: 0 1em 0 0.2em;
        }

        #savedProduct {
            width: 21em;
            justify-content: center;
            text-align: center;
            font-size: 0.9em;
            padding: 2em;
        }

        #KeppYpurDesign{
            font-size: 1em; 
            font-family: 'MonumentGroteskBold'; 
            margin-top: 21px;
        }
        #HeadsUp{
            width: 53vw; 
            justify-content: center; 
            text-align: center;
            padding: 3em;
        }
        #ClosePanelHeadsUp{
            margin-left: 30em;
            margin-top: -1em;
            margin-bottom: -1em;
        }
        #sendEmailButton {
            white-space: nowrap;
            border-radius: 30px;
            height: 4.2em;
            width: 80%;
            font-size: 0.7em;
            text-align: center;
        }
        input[type="email"] {
            font-size: 0.7em;
            padding: 1.2em;
            text-align: center;
            width: 80%;
            margin: 0;
            background-color: rgb(255, 255, 255);
            background-size: cover;
            border: 2px solid #356b4d;
            border-radius: 30px;
        }
    
        #headerPopupImage {
            width: 100%;
            position: relative;
            top: 50%;
            left: 50%;
            transform: translate(-50%, 0%);
        }

        .popup-info-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 1.5em;
            border-radius: 0.5em;
            max-width: 85vw;
            width: 90vw;
            max-height: 83vh;
            font-family: MonumentGroteskRegular;
            text-align: center;
            font-size: 0.9em;
        }
        

    
    
        #PopUpClickWindow {
            right: 24vw;
            margin-top: 16em;
            width: 14.2em;
            height: auto;
            background-color: rgba(235, 235, 235, 0.5);
            border: 1px solid rgb(197, 201, 205);
            border-radius: 0.5em 0.5em 0.5em 0.5em;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
            color: #000000;
            font-size: 0.7em;
            font-family: monospace;
            top: auto;
            position: fixed;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 1em;
            overflow-y: auto;
            text-align: center;
        }
    
        #ClickInfo{
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            width: 100%;
            align-items: center;
            height: 5.2em;
        } 
    
    
        a:link {
            color: black;
            font-family: MonumentGroteskBold;
        } 
        a:visited {
            color: black;
            font-family: MonumentGroteskBold;
        }
        a:hover {
            color: #38734c;
            text-decoration: underline;
            font-family: MonumentGroteskBold;
        }
        a:active {
            color: #38734c;
            font-family: MonumentGroteskBold;
        }  
    
    
    
    
        #mainMenu {
        position: fixed;
        width: 21em;
        height: 85vh;
        overflow-x: hidden;
        z-index: 10;
        margin-top: 0em;
        background-color: rgb(197, 201, 205);
        right: 2vw;
        border-radius: 0 0 0.5em 0.5em;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        }

    
        #MiddlePanel {
            display: flex;
            position: relative;
            flex-direction: column;
            right: 0;
            left: 0;
            bottom: 0;
            margin-top: 0em;
            align-items: center;
            z-index: 11;
            padding-right: 1px;
            width: 100%;
            height: auto;
            color: #000;
            background-color: #fff;
            font-family: MonumentGroteskRegular;
            font-size: 1 em;
            scrollbar-width: thin;
            scrollbar-color: #e9e9ed #f1f1f1;
        }
    
    
    
        .speech {
            font-size: 0.7em;
            color: #000;
            background: #dfe9e4;
            position: fixed;
            padding: 15px;
            border-radius: 10px 0 0 10px;
            margin-top: 8em;
            max-width: 45vw;     
        }
        .speech::after {
            content: "";
            border: 10px solid transparent;
            position: absolute;
            display: none;
        }
        .right.speech::after {
            border-left-color: #dfe9e4;
            border-top: 0;
            top: 1px;
            right: 10%;
            margin-left: 8em;
            transform: rotate(45deg);
        }
        
        .subMiniTextGray {
            opacity:0.5; 
            font-size: 0.8em; 
            margin: 0;
        }
    
        .rowSection{
            width: 100%;
            align-content: center;
            align-items: center;
            justify-content: center;
            display: flex;
            flex-direction: column;
            min-height: 6vh;
            position: sticky;
            padding-left: 0.6em;
            padding-right: 0.6em;
        }
        .subSectionLeft{
            height: 19vh;
            justify-content: center;
            display: flex;
            flex-direction: column;
        }

        .subMenu {
            width: 100%;
            padding-left: 0.5em;
            padding-top: 0.2em;
            color: black;
        }
        #menuS {
            display: flex;
            justify-content: center;
        }


        .divFullWidth {
            width: 100%;
        }
        
    
        .miniSubSection {
            width: 100%;
            align-content: center;
            align-items: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 67%;
            font-size: 0.66em;
    
        }
    
        .insideSection {
            position: sticky;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 5px 0.7em 5px 1em;
        }
    
        .insideSectionLeft {
            position: relative;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            height: 4vh;
            width: 95%;
        }
    
        .mainDivider {
        width: 110%;
        border-top: 1px solid #c5c9cd;
    
        }
    
        .minorDivider {
            width: 90%;
            border-top: 1px solid #c5c9cd;
            margin: 0.5em;
        }
    
        #WallMountingNameProduct1,
        #WallMountingNameProduct2,
        #WallMountingNameProduct3,
        #WallMountingNameProduct4,
        #WallMountingNameProduct5, 
        #WallMountingNameProduct6,
        #WallMountingNameProduct7,
        #NameHeightPart1,
        #NameHeightPart2,
        #NameHeightPart3,
        #NameHeightPart4,
        #NameHeightPart5,
        #NameHeightPart6,
        #NameHeightPart7  {
            display: none;
        }
        .arrow-btn {
            display: none;
        }
    
        .Inputdimention {
            position: relative;
            display: flex;
            flex-direction: row;
            width: 7em;
            color: grey;
            justify-content: space-between;
            align-items: center;
        }

        #checkboxDoorHandle, #checkboxRecessedBack {
            width: auto; 
            margin-right: 1em;
        }

        .SectionWidth {
            color: #000;
            text-align: center;
            width: 4em;
            height: 2.2em;
            background-color: rgb(255, 255, 255);
            background-size: cover;
            line-height: 1em;
            font-family: MonumentGroteskBold;
            position: sticky;
            top: 5.5em;
            z-index: 99;
            left: 45%;
            right: auto;
            border-radius: 1em;
            border: 0.5px solid gray;
        }
        .SectionWidthShelf {
            color: #000;
            font-size: 0.8em;
            text-align: center;
            width: 7em;
            height: 2.5em;
            background-color: rgb(255, 255, 255);
            background-size: cover;
            border: 1px solid #d9dcde;
            padding: 0.4em;
        }
    
        p{
            margin: 0;
        }
    
        input {
        text-align:center;
        width: 3em;
        color:#000000;
        }
    
        input::-webkit-outer-spin-button,
        input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin: 0;
        } 
    
        .button-87 {
            position: relative;
            margin: 0vh;
            padding: 0em 1.5em;
            bottom: 0%;
            text-align: center;
            transition: 0.5s;
            color: white;
            display: block;
            border: 1px solid #356b4d;
            border-radius: 5em;
            font-family: MonumentGroteskBold;
            cursor: pointer;
            user-select: none;
            -webkit-user-select: none;
            font-size: 0.9em;
            background-color: #356b4d;
        }
        .mac-os .button-87 {
            /* padding-bottom: 0.7em;  */
        }
    
    
        .buttonMove {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.5em;
        height: 1.5em;
        border-radius: 50%;
        background-color: #c5c9cd;
        background-size: cover;
        border: 2px solid #edf0f0;
        overflow: hidden;
        transition: border-color .2s ease,background-color .2s ease;
        outline: none;
        cursor: pointer;
        margin: 0.1em;
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
        }
    
        .buttonMove:hover {
        border-color: #356b4d;
        }
    
        .button-87:hover {
        background-position: right center;
        /* change the direction of the change here */
        color: #fff;
        text-decoration: none;
        }
    
        .button-87:active {
        transform: scale(0.95);
        }
    
        

        .button88 {
            position: relative;
            margin: 0vh;
            padding: 0em 1.2em;
            line-height: 1.8em;
            height: 2.8em;
            text-align: center;
            transition: 0.5s;
            color: white;
            display: block;
            border: 1px solid #356b4d;
            border-radius: 5em;
            font-family: MonumentGroteskRegular;
            cursor: pointer;
            user-select: none;
            -webkit-user-select: none;
            font-size: 0.9em;
            background-color: #356b4d;
            width: 7.5em;
        }
        .button88:hover {
            background-position: right center;
            color: #fff;
            text-decoration: none;
            transform: scale(1);
        }
    
        .buttonWood {
            height: 2.4em;
            line-height: 1.2em;
            border-radius: 5em 0 0 5em;
            width: 5.5em;
        }
        .buttonGlass {
            height: 2.4em;
            line-height: 1.2em;
            border-radius: 0 5em 5em 0;
            width: 5.5em;
        }

        #HorizontalPartition_Column2{
        display: none;
        }
        #Doors_Column2{
        display: none;
        }
    
        #HorizontalPartition_Column3{
        display: none;
        }
        #Doors_Column3{
        display: none;
        }
    
        #subMenuAdditionalFeatures {
            padding-right: 0;
            padding-left: 1.5em;
            margin-left: 0;
            width: 100%;
            height: 17vh;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }
        
        /* .menuWallMounting {
            padding-left: 1.5em;
        } */
    
         .colorSection {
            position: fixed;
            display: grid;
            align-items: center;
            height: 27vh;
            width: 100%;
            grid-template-columns: repeat(7, 15%);
            grid-template-rows: 47px 47px 47px;
            z-index: 85;
            background-color: #EBEBEB;
            padding: 1.5em;
            bottom: 7vh;
            border-radius: 10px 10px 0 0;
        } 
    
     

        /* .colorSection {
            position: relative;
            display: grid;
            align-items: center;
            height: auto;
            width: 100%;
            margin: 1em;
            grid-template-columns: repeat(7, 15.3%);
            grid-template-rows: 47px 47px 47px;
        } */

        #menuCarcassColour {
            width: 45%;
        }
        #menuFrontFacadesColour {
            width: 45%;
        }
        #subMenuColours{
            display: flex;
            flex-direction: row;
            justify-content: space-around;
        }
    
        .c-button-round {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff;
            background-size: cover;
            border: 1px solid #edf0f0;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            cursor: pointer;
            margin: 0.1em;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
            font-size: 0.7em;
        }
    
        .c-button-round:hover {
        border-color: #356B4D;
        }
    
        .info-button-round {
            width: 18px;
            height: 18px;
            margin-left: -0.3em;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-size: cover;
            border: 1px solid #356b4d;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            cursor: pointer;
            box-shadow: 0px;
            font-size: 0.7em;
            z-index: 100;
            pointer-events: auto;
            margin-right: 1em;
        }
        .mac-os .info-button-round {
            margin-top: 1.2em;
        }

        /* .color-button-rounded {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 35px;
            background-color: #fff;
            background-size: cover;
            border: 1px solid #edf0f0;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            cursor: pointer;
            margin: 0.1em;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
            font-size: 0.7em;
        }
        */

        .color-button-rounded {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 35px;
            background-color: #fff;
            background-size: cover;
            border: 1px solid #edf0f0;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            cursor: pointer;
            margin: 0.1em;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
            font-size: 0.7em;
        }
        .color-button-rounded:hover {
            border-color: #356B4D;
        }
    
        .colorsPanel{
            width: auto;
            display: flex;
            min-width: 4em;
            grid-gap: 0.1em;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }

        .choosenColor {
            font-size: 1em;
            line-height: 2em;
            text-align: center;
        }
    
    
        /* INPUT  rounded NUMBER */
        .buttonright::before{
            content: "<";
            height: 30px;
            width: 30px;
            font-size: 0.8em;
            background: whitesmoke;
            font-family: 'MonumentGroteskBold', sans-serif;
            border-radius: 50%;
            border: 0.5px solid #bebebe;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 0.5em 0.6em 0.5em 0.6em;    
        }
    
        .buttonleft::before{
            content: ">";
            height: 30px;
            width: 30px;
            font-size: 0.8em;
            background: whitesmoke;
            font-family: 'MonumentGroteskBold', sans-serif;
            border-radius: 50%;
            border: 0.5px solid #bebebe;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 0.5em 0.6em 0.5em 0.6em;      
        }

        .buttonright2, .buttonleft2 {
            height: 27px;
            width: 28px;
            background: whitesmoke;
            font-family: 'MonumentGroteskBold', sans-serif;
            border-radius: 50%;
            border: 0.5px solid #bebebe;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 0.5em 0.6em 1.5em 0.6em;
        }

        .buttonright3, .buttonleft3 {
            height: 30px;
            width: 30px;
            font-size: 0.8em;
            background: whitesmoke;
            font-family: 'MonumentGroteskBold', sans-serif;
            border-radius: 50%;
            border: 0.5px solid #bebebe;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 0.5em 0.6em 0.5em 0.6em;
        }
    
        input[type='text'] {
            margin: 0;
            color: #000;
            font-size: 0.8em;
            width: 4em;
            height: 2.5em;
            background-color: #fff;
            background-size: cover;
            border: 1px solid #d9dcde;
        }
    
        .input-container {
            position: relative;
            display: inline-block;
            margin-top: -5px;
        }

        .input-container .suffix {
            position: absolute;
            right: 15px;
            top: 42%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #000;
            font-size: 0.8em;
        }
        .input-container .suffix2 {
            position: absolute;
            right: 6px;
            top: 42%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #000;
            font-size: 0.8em;
        }



        input[type="number"] {
            -webkit-appearance: none;
            -moz-appearance:none;
            appearance: textfield;
            color: #000;
            font-family: MonumentGroteskBold;
            font-size: 1em;
            text-align: center !important;
            width: 4em;
            background-color: rgb(255, 255, 255);
            background-size: cover;
            border:0px solid #dcdcdc;
            padding-bottom: 0.9em;
            height: 2.1em;
            border-radius:1.5em;
        }
    
        input[type="number"]:hover {
        border-color: #356b4d;
        }
        input[type="number"]:focus {
        outline: none;
        }
    
        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
        }

        input[type="checkbox"], input[type="radio"] {
            margin: 0 0 0 !important;
            width: 89px;
        }
    
        .number-input {
        border: 0;
        display: inline-flex;
        }
    
        .number-input,
        .number-input * {
        box-sizing: border-box;
        }
    
        .number-input button {
        outline:none;
        -webkit-appearance: none;
        background-color: transparent;
        border: none;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        cursor: pointer;
        margin: 0;
        position: relative;
        box-shadow: 0px 0px 1px #474747;
        border-radius: 50%;
    
        }
    
        .number-input button:before,
        .number-input button:after {
        display: inline-block;
        position: absolute;
        content: '';
        width: 1rem;
        height: 2px;
        background-color: #212121;
        transform: translate(-50%, -50%);
        }
        .number-input button.plus:after {
        transform: translate(-50%, -50%) rotate(90deg);
        }
    
        .number-input input[type=number] {
        font-family: sans-serif;
        max-width: 5rem;
        padding: .5rem;
        border: none;
        border-width: 0 2px;
        font-size: 2rem;
        font-weight: bold;
        text-align: center !important;;
        color:#9be3df;
        }


        input[type="number"].inputDimentions {
            width: 5em;
            padding-right: 1em;
            border:1px solid #dcdcdc;
            border-top-color: rgb(220, 220, 220);
            border-right-color: rgb(220, 220, 220);
            border-bottom-color: rgb(220, 220, 220);
            border-left-color: rgb(220, 220, 220);
        }

        #subdomainWMCabinet_Dimensions_Product8,
        #subdomainWMCabinet_Dimensions_Product1,
        #subdomainWMCabinet_Dimensions_Product2,
        #subdomainWMCabinet_Dimensions_Product3,
        #subdomainWMCabinet_Dimensions_Product4,
        #subdomainWMCabinet_Dimensions_Product5,
        #subdomainWMCabinet_Dimensions_Product6,
        #subdomainWMCabinet_Dimensions_Product7,
        #subdomainWMCabinet_Dimensions_Product9,
        #subdomainWMCabinet_Dimensions_Product10,
        #subdomainWMCabinet_Dimensions_Product12,
        #subdomainWMCabinet_Dimensions_Product13,
        #subdomainWMCabinet_Dimensions_Product14 {
            width: 4em;
            padding-right: 17px;
        }
        

    
        /** Custom Select **/
        .custom-select-wrapper {
        position: relative;
        display: inline-block;
        user-select: none;
        }
        .custom-select-wrapper select {
        display: none;
        }
        .custom-select {
            position: relative;
            display: inline-block;
            color: #000;
            font-size: 0.8em;
            width: 100%;
            border-radius: 10em;
            background-color: rgb(255, 255, 255);
            background-size: cover;
            border: 2px solid #edf0f0;
            height: 3em;
            margin: 1em;
            padding-left: 1em;
        }
        .custom-select-trigger {
        position: relative;
        display: block;
        width: 130px;
        padding: 0 84px 0 22px;
        font-size: 22px;
        font-weight: 300;
        color: #fff;
        line-height: 60px;
        background: #5c9cd8;
        border-radius: 4px;
        cursor: pointer;
        }
        .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: '';
        width: 10px; height: 10px;
        top: 50%; right: 25px;
        margin-top: -3px;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg) translateY(-50%);
        transition: all .4s ease-in-out;
        transform-origin: 50% 0;
        }
        .custom-select.opened .custom-select-trigger:after {
        margin-top: 3px;
        transform: rotate(-135deg) translateY(-50%);
        }
        .custom-options {
        position: absolute;
        display: block;
        top: 100%; left: 0; right: 0;
        min-width: 100%;
        margin: 15px 0;
        border: 1px solid #b5b5b5;
        border-radius: 4px;
        box-sizing: border-box;
        box-shadow: 0 2px 1px rgba(0,0,0,.07);
        background: #fff;
        transition: all .4s ease-in-out;
    
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-15px);
        }
        .custom-select.opened .custom-options {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
        }
        .custom-options:before {
        position: absolute;
        display: block;
        content: '';
        bottom: 100%; right: 25px;
        width: 7px; height: 7px;
        margin-bottom: -4px;
        border-top: 1px solid #b5b5b5;
        border-left: 1px solid #b5b5b5;
        background: #fff;
        transform: rotate(45deg);
        transition: all .4s ease-in-out;
        }
        .option-hover:before {
        background: #f9f9f9;
        }
        .custom-option {
        position: relative;
        display: block;
        padding: 0 22px;
        border-bottom: 1px solid #b5b5b5;
        font-size: 18px;
        font-weight: 600;
        color: #b5b5b5;
        line-height: 47px;
        cursor: pointer;
        transition: all .4s ease-in-out;
        }
        .custom-option:first-of-type {
        border-radius: 4px 4px 0 0;
        }
        .custom-option:last-of-type {
        border-bottom: 0;
        border-radius: 0 0 4px 4px;
        }
        .custom-option:hover,
        .custom-option.selection {
        background: #f9f9f9;
        }
    
    

        .LeftPanel {
            position: fixed;
            left: 0;
            bottom: 7vh;
            width: 100vw;
            height: 25vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #fff;
            color: #a7aaad;
            z-index: 15;
            font-family: MonumentGroteskRegular;
            font-size: 1em;
            max-height: 39.8em;
            scrollbar-width: thin;
            scrollbar-color: #e9e9ed #f1f1f1;
        }

        #UnlockOnDestopDiv{
            height: 80%;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            text-align: center;
            color: #000;
            font-family: MonumentGroteskRegular;
            font-size: 0.9em;
        }

    
    
        /* For webkit browsers like Chrome and Safari */
        .LeftPanel::-webkit-scrollbar {
        width: 10px !important; /* Width of the vertical scrollbar */
        }
    
        .LeftPanel::-webkit-scrollbar-track {
        background: #fff; /* Color of the tracking area */
        }
    
        .LeftPanel::-webkit-scrollbar-thumb {
        background: #e9e9ed !important; /* Color of the scroll thumb */
        width: 7px !important;
        border: 3px solid transparent;
        border-radius: 100px !important;
        /* background-clip: content-box; */
        }
    
        .LeftPanel::-webkit-scrollbar-thumb:hover {
        background: #356b4d; /* Color of the scroll thumb on hover */
        }
        .LeftPanel::-webkit-scrollbar-thumb:window-inactive {
            background: #356b4d !important; /* Color of the scroll thumb on hover */
        }
    
        
        
        [id^="VerticalSection"] {
            transform: translateX(150%);
        }

        .scrollDiv {
            width: 100%;
            height: 25vh;
            overflow-y: auto; 
            overflow-x: hidden; 
            scrollbar-width: thin; 
            scrollbar-color: #e9e9ed #f1f1f1; 
            margin-top: 7vh;
        }
    
        /* For webkit browsers like Chrome and Safari */
        .scrollDiv::-webkit-scrollbar {
        width: 10px; /* Width of the vertical scrollbar */
        }
    
        .scrollDiv::-webkit-scrollbar-track {
        background: #fff; /* Color of the tracking area */
        }
    
        .scrollDiv::-webkit-scrollbar-thumb {
        background: #e9e9ed; /* Color of the scroll thumb */
        width: 7px;
        border: 3px solid transparent;
        border-radius: 100px;
        /* background-clip: content-box; */
        }
    
        .scrollDiv::-webkit-scrollbar-thumb:hover {
        background: #356b4d; /* Color of the scroll thumb on hover */
        }
        
 
        #ClosePanel{
            position: absolute;
            width: 5em;
            height: 6vh;
            top: 4px;
            display: flex;
            flex-direction: row-reverse;
            z-index: 40;
            right: 0;
            padding:0;
            background-color: transpaernt ;
        }
        #ClosePanelLeftMain{
            position: absolute;
            width: 5em;
            height: 6vh;
            top: 4px;
            display: flex;
            flex-direction: row-reverse;
            z-index: 40;
            right: 0;
            padding:0;
            background-color: white ;
        }
        .closebuttonleft {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 5em;
            height: 3vh;
            overflow:hidden;
            outline:none;
            cursor: pointer;
            right: 0px;
            position: fixed;
            background:white;       
        }
        .closeButton {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.6em;
            overflow:hidden;
            outline:none;
            cursor: pointer;
            margin-top: 2.9em;
            right: 50%;
            position: fixed;
            left: 48%;
            background-color: #ecf0ef;
            border-radius:50%;
            padding:0.2em;
            margin-top: -2em;
        }
    
        .DoorPanel{
            width: 90%;
            display: flex;
            overflow: hidden;
            min-width: 4em;
            justify-content: space-around;
            flex-direction: row;
            margin: 0.7em;
            margin-top: 0;
            height: auto;
        }
    
        .dimensionNameLeft {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            width: 15.4em;
            font-size: 0.76em;
            text-align: left;
            margin: 0.4em;
            color: #000;
        }

        
    
        .removeDoor {
            position: relative;
            line-height: 1.2em;
            height: 2.4em;
            text-align: center;
            transition: 0.5s;
            color: #b91010;
            display: block;
            border: 1px solid #b91010;
            border-radius: 5em;
            font-family: MonumentGroteskRegular;
            cursor: pointer;
            user-select: none;
            -webkit-user-select: none;
            font-size: 0.8em;
            background-color: #fff;
            width: 7.5em;
            
        }
    
        .dimensionNameLeftSub{
            width: 100%;
            font-size: 0.7em;
            text-align: left;
            margin: 0.4em;
            margin-left: 1.2em;
            color: #a7aaad;
        }
         .c-button-rounded {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 65px;
            height: 65px;
            background-color: #ffffff;
            background-size: cover;
            border: 1.5px solid #c5c9cd;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            cursor: pointer;
            margin: 0.1em;
            margin-left: 0.1em;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1 );
        }
        .c-button-rounded:hover {
            border-color: #356b4d;
        } 

        .doorbutton{
            color: #000;
            font-size: 0.6em;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: auto;
            padding: 1em;
        }
    
        .c-button-rounded-spec {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 22%;
            background-color: #ffffff;
            background-size: cover;
            border: 1px solid #c5c9cd;
            overflow: hidden;
            transition: border-color .2s ease,background-color .2s ease;
            outline: none;
            margin: 0.1em;
        }
    
    
    
        /* RANGE CSS */
        .containerRange{
            width: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 0.4em;
            height: 2em;
        }
        /* -------------------------------------------------- */
/* 1) PANEL SLIDER (identical to your original rules) */
/* -------------------------------------------------- */
input.panel-range {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 80% !important;
    height: 2px;
    background-color: #4b7b61;
    border-radius: 3px;
    outline: none;
  }
  input.panel-range::-webkit-slider-runnable-track {
    height: 1px;
    display: block;
    width: 80% !important;
    background-color: #4b7b61;
    border-radius: 3px;
    outline: none;
  }
  input.panel-range::-moz-track {
    height: 2px;
  }
  input.panel-range::-moz-range-progress {
    background-color: #4b7b61;
    height: 2px;
  }
  input.panel-range::-moz-range-track {
    background-color: #F5F5F5;
    height: 2px;
  }
  /* IE */
  input.panel-range::-ms-fill-lower {
    background-color: #F5F5F5;
    height: 2px;
  }
  input.panel-range::-ms-fill-upper {
    background-color: #4b7b61;
    height: 2px;
  }
  input.panel-range::-ms-track {
    appearance: none;
    height: 2px;
  }
  input.panel-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #4b7b61;
    cursor: pointer;
    margin-top: -11px;       /* original centering */
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
  }
  input.panel-range::-moz-range-thumb {
    -webkit-appearance: none;
    height: 22px;
    width: 22px;
    background-color: #4b7b61;
    border: 0px solid #4b7b61;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -11px;       /* original */
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
  }
  input.panel-range::-moz-range-thumb:hover {
    border-color: #4b7b61;
  }
  input.panel-range::-ms-thumb {
    appearance: none;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -11px;       /* original */
    border: none;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
  }
  input.panel-range:active::-webkit-slider-thumb {
    background-color: #4b7b61;
    border-color: #4b7b61;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
  }
  input.panel-range::-webkit-slider-runnable-track::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 5px);
    height: 100%;
    background-color: #4b7b61;
  }
  input.panel-range::-webkit-slider-runnable-track::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 5px);
    height: 100%;
    background-color: #4b7b61;
  }
  
  
  /* ------------------------------------------------- */
  /* 2) ZOOM SLIDER (same as above, thumb margin tweaked) */
  /* ------------------------------------------------- */
  input.zoom-range {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 80% !important;
    height: 2px;
    background-color: #4b7b61;
    border-radius: 3px;
    outline: none;
  }
  input.zoom-range::-webkit-slider-runnable-track {
    height: 1px;
    display: block;
    width: 80% !important;
    background-color: #4b7b61;
    border-radius: 3px;
    outline: none;
  }
  input.zoom-range::-moz-track {
    height: 2px;
  }
  input.zoom-range::-moz-range-progress {
    background-color: #4b7b61;
    height: 2px;
  }
  input.zoom-range::-moz-range-track {
    background-color: #F5F5F5;
    height: 2px;
  }
  /* IE */
  input.zoom-range::-ms-fill-lower {
    background-color: #F5F5F5;
    height: 2px;
  }
  input.zoom-range::-ms-fill-upper {
    background-color: #4b7b61;
    height: 2px;
  }
  input.zoom-range::-ms-track {
    appearance: none;
    height: 2px;
  }
  input.zoom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #4b7b61;
    cursor: pointer;
    margin-top: -8px;       /* <-- 1px shift to center on 2px track */
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
  }
  input.zoom-range::-moz-range-thumb {
    -webkit-appearance: none;
    height: 22px;
    width: 22px;
    background-color: #4b7b61;
    border: 0px solid #4b7b61;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -8px;       /* <-- same tweak */
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
  }
  input.zoom-range::-moz-range-thumb:hover {
    border-color: #4b7b61;
  }
  input.zoom-range::-ms-thumb {
    appearance: none;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -8px;       /* <-- same tweak */
    border: none;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
  }
  input.zoom-range:active::-webkit-slider-thumb {
    background-color: #4b7b61;
    border-color: #4b7b61;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
  }
  input.zoom-range::-webkit-slider-runnable-track::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 5px);
    height: 100%;
    background-color: #4b7b61;
  }
  input.zoom-range::-webkit-slider-runnable-track::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 5px);
    height: 100%;
    background-color: #4b7b61;
  }
    
    
    
    
    
    
        sup { 
            font-variant-position: super;
        }
    
        .AddRemove {
            width: 2em;
            font-size: 0.8em;
            color: #b0b3b5;
        }
    
        /* SWITCH  */
        .Coverdiv{
            display: none;
            position: absolute;
            width: 89px;
            height: 2.2em;
            overflow: hidden;
            background-color: #e9e9ed;
            border: 0px solid #000;
            border-radius: 3em;
            z-index: 30;
            opacity: 0.8;
        }
        
        #button1 .knobs:before {
            content: "Off";
            position: absolute;
            top: 0px;
            left: 0.6px;
            width: 51px;
            height: 30px;
            color: #fff;
            font-size: 0.9em;
            font-family: MonumentGroteskRegular;
            text-align: center;
            line-height: 0.6;
            padding:8px;
            background-color: #356B4D;
            border-radius:20px;
            border:2px solid #356B4D;
            transition:0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
            
          }      
          #button1 .checkbox:checked + .knobs:before {
            content: "On";
            font-family: MonumentGroteskRegular;
            left: 38px;
            height: 30px;
          }
          .mac-os #button1 .knobs:before {
            padding: 3px;
            padding-bottom: 13px;
          }
        
          .mac-os #button1 .checkbox:checked + .knobs:before {
            padding: 3px;
            padding-bottom: 13px;
          }
          
          #button1 .checkbox:checked ~ .layer {
            background-color: #fff;
          }
          
          #button1 .knobs,
          #button1 .knobs:before,
          #button1 .layer {
            transition: 0.6s ease all;
          }
        
        
    
        
        .button-cover,
        .knobs,
        .layer {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }
        
        .button {
            position: relative;
            width: 5.5em;
            height: 30px;
            overflow: hidden;
            background-color: ##dfe9e4 !important;
            box-shadow: 0px 0px 0px 0px;
        }
        .button .mac-os {
            padding-bottom: 1em; 
          }
        
        .button.r,
        .button.r .layer {
            border-radius: 100px;
        }

        
        .button.b2 {
            border-radius: 2px;
        }
        
        .checkbox {
            position: relative;
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
            opacity: 0;
            cursor: pointer;
            z-index: 3;
        }
        
        .knobs {
            z-index: 2;
        }
        
        .layer {
            width: 100%;
            background-color: #fff;
            transition: 0.9s ease all;
            z-index: 1;
            height: 1.3em;
            border: 0.5px solid #000;
        }
        
        /* .button {
            position: relative !important;
            width: 98px !important;
            height: 1.5em !important;
            overflow: hidden !important;
            box-shadow: none !important;
            border: none !important;
            background-color: #fff !important;
        } */
        
        .button.r,
        .button.r .layer {
            border-radius: 100px;
            height: 30px;
            width: auto;
        }

        
        .button.b2 {
            border-radius: 2px;
        }
        
        .checkbox {
            position: relative;
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
            opacity: 0;
            cursor: pointer;
            z-index: 3;
        }
        
        .knobs {
            z-index: 2;
        }
        
        .layer {
            width: 100%;
            background-color: #fff;
            transition: 0.9s ease all;
            z-index: 1;
            height: 1.4em;
            border: 0.5px solid #000;
        }
    
    
    
    
    
    
    
    
    
    
        
        #appCanvas {
            width: 100%;
            height: 150%;
            display: block;
            margin-top: 0em;
            position: absolute;
        }
    
        #TopPanel {
            position: fixed;
            width: 100vw;
            height: 10vh;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: end;
            background-color: rgba(255, 255, 255, 0);
            color: #000;
            font-size: 0.9em;
            z-index: 10;
            font-family: MonumentGroteskBold;
            text-align: center;
        }

        #TopEnd{
            width: 100%;
        }

        #ReturnButton {
            width: 48px;
            height: 23px;
            background-color: #356b4d;
            color: white;
            border-radius: 20px;
            font-size: 0.65em;
            justify-content: center;
            font-family: MonumentGroteskRegular;
            display: flex;
            align-items: center;
            flex-direction: inherit;
            z-index: 9;
            left: 22px;
            top: 2.7vh;
            position: fixed;
            cursor: pointer;
        }

        #Logo {
            z-index: 9;
            height: 21px;
            left: 22px;
            top: 2.7vh;
            width: auto;
            position: fixed;
            cursor: pointer;
        }
        #LogoImage {
            display: none;
            width: 10em;
        }

        #productName {
            margin-right: 1.5em;
            display: flex;
            flex-direction: row;
        }

        #subProductName {
            display: none;
            font-family: MonumentGroteskRegular;
            margin-left: 0.2em;
        }

        #OpenaButtonsPanel{
            width: 101px;
            background-color: #356b4d;
            color: white;
            border-radius: 17px;
            font-size: 0.65em;
            justify-content: center;
            padding-right: 0.7em;
            font-family: MonumentGroteskRegular;
        }

        #productPrice {
            font-family: MonumentGroteskBold;
            color: #000;
            font-size: 1.5em;
            margin-right: 1em;
            margin-top: -0.6em;
        }
    
        #BottomPanel {
            position: fixed;
            right: 0;
            width: 100vw;
            height: 7vh;
            z-index: 20;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            background-color: #fff;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
            color: white;
            bottom: 0;
            top: auto;
            font-size: 4.2vw;
            z-index: 100;
        }
        #SubBottomPanel {
            display: flex;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            width: 100%;
            flex-grow: 1;
        }
    
    
    
        .dimensionName {
            width: auto;
            min-width: 4em;
            height: 2em;
            line-height: 1em;
            background-color: transparent;
            border: none;
            display: block;
            flex-direction: row;
            cursor: text;
            pointer-events: none;
            font-family: MonumentGroteskRegular;
            align-items: center;
            font-size: 1em;
            color: #000;

        }
        .dimensionNameLong {
            width: auto;
            min-width: 7em;
            height: 2em;
            line-height: 1em;
            background-color: transparent;
            border: none;
            display: block;
            flex-direction: row;
            cursor: text;
            pointer-events: none;
            font-family: MonumentGroteskRegular;
            align-items: center;
            font-size: 1em;
            color: #000;
        }
        .nameHeight{
            padding-left: 0em;
        }
        .menuVertPart {
            display: none; 
            flex-direction: row;
            justify-content: space-between; 
            height: 2.5em;
            width: 100%;
            margin-top: 0.5em;
            padding-bottom: 0.4em;
        }
        .menuWallMounting {
            display: none; 
            flex-direction: row;
            justify-content: space-between; 
            height:4em; 
            width: 100%
        }
        
        .dimensionNameBold {
            width: auto;
            height: 1.5em;
            line-height: 1em;
            margin: 0.5em;
            background-color: transparent;
            border: none;
            display: block;
            flex-direction: row;
            cursor: text;
            pointer-events: none;
            font-family: MonumentGroteskBold;
            align-items: center;
            font-size: 0.9em;
            color: #000;
        }
    
    
    
        #arrowAndMenuContainer {
            display: flex;
            overflow-x: auto; /* Enable horizontal scrolling */
            overflow-y: hidden;
            flex-direction: row;
            align-items: center;
            position: fixed;
            right: 0;
            left: 0;
            height: 7vh;
            width: 100%; 
            z-index: 12;
            background-color: #fff;
            justify-content: space-between; /* Evenly distribute the items along the horizontal line */
            border-top: 1px solid #d9dcde;
            -ms-overflow-style: none;  /* Internet Explorer 10+ */
            scrollbar-width: none;  /* Firefox */
        }
        
        #arrowAndMenuContainer::-webkit-scrollbar {
            display: none;  /* Safari and Chrome */
        }


        .UpperMenuContainerForMobileLeftPanel {
            display: flex;
            overflow-x: auto; /* Enable horizontal scrolling */
            overflow-y: hidden;
            flex-direction: row;
            align-items: center;
            position: fixed;
            right: 0;
            left: 0;
            height: 7vh;
            width: 100%; /* Ensure it takes the full width */
            z-index: 12;
            background-color: #fff;
            justify-content: space-between; /* Evenly distribute the items along the horizontal line */
            padding: 0 5em 0 0em;
            border-top: 1px solid #d9dcde;
            -ms-overflow-style: none;  /* Internet Explorer 10+ */
            scrollbar-width: none;  /* Firefox */
        }
        .UpperMenuContainerForMobileLeftPanel::-webkit-scrollbar {
            display: none;  /* Safari and Chrome */
        }

        .scrollForMobileMainMenu {
            height: 2.6em;
            line-height: 0.6em;
            min-width: fit-content;
            display: inline;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0.5em 1em;
            text-align: center;
            white-space: nowrap;
            white-space: normal;
            gap: 0.2em;
            font-size: 1em;
            border: 0.7px solid gray;
            border-radius: 3em;
            margin: 0 0.2em 0.2em 0;
        }

        .buttonBorderMobileVer {
            height: 4vh;
            width: 46vw;
            margin: 0.3em;
            display: flex;
            font-size: 0.95em;
            justify-content: center;
            position: relative;
            text-align: center;
            flex-shrink: 0;
            line-height: 1.6em;
            border: 0.5px solid gray;
            border-radius: 3em;
            padding-left: 1em;
            padding-right: 1em;
        }
        
        .scrollForMobileLeftMenu {
            height: 2vh;
            margin: 0.3em;
            display: flex;
            font-size: 1em;
            justify-content: center;
            position: relative;
            text-align: center;
            flex-shrink: 0;
            border-radius: 3em;
        }
    
        .dimensionMenu {
            flex-grow: 1; /* Ensure the element takes up the remaining space */
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            height: 3em;
            margin: 0.5em;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            width: 100%; 
            position: relative;
            align-items: center;
        }

        #menuAddVisit{ 
            display: flex; 
            margin-top:  3.5em 3.5em 3.5em 3.5em; 
            flex-direction: row; 
            justify-content: end; 
            background:none; 
            border-radius:1em 1em 1em 1em;
            height: 16vh;
        }

        
    
    
    
        .arrow-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #e9e9ed;
            color: black;
            height: 2.1em;
            width: 2.5em;
            border-radius: 0%;
            border: 1px solid #d9dcde;
            cursor: pointer;
        }
        
    
        .buttonmenuMobile {
            display: flex;
            background-color: #fff;
            width: 100%;
            overflow-x: hidden;
            transition: max-height 0.2s ease-out;
            padding: 0.5em;
            height: auto;
            align-items: center;
            justify-content: flex-start;
            overflow-y: hidden;
            z-index: 10;
            position: inherit;
            color: #000;
        }

        .buttonmenuMobileWM {
            height: 2em;
            padding: 0 0.5em 0 0;
            overflow-y: hidden;
        }

        .menuWidth { 
            height:13vh !important;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .button-row {
            width: 100%;
            height: 3em;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .button-row {
            width: 100%;
            height: 3em;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 0.5em;
          }
          
          .btnProduct {
            width: 3.6em;
            height: 2.4em;
            background-color: #fff;
            color: black;
            font-size: 1em;
            border:0.5px solid gray;
            margin:0;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 2;
            padding:0;
            padding-bottom: 0px;
            box-sizing: border-box;
            padding-bottom: 1em;
          }
          
          .btnProduct.first {
            border-top-left-radius: 0.3em;
            border-bottom-left-radius: 0.3em;
          }
          
          .btnProduct.last {
            border-top-right-radius: 0.3em;
            border-bottom-right-radius: 0.3em;
          }

          .btnProduct.disabled {
            background-color: #dcdcdc;
            color: #cdcdcd;
            pointer-events: none;
          }
          
          .btnProduct.enabled {
            background-color: #fff;
            color: #000;
            pointer-events: auto;
          }
          
          
    
        #menuWidth {
            display: flex;
        }
        #buttonWidth {
            color: #356b4d;
        }
     
        #menuFeet {
            margin: 3em;
            padding: 1em;
        }

        

       

        #subMiddlePanel {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 11;      
        }
        #MenuForMobileVersion {
            display: flex;
            position: fixed;
            flex-direction: column;
            right: 0;
            left: 0;
            bottom: 0;
            margin-bottom: auto;
            align-items: center;
            z-index: 12;
            width: 100vw;
            height: 32vh;
            color: #000;
            background-color: #fff;  
            overflow-y: auto;  
            z-index: 10; 
        }
        #MenuForMobileVersion1 {
            width: 100%;
            height: 25vh;
            display: none;
            flex-direction: column;
            justify-content: flex-start;
        }
        #MenuForMobileVersionProduct1 {
            width: 100%;
            height: 32vh;
            display: flex;
            bottom: 0em;
            flex-direction: column;
            position: absolute;
            justify-content: flex-start;
        }
        #MenuForMobileVersionProduct2 {
            width: 100%;
            height: 17.4vh;
            display: none;
            bottom: 0em;
            flex-direction: column;
            position: absolute;
            justify-content: flex-start;
            bottom: 12vh;
            overflow-x: hidden;
        }

        .iconButton{
            width:auto; 
            height:16px; 
            margin-bottom:9px;
        }
    
        #MainSubMenus {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            min-height: 19vh;
            width: 100%;
            padding-right: 0;
            z-index: 10;
            margin-top: 7vh;
            margin-bottom: 7vh;
            overflow-y: auto;
            overflow-x: hidden;
        }

        #subMenuVerticalPart {
            display: flex;
            justify-content: center;
            align-items: center;
        }
    
        #additionalButtonsPanel {
            display: none;
            position: fixed;
            top: 2.5vh;
            width: 40%;
            height: 16.4em;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            color: black;
            font-size: 0.6em;
            z-index: 10;
            font-family: MonumentGroteskRegular;
            margin-left: 4.6em;
        }


        #AddMobileVersionForButtonsPanel {
            display: flex;
            position: fixed;
            top: 9.5vh;
            left: 0;
            width: 37px;
            height: 25px;
            background-color: #f5f5f5;
            flex-direction: row;
            justify-content: space-evenly;
            align-items: center;
            color: black;
            font-size: 0.6em;
            z-index: 10;
            border:0.5px solid #e2e2e2;
            border-radius:0 1.5em 1.5em 0;
        }


        #TopZoomSliderPanel {
            position: fixed;
            bottom: 34vh;
             right: 25%;
            width: 50%;
            max-width: 400px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #f5f5f5;
            border: 0.6px solid #ccc;
            border-radius: 20px;
            padding: 0 10px;
            z-index: 1000;
            transform: rotate(180deg);
          }
          
          #zoomSlider {
            flex: 1;
            margin: 0 10px;
            -webkit-appearance: none;
            border-radius: 3px;
            cursor: pointer;
          }
          
          #zoomSlider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 16px;
            height: 16px;
            background: #0e4e3b;
            border-radius: 50%;
            cursor: pointer;
          }
          
          #zoomSlider::-moz-range-thumb {
            width: 16px;
            height: 16px;
            background: #0e4e3b;
            border-radius: 50%;
            cursor: pointer;
          }
          
          .zoom-label {
            font-size: 1.2em;
            color: black;
            user-select: none;
            margin-top: -0.3em;
          }

          #menuHeight_WallMounting_Product1,#menuHeight_WallMounting_Product2, #menuHeight_WallMounting_Product3,#menuHeight_WallMounting_Product4, 
          #menuHeight_WallMounting_Product5,#menuHeight_WallMounting_Product6, 
          #menuHeight_WallMounting_Product7,#menuHeight_WallMounting_Product8,  #menuHeight_WallMounting_Product9,#menuHeight_WallMounting_Product10,  #menuHeight_WallMounting_Product11,#menuHeight_WallMounting_Product12,  #menuHeight_WallMounting_Product13,#menuHeight_WallMounting_Product14 {
            margin-top: 0.3em;
            margin-bottom: 1em;
          }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
