:root {
    --primary-color: #03a18f !important;
    --primary-hover: #03A18F !important;
    --primary-light: rgb(116 178 171 / 14%);
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --text-muted: #718096;
    --background-light: #F8FAFC;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --card-hover-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
    --transition-speed: 0.3s;
    --border-radius: 1rem;
	    Vazirmatn, font-family: sans-serif;
    font-family: Vazirmatn, sans-serif;
}

/* Modern Checkbox Styling */
input[type="checkbox"] {
    /* Hide the default checkbox */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Create a custom checkbox */
    width: 24px;
    height: 24px;
    border: 2px solid #4A5568; /* Dark gray border */
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background-color: transparent;
}

/* Checkbox hover state */
input[type="checkbox"]:hover {
    border-color: #2D3748; /* Slightly darker border on hover */
    box-shadow: 0 0 0 3px rgba(45, 55, 72, 0.1); /* Soft hover effect */
}

/* Checkbox checked state */
input[type="checkbox"]:checked {
    background-color: #38B2AC; /* Teal background when checked */
    border-color: #38B2AC;
}

/* Custom checkmark */
input[type="checkbox"]:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Focus state */
input[type="checkbox"]:focus {
    outline: 2px solid #4299E1; /* Blue outline on focus */
    outline-offset: 2px;
}

/* Disabled state */
input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Optional: Style for label next to checkbox */
input[type="checkbox"] + label {
    margin-right: 10px;
    user-select: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Card Container */
.give-grid__item {
    perspective: 1000px;
    max-width: -webkit-fill-available;
}

.give-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    isolation: isolate;
}

.give-card:hover {
    transform: translateY(-5px) scale(1.01);
}

/* Media Section */
.give-form-grid-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.give-card__media {
    height: 100%;
    width: 100%;
    position: relative;
}

.give-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.give-card:hover .give-card__media img {
    transform: scale(1.08);
}

/* Content Section */
.give-form-grid-container {
    padding: 1.75rem;
    background: #fff;
}

.give-form-grid-content__title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.75rem;
}

.give-form-grid-content__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 3rem;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.give-form-grid-content__text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    font-size: 1rem;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Button Styles */
button {
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
    font-family: "Vazirmatn", Sans-serif;
}

button:hover {
    background: var(--primary-color);
}

button span {
    transition: color var(--transition-speed);
}

button:hover span {
    color: white !important;
}

button:hover {
    color: #fff !important;
}

