@charset "utf-8";
body {
  background-color: #f6f7fd;
  padding: 2rem 0;
}
body.PosPage,
body.BuyPage {
  padding: 0;
}
h2 {
  margin: 0.5rem 0;
}
.login {
  background-color: white;
  border: 1px solid lightgray;
  padding: 16px;
  border-radius: 0.25rem;
  width: 100%;
  max-width: 312px;
  box-shadow: 0 2px 14px 0 rgba(33, 35, 68, 0.05);
}
form label {
  font-size: 14px;
}
form .message.error {
  margin-left: 12px;
  font-size: 12px;
  background-color: red;
  color: white;
  padding: 4px 6px;
}
form input[type="text"],
form input[type="email"],
form input[type="password"],
form select {
  width: 100%;
  border-radius: 0.25rem;
  border: 1px solid lightgray;
}
form .btn-toolbar {
  margin-top: 12px;
}
form .btn-toolbar input {
  background-color: #04225f;
  color: white;
  border: none;
  border-radius: 0.25rem;
  text-transform: uppercase;
  padding: 6px 12px;
  transition: all 300ms ease;
}
form .btn-toolbar input:hover {
  opacity: 0.7;
}
#Form_TokenForm {
  margin: 0 auto;
  max-width: 520px;
}
button {
  background-color: #04225f;
  color: white;
  border: none;
  border-radius: 0.25rem;
  text-transform: uppercase;
  padding: 6px 12px;
  transition: all 300ms ease;
}
button:hover {
  opacity: 0.7;
}
.row {
  background-color: white;
  padding: 2rem 0;
}
.header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.header img {
  width: 100%;
  max-width: 96px;
}
.header .right-side {
  margin-left: auto;
}
.invoice {
  max-width: 360px;
  min-width: 280px;
  border: 1px solid #04225f;
  border-radius: 7px 7px 6px 6px;
  margin: 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: stretch;
}
.invoice #invoice_payment {
  background-color: #04225f;
  width: 100%;
  color: white;
  padding: 6px 12px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.invoice .title {
  padding: 12px;
  text-align: center;
}
.invoice .title h3 {
  font-size: 18px;
}
.invoice .currency {
  font-size: 16px;
  padding: 12px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-bottom: 1px solid lightgray;
}
.invoice .payment,
.invoice .wallet,
.invoice .expires,
.invoice .details,
.invoice .transactions {
  padding: 12px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-bottom: 1px solid lightgray;
}
.invoice .wallet,
.invoice .status,
.invoice .expires,
.invoice .details {
  font-size: 14px;
  word-break: break-all;
}
.invoice .transactions {
  font-size: 12px;
  flex-wrap: wrap;
}
.invoice .transactions span {
  flex: 0 0 50%;
}
.invoice .transactions span:nth-child(2n) {
  text-align: right;
}
.invoice .transactions span.paid {
  font-weight: bold;
  border-top: 1px solid black;
}
.invoice .qr {
  text-align: center;
}
.invoice .qr img {
  max-height: 400px;
  max-width: 400px;
  width: 100%;
}
.invoice .optionset {
  list-style-type: none;
  /* Remove bullets */
  padding: 0;
  /* Remove padding */
  margin: 0;
}
.invoice .optionset li {
  margin: 8px 0;
}
.invoice .optionset input[type='radio'] {
  transform: scale(2);
}
.invoice .quicktip {
  display: flex;
  flex-flow: row;
  justify-content: center;
}
.invoice .quicktip button {
  margin: 0 4px;
}
.logoupload {
  /* Thumbnail */
}
.logoupload .logo img {
  -webkit-box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.5);
}
.logoupload .upload-area {
  width: 70%;
  height: 200px;
  border: 2px dashed #04225f;
  border-radius: 12px;
  margin: 0 auto;
  margin-top: 100px;
  text-align: center;
  overflow: auto;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.logoupload .upload-area:hover {
  cursor: pointer;
}
.logoupload .upload-area h1 {
  color: rgba(0, 0, 0, 0.87);
}
.logoupload #file {
  display: none;
}
.logoupload .thumbnail {
  width: 80px;
  height: 80px;
  padding: 2px;
  border: 2px solid lightgray;
  border-radius: 3px;
  float: left;
}
.logoupload .size {
  font-size: 12px;
}
.BuyPage .row {
  padding: 1rem 0;
}
.BuyPage .paymentoptiontabs {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.BuyPage .paymentoptiontabs .paymentoptiontab {
  background-color: gray;
  flex: 1 1 50%;
  text-align: center;
  padding: 6px 0;
  cursor: pointer;
}
.BuyPage .paymentoptiontabs .paymentoptiontab.active {
  background-color: lightgray;
}
.PosPage .row {
  padding: 1rem 0;
}
.PosPage form label {
  margin-left: 12px;
}
.PosPage form .middleColumn {
  margin: 0 12px;
}
.PosPage form .message.required {
  margin-left: 12px;
  font-size: 12px;
  background-color: red;
  color: white;
  padding: 4px 6px;
}
.PosPage form .btn-toolbar {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #04225f;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
