*:root {

  --preto-metal: #383d40;
  --white:       #FFF;

}

html {
  background-color: #F1F1F1;
}

body {
  background-color: #F1F1F1;
  height: 100%;
  font-family: var(--fonte-secundaria);
}

table {
  width: calc(100% - 4px);
  background-color: #777;
}

div#content {
  height: 100%;
  display: flex;
  background-color: var(--preto-metal);
}

div#header {
  display: flex;
  flex-flow: column;
  height: calc(100% - 2px);
  z-index: 4;
  overflow-x: hidden;
  white-space: nowrap;
  transition: width 0.2s linear, border 0.3s linear;
  /*border-right: 6px solid transparent;*/
  background-color: #f1f1f1;
}

/* hover */
div#header {
  transition: width 0.2s linear, border 0.1s linear;
  box-shadow: 4px 0px 10px 0px #000;
  margin: 0 6px 0 0;
}

div#main {
  width: 100%;
  min-width: calc(100% - 220px);
  /*padding: 6px;*/
  height: calc(100% - 14px);
  position: relative;
  background-color: var(--preto-metal);
}

div#header, div#main {   
  overflow-y: auto; 
  -webkit-overflow-scrolling: touch; 
  background-color: var(--preto-metal);
}

ul#top-menu { 
  flex-flow: column; 
  display: none;
}

ul#painel { 
  display: flex; 
  flex-flow: column; 
  width: calc(100% -8px); 
  margin: 10px 6px;
}

ul#painel li { 
  color: #C1C1C1;
  padding: 14px 8px;
  cursor: pointer; 
  font-size: 12px; 
  transition: background 0.2s linear, text-indent 0.2s linear;
  font-family: "montserrat";
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
  margin: 2px 0;
}

ul#painel li:last-child { 
  border-bottom: 0 outset #777;
}

ul#painel li::after {
  content: attr(title);
  width: 0;
  text-align: center;
  font-size: 10px;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(.32,-0.53,.67,1.43) 0.5s;
}

div#header:hover li::after {
  width: 120px;
}

ul#painel li:hover {
  background-color: #665992; 
}

ul#painel li:hover svg {
}

ul#painel li:hover::after {
}

ul#painel li.selected {
  background-color: #555182;
  box-shadow: 1px 1px 4px 1px #222 inset;
}

ul#painel li svg {
  width: 28px;
  pointer-events: none;
  height: 24px;
  fill: #AAA;
}

table tr th {
  top: 0;
}

/* fim modelo app */

div#loader {
  height: calc(100% - 2px);
  width: 100%;
  left: 0;
  top: 0;
  background-color: #77777777; 
  display: none;
  z-index: 6;
  position: fixed;
}

div#search {
  background-color: #665992;
}

ul#situacoes { 
  display: inline-flex;
  margin: 2px;
  flex-flow: row wrap;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #333;
  background-color: #777;
}

ul#situacoes li.option { 
  color: #555; 
  text-align: center;
  height: 26px; 
  line-height: 26px; 
  cursor: pointer;
  margin: 3px;
  padding: 3px 6px; 
  transition: background-color 0.2s linear, color 0.1s linear, box-shadow 0.1s linear;
  font-family: "montserrat";
  font-size: 14px;
}

ul#situacoes li.selected { 
  color: #FFF;
  box-shadow: 0px 0px 2px 1px #333;
  background-color: var(--main-background);
}

ul#situacoes li:not(.selected) {
  background-color: transparent !important;
}

ul#situacoes li.option::-webkit-selection {
  background-color: none;
}

ul#situacoes li.option::selection {
  background-color: none;
}

ul#situacoes li.option::-moz-selection {
  background-color: none;
}

tr td.opt:last-child { 
  min-width: 54px; 
}

div#search input { 
  margin: 2px 6px; 
  border: none; 
  padding: 4px; 
  max-width: 122px; 
}
span.more { 
  display: none;
}

