body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  position: relative;
}

img{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.qr-details {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.qr-details h1{
  margin: 0 0 10px;
  font-size: 24px;
}
p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  margin: 0 0 10px;
}

#qr-img-container > img {
  background-color: #E5F1FF;
  border-radius: 5px;
  padding: 10px;
}

#open-bank-id {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
}

#open-bank-id:disabled {
  background-color:rgb(172, 172, 172);
  cursor: not-allowed;
}

.qr-img {
  width: 230px;
}

.success-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
}

a.qr-cancel-btn {
  color: black;
  font-size: 16px;
  line-height: 18px;
  display: inline-block;
  margin: 10px 0 0;
}


/*loader css start here*/
.item {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  /*display: none;*/
}

.default-aisp-loader {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: 0 40px 0 #0065FF;
  position: relative;
  animation: loader-animation 0.8s ease-in-out alternate infinite;
  animation-delay: 0.32s;
  top: 50%;
  margin: -50px auto 0;
}

.default-aisp-loader::after,
.default-aisp-loader::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  border-radius: 50%;
  box-shadow: 0 40px 0 #0065FF;
  animation: loader-animation 0.8s ease-in-out alternate infinite;
}

.default-aisp-loader::before {
  left: -30px;
  animation-delay: 0.48s;
}

.default-aisp-loader::after {
  right: -30px;
  animation-delay: 0.16s;
}

@keyframes loader-animation {
  0% {
    box-shadow: 0 40px 0 #0065FF;
  }

  100% {
    box-shadow: 0 20px 0 #0065FF;
  }
}

.hidden {
  display: none !important;
}
/*loader css end here*/
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
