* {
    font-family: 'Montserrat', sans-serif;
}

body.form-body {
    position: relative;
    display: flex;
}

body.form-body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);

    z-index: -1;
}

.vertical-donation-form {
    max-width: 1400px;
    margin: auto;
    width: 100%;
}


.row.contents {
    display: flex;
}

.form_contents {
    width: 50%;
    padding: 140px 50px 20px 65px;
}

.image_section {
    width: 50%;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);
    height: fit-content;
    margin-top: 40px;
    margin-right: 65px;
    margin-left: 50px;
}

.image_section img {
    width: 100%;
}


.logo_img_wrapper {
    width: 130px;
    height: 130px;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    background: #F3FAFC;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    position: relative;
    overflow: hidden;
}

.logo_img_wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.description_section {
    color: var(--TextPrimary, #62665F);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 5px;
}

.description_headeing h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    padding-bottom: 10px;
}

.form_slider_buttons {
    padding-top: 10px;
    display: flex;
    justify-content: space-around;
}

.form_slider_buttons span {
    padding-bottom: 12px;
    color: rgba(185, 197, 197, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    width: 33.33%;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.form_slider_buttons span::before {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background-color: rgba(185, 197, 197, 0.50);
    position: absolute;
    bottom: 0;
}

.form_slider_buttons span.text_active::before {
    background-color: var(--primary-color);
}

.form_slider_buttons span.text_active {
    color: var(--primary-color);
}

.donation_types_section,
.quaterly_donation_types_section{
    padding-top: 20px;
    padding-bottom: 10px;
}

.donation_types_section .row,
.quaterly_donation_types_section .row{
    display: flex;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 5px;
    box-shadow: 0px 4px 16px 0px rgba(174, 181, 168, 0.3);
}

.donation_types_section .row div,
.quaterly_donation_types_section .row div {
    width: 50%;
}

.donation_types_section span,
.quaterly_donation_types_section span{
    padding: 16px 30px;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 14px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
}

.donation_amounts_section>div {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(49px, 1fr));

}

.choose-amount.mandatory-fields {

    text-align: center;
    padding: 10px;
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-amount.mandatory-fields.active {
    background: var(--primary-color);
}

.choose-amount.mandatory-fields.active button {
    color: #fff;
}

.donation_amounts_section button,
.small_donation_amounts_section {
    color: #62665F;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.donation_amounts_description {
    color: var(--TextPrimary, #62665F);
    text-align: center;
    padding: 12px;
    border-radius: 13px;
    border: 1px solid var(--TextPrimary, #62665F);
    font-size: 17px;
    font-style: normal;
    line-height: 18px;
    margin-top: 10px;
}

.makeadifference {
    color: var(--TextPrimary, #62665F);
    text-align: center;
    padding: 12px;
    border-radius: 13px;
    border: 1px solid var(--TextPrimary, #62665F);
    font-size: 17px;
    font-style: normal;
    line-height: 18px;
}

.amount_description_header {
    font-weight: 700;
    padding-bottom: 20px;
}

p.makeadifference-heading {
    font-weight: 700;
    padding-bottom: 20px;
}

.amount_description_content_section {
    max-width: 400px;
    margin: auto;
}

p.makeadifference-content {
    max-width: 400px;
    margin: auto;
}

.custom_amount_section {
    display: flex;
    height: 56px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative;
}

.custom_amount_currency {
    width: 40px;
    height: 100%;
    border-radius: 14px 0px 0px 14px;
    position: absolute;
}

.custom_amount_currency::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.25;
    border-radius: 14px 0px 0px 14px;
}

.custom_amount_section input {
    width: 100%;
    height: 100%;
    border-radius: 14px 14px 14px 14px;
    background: var(--decreaseOpacity);
    padding-left: 35px;
    color: #62665F;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;

}

.custom_amount_section input::placeholder {
    color: #62665F;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

span.currency_symbol {
    color: var(--primary-color);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.donar_details_section_sub_wrapper input {
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 10px;
    color: #000000;

}

.donar_details_section_sub_wrapper input::placeholder {
    color: var(--TextPrimary, #62665F);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.email_address_section input {
    margin-bottom: 10px;
}

.donor_name_section .row {
    display: flex;
    gap: 10px;
}

.first_name_section,
.last_name_section {
    width: 50%;
}

.Conformation_section label {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.donar_details_section_sub_wrapper input.company_behalf_conform {
    height: 20px;
    padding: 0;
    width: 20px;
    margin: 0;
}

.apple_payment_sub_wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    background: #000;
    padding: 15px;
    justify-content: center;
    border-radius: 14px;
    height: 52px;
    cursor: pointer;
}

span.apple_span {
    color: var(--Accent, #F3FCF7);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.apple_payment_section {
    margin-bottom: 10px;
}

.payment_methods_seperation {
    text-align: center;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.20);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.payment_methods_buttons {
    display: grid;
    border-radius: 14px;
    align-items: center;
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.card_payment_button,
.bank_payment_button,
.paypal_button {
    font-family: Poppins;
    padding: 16px 26px;
    display: flex;
    text-align: center;
    border-radius: 14px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: #fff;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--primary-color);
    gap: 5px;
}

.card_payment_button.active:before,
.bank_payment_button.active:before,
.paypal_button.active:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.10;
    border-radius: 14px;
}

.card_and_bank_payment_methods {
    margin-bottom: 10px;
}

.volundary_section h4.donation_amount_title {
    color: #62665F;
    font-size: 17.409px;
    font-style: normal;
    font-weight: 600;
    line-height: 17.781px;
    letter-spacing: -0.381px;
    text-transform: capitalize;
}

.volundary_section h6 {
    color: var(--primary-color);
    font-size: 13.41px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.781px;
    letter-spacing: -0.38px;
}

.form_changing_buttons_sub_section {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form_changing_buttons_sub_section button {
    color: var(--TextPrimary, #62665F);
    height: 56px;
    width: 50%;
    border-radius: 14px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-family: "Poppins", sans-serif;
}


.form_changing_buttons_sub_section button.active {
    background: var(--primary-color);
    color: #fff;
}

.Conformation_section label {
    position: relative;
}

input.company_behalf_conform:checked~span.company_behalf_input {
    background: var(--primary-color);
}

span.company_behalf_input {
    position: absolute;
    top: 9px;
    transform: translate(0px, -50%);
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid var(--primary-color);
    pointer-events: none;
    border-radius: 7px;
}

span.company_behalf_input:after {
    left: 50%;
    top: 45%;
    width: 7px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    content: "";
    rotate: -5deg;
}

input.company_behalf_conform:checked~span.company_behalf_input:after {
    border: 1px solid #fff;
    left: 50%;
    top: 45%;
    width: 6px;
    height: 9px;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    content: "";
    rotate: -5deg;
}

.donar_details_section_sub_wrapper input.company_behalf_conform {
    opacity: 0;
}

.Conformation_section label span {
    color: var(--primary-color);
    text-align: left;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.form_changing_buttons_section {
    margin-top: 15px;
}

button.changing_buttons.forward.active.full_width {
    width: 100%;
}

.donation_types_section span.active,
.quaterly_donation_types_section span.active {
    position: relative;
    height:100%;
}

.donation_types_section span.active:before,
.quaterly_donation_types_section span.active:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--decreaseOpacity);

    border-radius: 14px;
}

/* 31-01-24 */

.form-control.nf-border-radius {
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 10px;

    -webkit-appearance: none;
}

.month-year-wrapper {
    display: flex;
    gap: 10px;
}

.form-control.required.mandatory-fields {
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
}


.field_error,
.error {
    color: #db2929;
    font-size: 15px;
    border: none;
    line-height: 16px;
    font-weight: 400;
    border-radius: 3px;
    margin-bottom: 10px;
    position: relative;
    text-align: left;
}

.card_name {
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 10px;
    color: #000;

}

.card_name.valid {
    color: #000;
}

.month-year-wrapper input.valid {
    color: #000;
}

.bank_payment_section {
    display: flex;
}

.bank-options-sub-wrapper {
    width: 33.33%;
}

.form_changing_buttons_section .submit_btn {
    background: var(--primary-color);
    color: #fff;
}

.bank_payment_section {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.bank-options-sub-wrapper {
    width: 33.33%;
}

.revolut-bank-sub-wrapper,
.bankofireland-bank-sub-wrapper,
.aibPayBankLi-bank-sub-wrapper {
    background: var(--primary-color);
    height: 56px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.bank-options-sub-wrapper img {
    height: 40px;
}

.donar_details_section_sub_wrapper input.question_checkbox,
.donar_details_section_sub_wrapper input.question_radio {
    width: 20px;
    height: 20px;
    margin: 0;
}

.donar_details_section_sub_wrapper .ifr-sponsor-search {
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}

.question_section_options {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #62665F;
}

.question_section label {
    color: #62665F;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.5px;
    text-align: left;
}

.question_section label.radio-inline {
    font-size: 15px;
    font-weight: 500;
}



span.answer_checkbox_span {
    position: absolute;
    top: 13px;
    transform: translate(0px, -50%);
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #62665F;
    pointer-events: none;
    border-radius: 7px;
}

.donar_details_section_sub_wrapper input.question_checkbox:checked~span.answer_checkbox_span {
    background: transparent;
}

span.answer_checkbox_span:after {
    left: 50%;
    top: 45%;
    width: 7px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    content: "";
    rotate: -5deg;
}


.donar_details_section_sub_wrapper input.question_checkbox:checked~span.answer_checkbox_span:after {
    border: 1px solid var(--primary-color);
    left: 50%;
    top: 45%;
    width: 5px;
    height: 9px;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    content: "";
    rotate: -5deg;
}

.donar_details_section_sub_wrapper input.question_checkbox {
    opacity: 0;
    margin-right: 5px;
}

.donar_details_section_sub_wrapper input.question_radio {
    position: relative;
    top: 3px;
    accent-color: #62665F;
    opacity: 0;
    margin-right: 5px;
    -webkit-appearance: auto;
    padding: 0;
}

.card_payment_button,
.bank_payment_button,
.paypal_button {
    position: relative;
}

.donar_details_section_sub_wrapper input::placeholder {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.question_section {
    margin-top: 10px;
}

.volundary_section span.seperator.sep1 {
    left: 12.5%;
}

.volundary_section span.seperator.sep2 {
    left: 25%;
}

.volundary_section span.seperator.sep3 {
    left: 37.5%;
}

.volundary_section span.seperator.sep4 {
    left: 50%;
}

.volundary_section span.seperator.sep5 {
    left: 62.5%;
}

.volundary_section span.seperator.sep6 {
    left: 75%;
}

.volundary_section span.seperator.sep7{
    left: 87.5%;
}

.volundary_section span.seperator.sep8 {
    left: 100%;
}
.volundary_section span.seperator {
    background: rgb(255 255 255);
    width: 3px;
    height: 5px;
    top: 0px;
    position: absolute;
    cursor: pointer;
}

.volundary_section .wrap-div span.ui-slider-handle {
    transform: translate(0px, -50%);
    top: 50%;
    cursor: pointer;
    box-shadow: 0px 1px 11px 0px #0000001a;
    outline: none;
}

.volundary_section span.ui-slider-handle {
    background: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    top: -18px;
    border: 2px solid #fff;
}

.volundary_section .wrap-div {
    width: 100%;
    margin: 0 auto;
    padding-top: 18px;
    padding-bottom: 12px;
}


.volundary_section .ui-slider {
    background: var(--primary-color);
    height: 5px;
    border-radius: 0;
}

.volundary_section .ui-widget.ui-widget-content {
    border: none;
}

.voluntary-contribution {
    font-family: "Poppins", sans-serif;
}

.voluntary-contribution .tippingOption {
    text-align: center;
    display: flex;
    justify-content: center;
}

.voluntary-contribution .tippingOption span {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.47266942262649536px;
    text-align: center;
    color: #474747;
}

.voluntary-contribution .tippingOption.precentage span {
    font-family: "Comfortaa", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.47266942262649536px;
    text-align: center;
    color: #47474780;
}

.voluntary-contribution .idonate-declaration {
    font-size: 11px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.3799999952316284px;
    text-align: left;
    margin-top: 5px;
    margin-bottom: 10px;
}

.voluntary-contribution .payment-images {
    display: flex;
    justify-content: space-between;
    padding: 16px 30px;
    z-index: -2;
    position: relative;
}

.idonate-tc-accept p {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.3799999952316284px;
    text-align: center;
    color: #62665F;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-group.frNw-charityq_points {
    margin-bottom: 10px;
    padding-top: 5px;
}

.form-group.frNw-charityq_points:first-child {
    padding-top: 0px;
}

input::-webkit-contacts-auto-fill-button {
    visibility: hidden;
    display: none;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.small_custom_amount_section {
    display: flex;
    height: 56px;
    align-items: center;
    margin-top: 14px;
    width: 100%;
}

.small_custom_amount_section input {
    width: 100%;
    height: 100%;
    border-radius: 14px 14px 14px 14px;
    background: var(--decreaseOpacity);
    padding-left: 35px;

}

.small_custom_amount_section input::placeholder {
    color: #62665F;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.donar_details_section_sub_wrapper.second_form {
    margin-top: 20px;
}

.payment-images {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0.5;
    flex-wrap: wrap;
    padding-bottom: 5px;
}

.bandw_wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    height: 56px;
    align-items: center;
    padding: 10px 0px 10px 10px;
    position: relative;
}

.bandw_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D9D9D9;
    opacity: 0.05;
}

.second_section_images {
    display: flex;
    gap: 15px;
    justify-content: center;
    height: 56px;
    align-items: center;
    padding: 10px 10px 10px 0px;
}

.payment-images img {
    height: 20px;
}

.payment_section_wrapper {
    margin-top: 20px;
}

.payment-images img {
    filter: grayscale(1);
}

.voluntary-contribution .idonate-declaration p {
    font-family: "Poppins", sans-serif;
}

.question_section label.error {
    color: #db2929;
    font-size: 15px;
    border: none;
    line-height: 16px;
    font-weight: 400;
    border-radius: 3px;
    margin-bottom: 10px;
    position: relative;
    width: 100%;
    display: block;
}

.form-control.question_text,
.form-control.question_select {
    margin: 0;
}

.form-control.question_select {
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    appearance: none;
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    color: #62665f;
    cursor: pointer;
}

.form-body .main_form {
    margin: 0;
}

.donar_details_section_sub_wrapper .ifr-sponsor-search i.fa-solid.fa-angle-down {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 20px;
    transform: translateY(-50%);
    top: 50%;
    color: #62665F;
}

.card_payment_section .alert-danger {
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #db2929;
    font-size: 16px;
    border: none;
    line-height: 16px;
    font-weight: 400;
    border-radius: 3px;
    position: relative;
    margin-bottom: 10px;
}

.alert-danger li {
    margin-bottom: 10px;
    font-size: 15px;
}

span.answer_radio_span {
    position: absolute;
    top: 13px;
    transform: translate(0px, -50%);
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #62665f;
    pointer-events: none;
    border-radius: 50%;
}

.donar_details_section_sub_wrapper input.question_radio:checked~span.answer_radio_span {
    background: var(--primary-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--decreaseOpacity) inset !important;
}

.payLi {
    display: flex;
    background: #000;
    align-items: center;
    gap: 3px;
    width: 100%;
    padding: 15px;
    justify-content: center;
    border-radius: 14px;
    height: 52px;
    margin-bottom: 10px;
    cursor: pointer;
}

span.gp_logo img {
    width: 55px;
    clip-path: inset(5px 5px 5px 5px);
}

.google_pay_button_sections.complete,
.apple_payment_section.complete {
    margin-bottom: 10px;
}

.month_choose_section select {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    color: #62665F;
    appearance: none;
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;

}

.month_choose_section {
    position: relative;
    margin-bottom: 10px;
}

.month_choose_section i.fa-solid.fa-angle-down {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 20px;
    transform: translateY(-50%);
    top: 50%;
    color: #62665F;
    cursor: pointer;
}

.custom_month_section input {
    width: 100%;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    color: #62665f;
    appearance: none;
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    margin-bottom: 10px;

}

.custom_month_section input::placeholder {
    color: var(--TextPrimary, #62665F);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.card-elementdetails .StripeElement {
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;

}

.card-elementdetails .StripeElement .__PrivateStripeElement {
    width: 100%;
}

.month_choose_section_mob {
    position: relative;
    margin-top: 10px;
}

.month_choose_section_mob i.fa-solid.fa-angle-down {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 20px;
    transform: translateY(-50%);
    top: 50%;
    color: #62665f;
    cursor: pointer;
}

.month_choose_section_mob select {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    color: #62665f;
    appearance: none;
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;

}

.donar_details_section_sub_wrapper input.valid {
    color: #000;
}

.card_name::placeholder,
.month-year-wrapper input::placeholder {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    color: #969A92;
}

.tippingOption.othertip .amount_txt {
    display: flex;
    height: 56px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.tippingOption.othertip .amount_txt .currency_wrapper {
    width: 40px;
    height: 100%;
    border-radius: 14px 0 0 14px;
    position: relative;
}

.tippingOption.othertip .amount_txt .currency_wrapper span {
    color: var(--primary-color);
    font-size: 29px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tippingOption.othertip .amount_txt input {
    width: 100%;
    height: 100%;
    border-radius: 0 14px 14px 0;
    background: var(--decreaseOpacity);
    padding-left: 5px;
    color: #000;
    margin: 0;

}

.tippingOption.othertip .amount_txt input::placeholder {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    color: #969A92;
}

.tippingOption.othertip .amount_txt .currency_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: .25;
    border-radius: 14px 0 0 14px;
}

.custom_month_section_mob input {
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    margin-top: 10px;
    color: #000000;
    margin-bottom: 10px;

}

.custom_month_section_mob input::placeholder {
    font-family: Montserrat;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #62665F;
}

.payment_methods_buttons div {
    width: 100%;
    height: 100%;
}

.vertical-donation-form .container {
    padding-bottom: 25px;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: var(--decreaseOpacity);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

.vertical_form_card_loader {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--primary-color);
}

.tippingOption.othertip {
    display: block;
}

.amount-sec {
    text-align: left;
}


.description_content ul {
    list-style: initial;
}

.description_content ol {
    list-style: auto;
}

.address_section textarea {
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 10px;
    color: #000000;
}

.address_section textarea::placeholder {
    color: var(--TextPrimary, #62665F);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.description_content img{
    margin: 0 auto;
}


.description_content blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
}

.description_content h1 {
    font-size: 4em;
    font-family: OpenSans;
    font-weight: normal;
}

.description_content h2 {
    font-size: 24px;
    border: 0;
    margin: 0px;
    padding: 0px;
    font-weight: 700;
    -webkit-text-stroke: 0px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-right: 15px;
}

.description_content h3 {
    font-size: 1.8em;
    font-weight: 500;
    line-height: 100%;
}

.description_content h4 {
    font-size: 1.5em;
    font-weight: 500;
}

.description_content p u {
    display: inline-block;
}


.description_content p {
    margin-bottom: 10px;
}

input.cancel_at_select:checked~span.company_behalf_input {
    background: var(--primary-color);
}

input.cancel_at_select:checked~span.company_behalf_input:after {
    border: 1px solid #fff;
    left: 50%;
    top: 45%;
    width: 6px;
    height: 9px;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    content: "";
    rotate: -5deg;
}

.month_choose_section span.company_behalf_span {
    position: relative;
}

.month_choose_section span.company_behalf_span input {
    opacity: 0;
    width: 20px;
    height: 20px;
    position: relative;
    top: 5px;
}


.month_choose_section .col-xl-12.col-lg-12.col-md-12.col-sm-12 {
    margin-bottom: 10px;
}

.month_choose_section .cancel_at {
    position: relative;
}

.month_choose_section_mob span.company_behalf_span {
    position: relative;
}

.month_choose_section_mob span.company_behalf_span input {
    opacity: 0;
    width: 20px;
    height: 20px;
    position: relative;
    top: 5px;
}

.month_choose_section_mob .col-xl-12.col-lg-12.col-md-12.col-sm-12 {
    margin-bottom: 10px;
}

.month_choose_section_mob .cancel_at {
    position: relative;
}

.bank-list-wrap {
    display: flex;
    gap: 10px;
}

.nf-bank-first-wrapper {
    padding: 0px 15px;
    background: var(--primary-color);
    color: #fff;
    height: 56px;
    width: 50%;
    border-radius: 14px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
}

.month_choose_section_mob .buttonWrap .form-check,
.month_choose_section .buttonWrap .form-check {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.month_choose_section_mob .buttonWrap .form-check input,
.month_choose_section .buttonWrap .form-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.month_choose_section_mob .buttonWrap .form-check label,
.month_choose_section .buttonWrap .form-check label {
    position: relative;
    display: block;
    height: 100%;
}

.month_choose_section_mob .buttonWrap .form-check label:before,
.month_choose_section .buttonWrap .form-check label:before {
    content: "";
    background: #f4fdfc;
    border-radius: 100%;
    border: 1px solid var(--TextPrimary, #62665F);
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
    top: -1px;
    margin-right: 8px;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

.month_choose_section_mob .buttonWrap .form-check input:checked~label::before,
.month_choose_section .buttonWrap .form-check input:checked~label::before {
    background-color: var(--primary-color);
    box-shadow: inset 0 0 0 4px #f4fdfc;
    border: 1px solid var(--primary-color);
}

.donar_details_section_sub_wrapper select {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0;
    text-align: left;
    color: #62665f;
    appearance: none;
    height: 56px;
    border-radius: 14px;
    background: var(--decreaseOpacity);
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;

}


.address_section.section.address_section_country i.fa-solid.fa-angle-down {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 20px;
    transform: translateY(-50%);
    top: 50%;
    color: #62665f;
    cursor: pointer;
}

.address_section.section.address_section_country {
    margin-bottom: 10px;
    position: relative;
}

.custom_amount_section input.valid,
.custom_month_section input.valid {
    color: #62665F;
}

.description_content li {
    margin-left: 18px;
}

.small_screen_custom_amount_section {
    position: relative;
}

.paypal_section {
    display: flex;
    justify-content: center;
    width: 50%;
}

.paypal_section button {
    height: 38.92px;
    background: var(--primary-color);
    border-radius: 10px;
    color: #fff;
    border: var(--primary-color);
    font-size: 24px;
    transition: 0.5s;
    padding-left: 6px;
    margin-bottom: 10px;
}

.paypal_section .confirmpayment {
    width: 100%;
}

.paypal_section button {
    color: var(--TextPrimary, #62665F);
    height: 56px;
    width: 100%;
    border-radius: 14px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    font-family: "Poppins", sans-serif;
    background: var(--primary-color);
    color: var(--secondary-color);
}

.paypal-button i.fa.fa-angle-right {
    padding-left: 5px;
}

span.payment_buttons.bank_payment_button:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    width: 1px;
    background: var(--primary-color);
    opacity: 0.10;
    height: 25px;
}

span.payment_buttons.card_payment_button:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    width: 1px;
    background: var(--primary-color);
    opacity: 0.10;
    height: 25px;
}


textarea:focus,
input:focus,
select:focus {
    outline: none;
}

.bankButtonNofrix.bankButtonNofrixRevolut.html-element {
    width: 100%;
    height: 56px;
    transition: 0.5s;
    border: 2px solid var(--primary-color);
    border-radius: 14px;
    background: var(--primary-color);
    position: relative;
    display: block;
}

.bankButtonNofrix button {
    height: 100%;
    max-width: 75px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.ipaycommision-section span.check_field-label {
    text-align: left;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    color: #62665F;
}

.ipaycommision-section span.check_field-input input {
    height: 20px;
    padding: 0;
    width: 20px;
    margin: 0;
    display: inline-block;
    opacity: 0;
}

.ipaycommision-section .check_field {
    position: relative;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 5px;
}

.ipaycommision-section span.check_field-empty {
    position: absolute;
    top: 9px;
    transform: translate(0px, -50%);
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid var(--primary-color);
    pointer-events: none;
    border-radius: 7px;
}

.ipaycommision-section span.check_field-input input:checked~span.check_field-empty {
    background: var(--primary-color);
}

.ipaycommision-section span.check_field-empty::before {
    left: 50%;
    top: 45%;
    width: 7px;
    height: 12px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    content: "";
    rotate: -5deg;
}

.ipaycommision-section span.check_field-input input:checked~span.check_field-empty::before {
    border: 1px solid #fff;
    left: 50%;
    top: 45%;
    width: 6px;
    height: 9px;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    content: "";
    rotate: -5deg;
}

.ipaycommision-section p.ipaycommision-noftify {
    font-size: 14px;
    margin-bottom: 10px;
}

img.for-mobile-screen {
    display: none;
}


.form-group.frNw-charityq_points.singleoption label.col-sm-12.control-label {
    margin-top: 0;
}

.custom_month_section-head .custom-month_label {
    margin-top: 20px;
    margin-bottom: 20px;
}

.custom_month_section-head-mob .custom-month_label {
    margin-top: 15px;
    margin-bottom: 15px;
}

#nf-applePay {
    height: 52px !important;
    margin-bottom: 10px;
    border-radius: 14px;

}

.ipaycommision-section {
    background: var(--decreaseOpacity);
    padding: 30px 35px 25px 35px;
    border-radius: 24px;
    margin-bottom: 20px;
}

.ipaycommision-section .commssion_header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 18px;
}

.ipaycommision-section h3.donation_amount_title {
    font-family: Poppins;
    font-size: 26px;
    font-weight: 600;
    line-height: 17.8px;
    letter-spacing: -0.3810513913631439px;
    text-align: left;
    color: #62665F;
}

.ipaycommision-section label.fullamountIncommssionWrapper {
    font-family: Poppins;
    font-size: 26px;
    font-weight: 600;
    line-height: 17.8px;
    letter-spacing: -0.3810513913631439px;
    text-align: right;
    color: #62665F;
}

.ipaycommision-section svg circle {
    stroke: #62665F;
}

.ipaycommision-section svg path {
    fill: #62665F;
}

.ipaycommision-section span.tooltip {
    position: relative;
    cursor: pointer;
}


.ipaycommision-section p.ipaycommision-noftify {
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 5px;
    width: 200px;
    border-radius: 6px;
    z-index: 1;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.ipaycommision-section p.ipaycommision-noftify:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
    rotate: 180deg;
}

.tooltip:hover p.ipaycommision-noftify.tooltiptext {
    visibility: visible;
    opacity: 1;
}

span.payment_buttons.card_payment_button {
    margin-bottom: 10px;
}

.left-footer p.secure {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.5px;
    text-align: center;
    color: #969A92;
    padding-bottom: 15px;
}

.volundary_section {
    background: var(--decreaseOpacity);
    padding: 35px 35px 30px;
    border-radius: 24px;
    margin-bottom: 20px;
}

.volundary_section .commssion_header {
    /* background: var(--decreaseOpacity);
    padding: 35px 35px 30px 35px; */
    border-radius: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.volundary_section .commssion_header h3.donation_amount_title {
    font-family: Poppins;
    font-size: 26px;
    font-weight: 600;
    line-height: 17.8px;
    letter-spacing: -0.3810513913631439px;
    text-align: left;
    color: #62665F;
}

.volundary_section .commssion_header label.fullamountIncommssionWrapper {
    font-family: Poppins;
    font-size: 26px;
    font-weight: 600;
    line-height: 17.8px;
    letter-spacing: -0.3810513913631439px;
    text-align: right;
    color: #62665F;
}

.question_desc {
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 500;
    line-height: 15.85px;
    text-align: left;
    color: #62665F;
    padding-top: 5px;
}

.logo_img_section {
    padding-bottom: 40px;
}

.donar_details_section_sub_wrapper input.question_radio:checked~span.answer_radio_span:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: transparent;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

span.cardspan {
    font-weight: 600;
}
.wrapqansone .faqQuestions.faqqone.slide-up+.faqans.faqansone,
.wrapqanstwo .faqQuestions.faqqtwo.slide-up+.faqans.faqanstwo {
    max-height: 360px;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-top: 10px;
    background: var(--decreaseOpacity);
    border: none;
    outline: none;
    border-radius: none;
}

.faqans.faqansone,
.faqans.faqanstwo {
    line-height: 1.4em;
    max-height: 0px;
    overflow: hidden;
    transition: 0.8s ease-in-out;
    display: block !important;
    border: 1px solid transparent;
    margin-top: 0px;
    border: none;
    outline: none;
    border-radius: none;
}

.faqans p {
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 500;
    line-height: 19.5px;
    color: var(--TextPrimary, #62665F);
    padding: 5px 15px 0px 15px;
}

.left-footer p.secure {
    padding-bottom: 0px;
    cursor: pointer;
    padding-right: 20px;
}

.wrapqansone,
.wrapqanstwo {
    padding-bottom: 15px;
}

.faqQuestions {
    width: fit-content;
    margin: auto;
}
.popup {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: #00000080;
    z-index: 999999999;
    display: none;
}

.popup-inner {
    max-width: 1200px;
    width: 90%;
    height: 100%;
    padding: 20px 20px 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px #000;
    -moz-box-shadow: 0 2px 6px #000;
    -webkit-box-shadow: 0 2px 6px #000;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 3px;
    background: #fff;
    max-height: 550px;
}

iframe {
    width: 100%;
    height: 100%;
}

a.popup-close {
    color: #fff;
    background: #37B774;
    font-size: 27px;
    text-shadow: none;
    line-height: 24px;
    height: 40px;
    width: 40px;
    border-radius: 50% 50% 50% 50%;
    opacity: 1;
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border: 2px solid #fff;
    -webkit-text-stroke-width: 0px;
    padding-top: 4px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

a.popup-close:hover {
    color: #37B774;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 40%);
    transform: rotate(180deg);
}

.popup-inner h4 {
    display: none;
}

p#amount_error_desk {
    margin-top: 10px;
}

.card-elementdetails .StripeElement.nf-elements-total-wrapper {
    background: transparent;
    padding: 0;
    margin-top: 20px !important;
}

.volundary_section .wrap-div {
    padding-bottom: 16px;
}

.tippingOption .new-tip-buttons{
    display:flex;
    gap:11px;
    flex-wrap:wrap;
}

.tippingOption .new-tip-buttons .tip-btn{
    flex:1;
    width:fit-content;
    min-width: 140px;
    flex-wrap:wrap;
    border: 0.5px solid var(--primary-color);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:7px;
    gap:5px;
    background:#FFFFFF;
    cursor: pointer;
}

.tippingOption .new-tip-buttons .tip-btn span{
    font-size:15px;
    line-height:18px;
    letter-spacing:5%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.tippingOption .new-tip-buttons .tip-btn span svg{
    margin-bottom:2px;
    margin-right:4px;
}

.tippingOption .new-tip-buttons .tip-btn span svg path:nth-child(2){
    opacity:1;
    stroke:var(--primary-color);
}

.tippingOption .new-tip-buttons .tip-btn.active span svg path:nth-child(2){
    opacity:1;
    stroke:#E83F5B;
}

.tippingOption .new-tip-buttons .tip-btn span svg path:nth-child(1){
    fill: var(--primary-color);
    opacity: .5;
}

.tippingOption .new-tip-buttons .tip-btn.active span svg path:nth-child(1){
    fill:#E83F5B;
    opacity:.5;
}

.tippingOption .new-tip-buttons .tip-btn.active{
    position:relative;
    z-index:0;
    border-color:#E83F5B;
}

.tippingOption .new-tip-buttons .tip-btn > span.amount-for-5-per{
    color:#B7C4B7;
}

.donationform-left section.multi_step_form #collectAmounts .tippingOption-section .tippingOption .pay-currency{
    padding-left:0!important;
}

.tippingOption-section .tippingOption{
    background:transparent; 
}

#collectAmounts .tippingAction .precentage{
    margin-top: 0!important;
}

.donation_amounts_section .select-amounts{
    padding-bottom:10px;
}

.custom_amount_section{
    height:fit-content;
    flex-direction:column;
    align-items:start;
}

.donation_types_section,
.quaterly_donation_types_section {
    padding-bottom: 20px;
}

.quaterly_donation_types_section {
    padding-top: 0px;
}

.donation_amounts_section .select-amounts,
.custom_amount_section .custom-amount{
    padding-bottom: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: 0.05em;
    text-align: left;
}

.custom_amount_section .custom-amount-fields{
   width:100%;
    display:flex;
    align-items:center;
}

.custom_amount_currency{
    height:fit-content;
}

.custom_amount_section input{
    height: 56px;
}

.custom_month_section-head .custom-month_label {
    margin-bottom: 4px;
}
.abandoned_tab3{
    visibility: hidden;
    opacity: 0;
    display: none;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
}
/* media-query */

@media (max-width: 1400px) {

    .bandw_wrapper {
        padding: 10px 0px 10px 5px;
    }

    .second_section_images {
        padding: 10px 5px 10px 0px;
    }

    .payment-images img {
        height: 18px;
    }
}


@media (max-width: 1270px) {

    .payment-images {
        flex-direction: column;
        gap: 0;
    }

    .second_section_images {
        padding: 0px 5px 10px 5px;
    }

    .bandw_wrapper {
        padding: 10px 5px 0px 5px;
    }


}


@media (min-width: 981px) {
    .row.contents {
        align-items: center;
        align-items: start;
    }

    .form_contents {
        padding: 140px 50px 140px 65px !important;
    }

    .image_section {
        margin-bottom: 40px;
        margin-top: 140px;
        margin-bottom: 140px;
    }

    .logo_img_hide_active .logo_img_section{
        padding-bottom: 0;
    }
    .logo_img_hide_active .description_section .description_content p:empty,
    .logo_img_hide_active .description_section .description_content div:empty{
        display: none;
    }
}



@media only screen and (min-width: 600px) and (max-width: 980px) {
    .payment-images {
        flex-direction: row;
        gap: 15px;
    }

    .second_section_images {
        padding: 10px 10px 10px 0px;
    }

    .bandw_wrapper {
        padding: 10px 0px 10px 10px;
    }


}


@media screen and (min-width: 980px) and (max-width: 1200px) {

    /* .choose-amount.mandatory-fields {
        padding: 12px;
    } */

}


@media (max-width: 980px) {
    .row.contents {
        flex-direction: column-reverse;
    }

    .form_contents {
        width: 100%;
        padding: 10px;
        position: relative;
        top: -80px;
    }

    .image_section {
        width: 100%;
        margin: 0;
    }

    .image_section img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    .logo_img_wrapper {
        margin: auto;
    }

    .vertical-donation-form .container {
        padding: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .image_section img {
        height: 500px;
    }



    .month_choose_section_mob .buttonWrap .form-check label:before,
    .month_choose_section .buttonWrap .form-check label:before {
        width: 20px;
        height: 20px;
        top: 0px;
    }
}



@media (max-width: 520px) {
    .choose-amount.mandatory-fields button {
        line-height: 30px;
    }



    .image_section img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .form_contents {
        padding: 0px;
    }

    .vertical-donation-form .container {
        padding: 16px;
    }

    .donation_types_section span,
    .quaterly_donation_types_section span{
        padding: 16px 20px;
    }

    .image_section img {
        height: 340px;
    }

    .donation_amounts_description {
        display: none;
    }

    .donation_amounts_section {
        width: 100%;
    }

    .custom_amount_section.choose_small_amount.active {
        height: auto;
    }



    .bank-options-sub-wrapper img {
        height: 50%;
    }


    .card_payment_button,
    .bank_payment_button,
    .paypal_button {
        padding: 13px 10px;
        font-size: 15px;
    }

    img.for-desk-top {
        display: none;
    }

    img.for-mobile-screen {
        display: block;
    }

    .volundary_section h6 {
        padding-bottom: 5px;
    }

    .volundary_section .wrap-div {
        padding-top: 14px;
    }

    .ipaycommision-section h3.donation_amount_title {
        font-size: 24px;
    }

    .ipaycommision-section label.fullamountIncommssionWrapper {
        font-size: 24px;
    }

    .left-footer p.secure {
        font-size: 15px;
    }

    .volundary_section .commssion_header h3.donation_amount_title {
        font-size: 24px;
    }

    .volundary_section .commssion_header label.fullamountIncommssionWrapper {
        font-size: 24px;
    }

    a.popup-close {
        right: -15px;
    }

}

@media (max-width: 400px) {
    .paypal_section button {
        padding-right: 6px;
    }

    .ipaycommision-section p.ipaycommision-noftify {
        left: calc(50% - 60px);
    }

    .ipaycommision-section p.ipaycommision-noftify:after {
        left: calc(50% + 60px);
    }
}

@media (max-width: 380px) {


    .choose-amount.mandatory-fields button {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .paypal_section button {
        font-size: 14px;
    }
}