@media all and (max-device-width: 800px) and (orientation: portrait) {
  div#header {
    margin: 0;
  }

  div#header:hover li::after {
    width: 0;
  }
  
  div#main {
    padding: 4px 6px;
  }

  div#main div#search {
    margin: 0 0 4px 0;
    left: 0;
    position: sticky;
    display: none;
    transition: height 0.2s linear;
  }

  div#main ul#situacoes {
    left: 2px;
    position: sticky;
    display: none;
    transition: height 0.2s linear;
    margin-bottom: -24px;
  }

  div#main div#search span {
    width: 100%;
    line-height: 24px;
  } 
  
  div#main div#search input { 
    margin: 6px 6px 0 0;  
    max-width: 100%;
    width: 100%; 
  }

  table {
    margin: 32px 0 0 0;
  }

  span.more {
    background-color: rgba(250, 250, 250, 0.3);
    position: fixed;
    top: 4px;
    right: 48px;
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 2px;
    z-index: 1;
  }

  span.more span {
    font-size: 22px;
    position: absolute;
    pointer-events: none;
    transition: all 0.2s linear;
    font-family: monospace;
  }

  span.more span:first-child {
    left: 10px;
    transform: rotate(90deg);
  }

  span.more span:last-child {
    left: 9px;
  }

  span.more.expand span:first-child {
    opacity: 0;
    transform: rotate(180deg);
  }

  span.more.expand span:last-child {
    transform: rotate(90deg);
  }

  a.refresh {
    right: 12px !important;
    position: fixed !important;
  }

  div#main ul#situacoes li.option {
    font-size: 10px;
    width: calc(33% - 17px);
  }

  div#main ul#lista {
    margin: 0 10px 30px 0;
  }

  div#main ul#lista li {
    width: 100%;
    min-width: auto;
    margin: 0 0 0 10px;
  }

  div#main ul#lista li.single_line {
    margin: 5px 0 0 10px;
    width: 100%;
  }

  ul#lista li span.desc {
    font-size: 10px !important;
  }

  ul#lista li span select {
    width: 100%;
  }

  ul#lista li.single_line span.desc {
    width: 90px;
  }

  ul#lista li.single_line span.input {
    margin-right: 18px !important;
  }

  ul#lista li.single_line span.input input {
    width: 38px !important;
    max-width: 38px;
    min-width: 38px !important;
    margin-left: -6px;
  }

  ul#lista li span.input a {
    right: 2px;
  }

  ul li span input, ul li span select, ul li span textarea {
    width: calc(100% - 10px) !important;
  }

  a#button_report, a#button_report_salvar {
    width: calc(100% - 32px) !important;
    margin: 10px 0 2px 0 !important;
    text-indent: 28px;
  }

}

ul li.add a.button, ul li.definicoes a.auto_report.button {
  color: var(--branco-primario);
  cursor: pointer;
  background-color: var(--roxo-secundario);
  border-radius: 2px;
  font-family: "montserrat";
  box-shadow: 0 0 3px 0px #777;
  letter-spacing: 0;
  font-size: 0;
  height: 28px;
  margin: 2px 4px 0 2px;
}

/*ul li.add a.add_interacao {
  background: url('dwu.chamado.download?arquivo=send.svg');
}*/

div.prospecto ul li.selectline {
    background-color: #613B91 !important;
    color: #EFEFEF !important;
    text-shadow: none !important;
    outline: 1px solid #000 !important; 
}

a.excluir { 
    padding: 0 !important; 
    background-image: url('dwu.chamado.download?arquivo=trashcan.svg'); 
    background-size: 20px; 
    height: 22px; 
    width: 18px; 
    background-repeat: no-repeat; 
    background-position: 0; 
    position: absolute;
    right: 28px;
    top: 34px;
    cursor: pointer;
}
/*RETIRADO OS AFTER PARA TESTE*/
ul li.add a.button, ul li.definicoes a.auto_report.button {
  font-size: 18px;
  line-height: 30px;
  padding: 6px;
}

ul li.add a.add_interacao, ul li.add a.add_anexo, ul li.add a.add_interacao_prospecto{
  content: "ENVIAR";
}