/* Progress Bar */
.give-form-grid-progress {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.give-progress-bar {
    background: #e5e5e5;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.give-progress-bar span {
    display: block;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stats Section */
.form-grid-raised {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-grid-raised__details {
    display: flex;
    flex-direction: column;
    gap: 0.30rem;
}

.amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.goal {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Features List */
.features-list {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    background: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .give-grid__item {
    }

    .give-form-grid-content__title {
        font-size: 1.25rem;
    }

    .give-form-grid-content__text {
        font-size: 0.95rem;
    }

    button {
        padding: 0.7rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .form-grid-raised {
        gap: 1rem;
    }

    .features-list {
        display: none;
    }
}


/* Reset and Base Styles */
.give-wrap {
    max-width: initial;
    margin: 60px auto;
    color: #2d3748;
    line-height: 1.5;
    transition: all 0.2s ease;
}


/* Form Title */
.give-form-title {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

/* Progress Bar and Goal */
.give-goal-progress {
    margin-bottom: 2rem;
}

.raised {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: center;
}

.raised span {
    font-weight: 600;
    color: #03a18f;
}

.give-progress-bar {
    height: 1rem;
    background: #edf2f7;
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 1rem 0;
}

.give-progress-bar span {
    display: block;
    height: 100%;
    position: relative;
    background: linear-gradient(rgb(3 161 143) 0%, rgb(13 170 152) 100%) !important;
    overflow: hidden;
}

/* الخطوط المتحركة */
.give-progress-bar span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%; /* زيادة العرض لضمان الحركة السلسة */
    height: 100%;
    background: repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.2) 0,
            rgba(255, 255, 255, 0.2) 10px,
            rgba(0, 0, 0, 0) 10px,
            rgba(0, 0, 0, 0) 20px
    );
    animation: moveLines 3s linear infinite; /* حركة مستمرة */
}

/* الأنميشن لتحريك الخطوط بشكل مستمر */
@keyframes moveLines {
    0% {
        transform: translateX(-50%); /* تبدأ من اليسار */
    }
    100% {
        transform: translateX(0%); /* تتحرك إلى اليمين */
    }
}

/* Form Content */
#give-form-content-1774 {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Donation Amount Section */
.give-donation-amount {
    position: relative;
}

#give-amount-text {
    font-size: 2rem;
    font-weight: 500;
    color: #2d3748;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
    padding: initial;
}

.give-currency-symbol {
    font-weight: 600;
    color: #4a5568;
}

/* تنسيق حاوية الأزرار */
.give-donation-levels-wrap {
    display: flex;
    gap: 12px;
    padding: 16px;
    background-color: #ffffff;
    overflow-x: auto;
    direction: rtl;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    position: relative;
    touch-action: pan-x;
    border-radius: 16px;
    /* إزالة النقاط */
    list-style: none;
    margin: 0;
    padding-right: 0;
    padding-left: 0;
}

/* إزالة النقاط من عناصر القائمة */
.give-donation-levels-wrap li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.give-donation-levels-wrap li::marker {
    display: none;
    content: none;
}

/* باقي التنسيقات كما هي... */
.give-donation-level-btn {
    min-width: auto;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    background-color: #f5f5f5;
    color: #333333;
    font-family: "Vazirmatn", Sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    user-select: none;
}

/* حالة التحويم */
.give-donation-level-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    background-color: #fafafa;
}

/* الزر النشط */
.give-donation-level-btn.give-default-level {
    background-color: #03a18f;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(3, 161, 143, 0.2);
}

.give-donation-level-btn:hover,
.give-donation-level-btn.give-default-level {
    background: #03a18f;
    color: white;
}

/* Fee Recovery Section */
#give-fee-recovery-wrap-1774-1 {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.give-fee-message-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.give-fee-message-label-text {
    color: #4a5568;
}

/* User Info Fields */
#give_checkout_user_info {
    margin: 2rem 0;
    border: none;
    padding: 0;
}

#give_checkout_user_info legend {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-row {
    width: -webkit-fill-available;
    margin-bottom: 1.5rem;
}

.give-label {
    display: block;
    color: #4a5568;
    font-weight: 600;
    padding-bottom: 8px;
}

.give-required-indicator {
    color: #e53e3e;
    margin-left: 0.25rem;
}

.give-tooltip {
    color: #718096;
    margin-left: 0.5rem;
}

.give-input {
    width: -webkit-fill-available;
    padding: 1rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-family: "Vazirmatn", Sans-serif;
}

.give-input:focus {
    outline: none;
    border-color: #03a18f;
    box-shadow: 0 0 0 3px rgba(3, 161, 143, 0.1);
}

/* Company Radio Options */
#give-company-radio-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

/* Anonymous Donation Option */
#give-anonymous-donation-wrap {
    background: #F8FAFC;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    border: 1px solid #03a18f;
    border-radius: 8px;
    padding: 15px;
    background-color: #F8FAFC;
    margin-bottom: 20px;
}

/* Comments Section */
#give-comment-wrap textarea {
    min-height: 40px;
    resize: vertical;
}


#give_terms {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 1rem 0;
    max-height: 200px;
    overflow-y: auto;
}

.give_terms_links {
    color: #03a18f;
    text-decoration: none;
    font-weight: 500;
}

/* Final Total */
#give-final-total-wrap {
    background: #F8FAFC;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.give-donation-total-label {
    font-weight: 600;
    color: #2d3748;
}

.give-final-total-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #03a18f;
}

/* Submit Button */
.give-submit-button-wrap {
    margin-top: 2rem;
}

.give-submit {
    width: -webkit-fill-available;
    padding: 1.25rem 2rem;
    background: #03a18f;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: "Vazirmatn", Sans-serif;
    z-index: 999;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}


