/* fallback */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/materialicons/v143/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
  }
  
  .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }
  .modal-espera{
      width: 100%;
      height: 100%;
      background-color: #013a6194;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      position: fixed;
  }.card-modal-espera{
      width: 100%;
      height: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: transparent;
      
  }
  .spinner-box {
      width: 300px;
      height: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: transparent;
    }
  
    .three-quarter-spinner {
      width: 50px;
      height: 50px;
      background: transparent;
      border: 3px solid #49b3fb;
      border-top: 3px solid transparent;
      border-radius: 50%;
      animation: spin .5s linear 0s infinite;
    }
    /* KEYFRAMES */
  
  @keyframes spin {
    from {
      transform: rotate(0);
    }
    to{
      transform: rotate(359deg);
    }
  }
  
  .success-animation { margin:150px auto;}
  
  .checkmark {
    width: 72px;
    height: 72px;
      border-radius: 50%;
      display: block;
      stroke-width: 2;
      stroke: #4bb71b;
      stroke-miterlimit: 10;
      box-shadow: inset 0px 0px 0px #4bb71b;
      animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
      position:relative;
      top: 5px;
      right: 5px;
     margin: 0 auto;
  }
  .checkmark__circle {
      stroke-dasharray: 166;
      stroke-dashoffset: 166;
      stroke-width: 2;
      stroke-miterlimit: 10;
      stroke: #4bb71b;
      fill: #fff;
      animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
   
  }
  
  .checkmark__check {
      transform-origin: 50% 50%;
      stroke-dasharray: 48;
      stroke-dashoffset: 48;
      animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  
  @keyframes stroke {
      100% {
          stroke-dashoffset: 0;
      }
  }
  
  @keyframes scale {
      0%, 100% {
          transform: none;
      }
  
      50% {
          transform: scale3d(1.1, 1.1, 1);
      }
  }
  
  @keyframes fill {
      100% {
          box-shadow: inset 0px 0px 0px 30px #4bb71b;
      }
  }
  
  
  .loader-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .loader-item{
    display: flex;
        width: 2em;
        height: 2em;
        color: inherit;
        pointer-events: none;
        font-size: 30px;
        border: 3px solid #4361BA;
        border-bottom-color: transparent;
        border-radius: 50%;
        animation: 1s loader-animationlinear infinite;
        position: relative;
        align-items: center;
        justify-content: center;
  }
  
  .loader-failure-completed{
    animation: none;
    border-bottom-color: none;
    border-color: #ff6666;
    border-width: 3px;
    animation: fade-in-bck 0.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  }
  
  .loader-failure-icon{
    display: none;
    font-size: 30px;
  }
  
  .loader-failure-icon-completed{
    display: block;
    color: #ff6666;
    background-color: transparent;
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  
  @keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  }
  
  @keyframes fade-in-bck {
  0% {
    -webkit-transform: translateZ(80px);
            transform: translateZ(80px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    opacity: 1;
  }
  }