ul li.add a.end_interacao {
  content: "CONCLUIR";
}

ul li.add a.reopen_interacao {
  content: "REABRIR";
}

ul li.add a.wait_interacao {
  content: "AGUARDAR";
}

ul li.add a.budget_interacao{
  content: attr(name);
}
/*----------------------------*/
ul li.add input {
  margin-right: 4px;
}

li.add select {
  height: 28px;
  margin-top: 4px;
}

li.add input {
  height: 22px;
  margin-top: 4px;
}
/*RETIRADO OS AFTER PARA TESTE*/
ul li.add a.exe_interacao {
  content: "EXECUTAR";
  font-size: 16px;
  line-height: 30px;
  padding: 6px;
}
/*--------------------------------*/
ul li.add a.chamado_upload img {
  height: 20px;
  margin: 4px;
}

ul li.add a.chamado_upload span {
  color: #333;
  font-size: 8px;
  line-height: 30px;
  float: left;
  text-indent: 4px;
}

ul#form {
  margin: 18px 0;
}

ul#form li {
  line-height: 30px; 
  min-height: 30px; 
  display: flex; 
  flex-wrap: wrap; 
  align-content: center;
}
input#prm_data{
  margin:0;
}

input[type="date"] {
  margin: 0 10px;
}

a#add_contato_prospecto, a#button_url, a#button_cadastro, a#button_prospecto, a#button, a#button_email, a#button_report, a#button_report_salvar,a#salvar_informacao, a#salvar_despesas { 
  color: #EFEFEF; 
  background-color: #665992; 
  padding: 10px 15px; 
  box-shadow: 0px 0 1px 1px #444; 
  cursor: pointer; 
  margin: 2px 19px; 
  float: left; 
  transition: background 0.1s linear;
  width: 120px;
  text-align: center;
  border-radius: 3px;
  font-size: 18px;
}

ul#top-menu li {
  padding: 0 6px;
  width: 176px;
}

/*ul#top-menu li:nth-child(2) { 
    display: none;
}

div#header:hover ul#top-menu li:nth-child(1) { 
    display: none;
}

div#header ul#top-menu li:nth-child(1) { 
    opacity: 0.8;
    margin: 0;
    position: absolute;
}*/

h2 {
  /*display: none;*/
  margin: 10px 0 0 10px;
  font-size: 34px;
  text-transform: uppercase;
  font-family: montserrat;
}

ul#lista {
  margin: 20px 10px 10px 0;
  display: flex;
  flex-flow: row wrap;
}

ul#lista li {
  flex-flow: column wrap;
  margin: 10px 20px;
  width: calc(50% - 40px);
  line-height: 26px;
  min-height: 58px;
  display: inline-flex;
  min-width: 900px;
}

ul#lista li span.desc, h2 {
  color: var(--white);
  text-transform: uppercase;
}

ul li span.input.red:after { 
  content: "*";
  font-size: 20px;
  position: absolute;
  color: #CC0000;
  right: 0;
  top: 6px; 
}

ul#lista li span.desc, ul li span.input {
  width: 100%;
}

ul#lista li span.combo {
  display: flex;
  color: #EFEFEF;
}

ul li span input, ul li span select, ul li span textarea {
  float: left;
  max-height: 140px;
  min-width: 240px;
  width: calc(100% - 20px);
  border-radius: 3px;
  border: 1px solid #777;
  padding: 6px 3px;
  box-shadow: 0px 2px 3px 0px #AAA inset;
}

ul li span.input div.modal {
  background-color: #FFF;
  width: 888px;
  font-weight: normal;
  border-radius: 2px;
  font-family: arial;
  resize: vertical;
  overflow: auto;
  max-height: 400px;
  min-height: 74px;
}

ul li span.input.red div.modal {
  box-shadow: 0 0 8px 0px #cc0000;
}

div#temp div.interacao ul li.add div.modal #pell-editor.red {
  box-shadow: 0px 0px 4px 2px #cc0000;
}

ul li span.input div.modal div.pell-content {
  box-shadow: 0px 0px 3px 0px #AAA inset;
}

