.loader-style {
    width: 100%;
    height: 100%;
    background-color: #fff;
    left: 0;
    top: 0;
    z-index: 9999999999;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .loader-img {
    position: absolute;
    top: 60px;
    bottom: 0;
    margin: auto;
    left: 0;
    right: -25px;
  }
  .lds-dual-ring {
    display: inline-block;
    width: 221px;
    height: 251px;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 220px;
    height: 220px;
    margin: 16px;
    border-radius: 50%;
    border: 6px solid #2d4295;
    border-color: #2d4295 transparent #2d4295 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }
  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
