body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
  font-weight: 300;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

p,
li {
  line-height: 1.6em;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

button,
input,
textarea {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
}

input:focus,
button:focus,
textarea:focus {
  outline: none;
}

.loader {
  height: 100vh;
  width: 100vw;
  background-color: #e9ecec;
  z-index: 20;

  display: flex;
  justify-content: center;
  align-items: center;
}

.loader__icon,
.loader__icon:after {
  border-radius: 50%;
  width: 6em;
  height: 6em;
}
.loader__icon {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;

  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

.loader__brandicon {
  width: 90px;
  animation: jumping 1.2s infinite ease-in-out;
  opacity: 0.9;
}

/**
* Purchase result
*/

.purchase__result__title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 18px;
}

.purchase__result {
  text-align: center;
  font-size: 24px;
  padding: 0px 20px;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}

.purchase__result__text {
  margin-bottom: 30px;
}

.purchase__result__button {
  color: white;
  /* background-color: hsl(2, 84%, 64%); */
  background-color: #288e89;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 18px;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes popping {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.9);
  }
}

@keyframes fadein-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes scalein {
  0% {
    transform: scale(0.8);
  }
  90% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes blink {
  0% {
    opacity: 0.4;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

@keyframes blinkfast {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes jumping {
  0% {
    transform: translateY(0px);
    opacity: 0.4;
  }
  40% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
  60% {
    transform: translateY(0px);
  }
  70% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
    opacity: 0.4;
  }
}
