/* styles.css */

/* Add styles here to customize the appearance of your app */


/* force foundation */
/* @media print, screen and (min-width: 40em){
    
} */



:root {
    --orange: #F15A22;
    --orange50: #f159227f;
    --orange25: #f1592240;
    --orange5: #f159221a;
    --gray: #DBDAD2;
    --blak:#1d1d1f;
}

html, body {
    /* overflow: hidden; */
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    /* background-color: #E8E5E4; */
    font-size: 16px;

    background-image: url("../../assets/ui/appBG2.webp");
    background-repeat: no-repeat;
    background-size: cover;
}

body#APP{
    overflow: hidden;
}

.mobile-only {
    display: none; /* hide by default */
}

.mobile-only h1{
    margin: 22px 0;
}

.mobile-only h2{
    text-align: center;
    font-size: 1.75rem;
    margin: 22px 0;
}

@media only screen and (max-width: 600px) {
    .mobile-only {
        padding: 20px;
        display: block; /* show on screens smaller than 600px */
        position: fixed;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        flex-direction: column;
        background-color: #FFF;
        z-index: 300;
    }
}

.main-nav li{
    opacity: 0;
}

#Loader, .loader {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center; 
    flex-direction: column;
}

.loader{
    background-image: url("../../assets/ui/appBG.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.loader .error{
    background-color:#FFF;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}

.loader .error a{
    text-decoration: underline;
    color: red;
}

#Loader h5 {
    color:#7a7a7a;
    margin-top: 10px;
}

#Loader img{
    width: 50px;
    height: 50px;
}

.circle{
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 0;
    padding: 0 0.5em;
    border-radius: 500px;
}

