#payments-preloader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: black;
    animation: spin 0.6s linear infinite;
    transition: all 0.3s ease-out;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#payments-preloader-status-msg {
    position: absolute;
    top: calc(50% + 50px);
    left: calc(50% + 30px);
    transform: translateX(-50%);
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #000000;
}