body {
  overflow-x: hidden;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #007bff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.full {
  height: 500px;
}

@keyframes rotation {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
} 

.success {
  font-size: 72px;
}

.step-title {
  font-size: 16px;
  margin-bottom: 20px;
  font-style: italic;
}

.cursor {
  cursor: pointer;
}

#vouchers {
    display: flex;
    flex-wrap: wrap;
}
.thumbnail {
    margin: 10px;
}
.thumbnail img {
    max-width: 150px;
    max-height: 150px;
}