/**
* All of the CSS for your public-facing functionality should be
* included in this file.
*/

html {
    background-color: transparent !important;
}

.gpay-card-info-container {
    width: 100%;
    max-width: 750px;
    height: 55px !important;
}

.gpay-card-info-animation-container {
    height: 55px !important;
}

.gpay-card-info-iframe,
.gpay-card-info-placeholder-container {
    padding-top: 5px !important;
}

.xpaygates_modal {
    background: rgba(255, 255, 255, .8)
}

.xpaygates_full_screen {
    position: fixed !important;
    z-index: 2147483647 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
}

.xpaygates_loader {
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 36px;
    height: 36px;
    -webkit-animation: 1s linear infinite xpaygates-spin;
    animation: 1s linear infinite xpaygates-spin
}

.xpaygates-full-screen-loader-message { 
    margin-top: 8px;
    color: #3a4f66;
    font-size: 16px;
    font-weight: 500;
}

.xpaygates-center {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.xpaygates-shield-checkout-container {
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#paypal-button-container {
    min-height: 36px;
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

@-webkit-keyframes xpaygates-spin {
    0% {
        -webkit-transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes xpaygates-spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}