.give-submit.hidden {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
    pointer-events: none;
}


.give-submit:hover {
    background: #028577;
}


/* Donor Wall */
.give-donor {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0%);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.give-donor:hover {
    transform: translateY(-2px);
}

.give-donor-container-variation__name {
    color: #2d3748;
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
}

.give-donor-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.give-donor-details__total {
    font-weight: 600;
    color: #03a18f;
}


.give-complete-goal-button:hover {
    background: #e2e8f0;
    color: #2d3748;
}

/* Responsive Design */
@media (max-width: 768px) {
    .give-wrap {
        margin: 0px auto;
    }

    .give-form-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }


    .form-row-first,
    .form-row-last {
        width: 100%;
        float: none;
    }

    #give-final-total-wrap {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* RTL Support */
[dir="rtl"] .give-tooltip {
    margin-right: 0.5rem;
    margin-left: 0;
}

[dir="rtl"] .give-required-indicator {
    margin-right: 0.25rem;
    margin-left: 0;
}

/* Accessibility */
.give-input:focus,
.give-submit:focus,
.give-donation-level-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 161, 143, 0.3);
}


/* Print Styles */
@media print {
    .give-wrap {
        box-shadow: none;
    }

    .give-submit,
    .give-donation-level-btn {
        background: none;
        border: 1px solid #000;
        color: #000;
        font-family: "Vazirmatn", Sans-serif;
    }
}


/* Main flex container */
.single-give_forms .give_forms {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1080px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

/* Left sidebar (image section) */
#give-sidebar-left {
    flex: 1;
    max-width: 50%;
}

/* Image container */
#give-sidebar-left .images {
    top: 2rem;
}

#give-sidebar-left .images img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Main content area */
.summary.entry-summary {
    flex: 1;
    max-width: 50%;
}

/* Donor wall in sidebar */
#block-12 {
    margin-top: 2rem;
}

/* Responsive layout */
@media (max-width: 1024px) {
    .single-give_forms .give_forms {
        flex-direction: column;
        padding: 1rem;
        gap: 0rem;
    }

    #give-sidebar-left,
    .summary.entry-summary {
        max-width: 100%;
    }

    #give-sidebar-left .images {

        position: static;
    }
}


@media (min-width: 30rem) {
    .give-wrap .give-grid {
        display: flex;
        flex-flow: row wrap;
        margin-bottom: 1.5rem;
        max-width: 100%
    }

    .give-wrap .give-grid__item {
        display: flex;
        padding: 0 .75rem
    }
}

@media (min-width: 30rem) and (min-width: 40rem) {
    .give-wrap .give-grid--2 .give-grid__item, .give-wrap .give-grid--3 .give-grid__item, .give-wrap .give-grid--4 .give-grid__item {
        width: 50%
    }
}

@media (min-width: 30rem) and (min-width: 72rem) {
    .give-wrap .give-grid--3 .give-grid__item, .give-wrap .give-grid--4 .give-grid__item {
        width: 33.3333333333%
    }
}

@media (min-width: 30rem) and (min-width: 90rem) {
    .give-wrap .give-grid--4 .give-grid__item {
        width: 25%
    }
}

