#popup_message {
    color: #1f2325;
}

.btn-file {
    position: absolute;
    height: 42px;
    padding: 9px 3px;
    background-color: #e9ecef !important;
    color: #555 !important;
    border: solid 1px #ccc;
    border-top-right-radius: inherit;
    border-bottom-right-radius: inherit;
}

::-webkit-file-upload-button {
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    height: 40px;
    width: 27px;
}

.file-input {
    border: 1px solid #E3E3E3;
    border-radius: 4px;
    width: 100%;
}

.carga {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carga-content {
    text-align: center;
    color: white;
    font-size: 180px;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  .carga i {
    animation: spin 2s linear infinite; /* Duración de 2 segundos para una vuelta completa */
  }