.loader {
    display: block;
    position: absolute;
    z-index: 1001;
    width: 100%;
    background-color: white;
    height: 100%;
    transition: opacity ease 0.7s;
  }
  
  .loader.hidden {
    opacity: 0;
    transition: opacity ease 0.7s;
  }
  
  .loader-wrap {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
  }
  
  .loader-image {
    height: 50px;
  }
  
  .loader-animation {
    width: 42px;
    height: 42px;
    margin: 20px auto;
    border: 5px solid #032341;
    border-bottom-color: #298FFF;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .cash-out.animation-container {
    height: 31px;
    width: 78px;
    background: #032341;
    border-radius: 5px;
    justify-content: center;
  }
  .loader-animation.cashout {
    height: 20px;
    width: 20px;
    border: 3px solid white;
    border-bottom-color: #298fff;
    margin: auto;
  }
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }