:root{
    --background-color: #fcfaf4;
    --main-bg-color: #71609e;
    --header-bar-height: 50px;
    --container-bgcolor: rgb(255 255 255 / 93%);
    --container-border: 0; /*1px solid #c0c0c0;*/
    --container-border-radius: 10px;
    --font-color-h: #71609e;
    --font-color: #71609e;
}

html{
    font-size: 14px;
    line-height: 200%;
}
*{
    font-size: 1rem;
    font-family: sans-serif;
    line-height: 150%;
    color:rgb(30, 29, 29);
    margin: 0;
}





/* LOADER _ BEGIN */
div.loader.active {
    display: flex;
}

div.loader {
    position: absolute;
    border-radius: 10px;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    z-index: 100000;
    background-color: rgb(0 0 0 / 14%);
    align-items: center;
    display: none;
    justify-content: center;
}
div.loader .lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
div.loader .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: loader-lds-dual-ring 1.2s linear infinite;
}
@keyframes loader-lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*LOADER _ END*/



/* ALERT MESSAGE - BEGIN */
.alertMessage{
    position: fixed;
    z-index: 1000;
    background-color: #00000085;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
}
.alertMessage .boxContainer{
    min-height: 7rem;
    background-color: #fff;
    /* width: 100%; */
    padding: 1rem;
    margin: auto;
    position: relative;
    border-radius: 9px;
    -webkit-box-shadow: 0px 5px 10px 3px rgb(0 0 0 / 14%);
    box-shadow: 0px 5px 10px 3px rgb(0 0 0 / 14%);
}

.alertMessage.active{
    display: flex;
}
.alertMessage .message{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 4rem;
}
.alertMessage .buttons{
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.alertMessage .buttons button{
    background-color: var(--main-bg-color);
    border: 1px solid var(--main-bg-color);
    color: #fff;
    border-radius: 10px;
    font-size: 0.8rem;
    padding: 1rem;
    cursor: pointer;
    margin-left: 1rem;
}

/*END*/





body{
    -webkit-font-smoothing: antialiased;
    background-color: #f8f8f8;
    /*
    background-image: url(/en/assets/5172429.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;*/
}
h1{
    font-size: 1.6rem;;
}
h2{
    font-size: 1rem;
    margin: 0;
    color: var(--font-color-h);
}
header {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
}
header > nav {
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 10px;
}
header > nav > ul {
    list-style: none;
    padding: 0;
}

header > nav > ul li {
    display: inline-block;
    padding: 0 1rem;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--font-color);
}











.sidenavHamburguer {
    display: none;
    position: relative;
    top: 15px;
    left: 15px;
    width: 50px;
    -webkit-user-select: none;
    user-select: none;
}

.sidenavHamburguer input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

.sidenavHamburguer span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #71609e;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}

.sidenavHamburguer span:first-child {
    transform-origin: 0% 0%;
}

.sidenavHamburguer span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

.sidenavHamburguer input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-10px, -13px);
    background: #232323;
}

.sidenavHamburguer input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

.sidenavHamburguer input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(-6px, 10px);
}



nav.sideNavLeft{
    display: none;
    background-color: #fff;
    position: absolute;
    width:0;
    left: 0;
    top: 0;
    bottom: 0;
    
    transition: 0.3s;
    z-index: 9;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 20px -2px rgba(0,0,0,0.68); 
    box-shadow: 0px 0px 20px -2px rgba(0,0,0,0.68);
}

nav.sideNavLeft.show{
    width: 200px;
}
nav.sideNavLeft ul{
    list-style: none;
    padding: 0;
    padding-left: 1rem;
    margin-top: var(--header-bar-height);
}
nav.sideNavLeft ul li{
    padding: 1rem 0;
    display: block;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    color: #71609e;
}
nav.sideNavLeft ul li.active{
    color: var(--main-bg-color);
}


header h1{
    display: none;
}

main > h1:first-child{
    display: none;
}


