.block-pixxpay {
    z-index: 999999;
    position: fixed;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
    bottom: 0;
    background: #fff;
    /* background: #5b0a8d;
    opacity: 0.8; */
}
.pixxpay-load{
    position: absolute;
    margin: 0;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* color: #fff; */
}

.c-loader {
  animation: is-rotating 1s infinite;
  border: 6px solid #e5e5e5;
  border-radius: 50%;
  border-top-color: #51d4db;
  height: 100px;
  width: 100px;
  margin: auto;
}

@keyframes is-rotating {
  to {
    transform: rotate(1turn);
  }
}