ul li span select {
  height: 26px;
  margin-top: 2px;
  width: calc(100% - 10px);
  padding: 0;
}

ul li span textarea {
  min-height: 162px;
}

/*Forçando o anexo na interação do chat ficar com as medidas corretas*/
/*Botão anexo chat*/
a.anexo, .anexo{
  height: 22px !important;
  display: none;
  position: static !important;
  background: transparent !important;
  border:none !important;
  display: block !important;

}
.anexo::after { 
  content: attr(data-files) !important;
  position: relative !important;
  font-size: 10px !important;
}

/*Botão anexo aba NOVO CHAMADO*/
a#attach, .attach,  a#record { 
  opacity: 0.7; 
  cursor: pointer; 
  height: 26px; 
  float: left; 
  display: none; 
  position: absolute; 
  right: 12px;
  background: #67676722; 
  border-radius: 3px; 
  padding: 5px; 
  border: 1px solid #999; 
} 

a#attach, a#record { 
  display: inline; 
}

a#attach:hover, .attach:hover, a#record:hover { 
  opacity: 1; 
}

a#attach, .attach { 
  top: calc(100% - 54px);
  right: 30px;
}

iframe {
  display: none !important;
}

a.download_icon {
  height: 40px;
  flex-basis: 40px !important;
  text-align: center;
  background-color: #DEEEEE;
  border-radius: 3px;
  /*box-shadow: 0 0 2px 0 #777;*/
  margin-right: 10px;
  cursor: pointer; 
  display: flex;
  align-items: center;
}

a.download_icon:hover img {
  /*transform: scale(2.0);*/
}

a.download_icon img, a.download_icon svg {
    max-height: calc(100% - 12px);
    max-width:  100%;
    margin: 0 auto;
    height: 100%;
    transition: transform 0.2s linear 0.1s;
}

li.add a svg.remove { 
  float: left;
  height: 20px;
  width: 20px;
  cursor: pointer;
  padding: 2px;
  margin-right: 4px;
  margin-left: 4px;
  margin-bottom: 2px;
}


table tr th.data {
  width: 150px !important;
}

table tr td, table tr th {
  cursor: default;
  font-size: 14px;
  text-shadow: 0px 0px 2px #000;
  vertical-align: middle;
  border: 1px solid var(--preto-metal);
  padding: 10px 10px;
  flex-grow: 1;
  flex-basis: 20px;
  color: #FFF;
  background-color: #598BABDD;
}

table tr td:nth-child(4) {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 500px;
  white-space: nowrap;
}

table tr td:nth-child(2), table tr td:nth-child(3){
  width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 300px;
}

table tr td:first-child{
  width: 60px;
}

/*Quando o usuário for cliente não mostrar a coluna cliente e nem o filtro cliente*/
table.cliente tr td:nth-child(2), table.cliente tr th:nth-child(2), select#cliente.cliente {
  display: none;
}

table tr.ABERTO td {
  background-color: #56AA56DD;
}
table tr.ABERTO.PRE td {
  background-color: #4633d799;
}
table tr.ABERTO.VIA td {
  background-color: #fcff3899;
}
table tr.ABERTO.REM td {
  background-color: #6bff6e99;
}
table tr.ABERTO.FOL td {
  background-color: #ff383899;
}
table tr.ABERTO.FER td{
  background-color: #ff383899;
}
table tr.ABERTO.CON td{
  background-color: #ff8e2499;
}


.totalexec tbody tr td {
  width: initial;
}

div.interacao ul li.definicoes select {
  margin: 2px 10px 2px 4px;
}

div.interacao ul li > span { 
  white-space: pre-line; 
  flex-basis: 100%; 
  pointer-events: none;
}

a.refresh {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 44px;
  cursor: pointer;
  background-color: #EFEFEF55;
  padding: 4px;
  border-radius: 2px;
  top: 4px;
  z-index: 1;

}
a.logout {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 8px;
  cursor: pointer;
  background-color: #EFEFEF55;
  padding: 4px;
  border-radius: 2px;
  top: 4px;
  z-index: 1;

}