.capsule{
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 0;
    padding: 0.5em 0.5em;
    border: 1px solid transparent;
    border-radius: 10px;
    -webkit-transition: background-color .25s ease-out,color .25s ease-out;
    transition: background-color .25s ease-out,color .25s ease-out;
    font-family: inherit;
    font-size: .9rem;
    -webkit-appearance: none;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.capsule {
    color: #7a7a7a;
    background-color: #fff;
}

.capsule.small{
    font-size: .75rem;
}

.grid-container.fluid{
    padding-right: 1.11rem;
    padding-left: 1.11rem;
}

.paint-UI-list{
    bottom: 20%;
    left: 41%;
}

.paint-UI-list p{
    color: #FFF;
    line-height: 1.2;
}

.paint-UI-list ul{
    margin: 0;
    border-left: 1px solid var(--orange);
    /* border-top: 1px solid var(--orange); */
    padding: 1rem;
    list-style-position: inside;
    backdrop-filter: blur(10px);
}

.paint-UI-list ul li {
    color: #fff;
    cursor: pointer;
}

.paint-UI-list ul li:hover{
    color: var(--orange)
}
/* end */

h1,.h1, h3, .h3, h4, .h4, h5, .h5{
    line-height: 1;
    color: var(--orange);
    margin-bottom: 2rem;
    /* font-weight: 600; */
}

h1,.h1{
    font-size: 3.5rem;
}

h5, .h5{
    color: var(--blak);
}

.no-list h5{
    max-width: 90%;
    line-height: 1.2;
}

h6,.h6{
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.mrg-b-8{
    margin-bottom: 8px;
}

.app-landing-logo{
    /* background-color: white; */
    margin: 1.11rem 0;
}

.base-mb{
    margin-bottom: 2rem;
}

.catalog-bg{
    background-image: url('../../assets/ui/typeProdTop.png');
    background-repeat: no-repeat;
    background-position: left 15%;
    background-size: 14%;
}

.app-catalog-container{
    margin-top: 50px;
}

.app-catalog-container.home-catalog{
    margin-top: 20px;
}

.catalog-list{
    overflow: scroll;
    height: 70vh;
    margin: 0;
}

.catalog-list_grid{
    /* display: flex;
    flex-wrap: wrap;
    gap: 10px; */

    display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

.catalog-item {
    /* border-bottom: 1px solid #fff; */
    background: transparent;
    padding: 0;
    margin-bottom: 2px;
}

.catalog-list_grid .catalog-item {
    /* width: 214px; */
    /* border: 1px solid white;
    border-radius: 0.5rem;
    padding: 0.9375rem; */
    /* max-height: 84%; */

    /* display: flex;
    flex-direction: column; */
    /* min-height: 380px; */
    /* height: 300px; */
}

.catalog-list_grid .grid-x {
    display: flex;
    /* flex-direction: column; */
    /* align-content: flex-start; */
    flex-direction: column;
    justify-content: space-between;
}


.catalog-item:hover{
    
    /* background-color: #fff; */
    /* background: rgb(255,255,255); */
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 100%);
    -webkit-transition: background-color .30s ease-out,color .25s ease-out;
    transition: background-color .30s ease-out,color .25s ease-out;
}

.catalog-list_grid .catalog-item:hover{
    background: rgb(255,255,255);
}

.item-product .item-prod-type{
    display: block;
    margin: 0 0 0.5rem 0;
    border-left: 3px solid #F15A22;
    padding: 0 0 0 6px;
    line-height: 1;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-product .item-prod-type.capsule{
    margin-top: 0.5rem;
    font-size: 0.7rem;
    text-align: left;
    background-color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5em 0.7em;
    border-radius: 5px;
}

.item-description{
    flex-grow: 1;
    /* padding: 1rem; */
    /* border: 1px solid var(--orange); */
}

.square-corners {
    --b: 1px;   /* thickness of the border */
    --c: var(--orange);   /* color of the border */
    --w: 6px;  /* width of border */
  
    border: var(--b) solid var(--orange5); /* space for the border */
    --_g: #0000 90deg,var(--c) 0;
    --_p: var(--w) var(--w) border-box no-repeat;
    
    background:
    conic-gradient(from 90deg  at top    var(--b) left  var(--b),var(--_g)) 0    0    / var(--_p),
    conic-gradient(from 180deg at top    var(--b) right var(--b),var(--_g)) 100% 0    / var(--_p),
    conic-gradient(from 0deg   at bottom var(--b) left  var(--b),var(--_g)) 0    100% / var(--_p),
    conic-gradient(from -90deg at bottom var(--b) right var(--b),var(--_g)) 100% 100% / var(--_p);
    padding: 0.25rem 1rem;
}

.item-description p{
    font-size: 1rem;
}
.item-description p sup{
    font-size: 10px;
}

.modal .item-description{
    padding: 16px 0 8px;
    margin: 16px 0;
    border-bottom: 1px solid #C3C3C3;
    border-top: 1px solid #C3C3C3;
}

.modal .item-description p{
    line-height: 1.4;
} 

.modal .item-features li strong{
    color: var(--orange);
}

.modal .item-characteristics h4, 
.modal .item-aplications h4{
    font-size: 1.4rem;
    color: #7a7a7a;
}

.modal .item-aplications{
    border-left: 1px solid #C3C3C3;
    padding-left: 30px;
}

.modal .close-modal{
    text-align: right;
    text-decoration: underline;
    cursor: pointer;
}

.modal .close-modal-end div{
    padding-left: 10px;
    padding-bottom: 5px;
    margin-left: 10px;
    border-left: 1px solid gray;
}



.item-footnote {
    padding-top: 16px;
    margin: 16px 0;
    border-top: 1px solid #C3C3C3;
}

.item-footnote p{
    font-size: 0.65rem;
    line-height: 1.1;
    color: #7a7a7a;
    margin: 0;
}

.catalog-list_grid .grid-x .item-moreinfo{
    align-self: flex-end;
}

.item-moreinfo{
    text-align: center;
}

.catalog-item div{
    padding: .4rem 0 0;
    margin: .5rem 0;
}

.catalog-list_grid .catalog-item div{
    width: 100%;
}

.catalog-list_grid .catalog-item > div:nth-of-type(1){
    border-right:none;
}

.catalog-item h5 {
    color: var(--orange);
    font-weight: 400;
    margin-bottom: 0.2rem;
    font-size: 1.5rem;

    /* text-shadow: 0px 0px 5px rgba(0,0,0,0);
    transition: all 0.3s ease-in-out; */
}

.catalog-item h5 sup{
    /* top: -0.3em; */
    font-size: 14px;
}


.catalog-item p {
    line-height: 1.4rem;
    font-size: 1rem;
    margin-bottom: 0;
}

.catalog-item .btn-more-info{
    color: #FFF;
    /* border: 1px solid var(--orange); */
    background-color: #f1592268;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 600;
    width: 60%;
    margin: 0 0 0 0;
    padding: 0.8rem 1rem 0.65rem 1rem;
    cursor: pointer;

    -webkit-transition: background-color .25s ease-out,color .25s ease-out;
    transition: background-color .25s ease-out,color .25s ease-out;
}

.catalog-item .btn-more-info:hover{
    background-color: var(--orange);
    -webkit-transition: background-color .25s ease-out,color .25s ease-out;
    transition: background-color .25s ease-out,color .25s ease-out;
}

.no-list{
    /* margin: 0; */
    list-style: none;
}

.show-me{
    display: block !important;
}

.hide-me{
    display: none;
}

.disp-flex{
    display: flex;
}

.disp-flex_gap10{
    gap: 10px;
}

.disp-flex_gap15{
    gap: 15px;
}

.disp-flex_gap20{
    gap: 20px;
}

.gap-r-x10{
    padding-right: 10px;
}

.gap-r-x15{
    padding-right: 15px;
}

.gap-r-x20{
    padding-right: 20px;
}

.gap-t-x4{
    padding-top: 4px;
}

.gap-t-x16{
    padding-top: 16px;
}

.no-border{
    border: none!important;
}

.vertical-line {
    display: block;
    margin-top: 0;
    height: 145px;
    border-right: 1px solid var(--orange);
    opacity: 0.65;
}

.vertical-line-white {
    border-right: 1px solid #fff;
    opacity: 0.75;
}

.menu-horizontal-line {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: 5px;
    border-top: 1px solid var(--orange);
}

.app-bg{
    background-image: url("../../assets/ui/imgOutsideHome.webp");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 50%;
    height: 100vh;
}

.app-bg-catalog{
    background-image: url("../../assets/ui/sliceBnC.webp");
    background-size: 44%;
}

.app-bg-pnc{
    background-image: url("../../assets/ui/slicePnC.webp");
    background-size: 44%;
}

.app-bg-adh{
    background-image: url("../../assets/ui/sliceAdh.webp");
    background-size: 44%;
}

#renderCanvas {
    width: 100%;
    height: 100%;
    touch-action: none;
}
      
.explor-by-title{
    font-size: .9rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
    /* border-bottom: 1px solid var(--orange); */
}

.underline{
    display: block;
    margin: 0.5rem 0 1rem;
    height: 2px;
    width: 100%;
    background: rgb(240,85,0);
    background: linear-gradient(90deg, rgba(240,85,0,1) 0%, rgba(240,85,0,1) 18%, rgba(207,207,207,0) 18%, rgba(207,207,207,0) 22%, rgba(255,255,255,1) 22%, rgba(255,255,255,1) 100%);
}

/* -explor-by-title */

.sidebar {
    position: absolute; 
    /* bottom: 10vh; 
    right: 0;  */
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    right: 0; 
    height: fit-content;
}

.sidebar-container{
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(3px); /* Adjust the blur intensity as needed */
    list-style: none;
    padding: 2px 8px;
    border-radius: 8px 0 0 8px;
    width: auto;
    margin: 0;

    /* background-color: rgba(255, 255, 255, 0.9);
    list-style: none;
    padding: 0.5rem 0.7rem;
    border-radius: 5px 0 0 5px;
    width: 90px;
    margin: 0; */
}


.sub-menu{
    background-color: #ededed;
    border-radius: 5px;
    padding: 0.5rem;
}

.sub-menu-product {
    background-color: var(--gray);
}

.sub-menu .sub-m-options{
    padding: 0;
    margin: 0;
}
.sub-menu .sub-m-options .btn{
    width: 2.125rem;
    height: 2.125rem;
}

.btn-label span {
    color: var(--orange);
    font-size: 0.8rem;
    line-height: 1;
    /* text-align: center; */
}

.sidebar-container li{
    margin: 1rem auto;
}

.navlist {

}

.btn{
    cursor: pointer;
    display: block;
    width: 2rem;
    height: 2rem;
}

.topnav-container{
    /* display: inline-block; */
}

.app-container {
    height: 100vh;
    padding-top: 1.5rem;
    /* margin-top: 110px;  */
}

.app-landing-container {
    height: 100vh;
    /* margin-top: 110px;  */
}

.app-landing-container .btn{
    width: 6.25rem;
    height: 12rem;
    /* overflow: hidden;
    text-indent: -9999px; */
    line-height: 1;
}

.app-landing-container .btn span{
    margin-top: 1rem;
}

.app-landing-nav{
    /* margin-top: 50px; */
}

.app-landing-nav ul{
    margin-left: 0px;
}

.sidebar-container .btn{
    width: 3.125rem;
    height: 3.55rem;
    overflow: hidden;
    text-indent: -9999px;
    /* background-color: var(--orange); */
}

.app-catalog-container .btn{
    width: 6.25rem;
    height: auto;
}

.app-catalog-container .subgroup{
    margin-bottom: 1.6rem;
}

.two-columns{
    columns: 2;
}

.catalog-li-options{
    margin:0px;
    margin-right:20px;
}

.catalog-li-options li{
    
    border-left: 2px solid #f159228a;
    margin-bottom: 6px;
    list-style: none;
    width: fit-content;
    position: relative;
}

.catalog-li-options li span{
    display: block;
    padding: 1px 10px;
    font-size: 1rem;
    color: black;
    background-color: transparent;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.catalog-li-options li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    /* background-color: #f15922; */
    background: linear-gradient(to right, #f1592250 0%, #f1592250 100%);
    transition: width 0.3s ease-in-out;
    z-index: 0;
}
  
.catalog-li-options li:hover::before {
    width: 100%;
}


#filterCatalog .filter-header{
    font-size: .9rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0rem;
}

#filterCatalog select {
    width: 100%;
    border: 1px solid var(--orange25);
    background-color: transparent;
    font-size: 0.9rem;
    border-radius: 0.4rem;
}

#filterCatalog select option {
    font-size: 0.9rem;
}

