* {
  /* font-family: "Roboto", "Segoe UI", Verdana, Tahoma, sans-serif; */
  font-family: "Helvetica Neue", "Segoe UI", helvetica, verdana, sans-serif;
  /**Padrão DevExtreme*/

  user-select: none;
  /* supported by Chrome and Opera */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
}

@font-face {
  font-family: 'whatsapp-emoji';
  src: URL('../fonts/whatsapp-emoji.ttf') format('truetype');
}

.dx-cell-focus-disabled {
  user-select: none;
}

/**Icones Coloridos*/
.fa-file-invoice-dollar {
  color: #5f8ff4 !important;
}

.fa-cart-shopping {
  color: #d62118 !important;
}

/***********/

.is-response-ia {
  max-width: 900px;
}

/*
.is-response-ia h1 h2 h3 {
  font-size: 1rem;
}

.is-response-ia p {
  padding-bottom: 5px;
}
*/

/**https://engineering.payoneer.com/integrating-css-gradient-into-font-awesome-icons-a3cc20bdd0fa */
.is-fontawesome-gradient-normal {
  background: -webkit-gradient(linear, -25% -25%, left bottom, from(#eee), to(#30a4c0));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.is-fontawesome-gradient-danger {
  background: -webkit-gradient(linear, -25% -25%, left bottom, from(#eee), to(#dc2828));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.is-fontawesome-gradient-success {
  background: -webkit-gradient(linear, -25% -25%, left bottom, from(#eee), to(#19914b));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.is-icon-color-silver {
  color: #939497 !important;
}

.is-nohover.dx-state-hover {
  background-color: unset !important;
}

/*Pra pegar a fonte dos emojis da div*/
.emoji-whatsapp-content * {
  font-family: "Roboto", "Segoe UI", whatsapp-emoji, Verdana, Tahoma, ui-sans-serif;
}

.noselect {
  user-select: none;
  /* supported by Chrome and Opera */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
}

body {
  padding: 0;
  margin: 0;
  background: #ffffff;
  background-size: cover;
  height: 100%;
  overflow: hidden;

  -webkit-transition: background-color 2s;
  transition: background-color 2s;
}

.is-statusbar {
  border-radius: 0px !important;
}

.is-tab-mdi>.dx-tabs-wrapper {
  flex-basis: 0 !important;
}

.is-input-font-3em input {
  font-size: 3em !important;
}

.dx-context-menu .dx-menu-item .dx-menu-item-content {
  /* margin: 2.5px !important; */
  margin: 5px !important;
}

/**Pra não ficar com Scrool nos Popupus (isso pode ser controlado no ElementContent tbm)*/
.dx-popup-flex-height>.dx-popup-content.dx-popup-content-scrollable {
  overflow: hidden !important;
}


/*
Esta ruim no painel de pesquisa
.dx-tagbox.dx-editor-filled .dx-tag-container,
.dx-tagbox.dx-editor-outlined .dx-tag-container {
  -webkit-padding-start: 0 !important;
  padding-inline-start: 0 !important;
} */

/**Ajuste pra borda de cima da grade que não aparece*/
.dx-datagrid-borders .dx-datagrid-rowsview,
.dx-datagrid-headers+.dx-datagrid-rowsview,
.dx-datagrid-rowsview.dx-datagrid-after-headers {
  border-top: 1px solid var(--is-cor-borda) !important;
}

/**Nos temas novos esta muito grande o espaço sem utilização*/
.dx-scheduler-work-space.dx-scheduler-work-space-month .dx-scheduler-appointment-content {
  padding: 1px !important;
}

.dx-tagbox.dx-tagbox-default-template.dx-tagbox-only-select .dx-texteditor-input {
  width: 0 !important;
}

.dx-datagrid-rowsview {
  border-top: 0 !important;
}

/**Testado no Modo Semana, Dias e Dias Uteis*/
.dx-scheduler-appointment-content {
  padding: 3px !important;
}

/**No tema fluent esta fico 24px*/
.dx-button {
  height: auto;
  /* min-height: 24px; */
  min-height: 22px !important;
}

/**No tema fluent fica grande*/
.dx-layout-manager .dx-field-item {
  padding-bottom: 0px !important;
}

/**No tema fluent fica grande*/
.dx-field-item-label-location-top {
  margin-bottom: 1px !important;
}

/**No tema fluent esta fico 24px*/
.dx-button-content {
  line-height: normal !important;
  ;
}

.is-progressbar {
  /* background-color: var(--is-cor-fundo); */
  padding: 3px;
  position: relative;
}

.is-progressbar>div {
  /* background-color: var(--is-cor-fundo-destaque); usar o  */
  /*width: 95%; Adjust with Style*/
  min-height: 16px;
  border-radius: 3px;
}

.is-progress-bar-indeterminate {
  height: 4px;
  /* background-color: rgba(5, 114, 206, 0.2); */

  overflow: hidden;

  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border-radius: 5px;
  margin: 2.5px;
}

.is-progress-bar-indeterminate-background {
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.is-progress-bar-indeterminate-value {
  width: 100%;
  height: 100%;
  background-color: rgb(5, 114, 206);
  animation: progressBarIndeterminateAnimation 1.5s infinite linear;
  transform-origin: 0% 50%;
  border-radius: 5px;
}

@keyframes progressBarIndeterminateAnimation {
  0% {
    transform: translateX(0) scaleX(0);
  }

  40% {
    transform: translateX(0) scaleX(0.3);
  }

  100% {
    transform: translateX(100%) scaleX(0.5);
  }
}

@media screen {
  body {
    visibility: visible;
  }

  .imprimirPDF {
    visibility: hidden;
  }
}

@media print {
  body {
    visibility: hidden;
  }

  .imprimirPDF {
    visibility: visible;
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
  }
}

@media (prefers-color-scheme: light) {
  body {
    /*Assim pode ter um plano de fundo pro dark e pro ligth*/
    background-image: url("/../../imagens/backgrounds/background3.png");
    background-position: bottom;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    color: #eeeeee;
    background-color: #1e1e1e;

    /*Assim pode ter um plano de fundo pro dark e pro ligth*/
    background-image: url("/../../imagens/backgrounds/background3.png");
    background-position: bottom;
  }
}

/*Pra cobrir todo o espaço no menu*/
/* .dx-dropdownbutton {
  display: block;
  height: 30px;
} */

/* .dx-toolbar-menu-section .dx-toolbar-item-auto-hide {
  padding: 0px 10px;
} */

/*
Compensado nos css novos
.dx-field-button-item {
  margin-top: 10px;
} */

.dx-scheduler-header .dx-toolbar .dx-toolbar-item-content,
.dx-scheduler-header .dx-toolbar .dx-toolbar-menu-container {
  padding: 0 !important;
}

/**Nos temas do Fluent é muito grande, 9px*/
/* .dx-datagrid .dx-datagrid-table .dx-header-row>td { */
/* padding-top: 5px !important; */
/* padding-bottom: 5px !important; */
/* } */

/**Nos temas do Fluent é muito grande, 36px*/
/* .dx-editor-cell .dx-texteditor .dx-texteditor-input { */
/* height: 30px !important; */
/* } */

/**Nos temas do Fluent é muito grande, margin-top: 6px height: 36px*/
/* .dx-datagrid .dx-menu { */
/* margin-top: 0px !important; TESTANDO */
/* height: -webkit-fill-available !important; TESTANDO*/
/* } */

.group-is-featured .dx-form-group-with-caption .dx-form-group-content {
  padding: 3px;
  border-radius: 5px;
  background-color: var(--is-cor-fundo);
}

.group-is-featured .dx-form-group-with-caption {
  padding: 3px;
  border-radius: 5px;
  border: 1px solid var(--is-cor-borda);
  background-color: var(--is-cor-fundo-destaque);
}

.group-is-featured-fluent .dx-form-group-with-caption .dx-form-group-content {
  padding: 3px;
}

.group-is-featured-fluent .dx-form-group-with-caption {
  padding: 3px;
  border-radius: 5px;
  border: 1px solid var(--is-cor-borda);
  background-color: var(--is-cor-fundo-destaque);
}

.dx-dialog-content {
  max-width: 90vh !important;
  max-height: 80vh !important;
  overflow: auto;
}

*::-webkit-scrollbar {
  width: 12px;
  /* width of the entire scrollbar */
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: var(--is-cor-scroll-track);
  /* color of the tracking area */
}

*::-webkit-scrollbar-thumb {
  background-color: var(--is-cor-scroll-background);
  /* color of the scroll thumb */
  border-radius: 20px;
  /* roundness of the scroll thumb */
  border: 3px solid var(--is-cor-scroll-track);
  /* creates padding around scroll thumb */
}

*::-webkit-scrollbar-corner {
  background: var(--is-cor-scroll-track);
}

/*Esta 14px, mas o icone font-awesome fica ruim*/
.dx-menu-base .dx-icon {
  font-size: unset;
}

.dx-scheduler-appointment {
  border-radius: 5px;
  opacity: 0.75;
  /*Só pra dar uma suavizada na cor*/
}

/*Deixar mais Mac*/
.dx-popup-wrapper>.dx-overlay-content {
  box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 20%);
}

/*Para itens que devem ser visiveis só com hover, o elemento pai deve estar com a class .is-visible-only-in-hover-painel e o que for manipulado .is-visible-only-in-hover*/
.is-visible-only-in-hover {
  visibility: hidden;
  opacity: 0;
  scale: 0.75;
  transition:
    opacity 0.5s 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    scale 0.5s 0.5s cubic-bezier(0.68, -0.55, 0.27, 2);
}

.is-visible-only-in-hover-panel:hover .is-visible-only-in-hover {
  visibility: visible;
  opacity: 1;
  scale: 1;
}

.is-opacity-hover {
  opacity: 0.2;
}

.is-opacity-hover:hover {
  opacity: 1;
}

.is-opacity-hover-50 {
  opacity: 0.2;
}

.is-opacity-hover-50:hover {
  opacity: 1;
}

.dx-icon-help-parent .dx-icon-help {
  opacity: 0.5;
}

.dx-icon-help-parent:hover .dx-icon-help {
  opacity: 1;
}

/*Pra Animar Elementos dentro do Parent, pra funcionar tem que ter width e height*/
.is-move-left-right-in-hover {
  left: -100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.is-move-left-right-in-hover-panel:hover .is-move-left-right-in-hover {
  left: 0px;
  opacity: 1;
}

/***************************************/

/*Pra Animar Elementos dentro do Parent, pra funcionar tem que ter width e height*/
.is-move-right-left-in-hover {
  right: -100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.is-move-right-left-in-hover-panel:hover .is-move-right-left-in-hover {
  right: 0px;
  opacity: 1;
}

/***************************************/

/*Pra Animar Elementos dentro do Parent, pra funcionar tem que ter width e height*/
.is-move-bottom-top-in-hover {
  bottom: -100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.is-move-bottom-top-in-hover-panel:hover .is-move-bottom-top-in-hover {
  bottom: 0px;
  opacity: 1;
}

/***************************************/

/*Pra Animar Elementos dentro do Parent, pra funcionar tem que ter width e height*/
.is-move-top-bottom-in-hover {
  top: -100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.is-move-top-bottom-in-hover-panel:hover .is-move-top-bottom-in-hover {
  top: 0px;
  opacity: 1;
}

/***************************************/

/*Pra cortar a imagem caso estrapole as margens*/
.dx-menu-item.dx-menu-item-has-text .dx-icon {
  overflow: hidden;
}

*,
input,
button {
  margin: 0;
  outline: 0;
}

video {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

footer>div>div {
  padding: 3px;
  padding-right: 10px;
  flex-flow: nowrap;
}

.form-item-padding-top-3 {
  padding-top: 3px !important;
}

/**Deixar a do tema, fica mais bonito
/* .dx-popup-content {
  padding: 5px !important;
} */

.dx-tileview-wrapper>.dx-empty-message {
  /* text-align: center; */
  /* padding-top: 50px; */
  /* padding-top: 15%; */
  /* left: calc(50% - 27px); */
  position: absolute;
  top: 50%;
  opacity: 0.7;
  font-size: 14px;
  text-align: center;
  width: 100%;
}

.is-button-float-36 {
  width: 36px;
  height: 36px;
}

.is-text-middle {
  vertical-align: middle !important;
}

.is-button-wrap-text>.dx-button-content {
  white-space: pre-wrap !important;
  line-height: 1.5em !important;
}

/*Desktop*/
@media (min-width: 961px) {
  .glass {
    backdrop-filter: blur(25px);
  }

  /* Now all the acrylic layer is just only one class! */
  .acrylic {
    /* Parent background + Gaussian blur */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* Exclusion blend */
    background-blend-mode: exclusion;
    /* Tiled noise texture */
    background-image: url(data:image/png;base64,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);
  }
}

.icone_tab {
  vertical-align: middle;
  padding: 4px;
}

/**Não lembro pq fixei assim, mas esta sobre o input nos temas novos (fluent)*/
/* .dx-menu-base .dx-menu-item-content {
  padding: 5px 10px 5px 10px !important;
} */

/**Versão 23.3 vem com fixo 24px nos dx-button, mas nos edits é menor*/
.dx-texteditor .dx-texteditor-buttons-container>.dx-button {
  height: 100%;
}

/**Versão 23.3 vem com fixo 10px 11px nos outros temas vem menor*/
/* .dx-datagrid .dx-row>td { */
/* padding: 6px 5px !important; TESTANDO */
/* } */

/* .dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row>td:not(.dx-validation-pending):not(.dx-datagrid-select-all) { */
/**padding: 6px 5px !important;  /*TESTANDO*/
/* } */

.menu {
  background-color: #343547;
  padding: 5px;
}

.menu .dx-menu-item-popout {
  color: #fff;
}

.menu .dx-menu-item-text {
  color: #fff;
}

.dx-menu-item-has-icon {
  /**Trabalha junto com o dx-menu-item-has-text*/
  padding-left: unset !important;
}

.dx-menu-item-has-text {
  /**Trabalha junto com o dx-menu-item-has-icon*/
  padding-left: 20px;
}

/**Roleta do CRM*/
.roulette {
  font-family: "Work Sans", sans-serif;
  display: block;
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  margin-top: -250px;
  margin-left: -250px;
}

.roulette .shadow {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: 0 0.3em 0 rgba(0, 0, 0, 0.25) inset;
}

.roulette .markers {
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  overflow: hidden;
  border-radius: 100%;
}

.roulette .markers .marker {
  position: absolute;
  width: 0;
  height: 0;
  top: -250px;
  left: 250px;
  transform-origin: 0% 500px;
  border: 0 solid transparent;
}

.roulette .markers .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1em 0 1em 1em;
  border-color: transparent transparent transparent #007bff;
  position: absolute;
  border-left-color: #FFF;
  top: 50%;
  left: -1px;
  margin-top: -1em;
  filter: drop-shadow(0 0.25em 0 rgba(0, 0, 0, 0.25));
}

.roulette .spinner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  overflow: hidden;
  transform: rotateZ(0deg);
  /*performance boost*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.roulette .spinner .item {
  position: absolute;
  width: 0;
  height: 0;
  top: -250px;
  left: 250px;
  transform-origin: 0% 500px;
  border: 0 solid transparent;
}

.roulette .spinner .item .label {
  display: block;
  position: absolute;
  color: #FFF;
  font-weight: 800;
  top: 0;
  left: 0;
  white-space: nowrap;
  transform-origin: 0 0;
  font-size: 0.8em;
}

.roulette .spinner .item .label i,
.roulette .spinner .item .label .text {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-size: 1em;
  text-indent: 0;
}

.roulette .spinner .item .label i {
  margin-right: 0.1em;
}

.roulette .button {
  width: 10em;
  height: 10em;
  line-height: 10em;
  top: 50%;
  left: 50%;
  margin-left: -5em;
  margin-top: -5em;
  font-weight: 800;
  z-index: 998;
  position: absolute;
  background: #FFF;
  border: none;
  border-radius: 100%;
  color: #999;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: 0 0.4em 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  transition: transform 0.15s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.roulette .button:hover {
  color: inherit;
}

.roulette .button span {
  font-size: 1.6em;
  letter-spacing: -0.05em;
}

.roulette.busy .button {
  transform: scale(0.9);
  box-shadow: 0 0.15em 0 rgba(0, 0, 0, 0.25);
  color: #999;
  cursor: default;
}

/* CUSTOM LABELS */
.roulette .spinner .item[data-type=quiz] .label {
  font-size: 1.5em;
}

.roulette .spinner .item[data-type=question] .label {
  font-size: 1.3em;
  font-weight: 600;
}

.roulette .spinner .item[data-type=replay] .label .text {
  font-size: 0.6em;
  /* white-space: initial; */
  white-space: wrap;
  width: 1em;
  text-align: center;
  line-height: 1.2;
}

.roulette .spinner .item[data-type=replay] .label i {
  font-size: 1.5em;
}

.roulette .spinner .item[data-type=time] .label i {
  font-size: 1.5em;
}

.dx-slider-wrapper {
  height: unset !important;
}

/**Loader Simples*/
.is-loader {
  display: block;
  position: relative;
  height: 12px;
  width: 80%;
  border: 1px solid var(--is-cor-borda);
  border-radius: 10px;
  overflow: hidden;
}

.is-loader::after {
  content: '';
  width: 40%;
  height: 100%;
  background: var(--is-cor-botao-success);
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  animation: is-animloader 2s linear infinite;
}

.is-loader-error {
  display: block;
  position: relative;
  height: 12px;
  width: 80%;
  border: 1px solid var(--is-cor-borda);
  border-radius: 10px;
  overflow: hidden;
}

.is-loader-error::after {
  content: '';
  width: 40%;
  height: 100%;
  background: var(--is-cor-botao-danger);
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  animation: is-animloader 2s linear infinite;
}

@keyframes is-animloader {
  0% {
    left: 0;
    transform: translateX(-100%);
  }

  100% {
    left: 100%;
    transform: translateX(0%);
  }
}

/*Tem que estar no fim do arquivo css pra fazer efeito, pois acima tem o .dx-button*/
.is-sem-altura {
  height: unset !important;
  min-height: unset !important;
}

/* quando tem um grupo com visible false entre 2 linhas, fica com um espacinho feio */
.dx-layout-manager .dx-field-empty-item {
  height: 0;
}