/* :root {
    --fundo-principal: #262d31;
    --fundo-secundario: #FBFCFF;
    --fundo-bt-hover: #D89978;
    --fundo-tabela-linha-hover: #E3E7EE;
    --icon-color: #D89978;
    --heading-1: #B98D76;
    --heading-2: #5C6278;
    --fundo-escuro-hover: #E9ECF6;
    --color-principal: #5C6278;
    --font-a: 'Lato', sans-serif;
    --font-b: 'Montserrat', sans-serif;
    --borda-color: #E3E7EE;
    --dark: #0D0E10;
    --green: #11DF89;
    --roxo: #6C00DB;
    --gray: #DBDBDB;
    --font: 'Ubuntu', sans-serif;
    --font-plex: 'IBM Plex Sans', sans-serif;
} */

body {
    display: grid;
    grid-template: "nav header" auto "nav  main  " 1fr / auto 1fr;
    height: 100%;
}

a:link,
a:visited,
a:focus {
    text-decoration: none;
}

a:hover {}

header {
    grid-area: header;
    height: 120px;
    background-color: #fff;
    border-bottom: 1px solid #e3e7ee2e;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-right: 50px;
    position: relative;
}

header ul {
    list-style: none;
    font-size: 0.75rem;
    background-color: #fff;
    padding: 0.5rem;
    position: absolute;
    /* box-shadow: 0px 0px 0px 20px #efeff136, 0px 0px 0px 7px #efeff11a; */
    border-radius: 8px;
    right: 43px;
    top: 46px;
    display: none;
    z-index: 99;
    border: 1px solid #e9e9e9;
}

header ul li {
    /* margin-bottom: 14px; */
}

header ul li:last-child {
    margin-bottom: 0;
}

header ul li a {
    padding: 8px;
    display: block;
    color: #555;
    transition: all ease-in-out 300ms;
}

header ul li a i {
    margin-right: 12px;
    color: #202020 !important;
    font-size: 20px;
    width: 20px;


}

header ul li a:hover i {
    color: rgb(110 106 211) !important;
}

header ul li a:hover {
    background-color: rgba(230, 229, 255, .5) !important;
    color: rgb(110 106 211) !important;
    border-radius: 4px;
}

header div.usuario {
    background: #202020;
    /* border: 1px solid #fff; */
    color: #fff;
    border-radius: 25px;
    width: 34px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    /* padding: 12px; */
    font-weight: 900;
    margin-left: auto;
    cursor: pointer;
}

header ul::before {
    content: "";
    position: absolute;
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent #fff;
    top: -22px;
    right: 12px;
    z-index: 50;
}

div.voltar {
    display: flex;
    color: #bebebe;
    font-size: 0.8rem;
    cursor: pointer;
    align-items: center;
    justify-content: space-around;
    gap: 0.3rem;
    padding: 5.7px;
    background: #fff;
    border-radius: 3px;
    margin: 6px;
    width: 65px;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    box-shadow: 1px 2px 0px #f9f9f9;

}

div.voltar i {
    font-size: 0.5rem;
}

div.titulo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    /* justify-content: center; */
    flex-direction: column;
    width: 100%;
}



.bt-action,
.bt-modal {
    padding: 7px 14px;
    width: 165px;
    text-align: center;
}

.bt-modal {
    position: relative;
    padding: 0 46px 0 46px;
    height: 50px;
}

main {
    position: relative;
    grid-area: main;
    overflow-y: scroll;
    background-color: #ffffff;
    /* background-image: linear-gradient(180deg, var(--fundo-secundario) 40%, white 30%); */
    padding-bottom: 0;
    background-color: #fff;
}

main h1 {
    color: #202020;
    font-family: var(--font-b);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
}

main h2 {
    color: #FFF;
    font-family: var(--font-a);
    margin: 0;
    font-size: 1.09rem;
    font-weight: 400;
    margin-bottom: 4px;
    font-size: 1rem;
}


div.container-painel {
    padding: 2rem;
    background-color: #fff;
    width: 100%;
    min-height: 400px;
    border-radius: 2rem;
}

div.container-painel h2 {
    color: #000;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

div.icones {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: flex-start;
    gap: 1rem;

}

div.icone>div {
    pointer-events: none;
}

div.icones>div:hover {
transition: all ease-in-out 300ms;
}

div.icone {
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.6rem;
    border-radius: 0.7rem;
    border: 1px solid #d3d3d3;
    overflow: hidden;
    width: 9.5rem;
    height: 8rem;
    background-color: #fefefe;
}

div.icone i {

font-size: 2.3rem;

}

div.conexoes {
    position: absolute;
    width: 25px;
    height: 25px;
    color: rgb(255 255 255);
    font-size: 0.75rem;
    background: #11df89;
    /* border: 1px solid rgb(196, 0, 0); */
    line-height: 25px;
    text-align: center;
    font-weight: 900;
    border-radius: 2rem;
    top: -9px;
    right: -7px;
}

div.icone img {
    width: 40px;
}



div.cliente-container {
 display: flex;
 flex-direction: column;
 gap:2rem;
}

div.cliente-container h2{
color: #202020;
    font-size: 1.3rem;
    text-transform: capitalize;
    font-weight: 600;
}

div.cliente-bloco {
  
}

div.cliente-bloco button{
  
}

div.cliente-bloco h3 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 0.3rem;
    margin-top: 1.2rem;
}

button.bt-adicionar {
    /* width: 7rem; */
    font-family: 'Inter', sans-serif;
    background: #15bb87 !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.27rem 0.7rem;
    cursor: pointer;
    border: 1px solid #d0efe6;
    border-radius: 0.3rem;
    transition: background-color ease-in-out 400ms;
}

/* SITE */

div.texto {
    /* padding: 6rem; */
}


div.tabela-container {
    padding: 2rem
}

div.layout {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    background-color: #fdfdfd;
    padding: 50px 40px;
    flex-wrap: wrap;
}


div.layout-estrutura {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* padding: 3rem; */
    width: 100%;
    max-width: 420px;
    margin: auto;
}

div.layout-auxiliar {
    width: 300px;
    height: 100vh;
    border-left: 1px solid #f5f5f5;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

div.layout-auxiliar>p {
    color: #666;
    font-size: 1rem;
    margin: 0.7rem;
    margin-left: 0;
}

div.layout-auxiliar-props {
    display: grid;
    grid-template-columns: 1fr 2fr 0.3fr;
}

div.layout-auxiliar-props>label {
    line-height: 2;
    color: #666;
    font-size: 0.7rem;
    margin-right: 7px;
}

div.menu-conteudo {
    display: grid;
    grid-template-columns: 14rem 1fr;
    height: 100%;
    gap: 2rem;
}

div.menu-conteudo h3 {
    margin-bottom: 2rem;
}

div.menu {

    width: unset !important;
    height: 100%;
    cursor: pointer;
    padding: 0;
}


div.menu ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    list-style: none;
    font-size: 0.9rem;
    gap: 0.2rem;
}

