@charset "UTF-8";
@import url("../fonts/roboto/roboto.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
  font-family: "Roboto", "arial";
}

.empty:after {
  content: "Nada encontrado!";
  font-size: 1.1rem;
  color: #999;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  text-align: center;
}

[empty]:after {
  content: attr(empty);
  font-size: 1.1rem;
  color: #999;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  text-align: center;
}

.pointer,
.showTarget {
  cursor: pointer;
}

.flex {
  display: flex;
}

.flex.wrap {
  flex-wrap: wrap;
}

.flex.h-sb {
  justify-content: space-between;
}

.flex.h-sa {
  justify-content: space-around;
}

.flex.h-ct {
  justify-content: center;
}

.flex.h-fe {
  justify-content: flex-end;
}

.flex.v-ct {
  align-items: center;
}

.flex.v-tp {
  align-items: flex-start;
}

.flex.v-fe {
  align-items: flex-end;
}

.flex.column {
  flex-direction: column;
}

.flex .grow-1 {
  flex-grow: 1;
}

.flex .grow-2 {
  flex-grow: 2;
}

ul {
  list-style: none;
}

.img-container {
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background-size: cover;
}
.img-container.contain {
  background-size: contain;
}
.img-container,
.img-container div {
  background-position: center;
  background-repeat: no-repeat;
}
.img-container.round {
  border-radius: 50%;
}
.img-container.artigo:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
  z-index: -1;
}
.img-container.artigo:hover:after {
  background: linear-gradient(rgba(0, 0, 0, 0.7) -10%, transparent, rgba(0, 0, 0, 0.7) 90%);
}
.img-container.empty-artigo {
  background-color: #308de9;
  color: #fff;
  height: 80px;
}
.img-container.empty-artigo:after {
  content: "SEM FOTO";
  font-size: 1.2rem;
  opacity: 0.4;
  position: absolute;
  font-weight: 500;
  left: 0;
  top: 45%;
  width: 100%;
  text-align: center;
}
.img-container div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.img-container div.filter {
  background-size: cover;
  filter: blur(8px);
  z-index: -1;
}
.img-container div.image {
  background-size: contain;
  z-index: 1;
}
.img-container.no-photo, .img-container.noPhoto {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ddeeff;
  font-weight: 600;
}
.img-container.no-photo:after, .img-container.noPhoto:after {
  content: attr(emblem);
}
.img-container * {
  z-index: 5;
}

/*######################   MODAL FRAME   #########################*/
.x-mobdal {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  padding: 1rem;
  flex-flow: wrap;
  will-change: opacity;
}
.x-mobdal,
.x-mobdal * {
  transition: all 0.3s;
}
.x-mobdal.show {
  z-index: 100;
  opacity: 1;
  visibility: visible;
}
.x-mobdal.show .modal-frame {
  transform: scale(1);
}
.x-mobdal .modal-frame {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 6px;
  max-width: calc(100% - 2rem);
  min-width: 360px;
  width: auto;
  transform: scale(1.1);
  will-change: transform;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}
.x-mobdal .modal-frame h3 {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  opacity: 1;
}
.x-mobdal .master-btn-right {
  margin-top: 2rem;
  justify-content: flex-end;
}
.x-mobdal .master-btn-right span {
  font-weight: 500;
  line-height: 2;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #888;
  cursor: pointer;
  margin-left: 1.5rem;
}
.x-mobdal .master-btn-right span:first-child {
  margin-left: 0;
}
.x-mobdal .master-btn-right span:last-child {
  color: #1A73E8;
  opacity: 1;
  font-weight: 600;
}
.x-mobdal .master-btn-right span.loading svg {
  opacity: 1;
  visibility: visible;
  width: 15px;
  margin-left: 8px;
}
.x-mobdal .master-btn-right span svg {
  opacity: 0;
  visibility: hidden;
  width: 1px;
  margin-left: 0;
}

