.cargando {
    border-top: 20px solid #3498db;
    border-right: 20px solid #2b2f40;
    border-bottom: 20px solid #2b2f40;
    border-left: 20px solid #3498db;
    border-radius: 50%;
     width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }

  .bg-light{
    background-color: white !important;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .contentCargando {
    height: 100%;
    right: 100%;
    display: flex;
    justify-content: center;
    
    align-items: center;
    flex-flow: column;
  }

  @media (max-width: 600px) {
   
  }