#loading-overlay {
    position: fixed;
    background-color: rgba(1,1,1,.5);
    height: 100%;
    width: 100%;
    z-index: 10000;
    top: 0;
    left: 0;
}
.overlay-spinner {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
    margin-left: 50%;
    margin-top: 20%;
    transform: translate(-50%,0);
}
.overlay-spinner div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: overlay-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.overlay-spinner div:nth-child(1) {
    animation-delay: -0.45s;
}
.overlay-spinner div:nth-child(2) {
    animation-delay: -0.3s;
}
.overlay-spinner div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes overlay-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.woocommerce-checkout-review-order-table .product-quantity {
  display: none;
}
div.proof .row {
    text-align: center;
    margin-bottom: 10px;
}
div.proof .row.textarea {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 20px auto;
}
.wcus-button {
  border: 3px solid #440A66;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 15px;
  color: #440A66;
  letter-spacing: var(--tve-letter-spacing, 1px);
  font-weight: 700;
  padding: 10px 20px;
  display: inline-block;
  cursor: pointer;
}
.wcus-button:hover,
.wcus-button:active {
  color: #fff;
  background-color: #440A66;
  text-decoration: none;
}