div.menu ul li {}

div.menu ul li a {
    padding: 0.25rem;
    text-indent: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    display: block;
    transition: all ease-in-out 300ms;
}

div.menu ul li a[selected] {
    border: none;
    border-right: 2px solid #15bb87;
    background-color: #fff;
}

div.menu ul li a:hover {
    background-color: #fff;

}


div.conteudo {
    width: 100%
}

button#metatags {
    margin-left: 1rem;
    padding: 4px 15px;
    border-radius: 16px;
    margin: 0 !important;
    margin-bottom: 2rem !important;
}

div.metatags {
    flex-direction: column;
    margin-top: 2rem;
}

div.metatags div.metatags-desc {
    background-color: #ffffff;
}


div.container-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 4rem;
}


div.bttag {
    font-weight: bold;
    border-radius: 5px;
    padding: 2.2px 0.2px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    width: 128.6px;
    height: 25px;
    background-color: #15bb87 !important;
    border: 2px solid #15bb87 !important;
    border-radius: 5px !important;
    color: #fff !important;
    text-align: center;
    user-select: none;
}

div.tags {
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    width: 458.4px;
    overflow: auto;
    flex-wrap: wrap;
    height: 3.2rem;
    padding: 0 0.8rem;
}

div.tag {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0.15rem 0.3rem;
    gap: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.6rem;
    height: 1.4rem;
}

div.tags div.tag {
    color: #ffffff;
    background-color: #0097ff;
    font-weight: 700;
    font-size: 0.65rem;
}


div.metatags-desc {
    border: 1px solid #d4d6df;
    padding: 0.5rem;
    outline-color: #a0dfff;
    border-radius: 4px;
    width: 100%;
    font-size: 0.75rem !important;
    color: #474747 !important;
    background-color: #fcfcfca6;
    height: 4rem;
    cursor: text;
    overflow: auto;
}


div.mini-modal {
    position: absolute;
    background-color: #fff;
    padding: 0.8rem 1rem 1.5rem;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    box-shadow: 0px 3px 15px 0px #bfbfbf;
}



div.mini-modal i {
    position: absolute;
    right: 1rem;
}

div.mini-modal-titulo {
    margin-bottom: 0.8rem;
    font-weight: 600;
}

div.mini-modal-content {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

input#addpalavra {}

div.btaddtag,
div.btaddrede {
    background-color: #15bb87;
    color: #fff;
    font-size: 12px;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

div.tag-close i {
    pointer-events: none;
}

div.bloco-container h2 {

    margin-bottom: 0rem;
}

div.bloco-container>* {
    /* pointer-events: none; */

}

div.bloco-container[select] {
    border: 1px solid #d2e0fd;
    background-color: #fdfeff;
}

div.bloco-container span {
    margin-left: 0.6rem;
    font-size: 0.75rem;
    font-weight: 300;
}


div.bloco-tabelas {
    border: 1px solid #d9dfeb;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-radius: 0.6rem;
    padding: 1rem;
    background: #fff;
    flex: 1 0 250px;
    position: relative;
}

div.bloco-tabelas table {
    /* padding-right: 0.5rem; */
}

div.bloco-container {
    flex: 0 1 47%;
    background-color: #fff;
    display: flex;
    /* align-content: space-between; */
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

div.bloco-conteudo {
    min-height: 85px;
    max-height: 320px;
    min-width: 23rem;
    overflow-y: auto;
    overflow-x: hidden;
}


div.bloco-conteudo-componentes {
    height: 2rem;
    line-height: 2rem;
    position: relative;
    bottom: 0;
    margin-top: 1rem;

}


/* font-size: 0.8rem;
    color: #3e87c7; */

div.bloco-conteudo button[data-acao='excluir'] {
    border: 1px solid #5d5d5d33;
    padding: 0.3rem;
    border-radius: 0.3rem;
    background-color: #fff;
    font-size: 0.75rem;
    color: #ef7774;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

div.bloco-conteudo button[data-acao='editar'],
div.bloco-conteudo button[data-acao='midia'],
div.componente-coluna button[data-acao='editar'],
div.componente-coluna button[data-acao='midia'] {
    color: #454545 !important;
    border-radius: 0.3rem;
    /* margin-right: 10px; */
    background: #ffffff;
    border: 1px solid #cfcfcf42;
    padding: 0.3rem;
}

div.componente-coluna button[data-acao='editar'],
div.componente-coluna button[data-acao='midia'] {
    width: 3rem;
    cursor: pointer;
}

div.componente-coluna-bts {
    display: flex;
    align-items: start;
    justify-content: space-between;
}


div.componente-coluna-container label span.bteditor {
    position: absolute;
    left: 180px;
    top: 14px;
    font-size: 0.8rem;
    background-color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 5.1px;
    border: 1px solid #b7b7b7;
}

div.componente-coluna-bts button#salvar {
    margin-left: auto;
    margin-top: 0;
    background-color: #15bb87;
    width: unset;
}

ul.bloco-conteudo-aba {
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    list-style: none;
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
    background: #fbfbfb24;
    border: 1px solid #f7f7f7;
    border-radius: 0.5rem;
    padding: 0.3rem;
}

ul.bloco-conteudo-aba li {
    user-select: none;
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 8px;
    /* border: 1px solid #f5f5f5; */
    font-size: 0.8rem;
    transition: all ease-in-out 200ms;
    background: #fff;
}

ul.bloco-conteudo-aba li:hover {
    background: #202020 !important;
    color: #fff;
}

[aba-active] {
    background: #202020 !important;
    color: #fff;
}

span[data-bloco='inicio'] {
    display: none;
}

/* 
div.bloco-conteudo button[data-acao='editar']:hover {
    background-color: #3bc197;
} */

iframe {
    border: none;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {

    [flex-column-768] {
        flex-direction: column;
        align-items: stretch;
    }

}






button#addprop,
button#addpropsalvar {

    font-size: 0.8rem;
    border-radius: 1rem;
    padding: 0.3rem 0 0.3rem 0;
    box-shadow: -1px 2px 3px #f3f3f342;
    cursor: pointer;
}

button#addprop {
    border: 1px solid #cae1cf;
    background-color: #fff;
    color: #1bc251;
}

button#addpropsalvar {
    border: 1px solid #cae1cf;
    background-color: #1bc251;
    color: #fff;
}


div.layout-auxiliar-props>button i {
    pointer-events: none;
}

button[data-acao='eliminar'] {
    border: none;
    background: none;
    cursor: pointer;
}


div.layout-auxiliar-props>input,
div.layout-auxiliar-props label>input {
    font-size: 0.7rem;
    padding: 4px 9px;
}

div.placeholder {
    background-color: #fffef9 !important;
    border: 2px dashed #eee381 !important;
    color: #a0963e !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    padding: 0.5rem !important;
}

div.bloco {
    border: 1px solid #e3e3e3;
    background: #ffffff;
    color: #65949c;
    border-radius: 0.3rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    gap: 0;
    justify-content: center;
    box-shadow: 2px 2px 0px #00000003;
    height: 52px;
    transition: all ease-in-out 300ms;
    overflow: hidden;
    position: relative;
}

div.bloco:hover,
div.bloco-fixo:hover {
    background-color: #fbfeff;
}


div.bloco-nome {
    position: relative;
    left: 50%;
    /* top: -16px; */
    transform: translate(-50%, 0);
    background: #3c4349;
    border: 1px solid #000000;
    padding: 0.2rem 1rem;
    font-size: 0.8rem;
    border-radius: 0.2rem;
    text-transform: capitalize;
    color: #fff;
    width: 100%;
}

div.bloco-nome button {
    margin-left: 0.4rem;
    background: transparent;
    border: none;
    color: #fff;
}

button.addbt {
    background: #ffffff;
    width: 2rem;
    font-weight: 900;
    font-size: 0.6rem;
    border: 2px solid #7bd98e;
    color: #7bd98e;
    border-radius: 0.3rem;
    padding: 0.4rem !important;
    cursor: pointer;
}

button.addbt100 {
    width: 100%;
    font-size: 1.1rem;
    font-weight: normal;
    border: 1px solid #e4e4e4;
    color: #979797;
    background: #fefefe;
    border-radius: 1rem;
    height: 2rem;
    cursor: pointer;
}

button.items {
    border: 1px solid #7bd98e;
    background: #e8fff0;
    color: #68a374;
    border-radius: 0.3rem;
    padding: 0.2rem 0.8rem;
    text-align: center;
    font-size: 0.9rem;
    cursor: pointer;
}

div.bloco>section {
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: center;
}

[data-status=inativo]:not(div.blocos > div) {
    border: 1px solid #c5c5c5;
    background: #ffffff;
    color: #7c7c7c;
}

[data-status=inativo]>i {
    color: #7c7c7c;
}

[data-status=ativo]:not(div.blocos > div, div.clientes-container > div) {
    border: 1px solid #7bd98e;
    background: #e8fff0;
    color: #68a374;
    margin: 0.5rem;
}


button[data-acao=eliminar] i {
    color: #e78888;
}

i.fa-toggle-off {
    color: #7c7c7c;
}

/* SITE */


/* DESIGN */


section#design {
    background-color: #fff;
    color: #5C6278 !important;
    padding: 3rem;
    border-radius: 2rem;
}