.filter-result-name {
    /* margin-left: 0.9375rem; */
    text-transform: capitalize;
    font-weight: 400;
    color: var(--blak);
}

#filterCatalog span{
    margin-right: 1rem;
    font-size: 1rem;
}

.filter-result-name .co-filter {
    margin-top: 0.5rem;
    text-transform: capitalize; 
    color:var(--orange); 
    font-size:1.3rem; 
    /* display:block; */
}


#subOptLocation.btn{
    width: 1.1875rem;
    height: 2rem;
}
#subOptLocation {
    background-image: url("../../assets/ui/side-Me-Location.png");
    background-repeat: no-repeat;
    background-position: top center;
}
#subOptLocation:hover, #subOptLocation.btn-active{
    background-position: center -2rem;
}

#subOptCompass.btn{
    width: 2.0625rem;
    height: 2.0625rem;
}
#subOptCompass {
    background-image: url("../../assets/ui/side-Me-Compass.png");
    background-repeat: no-repeat;
    background-position: center top;
}
#subOptCompass:hover, #subOptCompass.btn-active{
    background-position: center -2.062rem;
}

#subOptKeyboard.btn{
    width: 2.375rem;
    height: 1.32rem;
}
#subOptKeyboard {
    background-image: url("../../assets/ui/side-Me-Keyboard.png");
    background-repeat: no-repeat;
    background-position: top center;
}
#subOptKeyboard:hover, #subOptKeyboard.btn-active{
    background-position: center -1.32rem;
}

