@media screen and (min-width: 768px) {

  /* Tamaño del scroll */
  *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  /* Estilos barra (thumb) de scroll */
  *::-webkit-scrollbar-thumb {
    background: #ccc;
    /*background: #f39c12;//naranja*/
    border-radius: 4px;
  }

  *::-webkit-scrollbar-thumb:active {
    background-color: #999999;
  }

  *::-webkit-scrollbar-thumb:hover {
    /* background: #b3b3b3; */
    background: #ff7f30;
    /*naranja*/
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  }

  /* Estilos track de scroll */
  *::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 4px;
  }

  /* *::-webkit-scrollbar-track:hover, *::-webkit-scrollbar-track:active {
    background: #d4d4d4;
  } */
}

.custom-height {
  min-height: 15vh;
  max-height: 80vh
}

.header-fixed thead th{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1
}

/* safari and ios need the tfoot itself to be position:sticky also */
/*.header-fixed tfoot,
.header-fixed tfoot td, */
.header-fixed tfoot th{
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index:1;
}

.toast-container {
  z-index: 9999;
}

input, textarea {
  text-transform: uppercase;
}

input[type='email'] {
  text-transform: lowercase;
}

input[type='password'] {
  text-transform: none;
}