body {
    /*color: white;*/
}

#background-image {
    background-image: none;
}

.container {
    padding-left: 12px;
    padding-right: 12px;
}

input[type="text"], select {
    height: 46px;
}


.header--payment-page {
    display: flex;
    padding: 43px 25px 30px 0px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    box-shadow: none;
}


.header--page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 50px;
    color: #000000;
}

.header--secure {
    text-align: center;
}


.order-summary {
    color: #EE293D;
    font-family: Cantata One, sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 40.8px */
    letter-spacing: 1.36px;
    text-transform: uppercase;
    padding-top: 23px;
}

.order-valid {
    color: #EE293D;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 127.273%;
    padding: 16px 0 0px;
}


.order-summary-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.osd--column {
    padding: 20px 0;
    border-radius: 5px;
    flex: 1;
}

.osd--column:nth-child(2) .osd--header {
    width: 371px; /* Set the width of the header in the second column */
}

.osd--column:nth-child(3) {
    width: 177px; /* Set the width of the third column */
    flex: none; /* Do not allow the third column to grow or shrink */
}

.osd--column:last-child {
    border-right: none;
}

.osd--row {
    display: flex;
    justify-content: flex-start;
    padding: 7px 0;
}

.osd--header {
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 109.091%;
    width: 143px; /* Set the width of the header */
}

.osd--value {
    color: #444444;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 109.091% */
    text-align: left; /* Align text to the left */
    max-width: 270px;
}

.osd--value-highlight {
    color: #EE293D;
}

.text-white {
    color: white;
}

.text-black {
    color: black;
}

.order-note {
    padding-top: 20px;
    padding-bottom: 10px;
    color: #444444;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 127.273%;
    display: inline-block;
    max-width: 560px;

}

.order-note > * {
    display: inherit;
}

.order-note a {
    color: darkblue;
    text-decoration: none;
}

.order-note a:hover {
    color: #EE293D;
}

.submit-wrapper {
    padding-top: 60px;
}

.payment--submit, .payment--home-btn {
    color: white;
    background: #14B625;
    border: 1px solid #EE293D;
    border-radius: 5px;
    font-size: 18px;
    line-height: 20px;
    border: none;
    cursor: pointer;
    height: 60px;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 20px 80px;
}

.payment--submit:hover {
    background: #0ACF1E;
}



.card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card-left,
.card-right {
    padding: 20px 20px 20px 50px;
    border-radius: 10px;
    border: 1px solid #8b8b8b;
    margin-bottom: 20px;
    margin-left: -20px;
}

.card-left {
    background: #d1d1d1;
    flex: 0 0 auto;
    width: calc(100% - 224px);
    z-index: 1;
}

.card-right {
    width: 224px;
    background: linear-gradient(180deg, #0F0F0F 0%, #1B1B1B 100%);
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-label {
    color: #444444;
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 95%;
    margin-bottom: 10px;
    margin-top: 26px;
}

.card-input {
    color: #FFF;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 95%;
    border-radius: 10px;
    border: 1px solid #FFF;
    padding: 13px 15px;
    margin-bottom: 20px;
    background: transparent;
}

.card-input::placeholder {
    color: #646464;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    line-height: 95%;
}

.card-expiration {
    width: 111px;
}

.card-cvc {
    width: 87px;
}


.card-left .ElementsApp, .card-left .ElementsApp .InputElement {
    color: black;
}


@media (max-width: 768px) {
    .header--payment-page {
        padding: 25px 15px 30px 0px;
    }
    .header--page-title {
        font-size: 48px;
        letter-spacing: 2.6px;
    }

    .order-summary {
        padding-top: 5px;
    }

    .osd--column {
        border-right: none;
        flex-basis: 100%;
        padding: 20px 0 0;
    }

    .card-left,
    .card-right {
        width: 70%; /* Full width on smaller screens */
        max-width: 100%;
        padding: 10px 10px 10px 30px;
    }
    .card-right {
        width: 30%;
    }

    .card-label {
        font-size: 16px;

    }

    .submit-wrapper {
        padding-top: 30px;
        text-align: center;
    }

    .payment--submit, .payment--home-btn {
        font-size: 14px;
        padding: 16px 40px;
    }
}

@media (max-width: 460px) {
    .header--page-title {
        font-size: 32px;
        letter-spacing: 1.6px;
    }

    .header--secure {
        font-size: 70%;
    }

    .order-summary {
        font-size: 24px;
    }

    .order-valid, .osd--header, .osd--value, .order-note {
        font-size: 16px;
    }

    .osd--value {
        max-width: 220px;
    }

    .osd--row {
        padding: 5px 0;
    }

    .osd--header {
        width: 34%;
    }

    .order-note {
        padding-top: 16px;
        padding-bottom: 6px;
    }

    .payment--submit {
        font-size: 16px;
        padding: 20px 40px;
    }
}



#cardNumber {
    color: #FFF;
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 95%;
    border-radius: 10px;
    border: 1px solid #FFF;
    padding: 13px 15px;
    margin-bottom: 20px;
    background: transparent;
    min-height: 50px;
}

#cardExpiry {
    color: #FFF;
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 95%;
    border-radius: 10px;
    border: 1px solid #FFF;
    padding: 13px 15px;
    margin-bottom: 20px;
    background: transparent;
    min-height: 50px;
}