#subOptGrid{
    background-image: url("../../assets/ui/side-Me-CatGrid.png");
    background-repeat: no-repeat;
    /* background-size: 2.00625rem auto; */
}

#subOptCard{
    background-image: url("../../assets/ui/side-Me-CatCard.png");
    background-repeat: no-repeat;
    /* background-size: 2.00625rem auto; */
}

#subOptGrid:hover, #subOptCard:hover, #subOptGrid.btn-active, #subOptCard.btn-active{
    background-position: 0 -2.125rem;
}


#nav3dhouse figure{
    background-image: url("../../assets/ui/side-Me-3D@2x.png");
}

#navCatalog figure{
    background-image: url("../../assets/ui/side-Me-Catalog@2x.png");
}

#btn3D{
    background-image: url("../../assets/ui/side-Me-3D.png");
    background-repeat: no-repeat;
    background-size: 3.125rem auto;
}

#btnCatalog{
    background-image: url("../../assets/ui/side-Me-Catalog.png");
    background-repeat: no-repeat;
    background-size: 3.125rem auto;
}

#btnBnC{
    background-image: url("../../assets/ui/side-Me-Catalog.png");
    background-repeat: no-repeat;
    background-size: 3.125rem auto;
}

#btnPnC{
    background-image: url("../../assets/ui/side-Me-PnC.png");
    background-repeat: no-repeat;
    background-size: 3.125rem auto;
}

#btnAdh{
    background-image: url("../../assets/ui/side-Me-Adh.png");
    background-repeat: no-repeat;
    background-size: 3.125rem auto; 
}

#btnHelp{
    background-image: url("../../assets/ui/side-Me-Help.png");
    background-repeat: no-repeat;
    background-size: 3.125rem auto;
}

