.fast_payment-body {
    --fast-payment-bg: #FAFAFA;
    --fast-payment-border: rgb(244, 244, 245);
    --fast-payment-shadow: rgba(0, 0, 0, 0.02);
    --fast-payment-radius: 8px;
    --fast-payment-content-bg: #ffffff;
    --fast-payment-content-border: #E4E4E7;
    --fast-payment-content-padding: 24px;

    font-family: Inter,-apple-system,BlinkMacSystemFont,system-ui,sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    line-height: 1.5715 !important;
    background-color: var(--fast-payment-bg) !important;
    font-size: 14px !important;
    overflow-x: hidden !important;
}

.fast_payment-body .q-form-group .form-control {
    border-radius: var(--fast-payment-radius) !important;
}

.fast-payment-wrapper {
    background: var(--fast-payment-bg);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.fast-payment-wrapper .fast-payment-container {
    max-width: 560px;
    width: 100%;
    margin: 20px 0;
}

.fast-payment-box {
    width: 100%;
    border-radius: calc(var(--fast-payment-radius) * 2);
    border: 1px solid var(--fast-payment-border);
    background: var(--fast-payment-content-bg);
    box-shadow: var(--fast-payment-shadow) 0px 2px 16px 2px;
    display: flex;
    flex-direction: column;
}

.fast-payment-box .fast-payment-header {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--fast-payment-content-border);
    padding: var(--fast-payment-content-padding);
}

.fast-payment-box .fast-payment-header .logo {
    flex: 1;
}

.fast-payment-box .fast-payment-header .logo img {
    max-height: 30px;
    max-width: 90%;
}

.fast-payment-box .fast-payment-header .title {
    font-size: 18px;
    font-weight: 500
}

.fast-payment-box .fast-payment-content {
    padding: var(--fast-payment-content-padding);
}

.fast-payment-box .fast-payment-content .fast-payment-step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.fast-payment-box .fast-payment-content .fast-payment-step .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #1E2939;
    margin-right: 10px;
}

.fast-payment-box .fast-payment-content .fast-payment-step.success .step-number {
    background: #2dca73;
    color: #fff
}

.fast-payment-box .fast-payment-content .fast-payment-step .step-number i {
    font-size: 14px;
}

.fast-payment-box .fast-payment-content .fast-payment-step .step-icon {
    font-size: 18px;
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #1E2939;
}

.fast-payment-box .fast-payment-content .fast-payment-step .step-title {
    font-size: 18px;
    color: #1E2939;
    font-weight: 500;
    flex: 1
}

.fast-payment-box .fast-payment-content .fast-payment-step .step-edit {
    font-size: 14px;
    color: #1E2939;
    text-decoration: none;
    margin-left: 10px;
}

.fast-payment-box .fast-payment-content .fast-payment-step .step-edit:hover {
    text-decoration: underline;
}

.fast-payment-box .fast-payment-content .fast-payment-information {
    display: flex;
    flex-direction: column;
    color: #787987;
}
.fast-payment-box .fast-payment-content .fast-payment-information .message {
    color: #1E2939;
    margin-bottom: 20px;
}

.fast-payment-box .fast-payment-content .fast-payment-information .name {
    color: #1E2939;
    margin-bottom: 5px;
}

.fast-payment-box .fast-payment-content .fast-payment-information .note {
    margin-bottom: 5px;
}

.fast-payment-box .fast-payment-content .fast-payment-information .item {
    margin-bottom: 5px;
}

.fast-payment-box .fast-payment-content .fast-payment-information .item .label {
    margin-right: 10px;
}

.fast-payment-box .fast-payment-content .fast-payment-information .item .value {
    color: #1E2939;
}

.fast-payment-box .fast-payment-content .buttons .btn {
    width: 100%;
    height: 52px;
    border: 0
}

.fast-payment-box .fast-payment-content .buttons .btn i {
    margin-left: 10px;
}

.fast-payment-box .fast-payment-content .buttons .btn-text {
    font-weight: 500;
}

.fast-payment-box .fast-payment-content .buttons .btn-success {
    background: #00C950;
    background: linear-gradient(90deg,rgba(0, 201, 80, 1) 0%, rgba(0, 166, 62, 1) 100%);
    border-radius: var(--fast-payment-radius);
}

.fast-payment-box .fast-payment-content .fast-payment-complete {
    transition: all 0.2s;
}

.fast-payment-box .fast-payment-content .fast-payment-complete .total-price {
    background: #F9FAFB;
    border-radius: var(--fast-payment-radius);
    margin: var(--fast-payment-content-padding) 0;
    padding: calc(var(--fast-payment-content-padding) * 0.7) var(--fast-payment-content-padding);
    display: flex;
    justify-content: space-between;
    border: 1px solid #E5E7EB;
}

.fast-payment-box .fast-payment-content .fast-payment-complete .total-price .amount {
    font-size: 16px;
    font-weight: 500;
    color: #00A63E;
}

.fast-payment-box .fast-payment-content .fast-payment-complete .payment-security {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 var(--fast-payment-content-padding);
    margin-top: var(--fast-payment-content-padding);
    color: #8A8B94;
}

.fast-payment-box .fast-payment-content .fast-payment-complete .payment-security i {
    margin-right: 10px;
    color: #a6a7b2;
}

.fast-payment-box .fast-payment-content .print-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: var(--fast-payment-content-padding);
    margin-bottom: var(--fast-payment-content-padding);
}

.fast-payment-box .fast-payment-content .print-info .message {
    color: #8A8B94;
    flex: 1;
}

.fast-payment-box .fast-payment-content .print-info .message span {
    color: #1E2939;
}

.fast-payment-box .fast-payment-content .print-info .btn {
    border-color: var(--fast-payment-content-border);   
    color: #1E2939;
}

.fast-payment-box .fast-payment-content .print-info .btn:hover,
.fast-payment-box .fast-payment-content .print-info .btn:focus {
    background: var(--fast-payment-content-border);
}

.fast-payment-footer {
    width: 100%;
}

.fast-payment-footer .localization {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 var(--fast-payment-content-padding);
    margin-top: var(--fast-payment-content-padding);
}

.fast-payment-footer .localization .dropdown-languages-1 .dropdown-toggle,
.fast-payment-footer .localization .dropdown-currencies-1 .dropdown-toggle  {
    color: #666
}

.fast-payment-footer .localization .dropdown-languages-1 .dropdown-toggle .flag-icon {
    display: none;
}

.fast-payment-footer .card-types {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 var(--fast-payment-content-padding);
    margin-top: var(--fast-payment-content-padding);
}

.fast-payment-footer .card-types span {
    margin: 0 10px
}

.fast-payment-footer .card-types img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.9;
}

.fast-payment-footer .copyright {
    text-align: center !important;
    font-size: 12px !important;
    color: #666 !important;
    margin-top: var(--fast-payment-content-padding) !important;
}


@media (max-width: 991px) {
    .fast_payment-body {
        --fast-payment-content-padding: 18px;
    }

    .fast-payment-wrapper .fast-payment-container {
        max-width: 100%;
        margin: 0;
    }

    .fast-payment-box {
        border-radius: 0;
        box-shadow: none;
    }
}