input.selector {
    /* display: contents; */
    font-size: 14px;
    /* display: grid; */
    font-weight: bold;
    border: none;
    border: 1px solid #fff !important;
    /* grid-template-columns: 1fr; */
}

.regracaixa {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #fff;
    margin-top: 19px;
    border: 1px solid #f5f5f5;
    border-radius: 8px;
    padding: 10px;
    padding-top: 45px;
    outline: #fff;
}

/* .fa-solid {
    font-weight: 300 !important;
} */
fieldset {
    border: 1px solid #f7f7f7;
    border-radius: 0px;
    /* text-align: center; */
    display: grid;
    grid-template-columns: 1fr 1fr 60px;
    /* padding: 14px; */
    /* margin-bottom: 20px; */
    background: #fdfdfd;
}

fieldset legend {
    /* padding: 4px 58px 4px 53px; */
    border: 1px solid #c3c3c3;
    border-radius: 0px;
    /* margin-bottom: 1rem; */
    text-align: left;
    font-size: 13px;
    width: 100%;
    height: 2rem;
    line-height: 2;
    text-indent: 0.5rem;
    background-color: #676767;
    color: #fff;
}

fieldset input {
    background-color: #fff;
    color: #666;
    /* margin-bottom: 4px; */
    /* margin-right: 4px; */
    border: 1px solid #ffffff;
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 0;
    padding: 5px;
    outline-color: #8fd0ff;
    width: 154px;
    font-size: 11px;
}

form#css {
    display: flex;
    grid-template-columns: 1fr 1fr;
    /* grid-auto-flow: dense; */
    flex-wrap: wrap;
    gap: 4ch;
    align-items: flex-start;
    justify-content: flex-start;
}

.addregra,
.delregra {
    color: #00c608;
    width: 22px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}

.btadddel i {
    font-size: 18px;
}



.delregra {
    color: #ec4a4a;
}


.btadddel {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.2rem;
    align-items: center;
    justify-content: center;
    line-height: 1.7;
}

div.fontes {
    display: flex;
    flex-direction: column;
}

div.cores {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2ch;
    margin-bottom: 67px;
}

button.bt {
    width: 120px;
    color: #fff;
    padding: 8px 20px;
    background-color: #039be5;
    border: none;
    margin-top: 22px;
    border-radius: 5px;
    cursor: pointer;
}

button.bt-excluir {
    background: #ffffff;
    color: #e58484 !important;
    border: 1px solid #ffe6e6;
    margin-top: 0;
    width: 160px;
    border-radius: 1rem;
    display: none;
}

div.bts {
    display: flex;
    gap: 1rem;
    height: 2rem;
    width: 100%;
    align-items: center;
    justify-content: start;
}

div.bloco-busca {
    font-size: 0.8rem !important;
    color: #00000038;
}

div.bloco-busca i {
    font-size: 1rem !important;
    margin-left: 0.2rem;
}



i {
    pointer-events: none;
}

input.bt-search {
    width: 14rem;
    font-size: 0.9rem;
}

div.paleta {
    display: flex;
    flex-direction: column;
    width: 120px;
    height: 120px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #f5f5f5;
    box-shadow: 3px 3px 5px 0px #00000005;
    padding: 5px;
}

div.paleta .cor {
    height: 80px;
    border-radius: 4px;
}

div.paleta .texto {
    padding: 4px;
    overflow: hidden;
    height: 2rem;

}

[ellipsis] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* DESIGN */

div.gerando-audio {
    padding: 0.6rem 2rem;
    font-size: 1rem;
    border: 1px solid #d1d1d1;
    border-radius: 2.2rem;
    background-color: #fff;
    z-index: 9999;
}


input#categorias {
    top: -7px;
    position: absolute;
    left: 0;
    width: 242px;
}

div.nome-categoria {
    display: inline;
}

h4 {
    color: #252525;
    margin-bottom: 22px;
    font-weight: 700;
    font-size: 1rem;
}