#btnHome{
    background-image: url("../../assets/ui/side-Me-Home.png");
    background-repeat: no-repeat;
    background-size: 3.125rem auto;
}


#nav3dhouse figure, 
#navCatalog figure {
    display: block;
    overflow: hidden;
    text-indent: -9999px;
    /* width: 5rem; */
    height: 6.975rem;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    margin-bottom: 10px;
}

#nav3dhouse figure:hover, 
#navCatalog figure:hover{
    background-position: 0 -7.175rem;
    
}

#MM3D #btn-bg path, #MMCatalog #btn-bg path, #MMPnC #btn-bg path, #MMAdh #btn-bg path {
    fill: #FFF;
    -webkit-transition: fill .25s ease-out;
    transition: fill .25s ease-out;
}

#MM3D:hover #btn-bg path, #MMCatalog:hover #btn-bg path, #MMPnC:hover #btn-bg path  {
    fill: var(--orange);
    -webkit-transition: fill .25s ease-out;
    transition: fill .25s ease-out;
}

#MMAdh:hover #btn-bg path  {
    fill: var(--orange);
    -webkit-transition: fill .25s ease-out;
    transition: fill .25s ease-out;
}

#MM3D #ico3D g path, #MMCatalog #Cate g path, #MMPnC #Brush g path, #MMAdh #Adh g path {
    stroke: var(--orange);
    -webkit-transition: stroke .25s ease-out;
    transition: stroke .25s ease-out;
}

#MM3D:hover #ico3D g path, #MMCatalog:hover #Cate g path, #MMPnC:hover #Brush g path {
    stroke: #FFF;
    -webkit-transition: stroke .25s ease-out;
    transition: stroke .25s ease-out;
}

/* #MMAdh:hover #Adh g path {
    stroke: #FFF;
    -webkit-transition: stroke .25s ease-out;
    transition: stroke .25s ease-out;
} */



#MMAdh:hover #Adh #top-layer path  {
    fill: var(--orange)!important;
    -webkit-transition: fill .25s ease-out;
    transition: fill .25s ease-out;
}

#MMAdh:hover #Adh g path  {
    stroke: #FFF;
    -webkit-transition: stroke .25s ease-out;
    transition: stroke .25s ease-out;
}

#MMAdh:hover #Adh #base-layer path  {
    stroke: #FFF;
    -webkit-transition: stroke .25s ease-out;
    transition: stroke .25s ease-out;
}




#btn3D:hover, 
#btnHelp:hover, 
#btnCatalog:hover, 
#btnBnC:hover, 
#btnPnC:hover, 
#btnAdh:hover, 
#btnHome:hover,
#btn3D.btn-active, 
#btnHelp.btn-active, 
#btnCatalog.btn-active,
#btnBnC.btn-active, 
#btnPnC.btn-active, 
#btnAdh.btn-active, 
#btnHome.btn-active{
    background-position: 0 -3.55rem;
}



#btnCatLiquid.btn figure, 
#btnCatDust.btn figure,
#btnCatPaste.btn figure,
#btnCatWall.btn figure,
#btnCatCeling.btn figure,
#btnCatFloor.btn figure {
    display: block;
    overflow: hidden;
    text-indent: -9999px;
    /* width: 5rem; */
    height: 6.975rem;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
#btnCatLiquid figure{
    background-image: url("../../assets/ui/catalog-liquid@2x.png"); 
}
#btnCatDust figure{
    background-image: url("../../assets/ui/catalog-dust@2x.png"); 
}
#btnCatPaste figure{
    background-image: url("../../assets/ui/catalog-paste@2x.png"); 
}

#btnCatWall figure{
    background-image: url("../../assets/ui/catalog-wall@2x.png"); 
}
#btnCatCeling figure{
    background-image: url("../../assets/ui/catalog-celing@2x.png"); 
}
#btnCatFloor figure{
    background-image: url("../../assets/ui/catalog-floor@2x.png"); 
}
#btnCatLiquid figure:hover, 
#btnCatDust figure:hover,
#btnCatPaste figure:hover,
#btnCatWall figure:hover,
#btnCatCeling figure:hover,
#btnCatFloor figure:hover{
    background-position: center -6.9rem;
}

.p-absolute{
    position: absolute; 
}

#LocationModal{
    left:0;
    right:0;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1rem;
    border-radius: 5px 5px 0 0;
    width: 800px;
}

#LocationModal .map-location-container {
    height: 0;
}

#LocationModal .map-location-container img {
    position: absolute;
    width: 22px;
    height: auto;
    cursor: pointer;
}

