
body {
}

.colorLogo {
  background-color: white;
}

.centerleft {
  text-align: center;
}

.rightleft {
  text-align: right;
}

.chartApp {
  height: 300px;
}

.showElementApp {
    display: none;
}

.hideElementApp {
    display: block;
}

.mgtop{
    margin-top:0px;
}

.labesize {
    font-size: 14px;
}

.labesize13 {
    font-size: 15px;
}

.centerapp {
    text-align: left;
}

/*TABLA*/

table {
    width: 100%;
    border-collapse: collapse;
    color:black;
}
/* Zebra striping */
/*tr:nth-of-type(odd) {
    background: #eee;
}*/

/*th {
    background-color: #091a30;
    color: white;
    font-weight: bold;
}*/
thead tr{
  background-color:whitesmoke;
}

td, th {
  padding: 6px;
  text-align: left;
  color: black;
}

/*table tr:hover {
  background-color: #ddd;
}*/
/**/
tr {
  border: 1px solid #ccc;
  color: black;
}


.btn-flotante {
  font-size: 10px; /* Cambiar el tamaño de la tipografia */
  text-transform: uppercase; /* Texto en mayusculas */
  font-weight: bold; /* Fuente en negrita o bold */
  color: #ffffff; /* Color del texto */
  border-radius: 10px; /* Borde del boton */
  letter-spacing: 2px; /* Espacio entre letras */
  background-color: #258cc7; /* Color de fondo */
  padding: 10px 20px; /* Relleno del boton */
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
}


.buttonClose {
  border-radius: 50%;
  padding: 0.5em;
  width: 30px;
  height: 30px;
  border: 2px solid blue;
  color: blue;
  position: relative;
}


.button-80 {
  background: #fff;
  backface-visibility: hidden;
  border-radius: .375rem;
  border-style: solid;
  border-width: .120rem;
  box-sizing: border-box;
  color: rgb(0,19,92);
  cursor: pointer;
  display: inline-block;
  font-family: Circular,Helvetica,sans-serif;
  font-size: 1.105rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  padding: .875rem 1.125rem;
  position: relative;
  text-align: left;
  text-decoration: none;
  transform: translateZ(0) scale(1);
  transition: transform .2s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

  .button-80:not(:disabled):hover {
    transform: scale(1.05);
  }

    .button-80:not(:disabled):hover:active {
      transform: scale(1.05) translateY(.125rem);
    }

  .button-80:focus {
    outline: 0 solid transparent;
  }

    .button-80:focus:before {
      content: "";
      left: calc(-1*.375rem);
      pointer-events: none;
      position: absolute;
      top: calc(-1*.375rem);
      transition: border-radius;
      user-select: none;
    }

    .button-80:focus:not(:focus-visible) {
      outline: 0 solid transparent;
    }

      .button-80:focus:not(:focus-visible):before {
        border-width: 0;
      }

  .button-80:not(:disabled):active {
    transform: translateY(.125rem);
  }


/*RESPONSIVO PARA APP*/
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {

  canvas {
    height: 200px;
    width: 200px;
  }

  .colorLogo {
    background-color: transparent;
  }

  .centerleft {
    text-align: left;
  }

  .rightleft {
    text-align: left;
  }

  .chartApp {
    width: 150px;
    height: 150px;
  }

    .pagination {
        font-size: 13px;
    }
    .centerapp {
        text-align: center;
    }
    .labesize13 { font-size: 13px; }

    .labesize {
        font-size: 12px;
    }

    .mgtop {
        margin-top: 15px;
    }

    .titulodash {
        font-size: 13px;
    }

    .showElementApp {
        display: block;
    }

    .hideElementApp {
        display: none;
    }


    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
        font-size:12px;
        background-color:transparent;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    tr {
        border: 1px solid #ccc;
        margin-bottom:10px;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

      td:before {
        content: attr(data-label);
        
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        font-weight: bold;
      }

}


/*2-  @media screen and (max-width: 600px) { */