.container{
    border: var(--container-border);
    border-radius: var(--container-border-radius);
    padding: 1rem;
    background-color: var(--container-bgcolor);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    font-size: 0.9rem;
}


.container h3{
}
.container p{
    font-size: 0.8rem;
}







.main-container{
    max-width: 900px;
    margin: auto;
    position: relative;
    left: 0;
    right: 0;
    height: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}




/* @media only screen and (max-width: 600px) { */
    html{
        font-size: 16px;
    }
    body{
        background-size: contain;
    }
    header{
        background-color: #fff;
        margin-bottom: 0;
        height: var(--header-bar-height);
        position: fixed;
    }
    header h1{
        position: absolute;
        left: 70px;
        right: 20px;
        font-weight: 600;
        font-size: 1rem;
        line-height: 50px;
        overflow: hidden;
        width: auto;
        height: 50px;
        display: block;
    }
    .sidenavHamburguer {
        display: block;
    }
    nav.sideNavLeft{
        display: block;
        position: fixed;
    }
    .topMenu{
        display: none;
    }
    main, .main-container{
        position: relative;
        top: var(--header-bar-height);
        left: 0;
        right: 0;
    }
/*} */


.boxPanel{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-gap: 20px;
    margin-top: 20px;
}
.boxPanel .title{
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
}
.boxPanel .number{
    font-size: 3rem;
    text-align: center;
    width: 100%;
    margin: 0;
    color: var(--font-color-h);
}








main > section .panel{
}

.hide{
    display: none !important;
}

.main-container{
    max-width: 100%;
    padding: 0 1rem;
}
.list.row{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

    grid-gap: 20px;
}
.list.row .col{
    border: var(--container-border);
    border-radius: var(--container-border-radius);
    height: 7rem;
    padding: 1rem;
    background-color: var(--container-bgcolor);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
}

.list.row .col > div.header{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}
.list.row .col > div.header > h2{
    font-size: 1.1rem;
    margin: 0;
    overflow: hidden;
    text-wrap: nowrap;
}
.list.row .col > div.body{
    height: 3rem;
    overflow: hidden;
    font-size: 0.8rem;
}
.list.row .col > div.booking{
    font-size: 0.9rem;
}

.list.row .col > div.footer{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    align-items: flex-end;
}






div.panel .headerBar{
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
}





section.displays .panelForm .levantamentoItemsTitle{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
section.displays .panelForm .items{
    
}
section.displays .panelForm ul.items{
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

    grid-gap: 20px;
}
section.displays .panelForm ul.items li{
    border: var(--container-border);
    border-radius: var(--container-border-radius);
    padding: 1rem;
    background-color: var(--container-bgcolor);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
}
section.displays .panelForm ul.items li div:first-child{
    width: 75%;
}
section.displays .panelForm ul.items li div:nth-child(2) button{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-between;
    align-items: stretch;
}
section.displays .panelForm ul.items li div:nth-child(2) button{
    width: 100%;
    margin: 5px 0;
}

section.displays .panelList .footer,
section.displays .panelForm .footer{
    /*
    display: flex;
    justify-content: center;
    flex-direction: row;
    padding: 1rem;
    */
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
}

section.displays .panelList .footer > *,
section.displays .panelForm .footer > *{
    margin: 0.5rem;
}

div.slidePanel{
    background-color: #fff;
    position: absolute;
    width: 0;
    top: var(--header-bar-height);
    bottom: 0;
    transition: 0.3s;
    z-index: 9;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.68);
    box-shadow: 0px 0px 20px -2px rgba(0, 0, 0, 0.68);
    display: block;
    position: fixed;
}
div.slidePanel.show{
    width: 100%;
}
div.slidePanel.right{
    right: 0;
}




section.displays .slidePanel form{
    padding: 1rem;
}
section.displays .slidePanel form fieldset{
    border: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}
section.displays .slidePanel form fieldset .input_numeric{
    width: 4rem;
    text-align: right;
}
section.displays .slidePanel.formFinish form .visit_details{
    height: 8rem;
}