#LocationModal .map-location-container img:hover{
    border: 1px solid #FFF;
    border-radius: 100px;
    padding: 2px;
}

#HelpModal {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1rem;
    border-radius: 5px 5px 0 0;
    width: 800px;
}

#HelpModal a{
    text-decoration: underline;
}

#contactUs {
    border: 1px solid var(--gray);
    padding: 0.4rem 0.8rem;
    border-radius: 0.3rem;
    font-size: 0.8rem;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.5s ease;
}

#contactUs:hover {
    border: 1px solid transparent;
    background-color: var(--orange);
    color: #fff;
}

.leyend-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-top: 6px;
}

.leyend-container .leyend{
    margin-right: 18px;
}

.leyend-container .leyend img {
    width: 16px;
    margin-right: 6px;
}

.leyend-container .leyend span{
    font-size: 0.8rem;
}

.mod-tab{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.tab {
    width: 155px;
    text-align: center;
    float: left;
    padding: 8px 18px;
    border: 1px var(--orange) solid;
    
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 600;

    margin: 0 0 8px 0;
    
    text-transform: uppercase;
    cursor: pointer;

    -webkit-transition: background-color .25s ease-out,color .25s ease-out;
    transition: background-color .25s ease-out,color .25s ease-out;
}

.tab:hover, .tab.tab-active {
    color: #FFF;
    background-color: var(--orange);
    -webkit-transition: background-color .25s ease-out,color .25s ease-out;
    transition: background-color .25s ease-out,color .25s ease-out;
}

#ProductPlacement{
    bottom: 0;
    left:0;
    right:0;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 1rem;
    border-radius: 5px 5px 0 0;
    width: 250px;
    background-color: rgba(255, 255, 255, 0); /* Semi-transparent background for blur effect */
    
}

#ProductPlacement .disp-flex{
    justify-content: center;
}

#ProductPlacement svg{
    width: 50px;
} 

#KeyboardModal{
    bottom: -120px;
    left:0;
    right:0;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1rem;
    border-radius: 5px 5px 0 0;
    width: 450px;
}

.item-features{
    font-size: .8rem;
    margin: 15px 0 0 0;
}

#ProductModal{
    right: -125px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    padding: 1rem 1rem;
    border-radius: 5px 0 0 5px;
    width: 280px;
    max-height: 90vh;
    z-index: 90;
}

#ProductModal h3{
    margin-bottom: 1rem;
}

#ProductModal .p-header{
    margin-bottom: 2rem;
}

#ProductModal .p-content {
    max-height: 70vh;
    /* overflow: visible; */
    overflow-y: scroll;
}

#ProductModal .p-content ol{
    margin-left: 0.25rem;
}

#ProductModal .p-content ol>li{
    color: var(--blak);
    margin-bottom: 10px;
    cursor: pointer;
    list-style: none;
}

#ProductModal .p-content ul{
    line-height: 1;
    padding-left: 1.1rem;
    
}

ol li.non-prod{
    color: gray;
    margin-left: -1rem;
    margin-top: 0.5rem;
}

ol li{
    color: var(--orange);
    margin-bottom: .5rem;
}

.paint-product-list{
    margin: 0;
}

li.paint-product{
    color: var(--orange);
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
    cursor: pointer;
}

.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for blur effect */
    backdrop-filter: blur(3px); /* Adjust the blur intensity as needed */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

#ProductDetailModal{
    top:0;
    bottom:0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #efefef;
    border-radius: 10px;
    width: 70%;
    height: fit-content;
    padding: 40px 50px;
    z-index: 101;
}

#ProductDetailModal .prod-description{
    font-size: .8rem;
    line-height: 1.2;
}

#ProductDetailModal h5 {
    color: var(--orange);
    font-weight: 400;
    margin-bottom: 0.2rem;
    font-size: 1.5rem;

}

.layer-prod-info {
    top: -60px;
    color: #FFF;
    font-size: 1.5rem;
}

.layer-prod-info .prod-type {
    color: #FFF;
    font-size: 1.5rem;
    margin-left: 10px;
}

.layer-prod-info .circle{
    color: var(--orange);
    background-color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
}

.brd-r-1px-org{
    border-right: 1px solid var(--orange);
    opacity: 0.5;
}

#ProductPlacement .brd-r-1px-org{
    margin: 0 0 6px 0;
}

.smallico img{
    width: 16px;
    height: 16px;
}

.smallico-pos{
    right: 2px;
    top: -4px;
}