div.colecoes-conteudo-categoria h4 {
    position: relative;
}

nav {
    grid-area: nav;
    height: auto;
    background-color: #fcfcfc;
    border-right: 1px solid #e3e3e3;
    overflow: hidden;
    width: 200px;
    transition: width ease-in-out 400ms;
}

nav figure {
    padding: 30px 0 30px 0;
    text-align: center;
    /* display: grid;
    place-items: center;*/
}

nav figure img {
    width: 140px;
}

nav span.gerenciar {
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    display: block;
    letter-spacing: 0.3rem;
    font-size: 15px;
    margin-bottom: 6px;
    color: #fff;
}

nav ul {
    list-style: none;
    border-radius: 20px;
    margin-top: 2rem;
    /* padding: 20px; */
    /* width: 0;
    position: absolute;
    z-index: 9999;
    height: 100vh;
    transition: all ease-in-out */
}

nav ul li {
    /* height: 24px; */
    text-indent: 0.3rem;
    font-size: 0.9rem;
    position: relative;
    /* padding: 0.1rem 0.5rem; */
}

nav ul li a {
    padding: 0.6rem;
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: start;
    /* line-height: 1.25rem; */
    color: #ffffff;
    transition: background-color ease-in-out 400ms;
    border-radius: 6px;
}


/* nav ul li a:link,
nav ul li a:visited,
nav ul li a:focus {
    color: #1e6a8d;
    background-color: #daedf4;
} */



nav ul li a:hover {
    background-color: rgba(230, 229, 255, .5) !important;
    color: rgb(110 106 211) !important;
}

nav ul li a {
    color: var(--text-main);
}

nav ul li a i {
    margin-right: 1rem;
    width: 20px;
    background: transparent;
    padding: 0;
    margin: 0;
    color: var(--text-main);
}

nav ul li a:hover i {
    color: rgb(110 106 211) !important;
}


/* nav ul li a[active] {
    color: rgb(110 106 211) !important;
    background-color: #daedf4;
} */

nav ul li a:hover[active] i {
    color: rgb(110 106 211) !important;
}

nav ul li a:hover i {
    background: transparent;
}


nav ul ul {
    padding: 0;
    margin: 0;
}

nav ul ul li {}

nav ul ul li a {}


ul.menublocos {
    display: none;
    list-style: none;
    left: 13rem !important;
    width: 15rem;
    display: flex;
    top: 0rem !important;
    gap: 0.1rem;
    padding: 0 !important;
}

ul.menublocos li {
    font-size: 0.8rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.3rem 0.5rem;
}

ul.menublocos li:hover {
    background-color: #4ab7ff;
    color: #fff;
}

div.componente-coluna-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    gap: 0.4rem;
}

div.componente-coluna {
    padding: 4px;
    border: 1px solid #bcbcbc;
    border-radius: 6px;
    background-color: #fff;
    font-size: 0.5rem;
}

div.componente-coluna label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    text-align: left;
    cursor: pointer;
    font-size: 0.8rem;
}

div.componente-coluna label>* {
    display: none;
}

div.componente-coluna label[label-selected]>* {
    display: flex;
}


div.componente-coluna label textarea {
    padding: 1rem;
    height: 106px;
    width: 578px;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    color: #2e2e2e;
    min-width: 578px;
    min-height: 106px;
}

div.componente-coluna label textarea:focus {
    outline: 2px solid #00acfd;
    outline-offset: 1px;
}

div.site-estrutura {
    padding: 2rem;
    background-color: #ecf3f6;
    border-radius: 8px;
}


div.clientes-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

div.clientes-container>div {
    padding: 1rem;
    border: 1px solid #c7c7c7;
    border-radius: 0.4rem;
    background-color: #fff;
    align-items: center;
}

div.clientes-container>div {
    display: flex;
    gap: 1rem;
    width:190px;
    overflow: hidden;
    transition: all ease-in-out 300ms;
}

div.clientes-container>div i{
font-size: 1.8rem;

}

div.clientes-container > div:hover,  div.icones > div:hover{
    /* outline: 2px solid rgb(110 106 211) !important; */
    cursor: pointer;
    background-color: rgba(230, 229, 255, .5) !important;
    color: rgb(110 106 211) !important;
}

div.icone-texto:hover {
color: rgb(110 106 211) !important;
}
div.icone-imagem i:hover {
color: rgb(110 106 211) !important;
}

div.clientes-container>div[data-status=inativo] {
border: 1px solid #c5c5c5;
    background: #f3f3f3;
    color: #7c7c7c;
    opacity: 0.5;
}


div.apps-container {   
    display:flex;
    flex-wrap: wrap;
    gap:0.8rem;
    margin-top:1rem;
}

div.apps-nome  {
    border-radius: 0.25rem;
    border: 1px solid #bdbdbd;
    padding: 0.3rem 0.6rem;
    background-color: #fff;
    font-size: 0.9rem;
        font-weight: 500;
    box-shadow: 3px 2px 1px #dfdfdfb3;
    display: flex;
    align-items: center;
    justify-content:space-around;
    gap: 0.7rem;
    cursor:pointer;
}


div.blocos {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 721px;
    padding: 1rem 3.3rem;
    margin: auto;
    /* background-color: #cee0e7; */
}

div.bloco-fixo {
    border: 1px solid #e3e3e3;
    background: #ffffff;
    color: #65949c;
    border-radius: 0.3rem;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    gap: 0;
    justify-content: start;
    box-shadow: 2px 2px 0px #00000003;
    height: 52px;
    line-height: 52px;
    transition: all ease-in-out 300ms;
    overflow: hidden;
    position: relative;
    text-indent: 2rem;
}




div.bloco-base {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0.7rem;
    border-radius: 6px;
    font-size: 0.9rem;
    height: 50px;
    width: 100%;
    gap: 0.9rem;
}

