.banner-wrapper {
    background: url(../images/donate-banner.png);
    background-position: center;
    background-size: cover;
    padding: 150px 0;
}

.donate-title h1 {
    font-size: 46px;
    line-height: 64px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.donate-wrapper {
    padding: 90px 0 0;
    /* background: var(--header-bg); */
}

.about-content-box span {
    font-size: 25px;
    color: var(--description-color);
    margin: 0;
    display: unset;
    font-family: 'roboto-bold';
}

.donate-inf-text span {
    font-size: 25px;
    color: var(--description-color);
    margin: 0;
    display: unset;
    font-family: 'roboto-bold';
}

.about-content-box p span {
    font-size: 25px;
    color: var(--description-color);
    margin: 0;
    display: unset;
    font-family: 'roboto-bold';
}

.donate-content:before {
    height: 58%;
}

.donate-content:after {
    height: 58%;
    right: -100px;
}

.donate-inf-text h4 {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 10px;
}

.donate-inf-text h5 {
    font-size: 20px;
    font-family: "roboto-bold";
    padding-bottom: 40px;
    padding-top: 30px;
}

.donate-inf-text {
    margin-bottom: 30px;
}

.donate-inf-content {
    padding-top: 30px;
}

.donate-inf-wrapper {
    padding-bottom: 150px;
}

.doner-inf-box {
    background: #EAEAEA;
    border-radius: 60px;
    padding: 60px;
}

.doner-inf-content {
    padding-top: 40px;
}

.input-box {
    padding-bottom: 15px;
}

.input-box label {
    font-size: 14px;
    line-height: 20px;
    color: var(--title-color);
    font-family: "roboto-bold";
    margin-bottom: 5px;
}

.input-box input {
    padding: 10px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 1px 2px 8px #1018280D;
}

.redio-title-box h4 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 15px;
}

.credit-card-box .row {
    align-items: center;
}


.redio-box {
    position: relative;
}

.redio-box input[type=radio] {
    position: absolute;
    visibility: hidden;
}

.redio-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.redio-box .check {
    display: block;
    position: absolute;
    border: 2px solid #AAAAAA;
    border-radius: 100%;
    height: 24px;
    width: 24px;
    top: 0;
    left: 0;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}


/* ul li:hover .check {
    border: 5px solid #FFFFFF;
} */

.redio-box .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 12px;
    width: 12px;
    top: 4px;
    left: 4px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

.redio-box input[type=radio]:checked~.check {
    border: 2px solid var(--span-color);
}

.redio-box input[type=radio]:checked~.check::before {
    background: var(--span-color);
}

.redio-box input[type=radio]:checked~label {
    color: var(--span-color);
}

.redio-box label {
    display: block;
    position: relative;
    font-size: 16px;
    padding: 0 0 0 34px;
    line-height: 24px;
    /* margin: 10px auto; */
    /* height: 30px; */
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
}

.rido-btn-box {
    padding-top: 10px;
}

.check-box {
    margin-bottom: 20px;
    display: flex;
    /* align-items: center; */
    gap: 0;
}

.check-box label {
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    width: 80%;
}


.check-box input[type=checkbox]:checked {
    background-color: var(--btn-color);
    border-color: var(--btn-color);
    opacity: 1;
}


.check-box input[type=checkbox] {
    position: relative;
    border: 2px solid #000;
    border-radius: 2px;
    background: 0 0;
    cursor: pointer;
    line-height: 0;
    margin: 0 0.6em 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-bottom;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
}



.check-box input[type=checkbox],
input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}



.check-box input[type=checkbox]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 5px;
    height: 11px;
    border: solid #EAEAEA;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.doner-check-box {
    padding-top: 40px;
}

.card-img img {
    margin-bottom: 20px;
}

.credit-btn-box {
    text-align: right;
    margin-top: 30px;
}

.credit-btn-box a {
    background: var(--btn-color);
}

.common-btn button#payNow {
    font-size: var(--donate-button-text-size);
    line-height: 20px;
    letter-spacing: 0.2em;
    padding: 12px 25px;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    display: inline-block;
    background: var(--btn-color);
    box-shadow: 3px 4px 9px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    cursor: pointer;
}

.common-btn button#payNow:hover {
    background: var(--background);
    color: var(--text-color);
    transition: 0.6s ease-in-out;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.donate-tabs-box .nav-tabs {
    justify-content: space-between;
    flex-wrap: unset;
    background-color: #fff;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    width: 100%;
    border-radius: unset;
    border: 0;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--span-color);
    border: 0;
    color: #fff;
}

