.buttonCheckout {
  position: relative;
  /*padding: 8px 16px;
  background: #009579;*/
  border: none;
  outline: none;
  border-radius: 2px;
  cursor: pointer;
}

.buttonCheckout:active {
  background: #007a63;
}

.buttonCheckout__text {
  font: bold 20px "Quicksand", san-serif;
  color: #ffffff;
  transition: all 0.2s;
}

.buttonCheckout--loading .buttonCheckout__text {
  visibility: hidden;
  opacity: 0;
}

.buttonCheckout--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 150px;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

.btnconfirm {
    position: relative;
    /*padding: 8px 16px;
    background: #009579;*/
    border: none;
    outline: none;
    border-radius: 2px;
    cursor: pointer;
  }
  
  .btnconfirm:active {
    background: #007a63;
  }
  
  .btnconfirm__text {
    font: bold 20px "Quicksand", san-serif;
    color: #ffffff;
    transition: all 0.2s;
  }
  
  .btnconfirm--loading .btnconfirm__text {
    visibility: hidden;
    opacity: 0;
  }
  
  .btnconfirm--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 200px;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btnconfirm-loading-spinner 1s ease infinite;
  }
  
  @keyframes btnconfirm-loading-spinner {
    from {
      transform: rotate(0turn);
    }
  
    to {
      transform: rotate(1turn);
    }
  }
.facheck {
  position:absolute;
  left:75px;
  bottom:46px;
  color:white;
  font-size:20px;
  display:none;
}
.gocheckoutbtn--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 8px;;
  right: 150px;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #000000;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
}

#pmodal {
    position: relative;   /* needed for absolute positioning inside */
}
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;             /* good for full width */
    width: 100%;          /* or keep 100vw */
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    z-index: 9999999;
}

/* Spinner wrapper */
.spinner-wrapper {
    text-align: center;
    margin-top:60px;
}

/* The spinner */
.spinner {
    width: 80px;
    height: 80px;
    border: 8px solid #f3f3f3;        /* light grey border */
    border-top: 8px solid #3498db;      /* blue accent – change to your colour */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

/* Spinning animation */
@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Text style */
.spinner-wrapper p {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}
