@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap");
:root {
  font-size: 15px;

  /* Primary */
  --var-soft-blue: hsl(215, 51%, 70%);
  --var-cyan: hsl(178, 100%, 50%);
  /* Neutral */
  --var-main-darkest: hsl(217, 54%, 11%);
  --var-card-dark: hsl(216, 50%, 16%);
  --var-line-dark: hsl(215, 32%, 27%);
  --var-lightest: white;

  /* Fonts */

  --var-heading: normal normal 600 1.5em/1.6em "Outfit", sans-serif;

  --var-small-heading: normal normal 400 1em/1em "Outfit", sans-serif;

  --var-para: normal normal 300 1em/1.55em "Outfit", sans-serif;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
}

body {
  background-color: var(--var-main-darkest);
}

input {
  background: var(--var-line-dark)!important;
  color: var(--var-lightest)!important ;
}

input::placeholder {
  color: #ffffffa1!important;
}

a {
  color: inherit;
}

h1 {
  font: var(--var-heading);
  color: var(--var-lightest);
}

h2 {
  font: var(--var-small-heading);
  color: var(--var-lightest);
}

p {
  font: var(--var-para);
  color: var(--var-soft-blue);
}

span {
  color: white;
}

.c-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 1rem;
  padding: 2rem;
}

.card-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: var(--var-card-dark);
  border-radius: 15px;
  margin-bottom: 1rem;
  padding: 2rem;
}

.card-attribute {
  border-top: 2px solid var(--var-line-dark);
}

.card-attribute-text {
  font-size: 16px !important;
}

a.hero-image-container {
  position: relative;
  display: block;
}

img.eye {
  position: absolute;
  width: 100%;
  max-width: 2em;
  top: 44%;
  left: 43%;
}

@media (min-width: 400px) {
  img.eye {
    max-width: 3em;
  }
}

.hero-image-container::after {
  content: "";
  background-image: url("https://i.postimg.cc/9MtT4GZY/view.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 5rem;
  background-color: hsla(178, 100%, 50%, 0.3);
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.hero-image-container:hover::after {
  opacity: 1;
}

.small-image {
  width: 1.2em;
  margin-right: 0.5em;
}

div.attribution {
  margin: 0 auto;
  width: 100%;
  font: var(--var-para);
  text-align: center;
  padding: 1.5em 0 4em 0;
  color: var(--var-line-dark);
}

.attribution a {
  color: var(--var-soft-blue);
}

@media (min-width: 600px) {
  body {
    font-size: 18px;
  }
}

.div-pay {
  background-color: #003cc5;
  border-radius: 10px;
  padding: 12px 10px 0 10px;
  cursor: pointer;
}

.div-pay h2 {
  font-size: 20px;
}

.div-pay p {
  font-size: 20px;
}

.div-pay:hover {
  background-color: #0049f3;
  cursor: pointer;
}

button {
  background-color: #003cc5;
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  cursor: pointer;
}

button:hover {
  background-color: #0049f3;
}

.btn-success {
  border-radius: 10px;
  padding: 8px 20px;
}
.btn-primary {
  background-color: #003cc5;
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  margin: 5px 5px;
}

.btn-primary:hover {
  background-color: #0049f3;
}

.attribution-2 {
  margin: 0 auto;
  text-align: center;
}
.attribution-2 img {
  width: 100px;
  display: inline-block;
}
.fs-16 {
  font-size: 16px;
}

.fs-22 {
  font-size: 22px;
}

.qrcode img {
  border-radius: 20px;
  margin-bottom: 10px;
}

.qrcode input {
  background-color: var(--var-line-dark);
  color: #cccccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

.qrcode .input-group .btn {
  height: 37px;
}

#preloader {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: hsla(216, 54%, 11%, 0.705);
  z-index: 9999;
}

.loader {
  /* width: 100px;
      height: 100px;
      margin: 0 auto;
      position: relative; */
  width: 40px;
  height: 40px;
  position: absolute;
  right: 50%;
  top: 50%;
  margin: -20px -20px 0 0;
}
.loader .inner_loader {
  background-color: #003cc5;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  animation: wave 2s ease-in-out infinite;
}
.loader .inner_loader:nth-child(1) {
  animation-delay: 0.2s;
}
.loader .inner_loader:nth-child(2) {
  animation-delay: 0.4s;
}
.loader .inner_loader:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes wave {
  0% {
    transform: translateX(-50%) translateY(-50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) scale(0);
    opacity: 0;
  }
}