div.bloco-componentes {
    width: 100%;
    display: flex;
    padding: 1rem;
    height: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

div.arquivos,
ul.menublocos {
    display: none;
    position: absolute;
    top: 11px;
    right: 164px;
    padding: 0.8rem;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background-color: #fefefe;
    flex-direction: column;
}

button.btaddarquivos {
    margin-bottom: 0.6rem;
}

div.arquivos ul {
    list-style: none;
}

div.arquivos ul li {
    text-align: left;
}

div.arquivos ul li a {
    font-size: 0.8rem;
    color: #666;
}

div.arquivos ul li a:hover {}

button.btexcluir {
    background-color: #fff;
    border: none;
    font-size: 1rem;
    margin-left: 0.3rem;
    margin-right: 0.3rem;
    cursor: pointer;
}

button.btcomponentes,
button.btarquivos {
    background-color: #fff;
    border: none !important;
    cursor: pointer;
}

div.addbloco {
    display: flex;
    justify-content: start;
    margin-bottom: 1.2rem;
    font-weight: 400;
    user-select: none;
    margin-top: 2rem;
    flex-direction: row;
    gap: 1rem;
    position: relative;
    z-index: 999;
}

div.addbloco button {
    padding: 0.5rem;
    background-color: #fff;
    border: 1px solid #555;
    border-radius: 4px;
    cursor: pointer;
}

/* TABELA */

table.tabela tbody tr {
    font-size: 0.8rem;
}

table.tabela tbody tr td div {
    max-height: 2.4rem;
    overflow: hidden;
}

table {
    resize: both;
    width: 100%;
    border-spacing: 0;
    min-height: 140px;
}

table thead {
    position: sticky;
    top: 0;
    height: 2.6rem;
    z-index: 20;
}


table tbody {
    background-color: #fefefe;

}

table tr,
table td,
table th {
    padding: 5px;
}

table td:hover,
table td:active {
    /* background:#fffef4; */
}


table th {
    font-weight: 500;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.18rem; */
    /* color: #b7b7b7; */
    background-color: #fdfdfd;
    border-top: 1px solid #ffffff12;
    border-left: 1px solid #ffffff0d;
    border-bottom: 1px solid #9d9d9d;
    font-size: 0.9rem;
    height: 2.8rem;
}

table tbody {
    border: 1px solid #e3e5eb;
    background-color: #fff;
    color: #262d31;
    font-size: 0.9rem;
}

table tbody td {
    display: table-cell;
    padding: 5px;
    border-bottom: 1px solid #e3e5eb;
    border-right: 1px solid #e3e5eb;
}

/* table tbody {
    border-left: 1px solid #e3e5eb;
} */

table tbody tr {
    border-left: 1px solid #e3e5eb;
}


table tbody tr:first-child td:first-child {
    /* border-top: 1px solid #e3e5eb;
    border-top-left-radius: 12px;  arredonda left-top */
    border-left: 1px solid #e3e5eb;
    border-right: 1px solid #e3e5eb;
}

table tbody tr td:first-child {
    border-left: 1px solid #e3e5eb;
}

table tbody tr td:last-child {
    border-right: 1px solid #e3e5eb;
}


table tbody tr:first-child td:last-child {
    border-top: 1px solid #e3e5eb;
    /* border-top-right-radius: 12px; arredonda top-right */
    border-right: 1px solid #e3e5eb;
}

table tbody tr:first-child th:last-child {
    border-top: 1px solid #e3e5eb;
    border-top-right-radius: 12px;
    /* arredonda top-right */
}

table th:last-child {
    border-top-right-radius: 8px;
}

table th:first-child {
    border-top-left-radius: 8px;
}

table tbody tr:first-child td {
    border-top: 1px solid #e3e5eb;
}

table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
    border-left: 1px solid #e3e5eb;
    /* arredonda left-bottom */
}

table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
    border-right: 1px solid #e3e5eb;
    /*arredonda bottom-right*/
}


table td[data-coluna='texto']>div,
table td[data-coluna='caracteristicas']>div,
table td[data-coluna='especificacoes']>div {
    height: 35px;
    width: 250px;
    overflow: hidden;
}

/* 
table tbody tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 12px;
    border-left: 1px solid #e3e5eb;
}

table tbody tr:last-of-type td:first-of-type {
    border-top-left-radius: 12px;
    border-left: 1px solid #e3e5eb;
} */

table tbody tr:last-child {
    border-bottom: none;
}

table tbody tr:hover {
    background-color: #fbfbfb63;
}

div.table-bts {
    display: flex;
    gap: 1ch;
    justify-content: center;
}

div.btstatus {
    display: flex;
    flex-direction: row;
    gap: 2ch;
}

div.table-bts button,
div.btstatus button,
button.produtos,
button.fotos,
button.bt-exportar {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    background-color: #fff;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #d4d6df;
}

button.bt-exportar {
    margin-left: auto;
}

button.bt-exportar i {
    font-size: 1.1rem;
    color: #15bb87;
}


div.produtos-colecao {
    display: flex;
    grid-template-rows: auto;
    gap: 2ch;
    /* max-width: 310px; */
    flex-wrap: wrap;
}

button.produtos,
button.fotos {
    width: 150px;
    font-size: 0.8rem;
    color: var(--color-principal);
}

div.produto>div[data-coluna='fotos_sel']>button.fotos {
    width: 100%;
}


div.produto {
    position: relative;
    padding: 20px;
    border: 2px solid #dbe1f2;
    border-radius: 6px;
    transition: all ease-in-out 400ms;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1ch;
    height: 100%;
    max-width: 250px;
    flex: 1 1 250px;
}


div.produto div.table-bts {
    align-self: center;
    margin-top: 22px;
}

div.produto div.table-bts button {}

div.produto>div[data-coluna='id'] {
    font-size: 0.75rem;
    position: absolute;
    top: 6px;
    right: 7px;
    font-weight: 400;
}

div.produto>div[data-coluna='nome'] {
    color: var(--color-principal);
    font-weight: 900;
    margin-bottom: 17px;
    margin-top: 10px;
}

div.produto>div[data-coluna='produtos_id'] {
    font-weight: 900;
}



div.produto:hover {
    outline: 2px solid #eba17b !important;
    /* border: 2px solid #eba17b !important; */
    box-shadow: 1px 1px 11px 0px #ffb691;
}

div.fakecheck {
    position: absolute;
    border-radius: 4px;
    border: 1px solid #e3e5eb;
    z-index: 4;
    pointer-events: none;
    top: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: #fbfcff;
    background-position: center center;
    background-size: 60%;
    transition: background ease-in-out 400ms;
}

/* background-color: #f5f5f5; */
input[type='checkbox']:checked~.fakecheck {
    background-color: #15bb87;
    background-image: url(../imagens/checkbox.svg);
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center center;
}

div.bts-paginacao button,
div.bts-add-img button {
    padding: 8px;
    border: none;
    background-color: white;
    color: #5C6278;
    border-radius: 6px;
    cursor: pointer;
}

table button:hover {
    background-color: #f6fcff;
}

table button i {
    font-size: 1.01rem;
}

button[data-acao='editar'] {
    font-family: 'Inter', sans-serif;
    background: #15bb87;
    /* color: #fff !important; */
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.17rem 0.7rem;
    /* line-height: 1rem; */
    cursor: pointer;
    border: 2px solid #15bb87;
    border-radius: 3px;
    /* letter-spacing: 0.1rem; */
    transition: background-color ease-in-out 400ms;
}


div.bloco-container>button[data-acao='editar'] {
    color: #fff !important;
}

