.container {
  height: 100%;
  width: 100%;
  display: block;
  margin: 0px;
  padding: 0px;
  position: fixed;
  z-index: 1000000000;
  top: 0px;
  left: 0px;
  backface-visibility: hidden;
  overflow-y: visible;
  background-color: #ffffff;
}









*::selection {
  background-color: #fc316438;
}









/* -- Whole Body -- */

.whole-body {
  width: 100%;
  height: 100%;
  display: flex;
  background-color: #ffffff;
}










.home-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: default;
}



.colorbar {
  width: 100%;
  height: 12px;
  display: flex;
  background: linear-gradient(100deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
}






.hs-details {
  width: 100%;
  height: 186px;
  display: flex;
  flex-direction: column;
  
  box-shadow: 0px 0px 20px #f4f3f3;
  background-color: #ffffff;
}






.logo {
  width: 90px;
  height: 90px;
  align-self: center;
  margin: 20px 0px 0px 0px;
  border-radius: 16px;
  user-select: none;
  animation: skloader 0.5s linear infinite alternate;
}




@keyframes skloader {
  0% {
    background-color: #fafafa;
  }
  100% {
    background-color: #e4e4e4;
  }
}






.merchant-name {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #444C66;
  margin: 16px 0px 40px 0px;
}










.hs-pay-details {
  width: 100%;
  height: 358px;
  display: flex;
  flex-direction: column;
  
  box-shadow: 0px 0px 20px #f2f0f0;
  background-color: #ffffff;
}









.hspd-box {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  margin: 20px 0px 0px 20px;

  border-radius: 12px;
  border: 1px solid #EEF1F7;
}








.hspd-amount-heading {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #959DB4;
  margin: 20px 0px 0px 20px;
}


.hspd-amount {
  font-size: 25px;
  font-family: 'Baloo 2';
  font-weight: 700;
  color: #444C66;
  margin: 0px 0px 0px 20px;
}






.hspd-paymentfor-heading {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #959DB4;
  margin: 20px 0px 0px 20px;
}



.hspd-description {
  font-size: 15px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #444C66;
  margin: 0px 0px 0px 20px;
}






.hspd-paymentid-heading {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #959DB4;
  margin: 20px 0px 0px 20px;
}



.hspd-paymentid {
  font-size: 15px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #444C66;
  margin: 0px 0px 0px 20px;
}









.hspd-secure {
  width: calc(100% - 40px);
  height: 60px;
  display: flex;
  align-items: center;
  margin: 28px 0px 0px 20px;

  border-radius: 8px;
  background-color: #EFF4FF;

  user-select: none;
}



.hspd-secure-icon {
  width: 40px;
  height: 30px;
  margin: 0px 0px 0px 8px;
}




.secure-details > h5 {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #4285F4;
  margin: 0px 0px 0px 8px;
}


.secure-details > h6 {
  font-size: 10px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #8d95a1;
  margin: 0px 0px 0px 8px;
}











.pay-btn-section {
  width: 100%;
  height: calc(100% - 556px);
  display: flex;
}





.pay-btn {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;

  position: fixed;
  bottom: 0px;
  user-select: none;
  
  background: linear-gradient(100deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
}




.pay-btn > h4 {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #ffffff;
  margin: 0px 0px 0px 0px;
  user-select: none;
}




.paybtn-ripple-main {
  width: 100%;
  height: 60px;
  display: flex;
  position: fixed;
  overflow: hidden;
}


.paybtn-ripple {
  width: 100%;
  height: 100%;
  display: flex;
}






/* -- Ripple Animation -- */



.paybtn-ripple > span {
  position: absolute;
  background: rgb(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  animation: btn-ripples 1s linear infinite;
  cursor: text;
}


@keyframes btn-ripples {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.5;
  }
  100% {
    width: 1000px;
    height: 1000px;
    opacity: 0;
  }
}









































/* -- Payment Options Screen -- */



.payment-options-screen {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;

  position: fixed;

  background-color: #0000009f;
  transition: 0.5s;
}



.pos-dialog {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;

  position: fixed;
  top: 100%;

  background-color: #ffffff;
  transition: 0.3s;
}





.pos-colorbar {
  width: 0%;
  height: 5px;
  display: flex;
  background: linear-gradient(100deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  transition: 0.8s;
}





.pos-heading1 {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #444C66;
  margin: 20px 0px 0px 20px;
}




.pos-heading2 {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #898e9e;
  margin: 8px 0px 0px 20px;
}










.pos-upi {
  width: calc(100% - 40px);
  height: 60px;
  display: flex;
  align-items: center;
  margin: 20px 0px 0px 20px;

  border-radius: 6px 6px 0px 0px;
  border: 1px solid #e6e7e8;
  background-color: #ffffff;

  transition: 0.3s;
}




.pos-upi-logo {
  width: 40px;
  height: 20px;
  margin: 0px 16px 0px 16px;
}




.pos-upi-details {
  width: calc(100% - 32px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.pos-upi-details > h4 {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #444C66;
  margin: 0px 0px 0px 0px;
}



.pos-upi-details > h5 {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #9499a9;
  margin: 0px 0px 0px 0px;
}























.pos-bank {
  width: calc(100% - 40px);
  height: 60px;
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 20px;

  border-radius: 0px 0px 6px 6px;
  border: 1px solid #e6e7e8;
  border-top: 0px;
  background-color: #ffffff;

  transition: 0.3s;
}




.pos-bank-logo {
  width: 40px;
  height: 28px;
  margin: 0px 16px 0px 16px;
}




.pos-bank-details {
  width: calc(100% - 32px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.pos-bank-details > h4 {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #444C66;
  margin: 0px 0px 0px 0px;
}



.pos-bank-details > h5 {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #9499a9;
  margin: 0px 0px 0px 0px;
}















.pos-pay {
  width: 90%;
  height: 40px;
  display: none;
  align-self: center;
  align-items: center;
  justify-content: center;
  margin: 110px 0px 0px 0px;

  background-color: #1A73E8;
  border-radius: 100px;
  box-shadow: #202124;

  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  -webkit-tap-highlight-color: transparent;
}


.pos-pay > h5 {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #ffffff;
  user-select: none;
}












/* -- Ripple Animation -- */



.pos-pay > span {
  position: absolute;
  background: rgb(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  animation: btn-ripples 1s linear infinite;
  cursor: text;
}


@keyframes btn-ripples {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.5;
  }
  100% {
    width: 1000px;
    height: 1000px;
    opacity: 0;
  }
}







































/* -- Bank Screen -- */



.bank-screen {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;

  position: fixed;

  background-color: #0000009f;
  transition: 0.5s;
}



.bank-dialog {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;

  position: fixed;
  top: 100%;

  background-color: #ffffff;
  transition: 0.3s;
}




.bank-colorbar {
  width: 0%;
  height: 5px;
  display: flex;
  background: linear-gradient(100deg, rgba(255,159,161,1) 0%, rgba(238,148,246,1) 50%, rgba(153,179,254,1) 100%);
  transition: 0.8s;
}








.bank-heading {
  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #444C66;
  margin: 20px 0px 0px 20px;
  user-select: none;
}




.bank-subheading {
  font-size: 14px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #898e9e;
  margin: 8px 0px 0px 20px;
  user-select: none;
}










.acc-name-heading {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #424551;
  margin: 40px 0px 0px 28px;
  user-select: none;
}
.acc-name {
  width: calc(100% - 56px);
  height: 32px;
  display: flex;
  align-items: center;
  padding-left: 16px;

  border-radius: 5px;
  background-color: #f7f7f7;

  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #727786;
  margin: 8px 0px 0px 20px;
}





.acc-number-heading {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #424551;
  margin: 20px 0px 0px 28px;
  user-select: none;
}
.acc-number {
  width: calc(100% - 56px);
  height: 32px;
  display: flex;
  align-items: center;
  padding-left: 16px;

  border-radius: 5px;
  background-color: #f7f7f7;

  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #727786;
  margin: 8px 0px 0px 20px;
}





.acc-type-heading {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #424551;
  margin: 20px 0px 0px 28px;
  user-select: none;
}
.acc-type {
  width: calc(100% - 56px);
  height: 32px;
  display: flex;
  align-items: center;
  padding-left: 16px;

  border-radius: 5px;
  background-color: #f7f7f7;

  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #727786;
  margin: 8px 0px 0px 20px;
}





.ifsc-code-heading {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #424551;
  margin: 20px 0px 0px 28px;
  user-select: none;
}
.ifsc-code {
  width: calc(100% - 56px);
  height: 32px;
  display: flex;
  align-items: center;
  padding-left: 16px;

  border-radius: 5px;
  background-color: #f7f7f7;

  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #727786;
  margin: 8px 0px 0px 20px;
}





.bank-name-heading {
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #424551;
  margin: 20px 0px 0px 28px;
  user-select: none;
}
.bank-name {
  width: calc(100% - 56px);
  height: 32px;
  display: flex;
  align-items: center;
  padding-left: 16px;

  border-radius: 5px;
  background-color: #f7f7f7;

  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #727786;
  margin: 8px 0px 0px 20px;
}


















































.loader-screen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1;
  position: fixed;

  background-color: #0000009f;
  transition: 0.5s;
}






.loader-animation {
  width: 100px;
  height: 100px;
  transition: 0.5s;
}











































.expired-screen {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;

  background-color: #ffffff;
}








.expired-animation {
  width: 100%;
  height: 150px;
}



.expired-screen > h1 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0px 0px 0px 0px;

  font-size: 24px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #dc4b3b;
}



.expired-screen > h4 {
  width: calc(100% - 60px);
  display: flex;
  justify-content: center;
  margin: 12px 30px 0px 30px;

  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #727786;
  text-align: center;
}


























.invalid-screen {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;

  background-color: #ffffff;
}








.invalid-animation {
  width: 100%;
  height: 150px;
}



.invalid-screen > h1 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0px 0px 0px 0px;

  font-size: 24px;
  font-family: 'Poppins';
  font-weight: 500;
  color: #dc4b3b;
}



.invalid-screen > h4 {
  width: calc(100% - 60px);
  display: flex;
  justify-content: center;
  margin: 12px 30px 0px 30px;

  font-size: 16px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #727786;
  text-align: center;
}









































