/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
body {
    --stripe-primary-text-color: #575a7b;

    --stripe-step-inactive-color: #c7cad1;
    --stripe-step-inactive-text-color: #fff;
    --stripe-step-active-color: #278575;
    --stripe-step-active-text-color: #fff;

    --stripe-form-field-bg: #fff;
    --stripe-form-field-border: #ddd;
    --stripe-form-field-text: #575a7b;

    --stripe-form-button-bg: #278575;
    --stripe-form-button-text: #fff;
}

.stripe-form-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 1.5em 2.25em 3em 2.25em;
    margin-bottom: 50px;
}

.stripe-form-steps__step {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.stripe-form-steps__connector,
.stripe-form-steps__step {
    position: relative;
}

.stripe-form-steps__step-number {
    background-color: var(--stripe-step-inactive-color);
    color: var(--stripe-step-inactive-text-color);
    font-size: 24px;
    border-radius: 50%;
    margin-inline-end: 0.5em;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: 0.3s;
    margin-inline-end: 0;
}

.stripe-form-steps__step-name {
    color: var(--stripe-step-inactive-color);
    font-size: 18px;
    line-height: 18px;
    margin-top: 10px;
    transition: 0.3s;
    position: absolute;
    top: 100%;
    left: 50%;
    text-align: center;
    width: 7em;
    transform: translateX(-50%);
}

.stripe-form-steps__connector {
    background-color: var(--stripe-step-inactive-color);
    margin-inline-start: 0.75em;
    transform: translateX(-50%);
    transition: 0.3s;
    margin-inline-start: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.stripe-form-steps__connector:before {
    background-color: var(--stripe-step-active-color);
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1, 0);
    transform-origin: 50% 0;
}

.stripe-form-steps__step--done+.stripe-form-steps__connector:before {
    transform: scale(1, 1);
}

.stripe-form-steps__step--current .stripe-form-steps__step-number,
.stripe-form-steps__step--done .stripe-form-steps__step-number {
    background-color: var(--stripe-step-active-color);
}

.stripe-form-steps__step--current .stripe-form-steps__step-name,
.stripe-form-steps__step--done .stripe-form-steps__step-name {
    color: var(--stripe-step-active-color);
}

.stripe-form-steps__step--current .stripe-form-steps__step-number {
    color: var(--stripe-step-active-text-color);
}

.stripe-form-field-section ::-webkit-input-placeholder {
    color: var(--stripe-form-field-text) !important;
}

.stripe-form-field-section ::-moz-placeholder {
    color: var(--stripe-form-field-text) !important;
}

.stripe-form-field-section :-ms-input-placeholder {
    color: var(--stripe-form-field-text) !important;
}

.stripe-form-field-section :-moz-placeholder {
    color: var(--stripe-form-field-text) !important;
}

.stripe-form-field-section input::-webkit-input-placeholder,
.stripe-form-field-section textarea::-webkit-input-placeholder {
    color: var(--stripe-form-field-text) !important;
}

.stripe-form-field {
    margin-bottom: 15px;
    text-align: left;
}

.stripe-form textarea,
.stripe-form select,
.stripe-form input[type=text],
.stripe-form input[type=password],
.stripe-form input[type=date],
.stripe-form input[type=number],
.stripe-form input[type=email],
.stripe-form input[type=tel] {
    display: block;
    width: 100%;
    height: 43px;
    background: none;
    border: var(--stripe-form-field-border) 1px solid;
    border-radius: 5px;
    box-shadow: none;
    margin: 0;
    padding: 0 14px;
    font-size: 14px;
    color: var(--stripe-form-field-text);
}

.stripe-form textarea {
    height: 120px;
    padding: 14px;
}

.stripe-form-next-btn {
    text-align: center;
    margin-top: 35px;
}

.stripe-form-next-btn button, .stripe-form-next-btn [type="submit"] {
    display: inline-block;
    height: 43px;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0;
    border: none;
    box-shadow: none !important;
    border-radius: 5px;
    background: var(--stripe-form-button-bg) !important;
    color: var(--stripe-form-button-text) !important;
    text-shadow: none !important;
    padding: 0 30px;
    min-width: 180px;
    margin: 5px 0 !important;
}
.stripe-form-next-btn button {
    background: var(--stripe-form-field-text) !important;
}

.stripe-label-text {
    color: var(--stripe-primary-text-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.stripe-form input[type=checkbox],
.stripe-form input[type=radio] {
    margin-right: 5px;
    margin-top: 4px;
}

.stripe-form-field label {
    color: var(--stripe-primary-text-color);
    display: inline;
    margin-bottom: 0;
}

.stripe-form-field-section h4 {
    color: var(--stripe-primary-text-color);
    text-align: center;
    font-size: 30px;
}

.stripe-form-submit-text {
    color: var(--stripe-primary-text-color);
    text-align: center;
    margin: 20px 0 0;
}
.stripe-payment-info{
    background-color: var(--stripe-form-button-bg);
    color: var(--stripe-form-button-text);
    font-size: 18px;
    line-height: 18px;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

@media only screen and (max-width:575px) {
    .stripe-form-steps {
        margin-bottom: 30px;
    }

    .stripe-form-steps__step-number {
        font-size: 18px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .stripe-form-steps__step-name {
        font-size: 14px;
    }
}

@media only screen and (max-width:480px) {
    .stripe-form-steps {
        padding: 1.5em 2.25em;
        margin-bottom: 20px;
    }

    .stripe-form-steps__step-name {
        display: none;
    }
}

.formpay-data-loading {
    position: relative;
    min-height: 200px;
}

.formpay-data-loading::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--stripe-step-active-color);
    mask: url("data:image/svg+xml,%3Csvg version='1.1' id='L4' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 100 100' enable-background='new 0 0 0 0' xml:space='preserve'%3E%3Ccircle fill='%23000' stroke='none' cx='6' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1s' values='0;1;0' repeatCount='indefinite' begin='0.1'/%3E%3C/circle%3E%3Ccircle fill='%23000' stroke='none' cx='26' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1s' values='0;1;0' repeatCount='indefinite' begin='0.2'/%3E%3C/circle%3E%3Ccircle fill='%23000' stroke='none' cx='46' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1s' values='0;1;0' repeatCount='indefinite' begin='0.3'/%3E%3C/circle%3E%3C/svg%3E");
    z-index: 9;
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: 100px;
}

.formpay-data-loading::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    background-color: #fff;
    z-index: 7;
}

.formpay-payment-error,
.formpay-payment-success,
.formpay-payment-processing {
    background-color: #fff;
    padding: 100px 20px;
    border-radius: 15px;
    text-align: center;
    color: red;
}

.formpay-payment-error h2,
.formpay-payment-processing h2,
.formpay-payment-success h2 {
    font-size: 24px;
    line-height: 48px;
    color: red;
    font-weight: normal;
    margin: 0;
}

.formpay-payment-error i,
.formpay-payment-processing i,
.formpay-payment-success i {
    font-size: 72px;
    margin-bottom: 10px;
}

.formpay-payment-success,
.formpay-payment-success h2 {
    color: green;
}

.formpay-payment-processing,
.formpay-payment-processing h2 {
    color: #FFA500;
}

.formpay-payment-processing p {
    color: #212121;
}

@media only screen and (max-width:767px) {

    .formpay-payment-error i,
    .formpay-payment-success i {
        font-size: 48px;
    }

    .formpay-payment-error h2,
    .formpay-payment-success h2 {
        font-size: 36px;
        line-height: 36px;
    }
}

@media only screen and (max-width:575px) {

    .formpay-payment-error h2,
    .formpay-payment-success h2 {
        font-size: 24px;
        line-height: 24px;
    }
    .stripe-form-next-btn button, .stripe-form-next-btn [type="submit"]{
        min-width: 120px;
        font-size: 14px;
        line-height: 14px;
        padding: 0 10px;
    }
}