/* .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #eee;
    isolation: unset;
    border: 0;
} */

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    color: var(--title-color);
}

.donate-tabs-box button.nav-link {
    position: relative;
}

.donate-tabs-box button.nav-link.active:before {
    content: " ";
    position: absolute;
    left: 12%;
    /* top: 0; */
    box-sizing: border-box;
    border: 10px solid black;
    border-color: transparent transparent #4AAB21 #4AAB21;
    transform-origin: 0 0;
    transform: rotate(-45deg);
    box-shadow: -4px 3px 5px 0 rgba(220, 220, 220, 0.4);
    bottom: -19px;
}

.donate-tabs-box button.nav-link {
    border-right: 1px solid #eee;
}

.other-email {
    display: none;
}

.other-email input {
    padding: 10px 40px 10px 10px;
}


.other-email button {
    position: relative;
}

.other-email button::after {
    transform: rotate(135deg);
}

.other-email button::before {
    transform: rotate(45deg);
}

.other-email button::after,
.other-email button::before {
    width: 16px;
    height: 2px;
    background: var(--title-color);
    display: inline-block;
    content: "";
    position: absolute;
    left: 5px;
    top: 12px;
}

.other-email input {
    width: 100%;
}

.input-box.other-email {
    position: relative;
    width: 100%;
    padding: 0;
}

.other-email button {
    position: absolute;
    top: 10px;
    right: 7px;
    padding: 13px;
    background: unset;
}




.check-input,
.check-month {
    display: none;
}


.check-input input,
.check-input select,
.check-month input {
    padding: 10px 40px 10px 10px;
}


.check-input button::after,
.check-month button::after {
    transform: rotate(135deg);
}

.check-input button::before,
.check-month button::before {
    transform: rotate(45deg);
}

.check-input button::after,
.check-input button::before {
    width: 16px;
    height: 2px;
    background: var(--title-color);
    display: inline-block;
    content: "";
    position: absolute;
    left: 5px;
    top: 12px;
}

.check-month button::after,
.check-month button::before {
    width: 16px;
    height: 2px;
    background: var(--title-color);
    display: inline-block;
    content: "";
    position: absolute;
    left: 5px;
    top: 12px;
}

.check-input input,
.check-input select,
.check-month input {
    width: 100%;
    margin-top: -20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

#card-errors {
    color: red;
    font-weight: 800;
}

.input-box.check-input, .input-box.check-month {
    position: relative;
    width: 100%;
    padding: 0;
}

.check-input button,
.check-month button {
    position: absolute;
    top: 0px;
    right: -30px;
    padding: 13px;
    background: unset;
}

.redio-btn {
    gap: 10px;
}

.check-input {
    display: none;
}


.donate-tabs-title h4 {
    font-size: 22px;
    line-height: 28px;
    color: var(--title-color);
    font-family: 'roboto-bold';
    padding-bottom: 30px;
}

.zelley-pay-box p {
    font-size: 16px;
    color: black;
}

.zelley-pay-box a {
    font-size: 17px;
    font-family: 'roboto-reguler';
}

/* #buttons-container .paypal-button-container{
margin: 30px auto !important;
} */
.center-pay-btn {
    display: flex;
    justify-content: center;
}

#paypal-button-container {
    width: 50%;
    margin-top: 15px;
}

.forminator-button-paypal .paypal-buttons-context-iframe {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1655px) {
    .doner-inf-box {
        border-radius: 50px;
        padding: 50px;
    }

    .common-btn button#payNow {
        font-size: 22px;
        line-height: 22px;
        letter-spacing: 0.1em;
        padding: 12px 20px;
    }
}