a.refresh * {
  pointer-events: none; 
}

h3 {
  line-height: 30px;
  text-align: center;
  font-family: var(--fonte-primaria);
  font-size: 20px;
  text-transform: uppercase;
  background-color: var(--white);
}

div.container {
  height: calc(100% - 34px);
  overflow-y: auto;
  background-color: var(--branco-primario);
  border-bottom: 2px solid var(--cinza-primario);
  border-top: 2px solid var(--cinza-claro-primario);
}

div.interacao, div.contato, div.uploadscreen { 
  z-index: 5; 
  display: none; 
  position: fixed; 
  left: calc(50% - 500px); 
  top: 50px; 
  background-color: #FFF; 
  border-radius: 3px; 
  height: calc(100% - 100px); 
  width: 1000px; 
  flex-flow: column;
}

div.interacao ul li, div.uploadscreen ul li { 
  display: flex; 
  display: -webkit-flex; 
  padding: 8px 6px; 
  border-top: none !important; 
  border-bottom: none !important; 
  align-items: center; 
  width: calc(100% - 12px) !important;
  margin: 0  !important;
  font-family: arial;
  font-weight: normal;
  overflow: auto;
}

div.interacao ul li.nome {
  width: auto !important;
  font-family: poppins;
}

div.interacao ul li.anexos {
  background-color: var(--white);
  padding: 0 6px !important;
  max-height: 120px;
}

ul li.anexos > span { 
  flex-basis: auto !important; 
  margin: 2px 2px 8px 2px; 
  padding: 2px; 
  white-space: normal !important; 
  font-size: 14px; 
  transition: border 0.1s linear; 
  pointer-events: all !important;
  border: 1px solid #777;
}

div.interacao.aberto::before, div.contato.aberto::before, div.uploadscreen.aberto::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cinza-escuro-primario);
  opacity: 0.5;
  z-index: -1;
}

@media print {

  div.interacao.aberto {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }

  div.interacao.aberto a.fechar {
    display: none;
  }

  div.interacao.aberto li.add {
    display: none;
  }

}

div.interacao ul.bubbles { 
  border-radius: 3px; 
  margin: 18px 6px 6px 6px; 
  color: #333; 
  text-shadow: 0px 0px 2px #FFF; 
}

.modal {
  width: 100%;
  max-height: 300px;
  display: block;
  border: 1px solid #333;
  margin-bottom: 10px;
}

.modal .pell-bar {
  max-height: 300px;
  min-height: 130px;
  display: block;
}

.modal div.pell-actionbar {
  margin: 0px;
  width: 100%;
  background-color: #FFF;
  border-bottom: 1px solid #CCC;
  z-index: 2;
  opacity: 0.8;
}

.modal .pell-bar button.pell-button {
  background: none;
  border: none;
  height: 26px;
  width: 26px;
  cursor: pointer;
  transition: all 0.1s linear;
  position: relative;
}

.modal .pell-bar button.pell-button-selected {
  background: var(--preto-metal);
  color: var(--white);
}

button.pell-button:before {
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  width: 16px;
  background-size: 12px;
  left: 7px;
  height: 16px;
  top: 2px;
}

button.pell-button[title="Justify Center"], button.pell-button[title="Justify Left"], button.pell-button[title="Font Size"] {
  font-size: 0;
}

button.pell-button[title="Justify Center"]:before {
  background-image: url(dwu.chamado.download?arquivo=centeralign.svg) !important;
  background-position: 0 6px;
  height: 100%;
}

button.pell-button[title="Justify Left"]:before {
  background-image: url(dwu.chamado.download?arquivo=leftalign.svg) !important;
  background-position: 0 6px;
  height: 100%; 
}

button.pell-button[title="Font Size"]:before {
  background-image: url(dwu.chamado.download?arquivo=fontsize.svg) !important; 
  background-position: 0 6px;
  height: 100%;
}

.modal #pell-output {
  display: none !important;
}

.modal .pell-content {
  height: calc(100% - 28px);
  padding: 6px;
  max-height: 260px;
  min-height: 130px;
}