button[bt-bloco] {
    font-family: 'Inter', sans-serif;
    background: #15bb87 !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.27rem 0.7rem;
    /* line-height: 1rem; */
    cursor: pointer;
    border: 1px solid #d0efe6;
    border-radius: 1rem;
    /* letter-spacing: 0.1rem; */
    transition: background-color ease-in-out 400ms;
}

button.bt-ellipsis {
    background: #ffffff !important;
    color: #666 !important;
    border: none;
    font-size: 0.9rem;
    padding: 0;
}

div.bloco-conteudo-bt {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

div.bloco-conteudo-bt i.fa-search {
    color: #00000038;
}

button[data-acao='componentes'] {
    color: #1f1f1f !important;
    border: 1px solid #ddedff;
}

input.buscar {
    display: none;
    position: absolute;
    right: 9rem;
    width: 10rem;
}




div h4 span {
    font-size: 0.5rem;
    color: #9b9b9b;
}

button[data-acao='excluir'] i,
button[data-acao='excluirimagens'] i,
button[data-acao='excluirImagensConteudo'] i,
div.bts-add-img button {
    color: #F43D48;
}

div.categoria-grid figure {
    object-fit: cover;
    width: 60px;
    height: 40px;
    overflow: hidden;
    border-radius: 5px;
}

div.categoria-grid {
    display: grid;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e3e7ee;
    border-bottom: none;
}

div.alert {
    display: grid;
    place-items: center;
    height: 100%;
}

div.categoria-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1.3ch;
    overflow: hidden;
    border: none;
}

div.categoria-flex div.linha {
    border: 2px solid #f5f5f5;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.3ch;
    background-color: var(--fundo-principal);
    transition: border ease-in-out 400ms;
}

div.linha.over {
    border-top: 2px dashed #5c62a3;
}

div.categoria-flex div.linha.over {
    border: 2px dashed #5c62a3;
}

button[grid-row] {
    color: #184d8c !important;
}

button[grid-row] i {
    pointer-events: none;
}

div.categoria-flex div.linha:hover {
    background-color: var(--fundo-tabela-linha-hover);
}

div.categoria-flex div.linha figure {
    overflow: hidden;
    width: 115px;
    height: 83px;
    border-radius: 4px;
    padding: 0;
    margin: 0;
}

div.categoria-grid>div {
    background-color: var(--fundo-principal);
    display: grid;
    grid-template-columns: 0.2fr 0.4fr 3fr 1fr;
    grid-auto-flow: column;
    padding: 5px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    text-align: left;
    border-bottom: 1px solid #e3e7ee;
    transition: background ease-in-out 400ms;
    gap: 1ch;
}

div.categoria-grid>div:hover {
    background-color: var(--fundo-tabela-linha-hover);
}

div.categoria-grid>div img {
    width: 50px;
    /* height:50px; */
    border-radius: 3px;
    margin: 6px;
    pointer-events: none;
}

div.categoria-flex div.linha img {
    width: 115px;
    /* height:50px; */
    border-radius: 3px;
    margin: 6px;
    pointer-events: none;
}

div.paginacao {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 2ch;
    margin-top: 20px;
    color: #2f3c3e;
}

div.registros {
    font-size: 0.8rem;
}

div.bts-paginacao {
    display: flex;
    gap: 1ch;
}

div.bts-paginacao button {
    width: 40px;
    height: 40px;
    border: 1px solid #d4d6df;
    font-size: 0.5rem;
    font-weight: bold;
}

input#busca {
    width: 52px !important;
    height: 52px;
    border: 1px solid #d4d6df;
    background: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    color: #7f82a3;
    position: absolute;
    right: 235px;
    /* cursor: pointer; */
    background-image: url(../imagens/lupa.svg);
    background-repeat: no-repeat;
    background-position: 16px 16px;
    background-size: 20px;
    background-clip: padding-box;

    text-indent: 25px;
    transition: width ease-in-out 400ms;
    font-weight: 400;
}

input#busca::placeholder {
    color: #dedfe7;
    font-weight: 100;
}

button {
    /* transition: scale ease-in-out 300ms; */
}

button:active {
    scale: 0.98;
}

div.bts-paginacao button i {
    user-select: none;
    pointer-events: none;
}

div.paginacao-atual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2ch;
    width: 180px;
}

select,
select.atual {
    width: 100%;
    max-width: 60px;
    height: 40px;
    color: #5c6278 !important;
    text-indent: 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #d4d6df;
    font-size: 0.8rem;
    text-align: center;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

/* #compartilhamento,
select#tiposprodutos  */

select {
    width: 100%;
    max-width: 100%;
    text-align: left;
    height: 50px;
    outline: #d4d6df;
}

[input-escuro] {
    background-color: var(--fundo-principal);
}

input#colecao {
    max-width: 600px;
}

div.total {
    font-size: 0.8rem;
}

[desactive] {
    background-color: #fdfdfd !important;
    pointer-events: none;
}



div.label-chk {
    position: absolute;
    left: 30px;
    font-size: 0.65rem;
    width: 100px;
    top: 2px;
}

input[type='checkbox'] {

    scale: 1;
    /* accent-color: #15bb87; */
    color: #fff;
    /* opacity: 0; se substituir */
}


/* SWITCHER */

div.switcher {
    position: relative;
    width: 1.8rem;
    height: 1.2rem;
    background: #bdbdbd;
    border-radius: 1rem;
    transition: all ease-in-out 200ms;
    padding: 0.2rem;
    cursor: pointer;
}

div.switcher>div {
    position: absolute;
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border-radius: 1rem;
    transition: all ease-in-out 200ms;
    pointer-events: none;
}

div.switcher[active] {
    background: #00a386;
}

div.switcher[active]>div {
    transform: translate(0.6rem, 0);
}

div.switcher-container {
    width: 130px;
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    align-items: center;
}



div.switcher-custom {
    width: fit-content;
    /* height: 1rem; */
    background: #f8f8f8;
    border-radius: 1rem;
    transition: all ease-in-out 200ms;
    padding: 0.4rem 0.4rem;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-size: 0.9rem;
    gap: 0.3rem;
}

div.switcher-custom>div {
    background: #ffffffc4;
    border-radius: 1rem;
    padding: 0.2rem 1rem;
    font-size: 0.75rem;
    transition: background-color ease-in-out 300ms;
}

div.switcher-custom>div:hover {
    background: #ffffff;
}

div.switcher-custom>div[selected] {
    background: #00a352;
    border-radius: 1rem;
    transition: all ease-in-out 300ms;
    padding: 0.2rem 1rem;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    border: none;

}


div.switcher-custom[active]>div {
    transform: unset;
}

div.switcher-custom-container {
    width: 130px;
    display: flex;
    flex-direction: row;
    gap: 0.3rem;
    align-items: center;
}

