#anterior{
    display: block;
    position: absolute;
    left: 52.5%;
    top: 50%;
    width: 230px;
    height: 230px;
    margin: -90px 0 0 -45px;
    z-index: 15;
    background-image: url('../../assets/img/illustrations/Logo_minimalista_Blanco.png');
    background-repeat: no-repeat;
    background-position: center;
    animation: zoom 2s infinite;
  }
  #cargaM-wrapper {
    position: fixed;
    top: -7%;
    left: -18%;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
  }

  #cargaM {
    display: block;
    position: relative;
    left: 62.5%;
    top: 51%;
    width: 180px;
    height: 180px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #0d6efd;
    -webkit-animation: spin 2s linear infinite;
            animation: spin 2s linear infinite;
    z-index: 99999999;
    
  }
  #cargaM:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #032855;
    -webkit-animation: spin-reverse 1s linear infinite;
            animation: spin-reverse 1s linear infinite;
  }
  #cargaM:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #0d6efd;
    -webkit-animation: spin 1.4s linear infinite;
            animation: spin 1.4s linear infinite;          
  }

  #cargaM-wrapper .cargaM-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
  
    z-index: 99999;
  }

  .nod{
    display: none;
  }
  
  .wrapper {
    width: 20%;
    margin: 2em auto 0;
  }
    

  @keyframes zoom {
    0% {
      transform: scale(0.3); /* Escala inicial */
    }
    50% {
      transform: scale(0.25); /* Zoom in al 50% de la animación */
    }
    100% {
      transform: scale(0.3); /* Escala inicial */
    }
  }
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @-webkit-keyframes spin-reverse {
    0% {
      -webkit-transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(-360deg);
    }
  }
  @keyframes spin-reverse {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }

  .boton-flotante {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 500;
    box-shadow: 0 1px 20px 1px #aaaaaa !important;
  }
  .modal-content {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .btn-primary {
    /*padding: 0.75rem 2rem;*/
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2) !important;
  }
  
  .progress {
    border-radius: 10px;
    background-color: #e9ecef;
  }
  
  .progress-bar {
    border-radius: 10px;
    background-image: linear-gradient(45deg, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
  }

  .animate-loading-bar {
    animation: loading-bar 2s ease-in-out infinite;
  }

  @media (max-width: 994px) {
    .pad-top {
      margin-top: 3rem;
    }
  }

   @media (min-width: 1400px) {
    .container-res{
      padding: 0 7%;
    }
  }
 