#cardCvc {
    color: #FFF;
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 95%;
    border-radius: 10px;
    border: 1px solid #FFF;
    padding: 13px 15px;
    margin-bottom: 20px;
    background: transparent;
    min-height: 50px;
}

.card-messages {
    color: red;
}


.spacer-60 {
    height: 60px;
    padding: 0;
    margin: 0;
    display: block;
}

@media (max-width: 768px) {
    .spacer-md-30 {
        height: 30px;
        padding: 0;
        margin: 0;
        display: block;
    }

    #cardNumber,
    #cardExpiry,
    #cardCvc{
        min-height: 45px;
        padding: 12px;
    }

}


.payment-result--wrapper {
    margin: 60px auto;
    text-align: center;
}

.payment-result--img {
    max-width: 100%;
    padding-bottom: 60px;
}

.payment-result--header {
    color: #FFF;
    text-align: center;
    font-family: PT Serif, serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-bottom: 11px;
}

.payment-result--text {
    color: #444444;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 127.273%;
    padding-bottom: 60px;
}


@media (max-width: 768px) {
    .payment-result--img {
        padding-bottom: 30px;
        max-width: 70%;
    }

    .payment-result--header {
        font-size: 24px;
    }

    .payment-result--text {
        font-size: 16px;
        padding-bottom: 30px;
    }
}














.p_amount {
    width: 90px;
}

.p_email {
    width: 280px !important;
}

.p_cardfield {
    width: 712px;
    margin: 0;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 25px;
}

.p_s {
    width: 280px;
    margin: 0;
    padding-left: 50px;
    padding-top: 15px;
}

.label {
    font-size: 13px;
}

.inputfiled {
    border: 1px solid #c9d1d2 !important;
    border-radius: 8px !important;
}

.w-280 {
    width: 280px !important;
}

.w-80 {
    width: 80px !important;
}

.f-right {
    float: right;
}

.pr-10 {
    padding-right: 10px;
}


#atp {
    padding: 8px 15px;
}

#atp::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#atp[type="number"] {
    -moz-appearance: textfield;
}

#card-errors {
    color: red;
}

.paybanner {
    height: 327px;
    width: 100%;
    background-image: url('/wp-content/uploads/2019/07/payment_header.jpg');
    background-repeat: round;
}

.fusion-footer-widget-area {
    display: none;
}


.hp {
    margin: 0 auto;
    width: 1170px;
    padding-top: 100px;
}

.hp1 {
    margin: 0;
    font-size: 16px;
}

.hp1 a {
    color: white;
}


.hp3 {
    margin: 0;
    font-size: 16px;
    line-height: 20px;
}

.main_paymentdiv {
    margin: 0 auto;
    width: 1170px;
}

.span_text {
    font-size: 13px;
    color: #8c8f90;
}

.paydiv_desc {
    padding-bottom: 40px;
    font-weight: bold;
    font-size: 20px;
}

.visainfo {
    display: flex;
}

.visa {
    width: 712px;
    height: 339px;
    background-image: url('/stripe/ccard.png');
    margin-top: 30px;
    float: left;
}


.fusion-main-menu {
    display: none;
}

