* {
    font-family: "Helvetica Neue", Helvetica;
    font-size: 15px;
    font-variant: normal;
    padding: 0;
    margin: 0;
}
#currency{max-width:100px;color:#fff;}option {    background: #000 !important;    color: #fff;font-weight:bold;}
::placeholder{color:#fff;}
html {
    height: 100%;
}

body {
    background: #6772e6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

form {
    width: 480px;
    margin: 20px 0;
}

.group {    padding:0px 30px;
    background: #7894f8;
    box-shadow: 0 7px 14px 0 rgba(49, 49, 93, 0.10), 0 3px 6px 0 rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    margin-bottom: 20px;
}

label {    padding:5px 0px;
    position: relative;
    color: #fff;
    font-weight: 300;
    height: 40px;
    line-height: 40px;
    display: flex;
    flex-direction: row;
}

.group label:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

label>span {
    width: 120px;    font-weight:bold;
    text-align: left;
    margin-right: 30px;
}

.field {
    background: transparent;
    font-weight: bold;
    border: 0;
    color: #fff;
    outline: none;
    flex: 1;
    padding-right: 10px;
    padding-left: 10px;
    cursor: text;
}

.field::-webkit-input-placeholder {
    color: #CFD7E0;
}

.field::-moz-placeholder {
    color: #CFD7E0;
}

button {
    float: left;
    display: block;
    background: #ff2aaa;
    color: white;
    box-shadow: 0 7px 14px 0 rgba(49, 49, 93, 0.10), 0 3px 6px 0 rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    border: 0;
    margin-top: 20px;
    font-size: 19px;
    font-weight: bold;
    width: 100%;
    height: 47px;
    line-height: 38px;
    outline: none;
}

button:focus {
    background: #555ABF;
}

button:active {
    background: #43458B;
}

.outcome {
    float: left;
    width: 100%;
    padding-top: 8px;
    min-height: 24px;
    text-align: center;
}

.success,
.error {
    display: none;
    font-size: 13px;
}

.success.visible,
.error.visible {
    display: inline;
}

.error {
    color: #fff;
}

.success {
    color: #666EE8;
}
.success .token {
    font-weight: 500;
    font-size: 13px;
}
.stripe_response .success_pay{
    color: #fff;
}
.stripe_response .error_pay{
    color: #E4584C;
}
.stripe_response span{
    text-align: center;
    font-size: 26px;
}
.stripe_response{
    padding: 10px 0px;
    text-align: center;
}

.result-message {
    line-height: 22px;
    font-size: 16px;
    color: white;
    text-align: center;
    clear: both;
    padding-top: 12px;
    display: block;
    width: 100%;
}

.result-message a {
    color: white;
}

.hidden {
    display: none;
}

#card-error {
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    clear: both;
    padding-top: 12px;
    display: block;
    width: 100%;
}

#card-element {
    /* border-radius: 4px 4px 0 0; */
    /* padding: 12px; */
    /* border: 1px solid rgba(50, 50, 93, 0.1); */
    height: 40px;
    width: 100%;
    /* background: white; */
}

#payment-request-button {
    margin-bottom: 32px;
}

/* Buttons and links */
/*button {
    background: #5469d4;
    color: #ffffff;
    font-family: Arial, sans-serif;
    border-radius: 0 0 4px 4px;
    border: 0;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    transition: all 0.2s ease;
    box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
    width: 100%;
}*/

button:hover {
    filter: contrast(115%);
}

button:disabled {
    opacity: 0.5;
    cursor: default;
}

/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
    border-radius: 50%;
}

.spinner {
    color: #ffffff;
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.spinner:before,
.spinner:after {
    position: absolute;
    content: "";
}

.spinner:before {
    width: 10.4px;
    height: 20.4px;
    background: #ff2aaa;
    border-radius: 20.4px 0 0 20.4px;
    /* top: -0.2px;
    left: -0.2px; */
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
}

.spinner:after {
    width: 10.4px;
    height: 10.2px;
    background: #ff2aaa;
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

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

@media only screen and (max-width: 600px) {
    /* form {
        width: 80vw;
    } */
    /* 30-12-2022 */
    form#payment-form .group {
        padding: 0px 10px;
    }
    form#payment-form {
        width: calc(100vw - 30px);
    }
    form#payment-form label>span {
        width: 80px;
        margin-right: 10px;
    }
}