body {
  margin: 0;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
}

.app {
  font-size: 40pt;
  font-weight: 600;
  margin-bottom: 20pt;
  display: flex;
  align-items: center;
}
.app > svg {
  margin-right: 10px;
}
.title {
  font-size: 30pt;
  font-weight: 300;
  vertical-align: top;
}
.subtitle {
  color: #888;
  font-size: 18pt;
  font-weight: 200;
}
.note {
  color: #888;
  font-size: 10pt;
  font-style: italic;
}
.container {
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.progress {
  display: flex;
  flex-direction: row;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.8);
  z-index: 10000;
}
.spinner {
  align-items: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 18pt;
  font-weight: 200;
}
.over {
  animation: rotator 1.5s ease-in-out infinite;
  stroke-dasharray: 107, 38;
}
.bag {
  position: absolute;
}
@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#license {
  font-size: 18px;
  margin: 32px 32px 0 32px;
  border: 1px solid #888;
  outline: none;
  resize: none;
}

#copied {
  visibility: hidden;
  opacity: 1;
  transition: opacity 1s;
  margin-bottom: 24px;
}

#purchase-options {
  display: flex;
}

#payment-container {
  border: 2px solid #ccc;
  background-color: rgb(240, 240, 240);
  padding: 32px;
  margin: 16px;
}

#payment-container section {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  width: 200px;
  height: 112px;
  border-radius: 6px;
  justify-content: space-between;
}
#stripe-container .product {
  display: flex;
}
#stripe-container .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#stripe-container p {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
  color: #242d60;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
#stripe-container img {
  border-radius: 6px;
  margin: 10px;
  width: 54px;
  height: 57px;
}
#stripe-container h3,
#stripe-container h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
  color: #242d60;
  margin: 0;
}
#stripe-container h5 {
  opacity: 0.5;
}

#stripe-container #checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background: #556cd6;
  color: white;
  width: 100%;
  font-size: 14px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.6;
  border-radius: 0 0 6px 6px;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}
#stripe-container #checkout-button:hover {
  opacity: 0.8;
}
#stripe-container #checkout-button svg {
  margin-left: 8px;
}

.modal {
  display: flex;
  flex-direction: column;
  height: 285px;
  width: 500px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 45px;
  z-index: 1011;
  border-radius: 10px 10px;
}

.modal-title {
  margin-bottom: 20px;
  font-size: 20px;
}

.input-label {
  color: #555;
  margin-top: 16px;
}

.button {
  height: 42px;
  width: 120px;
  background: #556cd6;
  color: white;
  font-size: 14px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px 5px;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

.button:disabled {
  background: #aaa;
  cursor: auto;
}

input,
select {
  outline: none;
  margin: 0;
  border: none;
  box-shadow: none;
  width: 100%;
  font-size: 20px;
  background: transparent;
}

.input {
  line-height: 50px;
  background: #eee;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  color: #666;
}