.rt-menus {
  position: relative;
  z-index: 20;
}
.rt-menus .xdropdown {
  width: 40px;
  margin-left: 10px;
  border-radius: 3px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.rt-menus .xdropdown i {
  border-radius: 50%;
}
.rt-menus .o-opts {
  position: absolute;
  top: 80%;
  overflow: hidden;
  right: 0;
  color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 35px 85px -2px #ddeeff;
}
.rt-menus .o-opts.show {
  top: 100%;
  right: 0;
  opacity: 1;
  visibility: visible;
}
.rt-menus .o-opts ul {
  background: #fff;
  min-width: 200px;
}
.rt-menus .o-opts ul .masterSearch {
  position: relative;
  margin: auto;
}
.rt-menus .o-opts ul .masterSearch input {
  width: 100%;
  height: 44px;
  border: none;
  border-bottom: 2px solid #1A73E8;
  text-indent: 2.5rem;
  font-size: 0.85rem;
}
.rt-menus .o-opts ul .masterSearch svg {
  fill: #1A73E8;
  width: 15px;
  position: absolute;
  left: 8px;
  top: 14px;
}
.rt-menus .o-opts ul li {
  padding: 0 2rem;
  line-height: 3;
  font-size: 1rem;
  opacity: 0.9;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}
.rt-menus .o-opts ul li:hover {
  background: #f6fbff;
}
.rt-menus .o-opts ul li.active {
  color: #4300c9;
  font-weight: 600;
}
.rt-menus .o-opts ul li.sep {
  border-bottom: 1px solid #e7f3ff;
}

/*######################   XTABLE   #########################*/
.x-table {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.x-table.hovered .xbody ul:hover {
  background-color: #e6f0fc;
}
.x-table.selectable .xbody ul {
  cursor: pointer;
}
.x-table.selectable .xbody ul:hover {
  background-color: #e6f0fc;
}
.x-table.selectable .xbody ul.active {
  background-color: #1A73E8;
}
.x-table.selectable .xbody ul.active * {
  color: #fff !important;
  fill: #fff !important;
}
.x-table.have-row-fixed {
  position: relative;
}
.x-table.have-row-fixed .xbody ul.is-row-fixed {
  width: 100%;
  left: 0;
  border-top: 1px #ddd solid;
  background: #FFF;
}
.x-table.have-row-fixed .xbody ul.is-row-fixed li {
  line-height: 3rem;
  font-weight: bold;
  font-size: 0.9rem;
}
.x-table, .x-table * {
  transition: all 0.25s ease !important;
}
.x-table ul {
  display: flex;
  margin: auto;
}
.x-table li {
  line-height: 48px;
  flex-shrink: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.x-table li:first-child {
  padding-left: 15px;
}
.x-table .xheader {
  padding-right: 15px;
}
.x-table .xheader ul {
  margin: auto;
}
.x-table .xheader ul li {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 4;
}
.x-table .xbody {
  flex-grow: 1;
  overflow-y: scroll;
  position: relative;
}
.x-table .xbody::-webkit-scrollbar {
  width: 12px; /* Largura do scroll */
}
.x-table .xbody::-webkit-scrollbar-thumb {
  background-color: #888; /* Cor do scroll */
  border-radius: 10px; /* Bordas arredondadas */
}
.x-table .xbody::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Cor do fundo do scroll */
  border-radius: 10px; /* Bordas arredondadas no track */
}
.x-table .xbody ul {
  margin-bottom: 10px;
  position: relative;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(102, 102, 102, 0.05);
  background: #FFF;
}
.x-table .xbody ul li {
  font-size: 0.85rem;
  line-height: 56px;
}
.x-table .xfooter {
  flex-grow: 1;
  background-color: #f9fcff;
  border-top: 1px solid #e0e0e0;
  font-weight: bold;
}
.x-table .xfooter ul {
  margin: auto auto 10px;
  position: relative;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(102, 102, 102, 0.05);
  background: #FFF;
}
.x-table .xfooter ul li {
  font-size: 0.85rem;
  line-height: 56px;
}

/*######################   MOBILE STYLES   #########################*/
@media (max-width: 768px) {
  .x-table .xheader {
    display: none;
  }
  .x-table .xbody ul {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(102, 102, 102, 0.1);
    background: #FFF;
  }
  .x-table .xbody ul li {
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    line-height: 24px;
    padding: 5px 0;
    white-space: normal;
    text-align: right;
  }
  .x-table .xbody ul li:first-child {
    padding-left: 0;
  }
  .x-table .xbody ul li:before {
    content: attr(label);
    font-weight: bold;
    flex: 1;
    max-width: 150px;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
  }
  .x-table .xbody ul li:last-child {
    padding-right: 0;
  }
}
/*######################   PAGINATION   #########################*/
.x-pagination-content > * {
  display: none;
}
.x-pagination-content > *.show {
  display: initial;
}

.x-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.x-pagination ul {
  margin-bottom: 0;
  display: none;
}
.x-pagination ul.active {
  display: flex;
}
.x-pagination ul li {
  margin: 0 3px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  user-select: none;
  font-size: 0.84rem;
}
.x-pagination ul li:hover {
  background-color: #eee;
}
.x-pagination ul li.active {
  background: #2F84DA;
  color: #FFF;
}
.x-pagination ul li.ctrl {
  position: relative;
}
.x-pagination ul li.ctrl:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  left: 50%;
  border-right: 2px #777 solid;
  border-bottom: 2px #777 solid;
}
.x-pagination ul li.ctrl.backward:after {
  transform: translate(-50%, -50%) rotate(135deg);
}
.x-pagination ul li.ctrl.forward:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.x-pagination span {
  padding: 0 10px;
  cursor: pointer;
}
.x-pagination span.disabled {
  opacity: 0.6;
  cursor: default;
}

.xAlertContainer {
  position: fixed;
  top: 68px;
  right: 20px;
  z-index: 10000;
}

.xAlert {
  text-align: left;
  padding: 21px 0;
  background-color: #fff;
  border-radius: 4px;
  min-width: 280px;
  max-width: 500px;
  top: 0px;
  position: relative;
  box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}
.xAlert:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.xAlert.success:before {
  background-color: #2bde3f;
}
.xAlert.success .content b {
  color: #27AE60;
}
.xAlert.success .icon {
  background-color: #2bde3f;
}
.xAlert.info .content b {
  color: #1A73E8;
}
.xAlert.info .icon {
  background-color: #1A73E8;
  font-style: italic;
  font-family: "Times New Roman", arial;
  font-weight: 600;
}
.xAlert.info:before {
  background-color: #1A73E8;
}
.xAlert.warning .content b {
  color: orange;
}
.xAlert.warning .icon {
  background-color: orange;
}
.xAlert.warning:before {
  background-color: orange;
}
.xAlert.error .content b {
  color: red;
}
.xAlert.error .icon {
  background-color: red;
}
.xAlert.error:before {
  background-color: red;
}
.xAlert .icon {
  position: absolute;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
  width: 37px;
  height: 37px;
  color: #fff;
  padding: 7px;
  border-radius: 50%;
  font-size: 1.2rem;
}
.xAlert .icon svg {
  fill: #fff;
}
.xAlert .content {
  padding-left: 70px;
  padding-right: 60px;
}
.xAlert .content b {
  display: block;
  color: #3e3e3e;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
}
.xAlert .content p {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 0;
  color: #878787;
}
.xAlert .xClose {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 22px;
  cursor: pointer;
  height: 18px;
  color: #999;
  transform: translateY(-50%);
  font-style: normal;
  font-size: 1.1rem;
}
.xAlert .xClose:hover {
  color: tomato;
}
.xAlert .xClose:after {
  content: "✕";
  font-weight: 600;
}

.spinner {
  animation: rotate 2s linear infinite;
  width: 30px;
  height: 30px;
}
.spinner .path {
  stroke: #1A73E8;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

/* KEYFRAMES */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.itemFlex1 {
  width: 100%;
  max-width: 300px;
}

.itemFlex2 {
  width: 100%;
}

.bodyFrom {
  align-items: start;
}

.m-pdf-visualize {
  height: auto !important;
}
.m-pdf-visualize .modal-frame {
  width: 100%;
  padding: 0;
}
.m-pdf-visualize .cctnrr {
  width: 100%;
  height: 99vh;
}
.m-pdf-visualize .cctnrr .list-pdfs {
  width: 320px;
  flex-shrink: 0;
  background: #FFF;
  height: 100%;
  padding: 1rem;
}
.m-pdf-visualize .cctnrr .list-pdfs > * {
  flex-shrink: 0;
}
.m-pdf-visualize .cctnrr .list-pdfs b {
  align-self: center;
  margin-bottom: 1rem;
}
.m-pdf-visualize .cctnrr .list-pdfs ul li {
  cursor: pointer;
  margin-top: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 10px;
  background-color: rgba(26, 115, 232, 0.0705882353);
}
.m-pdf-visualize .cctnrr .list-pdfs ul li.active, .m-pdf-visualize .cctnrr .list-pdfs ul li.active i {
  background-color: rgba(26, 115, 232, 0.26);
}
.m-pdf-visualize .cctnrr .list-pdfs ul li document {
  display: block;
  font-size: 13px;
}
.m-pdf-visualize .cctnrr .list-pdfs ul li svg {
  padding-right: 0.5rem;
}
.m-pdf-visualize .cctnrr .container-pdf iframe {
  width: 100%;
  height: 100vh;
}
.m-pdf-visualize .controllers {
  right: 4rem;
  top: 10vh;
  color: #FFF;
  position: absolute;
}
.m-pdf-visualize .controllers div {
  width: 36px;
  height: 35px;
  /* background: #F2F2F2; */
  margin-bottom: 1rem;
  /* box-shadow: 0 2px 0 #666; */
  cursor: pointer;
  /* border-radius: 50%;*/
}
.m-pdf-visualize .controllers svg path {
  fill: #FFF;
}

.minimized-modal-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  width: calc(100% - 195px);
  height: auto;
  display: flex;
  flex-direction: row-reverse;
  z-index: 150;
}
.minimized-modal-bar .m-modal {
  background: #eee;
  width: 180px;
  background: #eee;
  padding: 5px;
  border: 1px #ccc solid;
  cursor: pointer;
  margin-left: 15px;
}
.minimized-modal-bar .m-modal:hover {
  background: #FFF;
}
.minimized-modal-bar .m-modal:hover i {
  color: #222;
  opacity: 1;
}
.minimized-modal-bar .m-modal:hover span {
  color: #222;
}
.minimized-modal-bar .m-modal span {
  color: #444;
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.minimized-modal-bar .m-modal i {
  font-size: 1.05rem;
  font-weight: bold;
  cursor: pointer;
  color: #777;
  opacity: 0;
}

.hide {
  display: none !important;
}

body.noDark .controllers svg path {
  fill: #000000;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 2.9rem;
  margin-bottom: 1.1rem;
}
.tabs .tab {
  display: flex;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  color: #555;
  font-weight: bold;
  text-align: center;
  border-right: 1px solid #ddd;
  justify-content: center;
  padding-right: 1rem;
  padding-left: 1rem;
  height: 100%;
  flex-direction: column;
}
.tabs .tab:last-child {
  border-right: none;
}
.tabs .tab:not(.active):hover {
  background-color: #f0f0f0;
  border-bottom: 2px solid #1A73E8;
}
.tabs .tab.active {
  color: white;
  background-color: #1A73E8;
  box-shadow: inset 0 -2px 0 0 #1A73E8;
}

[data-tab] {
  display: none;
}
[data-tab].active {
  display: initial;
}
[data-tab] .xbody {
  height: 50vh;
}

.flocoto-context-menu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  border-radius: 8px; /* Bordas arredondadas */
  border: none; /* Remover borda */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); /* Sombra suave */
  list-style: none;
  padding: 5px 0;
  margin: 0;
  min-width: 180px; /* Ajuste da largura mínima */
  z-index: 1000;
}
.flocoto-context-menu li {
  display: flex;
  align-items: center; /* Centraliza ícone e texto verticalmente */
  gap: 10px; /* Espaço entre o ícone e o texto */
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.1s; /* Animações suaves */
}
.flocoto-context-menu li i {
  font-size: 18px; /* Tamanho do ícone */
  color: #666; /* Cor padrão do ícone */
  transition: color 0.2s; /* Animação da cor do ícone */
}
.flocoto-context-menu li:hover {
  background-color: #e0e0e0; /* Fundo claro ao passar o mouse */
  transform: scale(1.02); /* Leve aumento ao passar o mouse */
}
.flocoto-context-menu li:hover i {
  color: #333; /* Escurece a cor do ícone no hover */
}

body {
  overflow: hidden;
}

.x-table li[center] {
  text-align: center;
}
.x-table li[right] {
  text-align: right;
  padding-right: 0.5rem;
}

/*# sourceMappingURL=main.css.map */
