/*-----------------------------------------------------------------------------
CONFIGURACIÓN DE CAJA DE DIALOGO CONFIRMACIÓN  
-----------------------------------------------------------------------------*/
.dialogCONFIRM { /* CAJA DE CONFIRMACIÓN */
    top: 50% !important;
    left: 50% !important;
    font-family: Roboto;
    font-size: 16px;
    display: none;
    margin-top: -90px;
    margin-left: -175px;    
}

.confirmMODAL {
  position: fixed;
  z-index: 50000;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.5);
}

.confirmTEXT { /* TEXTO DE LA CAJA DE CONFIRMACIÓN */
    position: absolute;
    top: 60px;
    width: 94%;
    text-align: center;
}

.confirmBUTTONS { /* BOTONES DE LA CAJA DE CONFIRMACIÓN */
    position: absolute;
    bottom: 17px;    
    width: 94%;
    display: flex;
    justify-content: center;
}

.confirmBUTTONS button {
    width: 90px;
    margin: 5px;
}

/*-----------------------------------------------------------------------------
CONFIGURACIÓN DE CAJA DE DIALOGO INFORMACIÓN
-----------------------------------------------------------------------------*/
.dialogINFO { /* CAJA DE INFORMACIÓN */
    top: 50% !important;
    left: 50% !important;
    font-family: Roboto;
    font-size: 16px;
    display: none;
    margin-top: -90px;
    margin-left: -225px;    
}

.infoMODAL {
  position: fixed;
  z-index: 50000;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.5);
}

.infoTEXT { /* TEXTO DE LA CAJA DE INFORMACIÓN */
    position: absolute;
    top: 60px;
    width: 94%;
    text-align: center;
}

.infoBUTTONS { /* BOTONES DE LA CAJA DE INFORMACIÓN */
    position: absolute;
    bottom: 17px;    
    width: 94%;
    display: flex;
    justify-content: center;
}

.infoBUTTONS button {
    width: 90px;
    margin: 5px;
}