ul li.anexos span a { 
  background-color: #FFF !important;
  margin: 2px;
}

ul li.anexos span a img {
  height: 100%;
}

@media all and (max-device-width: 800px) and (orientation: landscape) {

  table tr td, table tr th, ul#situacoes li.option {
    font-size: 12px;
  }

  table tr td.situacao, table tr th.situacao {
    display: none;
  }

  div.interacao.aberto {
    width: calc(100% - 20px);
    left: 10px;
    top: 10px;
    height: calc(100% - 20px);
  }

  div.modal {
    height: 100px;
  }

  li.anexos {
    display: none !important;
  }

  div.interacao ul li.add {
    flex-flow: row nowrap;
  }

  ul li.add a.button {
    height: 102px;
    margin: 0 2px 10px 4px;
    line-height: 108px;
  }

  a.chamado_upload {
    display: none !important;
  }

  div.interacao ul li.definicoes, div.uploadscreen ul li.definicoes {
    font-size: 11px;
  }

}  
/* report */

ul#lista li.single_line {
  flex-flow: row;
  width: 100%;
  line-height: 30px;
  min-height: 32px;
  height: 32px;
}

ul#lista li.single_line span {
  width: auto;
  min-width: 32px;
  margin-right: 6px;
}

ul#lista li.single_line span.input {
  margin-right: 30px;
}

ul#lista li.single_line span.input input {
  width: 50px;
  min-width: 50px;
}

ul#lista li.single_line span.checkbox { 
  width: 52px; 
  height: 28px; 
  background: var(--branco-primario); 
  float: right; 
  border-radius: 14px; 
  cursor: pointer; 
  display: flex;
}

span.checkbox.input.checked { 
  background-color: var(--verde-primario) !important; 
}

span.checkbox.input::after { 
  transition: background-color 0.1s linear; 
  content: ""; 
  padding: 0 !important; 
  float: none !important; 
  height: calc(100% - 4px); 
  margin: 2px; 
  width: 24px; 
  background: var(--cinza-claro-primario); 
  border-radius: 12px; 
  display: inline-block; 
  left: 0px; 
  position: relative; 
  transition: all 0.1s linear; 
}

span.checkbox.input.checked::after { 
  left: 24px; 
  background: var(--branco-primario);
}

ul#lista li span.input a {
  width: auto;
}

ul#lista li span.input a svg {
  width: 22px;
  height: 26px;
  float: right;

  pointer-events: none;
}

ul#lista li span.input a#button_report, ul#lista li span.input a#button_report_salvar {
  margin: 0 20px 0 0;
}

ul#lista li span.input a#button_report svg, ul#lista li span.input a#button_report_salvar svg {
  margin-left: 8px;
  fill: #FFF;
}

.invisible {
  display: none !important;
}

.visible {
  display: inline-flex !important;
}
/* LOGIN */

div#wall {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  background: linear-gradient(-45deg, #CCC, #439a32);
  height: 100%;
  width: 100%;
  top: 0;
  overflow: hidden;
  /**** TROCAR DEPOIS PARA O CAMINHO ASSETS*****/
  /*background-image: url(https://www.upquery.com/suporte/assets/img/slider/slide1.jpg);*/
  background-image:url(dwu.chamado.download?arquivo=fundo_chamado.png);
  
  background-repeat: no-repeat;
}

div.shake {
  animation: shake 0.3s normal linear 0s; 
  -webkit-animation: shake 0.3s normal ease 0s; 
}

div#qrcode img {
  width: 100%; 
  height: 100%; 
}

@keyframes shake { 
  0% { 
      margin: 0 0 0 10px; 
  } 25% { 
    margin: 0 10px 0 0; 
  } 50% { 
    margin: 0 0 0 10px; 
  } 75%  { 
    margin: 0 10px 0 0; 
  } 100% { 
    margin: 0; 
  } 
}