@media (max-width: 1365px) {
    .redio-btn {
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

    .doner-inf-box {
        border-radius: 40px;
        padding: 40px;
    }

    .donate-tabs-title h4 {
        padding-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .common-btn button#payNow {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.1em;
        padding: 12px 20px;
    }

    .doner-inf-box {
        border-radius: 30px;
        padding: 30px;
    }

    .banner-wrapper {
        padding: 100px 0;
    }

    .donate-title h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .donate-content:after {
        right: -50px;
    }
}

@media (max-width: 991px) {
    .donate-inf-text h4 {
        font-size: 26px;
        line-height: 30px;
    }

    .donate-inf-text h5 {
        padding-bottom: 30px;
        padding-top: 20px;
        font-size: 18px;
    }

    .doner-inf-box {
        padding: 40px;
        border-radius: 40px;
    }

    .redio-btn {
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

    .donate-inf-wrapper {
        padding-bottom: 0;
    }

    .donate-title h1 {
        font-size: 34px;
        line-height: 38px;
        margin-bottom: 25px;
    }

    .banner-wrapper {
        padding: 85px 0;
    }

    .credit-card-img img {
        margin-bottom: 15px;
    }

    .donate-content:before {
        width: 20%;
    }

    .donate-content::after {
        width: 20%;
    }

    .credit-btn-box {
        margin-top: 20px;
    }

    .donate-tabs-title h4 {
        font-size: 20px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .common-btn button#payNow {
        font-size: 16px;
        line-height: 20px;
        padding: 10px 16px;
    }

    .donate-inf-text h4 {
        font-size: 22px;
        line-height: 28px;
    }

    .donate-inf-text h5 {
        font-size: 16px;
    }

    .donate-inf-content {
        padding-top: 20px;
    }

    .donate-title h1 {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 15px;
    }

    .banner-wrapper {
        padding: 75px 0;
    }

    .donate-title p {
        max-width: 100%;
    }

    .card-img img {
        width: 100%;
    }

    .donate-desription h3 {
        margin-bottom: 10px;
    }

    .donate-content:after {
        height: 40%;
        bottom: 0;
    }

    .credit-main-bxo label {
        display: none;
    }

    .credit-btn-box {
        margin-top: 10px;
    }

    .donate-content:after {
        right: -100px;
    }
}

@media (max-width: 575px) {

    .common-btn button#payNow {
        font-size: 14px;
        line-height: 20px;
        padding: 10px 10px;
    }

    .donate-inf-text h4 {
        font-size: 20px;
        line-height: 24px;
    }

    .redio-btn {
        justify-content: center;

    }

    .check-box label {
        width: 90%;
    }

    .redio-title-box h4 {
        font-size: 18px;
    }

    .doner-check-box {
        padding-top: 20px;
    }

    .donate-tabs-box .nav-tabs {
        flex-wrap: wrap;
    }

    .donate-inf-text {
        margin-bottom: 20px;
    }

    .donate-inf-content {
        padding-top: 15px;
    }

    .donate-title h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .donate-tabs-box button.nav-link.active:before {
        display: none;
    }

    .donate-tabs-box button.nav-link {
        border-bottom: 1px solid #eee;
    }

    .donate-content:after {
        right: 0;
    }
}

@media (max-width: 480px) {
    .common-btn button#payNow {
        font-size: 14px;
        line-height: 18px;
        padding: 10px 16px;
    }

    .donate-inf-text h4 {
        font-size: 18px;
        line-height: 22px;
    }
}

#donation-result {
    position: relative;
    top: 15px;
}

#donation-result .success-message {
    color: green;
    font-weight: 700;
}

#donation-result .error-message {
    color: red;
    font-weight: 700;
}

.input-box label.error {
    color: red;
}

.redio-box label.error {
    /* Add styles to make the radio button red when it's required and not selected */
    display: none !important;
}

input[type="radio"].error~.check::before {
    background-color: red !important;
}

/* 
.InputContainer input.InputElement {
    padding: 10px !important;
    width: 100% !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-shadow: 1px 2px 8px #1018280D !important;
} */


/*html body #card-element iframe{
    width: 100%;
    border: 1px solid #ddd !important;
    border-radius: 8px;
    box-shadow: 1px 2px 8px #1018280D;
    height: 46px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 10px !important;
    padding-left: 10px !important;
    background: #fff;
}*/

.spinner.loading {
    display: none;
     padding-top: 50px; 
    position: relative;
    height: 70px;
    width: 70px;
  }
  
  .spinner.loading:before {
    content: "";
    height: 70px;
    width: 70px;
    margin: -15px auto auto -15px;
    position: absolute;
    border-width: 10px;
    border-style: solid;
    border-color: #2180c0 #ccc #ccc;
    border-radius: 100%;
    animation: rotation .7s infinite linear;
  }
  
  @keyframes rotation {
    from {
      transform: rotate(0deg);
    } to {
      transform: rotate(359deg);
    }
  }