@supports (display: grid) {
    .give-wrap .give-grid {
        grid-gap: 1.5rem;
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 1.5rem;
        max-width: 100%
    }

    .give-wrap .give-grid__item {
        display: flex;
        margin-bottom: 0;
        padding: 0;
        width: auto !important
    }

    @media (min-width: 40rem) {
        .give-wrap .give-grid--best-fit {
            grid-template-columns:repeat(auto-fit, minmax(320px, 1fr))
        }

        .give-wrap .give-grid--2, .give-wrap .give-grid--3, .give-wrap .give-grid--4 {
            grid-template-columns: repeat(2, 1fr)
        }
    }

    @media (min-width: 72rem) {
        .give-wrap .give-grid--3, .give-wrap .give-grid--4 {
            grid-template-columns:repeat(3, 1fr)
        }
    }


    .give-wrap .give-grid--4 {
        grid-template-columns:repeat(4, 1fr)
    }


    .give-total-wrap {
        margin: 0 auto;
        padding: 20px;
        background-color: #F8FAFC;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
    }

    .give-donation-amount {
        display: flex;
        align-items: stretch; /* لضبط الارتفاع */
        gap: 10px;
    }

    .give-input-wrapper {
        position: relative;
        flex: 1;
    }

    .give-text-input {
        width: auto;
        height: 44px;
        padding: 15px;
        font-size: 22px;
        border: 1px solid #ddd;
        border-radius: 5px;
        outline: none;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
        font-weight: 500;
        font-family: "Vazirmatn", Sans-serif;
    }

    .give-text-input:focus {
        border-color: #03a18f;
    }

    .give-complete-goal-button {
        height: 44px; /* نفس ارتفاع الإدخال */
        padding: 0 20px;
        font-size: 16px;
        color: #fff;
        background-color: #03a18f;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        font-family: "Vazirmatn", Sans-serif;
    }

    .give-complete-goal-button:hover {
        background-color: #03a18fc2;
        color: #fff;
        font-family: "Vazirmatn", Sans-serif;
    }

    .give-complete-goal-button:active {
        background-color: #004080;
    }

    /* تحسين العرض على الجوال */
    @media (max-width: 480px) {
        .give-donation-amount {
            flex-direction: column;
            gap: 5px;
        }

        .give-text-input,
        .give-complete-goal-button {
            height: 48px;
            font-size: 18px;
            font-family: "Vazirmatn", Sans-serif;
        }
    }
    .give-currency-symbol {
        display: none;
    }


    /* تنسيق الحاوية */
    #give-company-radio-list-wrap {
        margin-bottom: 15px;
    }

    /* تنسيق العنوان */
    #give-company-radio-list-wrap label {
        font-size: 16px;
        display: block;
        font-weight: 600;
    }

    /* تنسيق القائمة */
    .give-company-radio-list {
        display: flex;
        gap: 15px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* تنسيق عناصر القائمة */
    .give-company-radio-list li {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* تنسيق أزرار الراديو */
    .give_company_option {
        appearance: none;
        width: 18px;
        height: 18px;
        border: 1px solid #03a18f;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        position: relative;
    }

    /* نقطة التحديد داخل زر الراديو عند التحديد */
    .give_company_option:checked::before {
        content: "";
        width: 10px;
        height: 10px;
        background-color: #03a18f;
        border-radius: 50%;
        position: absolute;
    }

    /* تنسيق التسمية (نعم / لا) */
    .give-company-option {
        font-size: 16px;
        color: #333;
        cursor: pointer;
        transition: color 0.3s ease-in-out;
    }

    /* تغيير اللون عند تمرير الماوس */
    .give-company-option:hover {
        color: #03a18f;
    }

    /* تحسين العرض على الجوال */
    @media (max-width: 480px) {
        .give-company-radio-list {
            flex-direction: column;
            gap: 10px;
        }

        .give-company-radio-list li {
            gap: 10px;
        }
    }


    /* تنسيق الحقل الرئيسي */
    #give_terms_agreement {
        border: 1px solid #03a18f;
        border-radius: 8px;
        padding: 15px;
        background-color: #F8FAFC;
        margin-bottom: 20px;
    }

    /* تنسيق العنوان (شروط) */
    #give_terms_agreement legend {
        font-size: 18px;
        font-weight: 600;
        padding: 0 10px;
    }

    /* تنسيق العناوين داخل الشروط */
    #give_terms p strong {
        color: #03a18f;
        font-size: 16px;
    }

    /* تنسيق الروابط لإظهار وإخفاء الشروط */
    .give_terms_links {
        display: inline-block;
        font-size: 14px;
        color: #03a18f;
        text-decoration: none;
        font-weight: bold;
        margin-top: 10px;
        transition: color 0.3s ease;
    }

    .give_terms_links:hover {
        color: #028370;
        text-decoration: underline;
    }

    /* تنسيق مربع التحقق */
    #give_agree_to_terms-1446 {
        appearance: none;
        width: 18px;
        height: 18px;
        border: 1px solid #03a18f;
        border-radius: 4px;
        display: inline-block;
        position: relative;
        cursor: pointer;
        margin-right: 5px;
        vertical-align: middle;
    }

    /* تنسيق العلامة داخل مربع التحقق عند التحديد */
    #give_agree_to_terms-1446:checked::before {
        content: "✔";
        font-size: 14px;
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #give_agree_to_terms-1446:checked {
        background-color: #03a18f;
    }

    /* تنسيق نص الموافقة */
    label[for="give_agree_to_terms-1446"] {
        font-size: 14px;
        color: #333;
        cursor: pointer;
    }

    /* تحسين التنسيق للجوال */
    @media (max-width: 480px) {
        #give_terms_agreement {
            padding: 10px;
        }

        .give_terms_links {
            font-size: 13px;
        }

        label[for="give_agree_to_terms-1446"] {
            font-size: 13px;
        }
    }


    /* تنسيق الحقل الرئيسي */
    .give-fee-message {
        border: 1px solid #03a18f;
        border-radius: 8px;
        padding: 15px;
        background-color: #F8FAFC;
        margin-bottom: 20px;
        width: -webkit-fill-available;
    }

    /* تنسيق العنوان (رسالة المساهمة) */
    .give-fee-message-legend {
        font-size: 18px;
        font-weight: bold;
        color: #03a18f;
        padding: 0 10px;
        display: none; /* مخفي افتراضيًا */
    }

    /* تنسيق نص الرسالة */
    .give-fee-message-label {
        font-size: 16px;
        color: #333;
        display: inline-block;
        cursor: pointer;
    }

    /* تنسيق مربع التحقق */
    .give_fee_mode_checkbox {
        appearance: none;
        width: 18px;
        height: 18px;
        border: 1px solid #03a18f;
        border-radius: 4px;
        display: inline-block;
        position: relative;
        cursor: pointer;
        margin-right: 5px;
        vertical-align: middle;
    }

    /* تنسيق العلامة داخل مربع التحقق عند التحديد */
    .give_fee_mode_checkbox:checked::before {
        content: "✔";
        font-size: 14px;
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .give_fee_mode_checkbox:checked {
        background-color: #03a18f;
    }

    /* تنسيق نص الرسالة داخل المربع */
    .give-fee-message-label-text {
        font-size: 14px;
        color: #333;
    }

    /* تحسين التنسيق للجوال */
    @media (max-width: 480px) {
        .give-fee-message {
            padding: 8px;
        }

        .give-fee-message-label {
            font-size: 14px;
        }

        .give-fee-message-label-text {
            font-size: 13px;
        }
    }


    .give_fee_mode_checkbox {
        width: 18px !important;

    }


    #give-fee-message {

        width: -webkit-fill-available !important;
    }

    .form-row-wide {
        width: -webkit-fill-available !important;
    }


    form[id*=give-form] #give_purchase_form_wrap > fieldset {
        clear: both;
        width: -webkit-fill-available;
        padding: 0.75rem 1rem;
        border: 1px solid #e2e8f0;
        transition: all 0.2s ease;
        border-radius: 8px
    }


    /* تنسيق الحاوية */
    #give-anonymous-donation-wrap {
        margin-bottom: 20px;
    }

    /* تنسيق الوسم (label) */
    #give-anonymous-donation-wrap .give-label {
        font-size: 14px;
        color: #333;
        display: inline-flex; /* لعرض العناصر داخله في صف واحد */
        align-items: center; /* لمحاذاة العناصر عموديًا في الوسط */
        cursor: pointer;
        font-weight: 300;
        padding: 0;


    }

    /* تنسيق مربع التحقق (checkbox) */
    #give-anonymous-donation-wrap .give-input {
        appearance: none;
        width: 18px;
        height: 18px;
        border: 1px solid #03a18f;
        border-radius: 4px;
        margin-right: 5px;
        position: relative;
        cursor: pointer;
        padding: INITIAL;
    }

    /* العلامة داخل مربع التحقق عند التحديد */
    #give-anonymous-donation-wrap .give-input:checked::before {
        content: "✔";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 14px;
    }

    /* تغيير لون الخلفية عند التحديد */
    #give-anonymous-donation-wrap .give-input:checked {
        background-color: #03a18f;
    }

    /* تنسيق التلميح (Tooltip) */
    #give-anonymous-donation-wrap .give-tooltip {
        font-size: 14px;
        color: #03a18f;
        margin-left: 5px;
        cursor: pointer;
    }

    /* تنسيق الأيقونة داخل التلميح */
    #give-anonymous-donation-wrap .give-tooltip i {
        font-size: 16px;
    }

    /* تحسين التنسيق على الأجهزة الصغيرة */
    @media (max-width: 480px) {
        #give-anonymous-donation-wrap .give-label {
            font-size: 14px;
        }

        #give-anonymous-donation-wrap .give-tooltip {
            font-size: 12px;
        }
    }



    .give-total-wrap .give-donation-amount label {
        display: none;
    }


    #give-form-content-1446 {

        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 15px;
        background-color: #F8FAFC;
        margin-bottom: 20px;
        width: -webkit-fill-available;
    }


    #give-donor-dashboard {
        font-family: Vazirmatn, sans-serif !important;
        font-weight: 500;
        margin: 0 auto;
        max-width: 1140px !important;
        position: relative;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
    }


    .give-donor-dashboard-mobile-layout {
        box-shadow: none !important;
    }


    .give-donor-dashboard-mobile-menu__content {

        z-index: 9 !important;
        right: auto !important;
        left: 0 !important;
    }

    .give-donor-dashboard-mobile-menu__content:before {
        right: auto !important;
        left: 11px !important;

    }


    @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@500&display=swap');

    :root #give-donor-dashboard {
        max-width: 1140px !important;
    }


    .give-wrap .give-card {
        width: 100% !important;
    }


    .give-grid .give-donor h3 {
        padding-top: 9px;
    }


    .give-donor-details__total {
        color: #03a18f !important;
        background-color: #F8FAFC;
        padding: 5px 10px 5px 10px;
        border-style: solid;
        border-width: 1px 1px 1px 1px;
        border-color: #e2e8f0;
        border-radius: 8px 8px 8px 8px;


    }


    /* ====================================
   التنسيقات المشتركة - Shared Styles
==================================== */
    .give-form {
        max-width: 600px;
        margin: 0 auto;
        direction: rtl;
    }

    .give-form fieldset {
        border: none;
        margin: 0;
    }

    .give-form legend {
        font-size: 1.3em;
        margin-bottom: auto;
        width: auto;
        color: #333;
        font-weight: 600;
    }

    /* ====================================
       نموذج تسجيل الدخول - Login Form
    ==================================== */
    .give-login {
        margin-bottom: 15px;
    }

    .give-login label {
        display: block;
        margin-bottom: 8px;
        color: #333;
    }


    .give_submit {
        width: 100%;
        padding: 12px;
        background-color: #00a98f;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-family: sans-serif;
        font-size: 18px;
        font-weight: 500;
    }

    .give_submit:hover {
        background-color: #008975;
    }

    .give-lost-password {
        text-align: center;
        margin-top: 15px;
    }

    .give-lost-password a {
        color: #00a98f;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .give-lost-password a:hover {
        color: #008975;
        text-decoration: underline;
    }

    /* ====================================
       نموذج التسجيل - Registration Form
    ==================================== */
    .form-row {
        margin-bottom: 20px;
    }

    .form-row-responsive {
        width: 100%;
        margin-bottom: 15px;
    }

    /* تنسيق الصفوف المتجاوبة - Responsive Rows */
    @media (min-width: 768px) {
        .form-row-first {
            float: right;
            width: 48%;
            clear: right;
        }

        .form-row-last {
            float: left;
            width: 48%;
            clear: left;
        }
    }

    /* تنسيق العناوين في نموذج التسجيل */
    .form-row label {
        display: block;
        margin-bottom: 8px;
        color: #333;
    }

    /* زر التسجيل */
    .button[name="give_register_submit"] {
        width: 100%;
        padding: 12px;
        background-color: #00a98f;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-family: sans-serif;
        font-size: 18px;
        font-weight: 500;
    }

    .button[name="give_register_submit"]:hover {
        background-color: #008975;
    }

    /* إخفاء العناصر المخفية */
    .give-hidden {
        display: none;
    }

    /* تنظيف التعويم */
    .give-form fieldset::after {
        content: "";
        display: table;
        clear: both;
    }

    /* تنسيق الحقول المطلوبة */
    .required {
        border-color: #ddd;
    }

    .required:focus {
        border-color: #00a98f;
    }

    /* تنسيق رسائل الخطأ */
    .give-error {
        color: #dc3545;
        margin-top: 5px;
        font-size: 0.9em;
    }

    /* تعديل حجم الحقول على الشاشات الصغيرة */
    @media (max-width: 767px) {
        .give-form {
            padding: 15px;
        }

        .give-input,
        .button[name="give_register_submit"],
        .give_submit {
            padding: 10px;
        }
    }



    /* تنسيق حاوية رسائل الخطأ */
    .give_notices {
        margin: 15px 0;
        padding: 0;
    }

    /* تنسيق رسالة الخطأ */
    .give_error {
        background-color: #fff5f5;
        border: 1px solid #fed7d7;
        border-right: 4px solid #f56565;
        border-radius: 4px;
        padding: 12px 15px;
        margin-bottom: 10px;
    }

    /* تنسيق نص الخطأ */
    .give_error p {
        margin: 0;
        color: #c53030;
    }

    /* تنسيق كلمة "خطأ" */
    .give_error strong {
        color: #c53030;
        margin-left: 5px;
    }

    /* تأثيرات الحركة عند ظهور الخطأ */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .give_notice {
        animation: fadeIn 0.3s ease-out;
    }

    /* تنسيق للشاشات الصغيرة */
    @media (max-width: 767px) {
        .give_error {
            padding: 10px 12px;
        }
    }


    #give_purchase_submit {

        margin-bottom: 6rem;
    }


    .nARG9L9frEmjySwtzqCl {
        text-align: right !important;
    }


    /* لوحة التحكم give */
    :root {
        --give-donor-dashboard-accent-color: #06A592 !important
    }

    .give-donor-dashboard-button.give-donor-dashboard-button--primary:before {
        background: #05a49100 !important

    }


    .give-donor-dashboard-dashboard__stats .give-donor-dashboard-dashboard__figure {
        color: #06A592 !important

    }


    .give-donor-dashboard-desktop-layout {

        box-shadow: none !important
    }

    .give-donor-dashboard-button.give-donor-dashboard-button--primary {

        background-color: #14b8a6 !important
    }

    .give-donor-dashboard {


        font-family: Vazirmatn, sans-serif !important;
    }

    .give-donor-dashboard-text-control .give-donor-dashboard-text-control__label {
        font-family: Vazirmatn, sans-serif !important;

    }


    .give-donor-dashboard-button {

        font-family: Vazirmatn, sans-serif !important;

    }


    .give-donor-dashboard-radio-control .give-donor-dashboard-radio-control__description {

        font-style: normal !important;
        font-weight: 400 !important;
        font-family: Vazirmatn, sans-serif !important;

    }


    .give-donor-dashboard-radio-control .give-donor-dashboard-radio-control__option label {

        font-family: Vazirmatn, sans-serif !important;
        font-size: 13px !important;
        font-weight: 500 !important;

    }


    .give-donor-dashboard-tab-link svg {
        margin-left: 8px !important;
        margin-right: 0 !important;
    }

    @media screen and (max-width: 920px) {
        .give-donor-dashboard-logout {
            display: none;
        }
    }
}

/* peer to peer styles edit by a7m3d on 25225 */

.atxUXA6Pwr_WEDGoC5_W > .WrX68dXmIFP0X067g0a3 .TGO_1H8Zds2NQQ_2wthB {
    /*top: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*position: absolute;*/
    /*opacity: 72%;*/
    /*background-blend-mode: multiply;*/
    /*background-color: var(--give-campaign-primary, #28c77b);*/
    /*border-radius: 0 0 6px 6px*/

    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1080px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;

}