@-webkit-keyframes shake { 
  0% { 
    margin: 0 0 0 10px; 
  } 25% { 
    margin: 0 10px 0 0; 
  } 50% { 
    margin: 0 0 0 10px; 
  } 75% { 
    margin: 0 10px 0 0; 
  } 100% { 
    margin: 0; 
  } 
}

div#login-menu {
  /*background-color: rgba(250, 250, 250, 0.8);*/
  background-color: rgb(245, 245, 250, 0.8);
  width: 480px;
  position: absolute;
  left: calc(50% - 260px);
  top: calc(50% - 190px);
  text-align: center;
  box-shadow: 1px 1px 10px 1px #000;
  border-radius: 5px;
  padding: 20px;
  overflow: hidden;
}

div#login-menu a.dummy1 {
  background-image: url(dwu.chamado.download?arquivo=sinchronize.png);
  height: 0;
}

div#login-menu a.dummy2 {
  background-image: url(dwu.chamado.download?arquivo=unlock.svg);
  height: 0;
}



div#login-menu h1 {
  font-family: var(--fonte-primaria);
  font-size: 42px;
  margin: -20px -20px 60px -20px;
  color: var(--branco-primario);
  background-color: #665992;
  padding: 12px;
  border-radius: 2px 2px 0 0;
  /****TROCAR DEPOIS PARA BASE*****/
  background-image:url(dwu.chamado.download?arquivo=chamado_login.png);
  font-size: 0;
  height: 50px;
  background-position: center;
  /*background-size: 270px;*/
  background-repeat: no-repeat;
}

div#login-menu span.input-container {
  position: relative;
  display: block;
}

div#login-menu input.login-session {
  margin: 10px;
  width: calc(100% - 70px);
  display: inline-block;
  height: 40px;
  max-width: calc(100% - 70px);
  padding: 0 8px 0 34px;
  font-size: 18px;
  border: 1px solid #EEE;
  border-radius: 3px;
  font-family: var(--fonte-secundaria);
  color: var(--cinza-escuro-primario);
  box-shadow: none;
  transition: all 0.2s linear;
}

div#login-menu input.login-session:focus {
  box-shadow: var(--shadow);
}

div#login-menu input.login-session::placeholder {
  color: var(--cinza-claro-primario);
}

div#login-menu svg {
  height: 24px;
  width: 24px;
  position: absolute;
  left: 20px;
  top: 18px;
  fill: var(--cinza-primario);
  z-index: 1;
}

div#login-menu svg.reveal {
  cursor: pointer;
  left: auto; 
  right: 20px;
}

div#login-menu span.input-container a.link {
  font-size: 9px;
  float: right;
  margin-right: 14px;
  margin-top: -4px;
  font-family: var(--fonte-secundaria);
  letter-spacing: 1px;
  opacity: 0.5;
  cursor: pointer;
}

div#login-menu div#qrcode { 
  width: 210px; 
  height: 210px; 
  margin: 20px auto; 
  border: 1px solid #AAA; 
  border-radius: 3px; 
}

div#login-menu span#qrenviar { 
  /*padding: 0;*/
  width:   calc(100% - 30px);
  display: block;
  margin: 50px auto 20px auto;
  font-family: var(--fonte-primaria);
  font-size: 28px;
  cursor: pointer;
  color: #EEE;
  background-color: #665992;
  opacity: 0.8;
  border-radius: 2px; 
  height: 60px;
  line-height: 60px;
  transition: width 0.3s linear, border-radius 0.4s linear, padding 0.1s linear, background-color 0.2s linear;
}

div#login-menu.loading span#qrenviar, div#login-menu.logged span#qrenviar {
  width: 60px;
  border-radius: 34px;
  font-size: 0;
  transition: width 0.3s linear, border-radius 0.4s linear/*, padding 0.2s linear 0.3s*/;
  pointer-events: none;
}

div#login-menu.loading input.login-session, div#login-menu.logged input.login-session {
  pointer-events: none;
  background: var(--branco-primario);
  color: var(--cinza-claro-primario);
}

