.full{
  width: 100%;
  margin-top: 3px;
}

.ico-pesquisa{
  font-size: 25px;
}

.ico-pesquisa:hover{
  cursor: pointer;
}

.ico-active{
  color: #E3C446;
}

.info-plan:hover{
  cursor: pointer;
}

.pulse-button {
  position: relative;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.pulse-button:hover
{
  -webkit-animation: none;-moz-animation: none;-ms-animation: none;animation: none;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #009192;
  font-size: 10px;
  margin: 0px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
.loader-cancelar{
  color: red;
  font-size: 5px;
}

.loader-correcao{
  color: blue;
  font-size: 5px;
}

.loader-pagamento{
  color: #52B99A;
  font-size: 8px;
}

@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

@keyframes fadebarcode {
  from {opacity: 0;}
  to {opacity: 1;}
}

.mousetrap{
  width: 0;border:none;outline:none;background: #f3f6f9;
  position: relative;
}
#mousetrapTitle{
  position: absolute;
  top: -26px;
  left: 16px;
  color: green;
  background-color: #fff;
  box-shadow: 0 0 5px #fff;

  display: none;
  align-items: center;
  gap: 3px;
}

.pr-2{
  background:#F3F6F9;
  border: 1px solid #ccc;
  border-radius: 2px;
  height: 35px;
}


.mousetrap:focus{
  border:none;outline:none;border-right: 3px solid #000;
  animation: fadebarcode .5s infinite ease-in-out;
}

.select-disabled {
  pointer-events: none;
  background: #E3E6E8 !important;
}

/* ============================================
   FIX RESPONSIVE LAYOUT - Menu Lateral
   ============================================ */

/* Garante que a página use flexbox corretamente */
.d-flex.flex-column.flex-root {
  min-height: 100vh;
}

.page {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  min-height: 100vh;
}

/* Wrapper deve crescer para preencher espaço */
.wrapper {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Header se adapta */
.header {
  flex-shrink: 0;
}

/* Conteúdo principal expande para preencher espaço */
#kt_content {
  flex: 1;
  overflow: auto;
}

/* Em mobile, o aside se esconde e o wrapper toma todo espaço */
@media (max-width: 768px) {
  .aside {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1000;
    width: 250px;
  }

  /* Quando aside está minimizado em mobile */
  .aside-minimize .aside {
    margin-left: -250px;
    transition: margin-left 0.3s ease;
  }

  /* Garante que wrapper usa a largura total */
  .page {
    position: relative;
  }

  .wrapper {
    width: 100%;
  }

  /* Se o aside está oculto, wrapper ocupa 100% */
  body.aside-hidden .wrapper {
    margin-left: 0;
    width: 100%;
  }

  /* Content também se expande */
  #kt_content {
    flex: 1;
    width: 100%;
  }
}

@media (max-width: 576px) {
  /* Devices muito pequenos */
  .wrapper {
    width: 100%;
  }

  .aside {
    width: 200px;
  }

  #kt_content {
    flex: 1;
    width: 100%;
  }
}

/* Override de classes Metronic para responsividade */
body.aside-enabled.aside-fixed {
  display: flex;
  flex-direction: column;
}

body.aside-enabled.aside-fixed .d-flex.flex-column.flex-root {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

body.aside-enabled.aside-fixed .d-flex.flex-row.flex-column-fluid.page {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  gap: 0;
}

body.aside-enabled.aside-fixed .d-flex.flex-column.flex-row-fluid.wrapper {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Garantir que content área não tem padding que quebra flex */
body.aside-enabled.aside-fixed .wrapper > div,
body.aside-enabled.aside-fixed #kt_content {
  width: 100%;
}

/* Em tablets e mobile, sidebar fica flutuante */
@media (max-width: 991px) {
  body.aside-enabled.aside-fixed .aside-fixed {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1000;
  }

  body.aside-enabled.aside-fixed .page {
    position: relative;
    width: 100%;
  }

  body.aside-enabled.aside-fixed .wrapper {
    width: 100%;
    margin-left: 0;
  }
}