/* SWITCHER */



div.config-itens {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    font-size: 0.85rem;
}

div.contextmenu {
    background-color: #fff;
    width: 300px;
    height: 250px;
    position: absolute;
    z-index: 999999;
    border-radius: 6px;
    border: 2px solid #71b5ff;
}

div.menu {
    position: relative;
    flex-direction: column;
    /* gap: 1rem; */
    /* width: 143px !important; */
    align-content: center;
    justify-content: space-between;
    width: 44px;
    height: 19px;
    cursor: pointer;
    padding-left: 16px;
}

span.bar {
    width: 100%;
    height: 3px;
    background-color: #2f2f2f;
    border-radius: 23px;
    transition: all ease-in-out 400ms;
    transform-origin: center;
    /* display: inline-flex; */
    position: relative;
    pointer-events: none;
}


/* COLECOES */

div.nav-colecoes {
    width: 100%;
    height: 45px;
    background-color: var(--fundo-principal);
    display: flex;
    gap: 3ch;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    border: none;
    flex-direction: row;
    position: relative;
}

div.nav-colecoes::after,
div.nav-colecoes::before {
    width: 40px;
    height: 45px;
    background-color: var(--fundo-principal);
    content: "";
    position: absolute;
}

div.nav-colecoes::before {
    left: -40px;
}

div.nav-colecoes::after {
    right: -40px;
}

div.nav-colecoes ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

div.nav-colecoes ul li {
    display: inline-block;
    line-height: 45px;
}

div.nav-colecoes ul li a {
    display: block;
    height: 45px;
    color: var(--color-principal);
    text-align: center;
    width: 240px;
    transition: background-color ease-in-out 400ms;
}

div.nav-colecoes ul li a:hover {
    background-color: var(--fundo-escuro-hover);
    color: var(--color-principal);
}

.active2 {
    background-image: linear-gradient(180deg, transparent 0%, transparent 30%, #d89978 30%, #d89978 70%, transparent 70%, transparent 100%);
    background-size: 100px;
    background-position: center 28px;
    background-origin: border-box;
    background-repeat: no-repeat;
    color: #d89978 !important;
    pointer-events: none;
}

div.nav-colecoes ul li a:active,
div.nav-colecoes ul li a:focus {
    background-color: none;
    color: var(--fundo-bt-hover);
}


/* COLECOES */

/* PERFIL */

div.perfil {
    padding: 40px;
    background-color: #f7f7f714;
    margin: auto;
    width: 100%;
    max-width: 520px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid #e9e9e9;
}

div.perfil form label {
    text-align: left;
    align-self: flex-start;
    width: 100%;
}

span+input[type='hidden'] {
    display: none;
}

div.perfil form {
    gap: 1.4ch;
}

div.perfil h4 {
    margin-top: 8px;
    text-align: center;
    font-size: 1.15rem;
    color: #495b5e
}

div.perfil form {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin-top: 12px;
}

div.perfil form button {
    width: 100%;
    padding: 15px;
}

div.perfil form button:hover {
    background-color: #039be5;
}

div.perfil h5 {
    text-align: center;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 400;
    color: #000;
}

/* PERFIL */


/* CONFIG */

div.config {}


/* CONFIG */

/* CARD */

div.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    width: 100%;
    gap: 20px;
    padding: 20px 0 0 0;
    /* border-top: 1px solid #e3e7ee; */

}

div.cards ul {
    list-style-position: inside;
    line-height: 3ch;
}


div.cards>div {
    cursor: pointer;
}

div.card {
    flex-direction: column;
    display: flex;
    flex: 1 0 250px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 370px;
    height: 290px;
    background-color: var(--fundo-principal);
    border: 1px solid var(--borda-color);
    border-radius: 8px;
    position: relative;
    color: var(--color-principal);
    overflow: hidden;
    opacity: 0.85;
    transition: opacity, transform ease-in-out 400ms;
    box-shadow: 2px 2px 4px #f4f4f4;
    background-color: #ffff;
}

div.card:hover {
    opacity: 1;
    transform: translate(0, -4px);
}

div.card:active {
    scale: 0.99;
}

.card-imagem {
    transition: all ease-in-out 400ms;
    height: 165px;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #dfdfdf;
    /* background-blend-mode: color-dodge;
    background-color: #6d6ca25c; */
}

.card-imagem:hover {
    background-size: 120%;
}

.card-dados {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 16px;
    gap: 0.8ch;
    font-size: 0.9rem;
    width: 100%;
    background-color: #fff;
}

div.card-dados-bts {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    padding-top: 0.5rem;
    margin-top: 0.4rem;
    border-top: 1px solid #66666605;
}

div.card-dados button {
    font-size: 1rem !important;
    background: #ffffff !important;
    border: 2px solid #ffffff !important;
    cursor: pointer;
    padding: 0;

}

div.card-dados button[title='Visualizar'] {
    color: #00791d;
}

div.card-dados button[title='Imagens'] {
    color: #0f86ca;
}


.card-id {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fbfcff;
    font-size: 0.7rem;
    border-radius: 5px;
    text-align: center;
    font-size: 26px;
    line-height: 20px;
    text-align: center;
    width: 34px;
    height: 34px;
    display: none;
}


.card-nome {
    width: 100%;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-clientes,
.card-pasta {
    display: none;
}

.card-data {
    font-size: 0.8rem;
}

.card-qt-fotos {}

.card-status {}

.card-cliente {
    width: 100%;
    font-weight: 600;
}

.card-colecao {
    width: 100%;
    font-weight: 600;
    font-size: 1.07rem;
}

/* CARD */


/* MODAL */

div.dialog-content {
    display: flex;
    flex-direction: column;
    padding: 0 45px;
    height: 250px;
    overflow-y: auto;
    background-color: var(--fundo-principal);
}

div.dialog-content iframe {
    border: none;
    height: 250px;
    overflow: hidden;
}

div.dialog-content p {
    margin-top: 10px;
    font-size: 14px;
}


dialog {
    display: flex;
    opacity: 0;
    flex-direction: column;
    background-color: #262d31;
    height: 600px;
    min-height: 335px;
    min-width: 322px;
    position: fixed;
    top: 50%;
    left: 50%;
    border-radius: 13px;
    transform: translate(-50%, -50%);
    transform-origin: top;
    transform-style: preserve-3d;
    transition: opacity, height, top ease-in-out 400ms;
    border: none;
    outline: none;
    /* box-shadow: 0px 0px 0px 14px #acb2b3; */
}

dialog iframe {
    border: none;
    height: 100%;
}

dialog::backdrop {
    transition: background-color ease-in-out 400ms;
    background: #0000007d;
}

div.dialog-close {
    align-self: flex-end;
    padding: 0;
    padding-right: 16px;
    padding-top: 12px;
    display: flex;
    flex-direction: row;
    padding: 26px 45px 20px 46px;
    width: 100%;
}

div.dialog-close h3 {
    font-size: 1.5rem;
    color: var(--heading-2);
    font-weight: 900;
    color: #606060 !important;
}

div.dialog-close i {
    font-size: 20px;
    font-weight: 400;
    margin-left: auto;
    cursor: pointer;
}

div.dialog-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 22px 45px;
}