div#login-menu.logged span#qrenviar {
  /* cor do sistema principal */
  /*background-color: var(--verde-primario);*/
  background-color: #665992;
  box-shadow: var(--shadow), 4px -4px 10px 0px #665992, -4px 6px 10px 0px #665992, 4px 6px 10px 0px #665992, -4px -6px 10px 0px #665992;
}

div#login-menu span#qrenviar a {
  background-image: none;
  display: none;
  background-repeat: no-repeat;
  transition: all 0.6s linear;
  filter: brightness(9);
  height: inherit;
  width: 40px;
  background-size: 40px;

}

div#login-menu.loading span#qrenviar a {
  background-image: url(dwu.painel.download?arquivo=sinchronize.png);
  animation: spin 4s infinite normal linear 0s; 
  -webkit-animation: spin 4s infinite normal ease 0s; 
  background-position: 0 10px;
  display: inline-block;
}

div#login-menu.logged span#qrenviar a {
  background-image: url(dwu.painel.download?arquivo=unlock.svg);
  background-position: 0 8px;
  display: inline-block;
}

div#login-menu a.recover {
  font-size: 10px;
}

@media all and (max-device-width: 500px) and (orientation: portrait) {
  
  div#login-menu {
    background-color: rgba(250, 250, 250, 0.8);
    width: 480px;
    position: absolute;
    left: 3px;
    top: calc(50% - 190px);
    text-align: center;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: calc(100% - 6px);
  }

  div#login-menu h1 {
    margin: 0px 0px 36px 0;
  }

  div#login-menu span#qrenviar { 
    margin: 40px auto 20px auto;
  }

}

.invisible {
  display: none;
}

/*   selectboxjs   */

div.vsb-main {
  width: 400px;
}

div.vsb-main button {
  background: transparent !important;
  border: none !important;
  width: 400px;
  color: #000000;
  padding: 2px;
  font-size: 18px;
  font-family: 'Montserrat';
}

div.vsb-menu ul {
  width: 400px;
}

div.vsb-menu ul li {
  text-shadow: none;
}

/* pop */

div.unchained {
  position: absolute;
  box-shadow: var(--shadow);
  border: 2px solid #333;
}

div#pop input {

}
footer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  height: 40px;
  text-align: center;
  color: var(--branco-primario);
  line-height: 40px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--fonte-secundaria);
  font-size: 20px;
  background-color: var(--verde-primario);
  text-shadow: 0px 0px 1px #CC0000;
  /* border: 1px solid #777; */
  border-radius: 2px;
  /*opacity: 0.8;*/
  z-index: 10;
}

footer.highlight {
  padding: 4px 10px;
}

footer.red {
  background-color: var(--vermelho-secundario);
  opacity: 0.8;
}

#lista[data-page='novo'] #prm_descricao.modal {
  margin-bottom: 0px !important;
}
#mostrador-caractere {
  margin-top: -3px;
  font-size: 12px;
  color: #121111;
}
#mostrador-caractere .text{
  font-size: 12px;
  color: #121111;
  font-weight: semibold;
}
#mostrador-caractere.orange {
  color: #b3780e;
}
#mostrador-caractere.red{
  color: #e70202;
}

#aviso-prm_celular{
  display: none; 
  font-size: 13px; 
  color: black; 
  margin-left: 1px; 
  font-size: 12px; 
  font-weight: 500;
}
#prm_celular.erro + #aviso-prm_celular{display: block;}

/* Auto apontamento */

#temp li.definicoes .container_report{
  /* width: 100%; */
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
#temp li.definicoes .auto_report.button{
  min-width: 10em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 1px 4px;
}
#temp li.definicoes .auto_report.button.desativado{
  filter: opacity(0.7);
}
#temp li.definicoes .auto_report.button.apontando{
  position: relative;
}
#temp li.definicoes .auto_report.button.apontando::after{
  content: " ";
  background-color: rgba(255, 255, 255, 0.521);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
  animation: executando-chamado 1.5s infinite alternate ease-in-out;
} 
@keyframes executando-chamado {
  from{
    left: 0;
  }
  to{
    left: 100%;
  }
}

#lista .desc i{ font-style: normal; color: inherit;}