section.displays .slidePanel.assets{
    overflow: scroll;
    overflow-x: hidden;
}
section.displays .slidePanel.assets ul.files{
    /* overflow: scroll; */
    height: 80%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: flex-start;
    list-style: none;
    padding: 0 1rem;
    margin-bottom: 1rem;
}
section.displays .slidePanel.assets ul.files li{
    border: 1px solid #c0c0c0;
    margin: 0 0 1rem 0;
    border-radius: 4px;
    padding: 5px;
}
section.displays .slidePanel.assets ul.files li img{
    width: 100%;
}
section.displays .slidePanel.assets ul.files li video{
    width: 100%;
}




section.displays .visitaTecnica_name {
    font-weight: bold;
    font-size: 0.8rem;
    color: #455692;
}








.slidePanel .row{

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.slidePanel .row .col-4,
.slidePanel .row .col-3,
.slidePanel .row .col-2,
.slidePanel .row .col-1{
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
}

.slidePanel .row .col-1{
    width: 20%;
}

.slidePanel .row .col-2{
    width: 40%;
}

.slidePanel .row .col-3{
    width: 70%;
}

.slidePanel .row .col-4{
    width: 100%;
}






ul.subitems {
    line-height: normal;
    padding: 0 0 0 1.5rem;
}
ul.subitems li {
    padding: 0.5rem 0 !important;
    margin: 0;
}


.slidePanelFooter{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #71609e;
    padding: 1rem;
    border-radius: 4px 4px 0 0;
}

.row.item{
    padding-top: 1rem;
}
.row.item:nth-child(2){
    margin-top: 2rem;
}
.row.item:nth-child(2)::before{
    content: 'Sub-itens';
    position: absolute;
    font-weight: 600;
    margin-top: -1.5rem;
}

.row.item select{
    width: 100%;
}



.slidePanel.formItem label{
    font-size: 0.7rem;
}


.slidePanel.formItem fieldset input[type="text"]{
    width:100%;
}




.slidePanel.formItem .row.item:first-child .deleteBar{
    display:none;
}





section.displays .panelForm .imagePeca {
    width: 100%;
    height: 30vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}





section.displays .panelForm .imagePeca {
    width: 100%;
    height: 30vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}



.imagePanel{
    overflow: auto;
}

.imagePanel .imgContainer{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.imagePanel .imgContainer.modelo_tipo_1{
    /*background-image: url(/imgs/pecas/medidas_1.webp);*/
}
.imagePanel .imgContainer.modelo_tipo_2{
    /*background-image: url(/imgs/pecas/medidas_2.webp);*/
}


.imagePanel .imgContainer form,
.imagePanel .imgContainer img{
    
    top: 0;
    left: 0;
    right: 0;
    bottom: 65px;
}

.imagePanel .imgContainer form{
    z-index: 1;
}

.imagePanel .imgContainer img{
    z-index: 0;
    width: 100%;
}





.imagePanel .imgContainer .imgContainer_container{
    position: relative;
}

.imagePanel .imgContainer form fieldset{
    
}


.imagePanel .imgContainer form fieldset input{
    
}

.imagePanel .imgContainer.modelo_tipo_1 .totalLargura{
    position: absolute;
    left: 41%;
    top: 27%;
    right: 44%;
    height: 11%;
    /*background-color: #f0f8ffbd;*/
}
.imagePanel .imgContainer.modelo_tipo_1 .modulos{
    position: absolute;
    top: 63%;
    left: 8%;
    height: 12%;
    /* right: 75%; */
    width: 17%;
    /*background-color: #ff00b28a;*/
}
.imagePanel .imgContainer.modelo_tipo_1 .totalAltura{
    position: absolute;
    top: 39%;
    /* left: 92%; */
    height: 24%;
    right: 0%;
    width: 7%;
    /*background-color: #ff89008a;*/
}


.imagePanel .imgContainer.modelo_tipo_1 .totalLargura .height{
    width: 35%;
    height: 35%;
    background-color: transparent;
    border: 1px solid #c0c0c0;
    border: 0;
    font-size: 60%;
    position: absolute;
    left: 13%;
    top: 23%;
}
.imagePanel .imgContainer.modelo_tipo_1 .totalLargura .width{
    width: 35%;
    height: 35%;
    background-color: transparent;
    border: 1px solid #c0c0c0;
    border: 0;
    font-size: 60%;
    position: absolute;
    left: 56%;
    top: 23%;
}


.imagePanel .imgContainer.modelo_tipo_1 .modulos .width{
    width: 29%;
    height: 35%;
    background-color: transparent;
    /* border: 1px solid #c0c0c0; */
    border: 0;
    font-size: 60%;
    position: absolute;
    left: 38%;
    top: 61%;
}


.imagePanel .imgContainer.modelo_tipo_1 .totalAltura .height{
    width: 48%;
    height: 10%;
    background-color: transparent;
    /* border: 1px solid #c0c0c0; */
    border: 0;
    font-size: 60%;
    position: absolute;
    left: 42%;
    top: 51%;
}





.imagePanel .imgContainer.modelo_tipo_2 .componente.testeira{
    position: absolute;
    top: 5%;
    left: 32%;
    height: 9%;
    right: 0%;
    width: 13%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.totalAltura{
    position: absolute;
    top: 41%;
    left: 0;
    height: 15%;
    right: 0%;
    width: 7%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.entrePrateleiras{
    position: absolute;
    top: 18%;
    left: 31%;
    height: 12%;
    right: 0%;
    width: 9%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.faixaGondola{
    position: absolute;
    top: 46%;
    left: 31%;
    height: 9%;
    right: 0%;
    width: 18%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.rodape{
    position: absolute;
    bottom: 1%;
    /* left: 45%; */
    height: 10%;
    right: 3%;
    width: 21%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleira{
    position: absolute;
    top: 61%;
    left: 45%;
    height: 9%;
    right: 0%;
    width: 29%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleiraBase{
    position: absolute;
    top: 78%;
    left: 45%;
    height: 10%;
    right: 0%;
    width: 29%;
    /*background-color: #ff89008a;*/
}



.imagePanel .imgContainer.modelo_tipo_2 .componente input{
    background-color: transparent;
    /* background-color: #ffffff5e; */
    border-radius: 5px;
    /* border: 1px solid #c0c0c0; */
    border: 0;
    /* font-size: medium; */
    position: absolute;
}



.imagePanel .imgContainer.modelo_tipo_2 .componente.totalAltura input.height{
    width: 66%;
    height: 25%;
    left: 0;
    top: 41%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.testeira input.height{
    width: 38%;
    height: 40%;
    left: 55%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.testeira input.width{
    width: 38%;
    height: 41%;
    left: 6%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.entrePrateleiras input.height{
    width: 55%;
    height: 33%;
    left: 24%;
    top: 43%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.faixaGondola input.height{
    width: 27%;
    height: 42%;
    left: 59%;
    top: 26%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.faixaGondola input.width{
    width: 27%;
    height: 42%;
    left: 24%;
    top: 26%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.rodape input.height{
    width: 31%;
    height: 49%;
    left: 53%;
    top: 35%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.rodape input.width{
    width: 31%;
    height: 49%;
    left: 14%;
    top: 35%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleira input.height{
    width: 22%;
    height: 55%;
    left: 33%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleira input.width{
    width: 22%;
    height: 55%;
    left: 5%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleira input.length{
    width: 22%;
    height: 55%;
    left: 61%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleiraBase input.height{
    width: 22%;
    height: 55%;
    left: 33%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleiraBase input.width{
    width: 22%;
    height: 55%;
    left: 5%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleiraBase input.length{
    width: 22%;
    height: 55%;
    left: 61%;
    top: 25%;
}


.imagePanel{
    overflow: auto;
}

.imagePanel .imgContainer{
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.imagePanel .imgContainer.modelo_tipo_1{
    /*background-image: url(/imgs/pecas/medidas_1.webp);*/
}
.imagePanel .imgContainer.modelo_tipo_2{
    /*background-image: url(/imgs/pecas/medidas_2.webp);*/
}


.imagePanel .imgContainer form,
.imagePanel .imgContainer img{
    
    top: 0;
    left: 0;
    right: 0;
    bottom: 65px;
}

.imagePanel .imgContainer form{
    z-index: 1;
}

.imagePanel .imgContainer img{
    z-index: 0;
    width: 100%;
}





.imagePanel .imgContainer .imgContainer_container{
    position: relative;
}

.imagePanel .imgContainer form fieldset{
    
}


.imagePanel .imgContainer form fieldset input{
    
}

.imagePanel .imgContainer.modelo_tipo_1 .totalLargura{
    position: absolute;
    left: 41%;
    top: 27%;
    right: 44%;
    height: 11%;
    /*background-color: #f0f8ffbd;*/
}
.imagePanel .imgContainer.modelo_tipo_1 .modulos{
    position: absolute;
    top: 63%;
    left: 8%;
    height: 12%;
    /* right: 75%; */
    width: 17%;
    /*background-color: #ff00b28a;*/
}
.imagePanel .imgContainer.modelo_tipo_1 .totalAltura{
    position: absolute;
    top: 39%;
    /* left: 92%; */
    height: 24%;
    right: 0%;
    width: 7%;
    /*background-color: #ff89008a;*/
}


.imagePanel .imgContainer.modelo_tipo_1 .totalLargura .height{
    width: 35%;
    height: 35%;
    background-color: transparent;
    border: 1px solid #c0c0c0;
    border: 0;
    font-size: 60%;
    position: absolute;
    left: 13%;
    top: 23%;
}
.imagePanel .imgContainer.modelo_tipo_1 .totalLargura .width{
    width: 35%;
    height: 35%;
    background-color: transparent;
    border: 1px solid #c0c0c0;
    border: 0;
    font-size: 60%;
    position: absolute;
    left: 56%;
    top: 23%;
}


.imagePanel .imgContainer.modelo_tipo_1 .modulos .width{
    width: 29%;
    height: 35%;
    background-color: transparent;
    /* border: 1px solid #c0c0c0; */
    border: 0;
    font-size: 60%;
    position: absolute;
    left: 38%;
    top: 61%;
}


.imagePanel .imgContainer.modelo_tipo_1 .totalAltura .height{
    width: 48%;
    height: 10%;
    background-color: transparent;
    /* border: 1px solid #c0c0c0; */
    border: 0;
    font-size: 60%;
    position: absolute;
    left: 42%;
    top: 51%;
}





.imagePanel .imgContainer.modelo_tipo_2 .componente.testeira{
    position: absolute;
    top: 5%;
    left: 32%;
    height: 9%;
    right: 0%;
    width: 13%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.totalAltura{
    position: absolute;
    top: 41%;
    left: 0;
    height: 15%;
    right: 0%;
    width: 7%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.entrePrateleiras{
    position: absolute;
    top: 18%;
    left: 31%;
    height: 12%;
    right: 0%;
    width: 9%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.faixaGondola{
    position: absolute;
    top: 46%;
    left: 31%;
    height: 9%;
    right: 0%;
    width: 18%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.rodape{
    position: absolute;
    bottom: 1%;
    /* left: 45%; */
    height: 10%;
    right: 3%;
    width: 21%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleira{
    position: absolute;
    top: 61%;
    left: 45%;
    height: 9%;
    right: 0%;
    width: 29%;
    /*background-color: #ff89008a;*/
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleiraBase{
    position: absolute;
    top: 78%;
    left: 45%;
    height: 10%;
    right: 0%;
    width: 29%;
    /*background-color: #ff89008a;*/
}



.imagePanel .imgContainer.modelo_tipo_2 .componente input{
    background-color: transparent;
    /* background-color: #ffffff5e; */
    border-radius: 5px;
    /* border: 1px solid #c0c0c0; */
    border: 0;
    /* font-size: medium; */
    position: absolute;
}



.imagePanel .imgContainer.modelo_tipo_2 .componente.totalAltura input.height{
    width: 66%;
    height: 25%;
    left: 0;
    top: 41%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.testeira input.height{
    width: 38%;
    height: 40%;
    left: 55%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.testeira input.width{
    width: 38%;
    height: 41%;
    left: 6%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.entrePrateleiras input.height{
    width: 55%;
    height: 33%;
    left: 24%;
    top: 43%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.faixaGondola input.height{
    width: 27%;
    height: 42%;
    left: 59%;
    top: 26%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.faixaGondola input.width{
    width: 27%;
    height: 42%;
    left: 24%;
    top: 26%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.rodape input.height{
    width: 31%;
    height: 49%;
    left: 53%;
    top: 35%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.rodape input.width{
    width: 31%;
    height: 49%;
    left: 14%;
    top: 35%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleira input.height{
    width: 22%;
    height: 55%;
    left: 33%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleira input.width{
    width: 22%;
    height: 55%;
    left: 5%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleira input.length{
    width: 22%;
    height: 55%;
    left: 61%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleiraBase input.height{
    width: 22%;
    height: 55%;
    left: 33%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleiraBase input.width{
    width: 22%;
    height: 55%;
    left: 5%;
    top: 25%;
}
.imagePanel .imgContainer.modelo_tipo_2 .componente.prateleiraBase input.length{
    width: 22%;
    height: 55%;
    left: 61%;
    top: 25%;
}






form fieldset{
    border: 0;
    background-color: #3a5cff1c;
    border-radius: 10px;
    margin: 5px;
    display: flex;
    flex-direction: row;
    /* flex-wrap: nowrap; */
    /* align-content: space-between; */
    justify-content: space-between;
}

form fieldset.inputColumn{
    display: flex;
    flex-direction: column;
    align-content: space-between;
    align-items: stretch;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}



div.content{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 120px);
    width: 100%;
}

div.content > *{
    max-width: 50%;
}

@media only screen and (max-width: 600px) {
    div.content{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 120px);
        width: 100%;
    }
}



@media only screen and (max-width: 800px) {
}

@media only screen and (min-width: 801px) {

    .sidenavHamburguer{
        display: none;
    }
    header h1 {
        left: 10px;
    }
    nav.sideNavLeft.show {
        width: 0;
    }

    nav.sideNavLeft {
        z-index: 10;
        background-color: transparent;
    }

    nav.sideNavLeft ul {
        list-style: none;
        padding: 0;
        padding-left: 1rem;
        margin-top: var(--header-bar-height);
        list-style-type: none;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        margin-top: 0px;
    }
    nav.sideNavLeft ul li {
        padding: 1rem;
        font-size: 1rem;
        cursor: pointer;
    }



    div.content .contentPanel{
        min-width: 40%;
    }
}



div.content img.logo{
    max-height: 50vh;
    max-width: 50vw;
}


div.content .rightPanel{
    width: min-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}


div.content h1{
    font-family: monospace;
    font-size: 4rem;
    color: #71609e;
    margin-bottom: 0.5rem;
}

div.content h2{
    font-family: sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

div.content p{
    font-family: sans-serif;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

div.content .info p{
    text-align: left;
}




.termos-contrato ul li{
    margin-top: 1rem;
}
.termos-contrato ul.level-1{

}
.termos-contrato ul.level-1 > li{
    list-style: upper-roman;
}




.termos-contrato ul.level-2{

}
.termos-contrato ul.level-2 > li{
    list-style: none;
}


.termos-contrato ul.level-3{

}
.termos-contrato ul.level-3 > li{
    list-style: none;
}


.termos-contrato ul.level-3_{

}
.termos-contrato ul.level-3_ > li{
    list-style: none;
}

.termos-contrato span.contratada {
    color: var(--font-color-h);
    font-weight: 600;
}

.termos-contrato span.contratante {
    color: var(--font-color-h);
    font-weight: 600;
}





.cta-button{
    background-color: #1a73e8;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}


footer{
    padding-top: 40px;
    height: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: row;
    align-items: center;
}