/* MODAL */

div.colecoes-conteudo {
    margin-top: 60px;
}

section.bt-actions {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

button.bt-sel {
    border: none;
    cursor: pointer;
    font-family: var(--font-a);
    background: transparent;
    color: var(--color-principal);
}

button.bt-sel:active,
button.bt-sel:focus {
    color: var(--fundo-bt-hover);
}

div.bts-sel {
    display: flex;
    gap: 3ch;
}

hr {
    border: none;
    border-bottom: 1px solid var(--fundo-tabela-linha-hover);
}

div.bts-add-img {
    margin-left: auto;
    display: flex;
    gap: 1ch;
}

div.bts-add-img button[data-acao='enviarimagem'] {
    background: #7cd38e;
}

div.bts-add-img button i.fa-plus {
    color: #fff;
}

div.bts-add-img button {
    width: 38px;
    height: 38px;
    font-size: 1.08rem;
}

div.colecoes-configuracoes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1 1 33%;
    margin: 60px 0 60px 0;
    height: 400px;
    gap: 60px;
}

div.colecoes-configuracoes-a {
    flex: 1 1 25%;
}

div.colecoes-configuracoes-b {
    width: 50%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 550px;
    margin-top: 44px;
}

div.colecoes-configuracoes-b label,
div.colecoes-configuracoes-a label {
    margin-bottom: 12px;
    display: block;
}

div.alterar-imagem {
    max-width: 600px;
    width: 100%;
    height: 341px;
    /* object-fit: cover; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #d4d6df;
    border-radius: 8px;
    margin-top: 30px;
    position: relative;
    color: var(--icon-color);
    overflow: hidden;
}

div.alterar-imagem i {
    color: var(--icon-color);
}

div.compartilhamento {
    display: flex;
    align-items: center;
}

button.bt-branco {
    width: 60px;
    height: 50px;
    border-radius: 6px;
    border: 1px solid var(--borda-color);
    background-color: white;
    margin-left: 4px;
    cursor: pointer;
}

button.bt-lilas {
    width: 170px;
    height: 50px;
    border-radius: 6px;
    border: 1px solid var(--icon-color);
    margin-left: 12px;
    cursor: pointer;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    gap: 1.5ch;
    font-size: 16px;
    font-family: var(--font-a);
    color: var(--icon-color) !important;
}

button.bt-branco i {
    color: var(--icon-color);
    font-size: 1.1rem;
}

button.bt-categoria {
    width: 100%;
    color: var(--heading-2);
    margin-bottom: 22px;
    margin-top: 22px;
    font-size: 1.1rem;
    font-weight: 900;
    font-family: var(--font-a);
    background-color: transparent;
    padding: 0.7rem;
    border-radius: 0.4rem;
    border: 2px dashed #e4e4e4;
    cursor: pointer;
}

button.bt-editar-categoria {
    background-color: transparent;
    cursor: pointer;
    color: var(--icon-color);
    border: none;
    outline: none;
    margin-left: 8px;
}

div.containerarquivos {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1px dashed #b7ddef;
    background-color: #ffffff;
    color: #40a8da;
}

div.arquivosCaixa {
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 9px;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    /* flex: 1 0 50%; */
    width: 100%;
    gap: 1ch;
    align-items: center;
    flex-wrap: wrap;
    white-space: break-spaces;
}

[azul-baby] {
    border: 1px solid #bde9ff;
    background-color: #fdffff;
}

[verde-baby] {
    border: 2px solid #eafdf1;
    background-color: #5ad85a03;
}

div.tabela-vazia {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6ch;
    transition: height ease-in-out 400ms;
}

.show {
    height: 100%;
}

.pedido {
    transition: all ease-in-out 400ms
}

button#addproduto {
    padding: 12px 31px;
    background-color: #b98d76;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    border: 1px solid #f5f5f5;
    border-radius: 5px;
    font-family: var(--font-a);
    cursor: pointer;
    margin: 20px;
    margin-left: 0;
}

table.produtos tbody {
    background-color: #fbfcff;
}

table.produtos tbody tr:hover {
    background-color: #fdfeff;
}

table.produtos tr.pedido>td>div {
    height: 0px !important;
    overflow: hidden;
    transition: height ease-in-out 400ms;
}

tr.pedido {
    background-color: #fdfeff;
}


div.center-full {
    position: absolute;
    width: 100%;
    height: 100% !important;
    background: #fff;
}

div.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1ch;
    transition: opacity ease-in-out 800ms;
    pointer-events: none;
}

div.circulo {
    width: 40px;
    height: 40px;
    border: 3px solid #3386e6;
    border-right-color: rgb(244 244 244);
    border-bottom-color: rgb(244 244 244);
    border-radius: 32px;
    transform: rotate(2deg);
    animation: loading infinite cubic-bezier(0.5, 0.25, 0.64, 0.83) 600ms;
}

div.loading {
    font-size: 12px;
    text-align: center;
}

@keyframes loading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

button.btbaixarcolecao {
    color: #fff;
    background-color: #3eba95;
    border-radius: 0.4rem;
    padding: 0.6rem;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    justify-content: space-evenly;
    cursor: pointer;
}

button.btbaixarcolecao i {
    font-size: 1.1rem;
    font-weight: bolder;
}

button.btbaixarcolecao div a {
    color: #fff;
}




::-webkit-scrollbar {
    width: 0.4rem;
    background-color: rgb(226 231 248);
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c4c9d8;
    border-radius: 4px;
}

@media screen and (min-width: 768px) {
    dialog {
        min-width: 466px;
    }
}

@media screen and (max-width: 768px) {
    nav {
        width: 0;
        position: relative;
        z-index: 99999;
        height: 100vh;
    }

    div.menu {
        display: flex;
    }

    input.bt-action {
        width: 62px;
        height: 62px;
        position: fixed;
        right: 0;
        bottom: 0;
        margin: 0 20px 20px 0;
        text-align: center;
        z-index: 99999;
        font-size: 2rem;
        border-radius: 50px !important;
        padding: 0;
    }

    div.colecoes-configuracoes {
        /* flex-direction: column !important; */
    }

    div.colecoes-configuracoes-a,
    div.colecoes-configuracoes-b {
        width: 100% !important;
    }


}