 
  .saving {
      font-weight: 600;
  }
  .saving span { 
      font-size: 30px;
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
  }
  
  .saving span:nth-child(2) {
    animation-delay: .2s;
  }
  
  .saving span:nth-child(3) {
    animation-delay: .4s;
  }
  
  @keyframes blink {
    0% {
      opacity: .2;
    }
    20% {
      opacity: 1;
    }
    100% {
      opacity: .2;
    }
  }
  #migrationprocess p{
    font-size: 14px;
    line-height: 16px;
    padding: 0;
    margin: 0 0 12px 0;
  }

  #migration-info{
    width: 100%;
    background: white;
    position: relative;
    min-height: 1px;
    padding: 0px;
    display: none;
    opacity: 0;
    transition: all .75s ease;
  }
  #migration-info .wrapper{
      padding: 10px 20px;
  }
  #migration-info.active{
      display: block;
      min-height: 80px;
      opacity: 1;
  }
  #migration-info #migration-count{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
  }
  
  #migration-info #migration-product{
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color:#26669d;
  }
  #burger_loader{
    width: 70px;
    position: absolute;
    left: 6%;   
  }