.formPagoPapeleta .form-select,.form-control{
    font-size: 12px !important;
}

.formPagoPapeleta .form-label,.form-check-label{
    color: gray;
}

.form-control::placeholder { 
  color: #8888;
  opacity: 1;
}

.form-control:focus {
  outline: none !important;
  box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}



.mensaje-error {
    font-size: 15px;
    color: red;
    display: none;
}
.error{
    font-size: 10px;
    color: red;
    display: none;
}
.text-muted {
    color: #999 !important;
  }
  
  .bs-tooltip {
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
  }
  
  .bs-tooltip-top {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
  }

  #formDatos{
    position: relative; 
  }
  .texto-carga {
    position: fixed;
    z-index: 9999;
    top: 50%; /* Centrado verticalmente */
    left: 52%; /* Centrado horizontalmente */
    transform: translate(-50%, -50%); /* Centrado absoluto */
    text-align: center;
    color: white;
    margin-top: 100px; /* Espaciado desde el centro */
    display:none;
    font-size: 20px;
}

  h1{
    margin: 20px auto;
    color: orange;
    text-align: center;
    text-transform: uppercase;
  }
  
  .dad-spinner{
      position: fixed;
      z-index: 9998;
      top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    display: none;
  }
   .spinner {
    position: fixed; /* Posición fija en relación con la ventana del navegador */
    top:50%;
    left:50%;
    height:60px;
     width:60px;
     z-index: 9999;
    /* Estilos del spinner en el centro de la página */
    display: none; /* Oculta el spinner por defecto */
    border:6px solid rgba(0,0,0,.2);
     border-radius:100%;
     transform: translate(-50%, -50%);
     -webkit-animation: rotation 1s infinite linear;
     -moz-animation: rotation 1s infinite linear;
     -o-animation: rotation 1s infinite linear;
     animation: rotation 1s infinite linear;
  }
  .spinner:before {
      box-sizing:content-box !important;
     content:"";
     display:block;
     position:absolute;
     left:-6px;
     top:-6px;
     height:100%;
     width:100%;
     border-top:6px solid rgba(0,0,0,.8);
     border-left:6px solid transparent;
     border-bottom:6px solid transparent;
     border-right:6px solid transparent;
     border-radius:100%;
  }
  
  @-webkit-keyframes rotation {
     from {-webkit-transform: rotate(0deg);}
     to {-webkit-transform: rotate(359deg);}
  }
  @-moz-keyframes rotation {
     from {-moz-transform: rotate(0deg);}
     to {-moz-transform: rotate(359deg);}
  }
  @-o-keyframes rotation {
     from {-o-transform: rotate(0deg);}
     to {-o-transform: rotate(359deg);}
  }
  @keyframes rotation {
     from {transform: rotate(0deg);}
     to {transform: rotate(359deg);}
    }