#payment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Oswald, sans-serif;
}

#payment-container * {
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
}

.donation-card {
    background-color: #fff;
    width: 600px;
    padding: 0px;
    border-radius: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
}

.donation-card h2 {
    margin: 0;
    font-family: Oswald;
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
}

.donation-card p {
    font-family: Oswald;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    color: #000;
    margin: 24px 0;
    text-align: left;
}

.donation-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    border: 1px solid rgba(153, 153, 153, 0.6);
    border-radius: 4px;
    overflow: hidden;
    font-family: Oswald;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.15px;
    text-transform: uppercase;
    text-align: center;
}

.donation-options label:not(:last-child) {
    border-right: 1px solid rgba(153, 153, 153, 0.6);
}

.donation-type {
    display: inline-block;
    padding: 14px;
    font-size: 14px;
    /* border: 1px solid #ddd; */
    background-color: #fff;
    /* border-radius: 5px; */
    /* margin: 0 5px; */
    cursor: pointer;
    color: #333;
    transition: background-color 0.3s;
}

.donation-type:hover,
input[type="radio"]:checked+.donation-type {
    background-color: #DA291C;
    color: #fff;
    border-color: #DA291C;
}

.amount-options,
.custom-amount {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    border: 1px solid rgba(153, 153, 153, 0.6);
    border-radius: 4px;
    overflow: hidden;
    font-family: Oswald;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.15px;
    text-align: center;
}

.custom-amount .amount {
    font-size: 16px;
    font-weight: 500;
}

.custom-amount input.custom-input {
    height: 48px;
    border: none;
    outline: none;
    margin-top: 0;
}

.amount-options label:not(:last-child) {
    border-right: 1px solid rgba(153, 153, 153, 0.6);
}

.custom-amount {
    flex-direction: column;
}

.amount {
    display: inline-block;
    padding: 14px;
    font-size: 14px;
    /* background-color: #f9f9f9; */
    /* border: 1px solid #ddd; */
    /* border-radius: 5px; */
    /* margin: 0 5px; */
    cursor: pointer;
    transition: background-color 0.3s;
}

.amount:hover,
.amount:hover .custom-amount-icon path,
input[type="radio"]:checked+.amount,
input[type="radio"]:checked+.amount .custom-amount-icon path {
    background-color: #DA291C;
    color: #fff;
    border-color: #DA291C;
    fill: #fff;
}

.custom-amount {
    margin-bottom: 30px;
}

.custom-amount label {
    position: relative;
    text-align: center;
}

.custom-amount-icon {
    position: absolute;
    bottom: 50%;
    left: 14px;
    transform: translateY(50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.custom-input:focus {
    border-color: #469DB1;
}

.support-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: Oswald;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.15px;
    text-align: center;
    width: 100%;
    padding: 14px;
    background-color: #469DB1;
    color: #fff;
    border: 1px solid #469DB1;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.support-button:hover {
    color: #469DB1;
    border: 1px solid #469DB1;
    background-color: #fff;
}

.support-button svg path {
    color: #fff;
    fill: #fff;
    transition: all 0.3s ease;
}

.support-button:hover svg path {
    color: #469DB1;
    fill: #469DB1;
}

.payment-methods {
    display: flex;
    justify-content: space-around;
}

.payment-methods img {
    width: 40px;
    height: auto;
}

/* Hide the radio buttons but still make them functional */
input[type="radio"] {
    opacity: 0;
    /* Makes the radio button invisible */
    position: absolute;
    /* Removes it from the flow of the document */
    pointer-events: none;
    /* Prevents accidental interaction */
}

.donation-options label {
    width: 50%;
}

.donation-type {
    width: 100%;
}

.amount-options label {
    width: 25%;
}

.amount-options .amount {
    width: 100%;
}

.amount {
    width: 100%;
}

.image-container img {
    width: 100%;
}

#payment-second-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#payment-modal.fancybox-content, #payment-success-modal.fancybox-content {
    padding: 0;
    margin-top: 24px;
    max-width: 1040px;
    border-radius: 20px;
}

#payu-payment-form {
    background-color: #fff;
    width: 100%;
    padding: 0;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
}

#payu-payment-form .image-container {
    flex: 0 0 36%;
    /* Takes 40% of width */
    background-color: #fff;
    /* Optional background for visibility */
}

#payu-payment-form .image-container img {
    width: 100%;
    /* Make image fill the container's width */
    height: 100%;
    /* Make image fill the container's height */
    object-fit: cover;
    /* Ensures the image covers the space without distortion */
}

#payu-payment-form .content-container {
    flex: 1;
    /* Takes the remaining space */
    padding: 20px;
    /* Add some spacing for content */
    background-color: #fff;
    /* Optional background */
    overflow-y: auto;
    /* Handles overflow if the content is long */
}

#payu-payment-form #donation-heading {
    font-family: Oswald;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
}

#payu-payment-form .highlight {
    color: red;
}

#payu-payment-form .divider {
    width: 80%;
    /* 80% of the parent container's width */
    border-top: 1px solid #d8c2be;
    /* Creates the divider line */
    margin: 0 auto;
    /* Centers the divider */
}

#payu-payment-form #donation-details {
    font-family: Oswald;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase;
    margin: 24px 30px;
}

#payu-payment-form .payment-heading-2 {
    font-family: Oswald;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase;
    margin: 24px 0px;
}

/* General form styling */
.payu-form {
    max-width: 90%;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

/* Input field styling */
.payu-form .input-wrap {
    text-align: left;
    font-family: Oswald;
    flex: 1;
    width: 100%;
}

.payu-form .input-wrap label {
    color: #4F5B76;
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-align: left;
}

.payu-form input[type="text"],
.payu-form input[type="email"] {
    flex: 1;
    width: 100%;
    height: 48px;
    color: #1D1C14;
    padding: 14px 16px;
    font-family: Oswald;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-align: left;


    border: 2px solid #E0E0E0;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.payu-form input[type="text"]::placeholder,
.payu-form input[type="email"]::placeholder {
    color: #A5ACB8;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border-color: #009ca6;
}


/* Button styling */
.payu-form button {
    /* padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer; */
}

.payu-form button:hover {
    color: #fff;
    background-color: #469DB1;
}

.form-checkbox {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0;
}

.payu_pay_button,
.payu_pay_button:focus,
.payu_success_close_button,
.payu_success_close_button:focus {
    width: 100%;
    margin-top: 24px;
    text-transform: uppercase;
    background-color: #e32828;
    font-family: "Oswald", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.15px;
    fill: #fff;
    color: #fff;
    padding: 14px 21px 14px 21px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.payu_success_close_button {
    max-width: 280px;
}

.payu_pay_button:hover,
.payu_success_close_button:hover {
    color: #fff;
    background-color: #469DB1;
}

.payu-card-container {
    text-align: center;
    margin: 20px auto 10px;
    display: block;
    border-radius: 5px;
    box-sizing: border-box;
}

.card-container {
    width: 100%;
    margin: 0 auto;
    border-radius: 6px;
    padding: 0;
    background: #fff;
    color: #4F5B76;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    box-sizing: border-box;
}

.card-container aside {
    color: #4F5B76;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-align: left;
    margin-bottom: 4px;
}

.payu-card-form {
    background-color: #ffffff;
    border: 2px solid #E0E0E0;
    padding: 14px 16px;
    border-radius: 4px;
}
.payu-secure-form-focus{
    border: 2px solid #469DB1;
}
.card-details {
    display: flex;
    gap: 10px;
    clear: both;
    overflow: auto;
    margin-top: 10px;
}

.card-details .expiration {
    width: 50%;
    padding-right: 0%;
}

.card-details .cvv {
    width: 50%;
}

button {
    border: none;
    background: #469DB1;
    padding: 8px 15px;
    margin: 10px auto;
    cursor: pointer;
}

.response-success {
    color: #438f29;
}

.response-error {
    color: #990000;
}

.fancybox-slide--html .fancybox-close-small:hover {
    color: #fff;
    background-color: #469DB1;
}

/* Responsive */
@media only screen and (max-width: 767px) {
    #payu-payment-form .image-container.left-column {
        display: none;
    }
}